/* ── Tokens ───────────────────────────────────────────────── */
:root {
  --grey: rgba(255,255,255,.50);
  --outline: #00000026;
  --white: #fff;
  --black: #000;
  --radius: 8px;
  --container-max: 720px;
  --pad: 64px;
}

/* ── Base ─────────────────────────────────────────────────── */
body {
  color: var(--black);
  background: var(--white);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica Neue, sans-serif;
  font-size: 15px;
  line-height: 1.5;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, #5aaec8 0%, #b8895c 58%, #e07228 100%);
  z-index: -1;
  /* promote to own layer so it doesn't repaint on scroll */
  will-change: transform;
  transform: translateZ(0);
}

h1, h2, h3, h4 { line-height: 1.15; font-weight: 300; }
h1 { font-size: 38px; margin-bottom: 20px; }
h2 { font-size: 28px; font-weight: 400; margin-bottom: 16px; }
h3 { font-size: 20px; font-weight: 400; margin-bottom: 8px; }
h4 { font-size: 15px; font-weight: 500; margin-bottom: 4px; }

p  { font-size: 15px; line-height: 1.65; opacity: .65; margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }

a  { color: inherit; text-decoration: none; }

/* ── Layout ───────────────────────────────────────────────── */
.section {
  border-bottom: 1px solid var(--grey);
  background-color: transparent;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 5px,
    rgba(255,255,255,.05) 5px,
    rgba(255,255,255,.05) 6px
  );
}

.section--dark {
  color: var(--white);
  background-color: #000;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 12px,
    rgba(255,255,255,.07) 12px,
    rgba(255,255,255,.07) 13px
  );
}

.section--plain {
  background-image: none;
  background-color: transparent;
}

.section--inset { margin-inline: 24px; }

.container {
  max-width: var(--container-max);
  margin-inline: auto;
  border-inline: 1px solid var(--grey);
  background-color: rgba(0,0,0,.10);
  padding: 8px;
}

.container--flex { display: flex; padding-block: 0; }
.container--bare { background-color: transparent; }
.container--wide { max-width: 960px; }

.card {
  border-radius: var(--radius);
  background-color: var(--white);
  color: var(--black);
  padding: var(--pad);
  box-shadow: 0 0 0 1px rgba(0,0,0,.10), 0 2px 4px rgba(0,0,0,.05), 0 4px 12px rgba(0,0,0,.07);
  width: 100%;
}

.card--dark {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 35% 20%, #272727 0%, #141414 65%);
  color: var(--white);
}

/* base glow — always visible. Wide gradient stops give a soft falloff so we
   don't need `filter: blur()`, which would otherwise force an expensive
   offscreen rasterisation + composite layer per card. */
.card--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 140% 90% at 50% 100%, rgba(90, 174, 200, 0.32) 0%, transparent 80%),
    radial-gradient(ellipse 90%  75% at  8% 95%, rgba(184, 137, 92, 0.28) 0%, transparent 78%),
    radial-gradient(ellipse 90%  75% at 92% 95%, rgba(224, 114, 40, 0.26) 0%, transparent 78%);
  z-index: 0;
}

/* hover glow — fades in on top. `will-change: opacity` promotes to its own
   compositor layer so the transition stays on the GPU. */
.card--dark::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 150% 95% at 50% 100%, rgba(90, 174, 200, 0.42) 0%, transparent 80%),
    radial-gradient(ellipse 95%  78% at  8% 95%, rgba(184, 137, 92, 0.38) 0%, transparent 78%),
    radial-gradient(ellipse 95%  78% at 92% 95%, rgba(224, 114, 40, 0.36) 0%, transparent 78%);
  z-index: 0;
  opacity: 0;
  will-change: opacity;
  transition: opacity 0.5s ease-in-out;
}

.card--dark:has(.btn:hover)::after {
  opacity: 1;
  transition: opacity 1s ease-in-out;
}

.card--dark > * {
  position: relative;
  z-index: 1;
}

.card--dark p { color: rgba(255,255,255,.65); opacity: 1; }

/* ── Nav ──────────────────────────────────────────────────── */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  margin-bottom: 16px;
  gap: 8px;
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -.3px;
  color: var(--black);
}

.nav-logo img {
  width: 52px;
  height: 52px;
  display: block;
}

.nav-logo span {
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
  list-style: none;
  margin-left: auto;
}

.nav-link {
  display: block;
  background-color: var(--white);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 14px;
  box-shadow: 0 0 0 1px rgba(0,0,0,.10), 0 2px 4px rgba(0,0,0,.05), 0 4px 12px rgba(0,0,0,.07);
  transition: background-color .15s, color .15s, opacity .15s;
  white-space: nowrap;
}

.nav-link:not(.active):hover {
  background-color: #e8e8e8;
}

.nav-link.active {
  background-color: var(--black);
  color: var(--white);
  box-shadow: none;
}

.nav-link.active:hover { opacity: .85; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--black);
  border-radius: 2px;
  transition: transform .28s cubic-bezier(.4,0,.2,1),
              opacity .2s,
              width .28s cubic-bezier(.4,0,.2,1);
  transform-origin: center;
}

/* Open state — morph into × */
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn-group { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.btn-wrap  { margin-top: 40px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: radial-gradient(ellipse at 40% 30%, #2c2c2c 0%, #141414 70%);
  color: var(--white);
  border-radius: 100px;
  padding: 14px 36px;
  font-size: 14px;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: opacity .15s;
}


.btn::after {
  content: none;
}



.btn:not(.btn--outline):hover { opacity: .85; }

.btn--outline {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 0 0 1px rgba(0,0,0,.10), 0 2px 4px rgba(0,0,0,.05), 0 4px 12px rgba(0,0,0,.07);
  transition: box-shadow .15s;
}

.btn--outline:hover {
  box-shadow: 0 0 0 1px rgba(0,0,0,.35), 0 2px 4px rgba(0,0,0,.05), 0 4px 12px rgba(0,0,0,.07);
}


.btn--small { padding: 9px 22px; font-size: 13px; }

.btn-icon {
  background: radial-gradient(ellipse at 40% 30%, #2c2c2c 0%, #141414 70%);
  color: var(--white);
  border-radius: 100px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-icon img { width: 20px; }

.card--dark .btn:not(.btn--outline) {
  background: var(--white);
  color: var(--black);
}

.card--dark .btn--outline {
  color: var(--white);
  box-shadow: 0 0 0 1px rgba(255,255,255,.35);
}

.card--dark .btn--outline:hover { box-shadow: 0 0 0 1px rgba(255,255,255,.7); }

/* ── Typography helpers ───────────────────────────────────── */
.eyebrow {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
  opacity: .65;
  margin-bottom: 20px;
}

.hero-h1 {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: 20px;
}



.hero-h1--large { font-size: 56px; line-height: 1; opacity: 1; color: var(--black); margin-bottom: 32px; }
.hero-h1--small { font-size: 28px; }

.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(0,0,0,.65);
  margin-bottom: 36px;
}

.section-heading {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 8px;
}

.text-muted { opacity: .5; }
.text-small { font-size: 13px; }

/* ── Globe testimonial ─────────────────────────────────────── */
.globe-testimonial {
  position: absolute;
  bottom: 12px;
  left: 50%;
  width: 50%;
  padding: 20px 24px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 0 0 1px rgba(0,0,0,.10), 0 2px 4px rgba(0,0,0,.05), 0 4px 12px rgba(0,0,0,.07);
  opacity: 0;
  transform: translateX(calc(-50% - 16px));
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.globe-testimonial.visible {
  opacity: 1;
  transform: translateX(-50%);
}

.globe-testimonial-inner {}

.globe-testimonial .globe-testimonial-quote {
  font-size: 16px;
  font-style: normal;
  color: var(--black);
  opacity: 1;
  margin-bottom: 4px;
}

.globe-testimonial-name {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .4;
  display: block;
}

/* ── Globe ─────────────────────────────────────────────────── */
.section--globe {
  padding-bottom: 0;
  background-color: transparent;
  background-image: none;
  overflow: hidden;
}

.section--globe .container {
  position: relative;
  padding-bottom: 96px;
}

.globe-wrap {
  position: relative;
  width: 760px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  overflow: visible;
  height: 430px;
}

#globe-canvas {
  display: block;
  width: 100%;
  height: auto;
  transform: translateY(-40px) scaleX(-1);
  will-change: contents;
}

.globe-bubble {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--outline);
  border-radius: 10px;
  padding: 10px 14px;
  pointer-events: none;
  transition: opacity .4s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  max-width: 165px;
  min-width: 130px;
  z-index: 2;
}

.globe-bubble-quote {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(0,0,0,.65);
  font-style: normal;
  margin-bottom: 6px;
}

.globe-bubble-name {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(0,0,0,.35);
}

@media (max-width: 600px) {
  .section--globe .container {
    max-width: 100%;
    padding: 0;
    border: none;
  }

  .globe-wrap {
    width: 100%;
    height: 100vw;
    max-width: 100%;
  }

  #globe-canvas {
    width: 130%;
    margin-left: -15%;
    transform: translateY(-20px) scaleX(-1);
  }

  .globe-bubble {
    max-width: 130px;
    min-width: 100px;
    padding: 8px 10px;
  }
  .globe-bubble-quote { font-size: 11px; }
  .globe-bubble-name  { font-size: 9px; }

  .globe-testimonial {
    width: calc(100% - 32px);
    left: 50%;
    transform: translateX(calc(-50% - 16px));
  }

  .globe-testimonial.visible {
    transform: translateX(-50%);
  }
}

/* ── Logo / trust bar ─────────────────────────────────────── */
.logo-bar {
  padding: 32px var(--pad);
  border-radius: var(--radius);
  background-color: var(--white);
  box-shadow: 0 0 0 1px rgba(0,0,0,.10), 0 2px 4px rgba(0,0,0,.05), 0 4px 12px rgba(0,0,0,.07);
}

.logo-bar-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
  opacity: .4;
  margin-bottom: 24px;
  text-align: center;
}

/* ── Logo ticker ──────────────────────────────────────────── */
@keyframes logo-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.logo-ticker-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 18%,
    black 82%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 18%,
    black 82%,
    transparent 100%
  );
}

.logo-ticker-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: logo-scroll 22s linear infinite;
  will-change: transform;
}

.logo-ticker-track:hover {
  animation-play-state: paused;
}

.logo-ticker-item {
  height: 36px;
  width: auto;
  flex-shrink: 0;
  opacity: .35;
  transition: opacity .2s;
}

/* grayscale only on the visible (non-duplicated) originals */
.logo-ticker-item:not([aria-hidden="true"]) {
  filter: grayscale(1);
}

.logo-ticker-track:hover .logo-ticker-item {
  opacity: .55;
}

/* ── Feature grid ─────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background-color: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 0 0 1px rgba(0,0,0,.10), 0 2px 4px rgba(0,0,0,.05), 0 4px 12px rgba(0,0,0,.07);
  overflow: hidden;
}

.feature-item {
  padding: 36px 32px;
  border-right: 1px solid var(--outline);
  border-bottom: 1px solid var(--outline);
  background: var(--white);
  transition: background .2s ease;
}

.feature-item:hover {
  background: rgba(0,0,0,.03);
}

.feature-item:nth-child(3n) { border-right: none; }
.feature-item:nth-last-child(-n+3) { border-bottom: none; }

.feature-icon {
  display: block;
  margin-bottom: 16px;
  color: var(--black);
  opacity: .5;
  min-width: 40px;
}

.feature-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.feature-title { font-size: 15px; font-weight: 500; margin-bottom: 8px; }
.feature-desc  { font-size: 14px; opacity: .6; line-height: 1.55; margin: 0; }

/* ── Steps ────────────────────────────────────────────────── */
.steps { display: flex; flex-direction: column; }

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid var(--outline);
}

.step:last-child { border-bottom: none; padding-bottom: 0; }

.step-num {
  font-size: 13px;
  letter-spacing: 3px;
  opacity: .35;
  flex-shrink: 0;
  padding-top: 4px;
  min-width: 40px;
}

.step-body h3 { font-size: 17px; font-weight: 500; margin-bottom: 8px; }
.step-body p  { margin: 0; }

/* ── Pricing ──────────────────────────────────────────────── */
.region-toggle {
  display: inline-flex;
  background-color: rgba(0,0,0,.07);
  border-radius: 100px;
  padding: 4px;
  margin-bottom: 32px;
}

.region-btn {
  background: none;
  border: none;
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 13px;
  cursor: pointer;
  color: rgba(0,0,0,.5);
  transition: background-color .15s, color .15s;
}

.region-btn.active {
  background-color: var(--black);
  color: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 8px;
}

.pricing-card--enterprise {
  grid-column: 1 / -1;
  flex-direction: column;
  gap: 16px;
  padding: 28px 32px;
}

.pricing-card--enterprise .pricing-label { margin-bottom: 0; }
.pricing-card--enterprise .pricing-price { margin-bottom: 0; font-size: 28px !important; }
.pricing-card--enterprise .pricing-period { margin-bottom: 0; }

.pricing-card--enterprise-body {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.pricing-card--enterprise-left { flex-shrink: 0; min-width: 120px; }

.pricing-card--enterprise-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0 24px;
  flex: 1;
  list-style: none;
}

.pricing-card--enterprise-features li {
  font-size: 13px;
  opacity: .65;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
  border-bottom: none;
  width: calc(50% - 12px);
}

.pricing-card--enterprise-features li::before { content: "•"; opacity: .4; flex-shrink: 0; }

.pricing-card--enterprise-cta { flex-shrink: 0; }

/* enterprise CTA — sits at far right on desktop, full-width at bottom on mobile */
.enterprise-cta { flex-shrink: 0; align-self: center; }

.pricing-card {
  border-radius: var(--radius);
  border: none;
  box-shadow: 0 0 0 1px rgba(0,0,0,.10), 0 2px 4px rgba(0,0,0,.05), 0 4px 12px rgba(0,0,0,.07);
  padding: 0 24px 32px; /* top handled by .pricing-saving-badge margin-bottom */
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  overflow: hidden; /* clips banner corners to match card radius */
}

/* Restore enterprise padding overridden by .pricing-card above */
.pricing-card.pricing-card--enterprise { padding: 28px 32px; }

.pricing-card--featured {
  background: radial-gradient(ellipse at 35% 20%, #272727 0%, #141414 65%);
  color: var(--white);
  border-color: transparent;
}

.pricing-card--featured p { color: rgba(255,255,255,.6); opacity: 1; }

.pricing-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
  opacity: .5;
  margin-bottom: 8px;
  display: block;
}

.pricing-card--featured .pricing-label { opacity: .55; color: var(--white); }

.pricing-badge {
  display: inline-block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  background-color: var(--white);
  color: var(--black);
  border-radius: 100px;
  padding: 3px 10px;
  margin-bottom: 12px;
}

.pricing-price {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 4px;
  line-height: 1;
}

.pricing-period {
  font-size: 14px;
  opacity: .6;
  margin-bottom: 18px;
  display: block;
}

.pricing-features {
  list-style: none;
  flex: 1;
  margin-bottom: 28px;
}

.pricing-features li {
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid var(--outline);
  opacity: .75;
  display: flex;
  gap: 8px;
}

.pricing-card--featured .pricing-features li { border-color: rgba(255,255,255,.12); opacity: 1; color: rgba(255,255,255,.8); }

.pricing-features li::before { content: "•"; opacity: .3; flex-shrink: 0; }

.pricing-note {
  font-size: 15px;
  color: var(--white);
  margin-top: 8px;
  line-height: 1.55;
  padding: 16px var(--pad);
  background-color: rgba(0,0,0,.03);
  border-radius: 0 0 var(--radius) var(--radius);
  margin: 0;
}

/* ── Table ────────────────────────────────────────────────── */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.data-table th {
  text-align: left;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: .45;
  padding: 12px 24px 12px 0;
  border-bottom: 1px solid var(--outline);
}

.data-table td {
  padding: 12px 24px 12px 0;
  border-bottom: 1px solid var(--outline);
  vertical-align: top;
  line-height: 1.5;
}

.data-table td:first-child { width: 35%; }
.data-table tr:last-child td { border-bottom: none; }
.table-tier { display: block; color: var(--black); font-weight: 500; }
.table-sub { display: block; color: var(--black); opacity: .6; font-size: 14px; margin-top: 3px; }
.table-examples { display: none; color: var(--black); opacity: .6; font-size: 14px; margin-top: 6px; }

.data-table--highlight td:nth-child(3) {
  font-weight: 500;
}

/* ── FAQ Accordion ────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; }

.faq-item { border-bottom: 1px solid var(--outline); }
.faq-item:first-child { border-top: 1px solid var(--outline); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 400;
  gap: 24px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: inherit;
}

.faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  font-size: 20px;
  line-height: 1;
  opacity: .4;
  transition: transform .25s;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .18s ease-out;
}

.faq-answer p { padding-bottom: 20px; margin: 0; }

/* ── Portfolio grid ───────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

/* ── Portfolio strip section — frost edges ────────────────── */
.section--portfolio-strip {
  overflow: hidden;
  position: relative;
}


/* ── Portfolio slider (homepage strip) ────────────────────── */
.portfolio-slider {
  overflow: visible;
  margin: 0 -40px; /* bleed beyond the container border so adjacent cards are visible */
  -webkit-mask-image: linear-gradient(to right,
    transparent 40px,
    black 40px,
    black calc(100% - 40px),
    transparent calc(100% - 40px)
  );
  mask-image: linear-gradient(to right,
    transparent 40px,
    black 40px,
    black calc(100% - 40px),
    transparent calc(100% - 40px)
  );
}

.portfolio-slider .swiper-slide {
  width: calc(100% - 80px); /* 40px peek each side (centeredSlides) */
  height: auto;
}

.portfolio-slider .project-card {
  height: 100%;
}

/* parallax layers move on their own compositor layers */
.portfolio-slider .project-tag,
.portfolio-slider .project-title,
.portfolio-slider .project-desc,
.portfolio-slider .project-meta {
  will-change: transform;
}

.portfolio-slider-dots {
  display: flex;
  justify-content: center;
  gap: 4px;
  padding: 14px 0 6px;
}

/* pill-progress pagination bullets (black fill sweeps across over the autoplay delay) */
.portfolio-slider-dots .swiper-pagination-bullet {
  width: 16px;
  height: 6px;
  border-radius: 3px;
  background: rgba(0, 0, 0, .25);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .15);
  opacity: 1;
  margin: 0;
  overflow: hidden;
  position: relative;
}

.dot-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: var(--black);
  border-radius: inherit;
}

.swiper-pagination-bullet-active .dot-fill {
  animation: dot-pill-fill 5.5s linear forwards;
}

@keyframes dot-pill-fill {
  from { width: 0; }
  to   { width: 100%; }
}

.project-card {
  border-radius: var(--radius);
  overflow: hidden;
  background-color: var(--white);
  box-shadow: 0 0 0 1px rgba(0,0,0,.10), 0 2px 4px rgba(0,0,0,.05), 0 4px 12px rgba(0,0,0,.07);
  display: flex;
  flex-direction: column;
}

.project-card-thumb {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.project-card-thumb img,
.project-card-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  will-change: transform;
}

.project-card-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0,0,0,.2);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.project-card-body {
  padding: 64px;
  flex: 1;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, .15);
  background: radial-gradient(ellipse at 35% 20%, #272727 0%, #141414 65%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.project-card-body > * { position: relative; z-index: 1; }
.project-card--intro { justify-content: center; }
.project-card-body--intro { border-top: none; justify-content: center; }

.project-tag {
  display: inline-block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: .45;
  margin-bottom: 16px;
  color: var(--white);
}

.project-title { font-size: 18px; font-weight: 500; margin-bottom: 12px; color: var(--white); }
.project-meta  { font-size: 14px; opacity: .45; margin: 16px 0 8px; letter-spacing: .01em; color: var(--white); }
.project-desc  { font-size: 15px; opacity: .6; line-height: 1.55; flex: 1; margin: 0 0 20px; color: var(--white); }

.project-link {
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}

/* ── Testimonials cycler ──────────────────────────────────── */
.testimonial-cycler {
  margin-top: 24px;
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.testimonial-cycler.t-visible {
  opacity: 1;
  transform: translateX(0);
}

.testimonial-quote {
  font-size: 16px;
  line-height: 1.65;
  color: var(--black);
  margin-bottom: 16px;
  font-style: normal;
}

.testimonial-name {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .4;
  display: block;
  color: var(--black);
}

.testimonials-placeholder {
  border-radius: var(--radius);
  border: 1px dashed var(--outline);
  padding: 48px 32px;
  text-align: center;
  font-size: 13px;
  opacity: .45;
}

/* ── Contact form ─────────────────────────────────────────── */
.form { display: flex; flex-direction: column; gap: 20px; }

.form-field { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-size: 15px;
  font-weight: 500;
  opacity: 1;
}

.form-input,
.form-textarea {
  width: 100%;
  border: 1px solid rgba(0,0,0,.10);
  border-bottom-color: rgba(0,0,0,1);
  border-radius: 0;
  padding: 7px 16px;
  font-size: 16px;
  font-family: inherit;
  background: var(--white);
  color: var(--black);
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color .15s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--black);
}

.form-textarea { min-height: 100px; resize: vertical; }

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}

.form-alt {
  font-size: 13px;
  opacity: .5;
}

.form-alt a { text-decoration: underline; opacity: .8; }

.form-success {
  display: none;
  font-size: 15px;
  line-height: 1.6;
  opacity: 1;
}

.form-success:focus { outline: none; }

.card--success {
  background-color: #1a6b3c;
  color: #fff;
  box-shadow: none;
  border: none;
}

.card--success .form-success {
  display: block;
  color: #fff;
  opacity: .9;
}

.card--success .form-success-heading {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
  opacity: 1;
  color: #fff;
}

/* ── Reassurance strip ────────────────────────────────────── */
.reassurance {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 24px 32px;
  background-color: rgba(0,0,0,.03);
  border-radius: var(--radius);
}

.reassurance-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  opacity: .7;
}

.reassurance-item::before {
  content: "✓";
  font-size: 13px;
  font-weight: 600;
  opacity: .6;
}

/* ── Footer ───────────────────────────────────────────────── */
footer.section--dark {
  background-color: transparent;
  background-image: radial-gradient(ellipse at 35% 20%, #272727 0%, #141414 65%);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: var(--pad);
}

.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand-name { font-size: 15px; font-weight: 600; color: var(--white); }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.6; max-width: 280px; }
.footer-address { font-size: 13px; font-style: normal; color: rgba(255,255,255,.35); line-height: 1.7; max-width: 280px; }

.footer-links-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255,255,255,.35);
  margin-bottom: 16px;
  font-weight: 500;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-link {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  transition: color .15s;
}

.footer-link:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,.35);
  margin: 0;
  opacity: 1;
}

.footer-contact a {
  font-size: 13px;
  color: rgba(255,255,255,.35);
  transition: color .15s;
}

.footer-contact a:hover { color: var(--white); }

.footer-region-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-region-label {
  font-size: 13px;
  color: rgba(255,255,255,.25);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-right: 2px;
}

.footer-region-toggle .region-btn {
  font-size: 13px;
  padding: 4px 12px;
  color: rgba(255,255,255,.35);
}

.footer-region-toggle .region-btn.active {
  background-color: rgba(255,255,255,.12);
  color: var(--white);
}

.footer-region-toggle .region-btn:hover {
  color: var(--white);
}

/* ── Section spacing helpers ──────────────────────────────── */
.section-gap { margin-bottom: 8px; }
.card-gap    { margin-bottom: 8px; }

/* ── Util ─────────────────────────────────────────────────── */
.hidden { display: none !important; }
.text-center { text-align: center; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 991px) {
  .container { max-width: 728px; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  :root { --pad: 32px; }

  .btn:not(.btn--small) { width: 100%; }

  .container {
    max-width: none;
    border-inline: none;
  }

  .container--flex { flex-direction: column; }

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
    gap: 8px;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height .32s cubic-bezier(.4,0,.2,1),
                padding .32s cubic-bezier(.4,0,.2,1);
  }

  .nav-links.open {
    max-height: 320px;
    padding: 12px 0 8px;
  }
  .navbar { flex-wrap: wrap; }
  .nav-toggle { display: flex; }

  .hero-h1        { font-size: 28px; }
  .hero-h1--large { font-size: 38px; }
  h1              { font-size: 26px; }
  h2              { font-size: 22px; }

  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-item:nth-child(3n) { border-right: 1px solid var(--outline); }
  .feature-item:nth-child(2n) { border-right: none; }

  .feature-item {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 16px;
    align-items: start;
  }
  .feature-icon { grid-row: 1 / span 2; margin-bottom: 0; margin-top: 4px; }
  .feature-icon svg { width: 20px; height: 20px; }

  .portfolio-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }

  .project-card-body { padding: 32px; }

  .pricing-card--enterprise {
    padding: 28px 24px;
  }

  .pricing-card--enterprise-body {
    flex-direction: column;
    gap: 0;
  }

  .pricing-card--enterprise .pricing-price {
    font-size: 38px !important;
    margin-top: 4px;
  }

  .pricing-card--enterprise .pricing-period {
    margin-bottom: 18px;
  }

  .pricing-card--enterprise-left {
    width: 100%;
  }

  .pricing-card--enterprise-features {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0;
    width: 100%;
    margin-bottom: 20px;
  }

  .pricing-card--enterprise-features li {
    width: 100%;
    border-bottom: 0.5px solid var(--outline);
    padding: 10px 0;
  }

  .enterprise-cta {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }

  .reassurance { gap: 16px; }

  .data-table { font-size: 13px; }
  .data-table td:first-child { width: 70%; padding-right: 16px; }
  .data-table td:last-child, .data-table th:last-child { text-align: right; }
  .data-table td:last-child { white-space: nowrap; }
  .table-col-examples { display: none; }
  .table-examples { display: block; }
}

@media (max-width: 480px) {
  .feature-grid { grid-template-columns: 1fr; }
  .feature-item,
  .feature-item:nth-last-child(-n+3) { border-right: none; border-bottom: 1px solid var(--outline); }
  .feature-item:last-child { border-bottom: none; }

  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { text-align: center; width: 100%; box-sizing: border-box; }
}

/* ── Customise page (plan summary + add-ons + sticky total) ─── */
.cust-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  column-gap: 8px;
  row-gap: 0;
  align-items: stretch;
}

/* Plan summary panel — reuses the dark-card glow treatment */
.cust-summary {
  border-radius: var(--radius);
  padding: 32px 28px;
  position: sticky;
  top: 24px;
  z-index: 0;
}
/* match the Standard pricing card: flat dark gradient, no corner glow */
.cust-summary::before,
.cust-summary::after { display: none; }
.cust-summary__badge {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .55;
  margin-bottom: 14px;
}
.cust-summary__price {
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.03em;
}
.cust-summary__period {
  font-size: 14px;
  opacity: .55;
  margin-top: 6px;
}
.cust-summary__billing {
  font-size: 13px;
  opacity: .45;
  margin-top: 4px;
}
.cust-summary__features {
  list-style: none;
  margin: 22px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(255,255,255,.15);
}
.cust-summary__features li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  opacity: .8;
  margin-bottom: 11px;
  line-height: 1.4;
}
.cust-summary__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 9px;
  height: 5px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  opacity: .7;
}
.cust-summary__change {
  display: inline-block;
  margin-top: 20px;
  font-size: 13px;
  opacity: .5;
  color: inherit;
  text-decoration: underline;
}
.cust-summary__change:hover { opacity: .8; }

/* Add-ons column */
.cust-addons {
  padding-top: 16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  z-index: 1;
}
.cust-addons__heading { margin-bottom: 4px; }
.cust-addons__sub {
  font-size: 14px;
  opacity: .8;
  margin-bottom: 18px;
}
#cust-addons-list {
  border-top: 0.5px solid var(--outline);
}

/* Add-on rows (shared markup, formerly used by the modal) */
.plan-modal__addon-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 17px 0;
  border: none;
  border-bottom: 0.5px solid var(--outline);
  border-radius: 0;
  margin-bottom: 0;
  cursor: pointer;
  transition: background .12s;
  user-select: none;
}
.plan-modal__addon-item:last-child { border-bottom: none; }
.plan-modal__addon-item:hover:not(.is-included):not(.is-selected) {
  background: rgba(0,0,0,.03);
}
.plan-modal__addon-item.is-selected:hover { background: transparent; }
.plan-modal__addon-item.is-selected {
  background: transparent;
  color: var(--black);
}
.plan-modal__addon-item.is-included {
  cursor: default;
  pointer-events: none;
  background: transparent;
}
.plan-modal__addon-item.is-included .plan-modal__addon-check {
  background: var(--black);
  border-color: var(--black);
}
.plan-modal__addon-item.is-included .plan-modal__addon-check .plan-modal__addon-check-tick {
  display: block;
}
.plan-modal__addon-item.is-included .plan-modal__addon-name { opacity: .45; }
.plan-modal__addon-item.is-included .plan-modal__addon-included-badge { opacity: .45; }

.plan-modal__addon-check {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  border-radius: 4px;
  border: 1.5px solid var(--outline);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .12s, border-color .12s;
}
.plan-modal__addon-item.is-selected .plan-modal__addon-check {
  background: var(--black);
  border-color: var(--black);
}
.plan-modal__addon-check-tick {
  display: none;
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg) translateY(-1px);
}
.plan-modal__addon-item.is-selected .plan-modal__addon-check-tick { display: block; }

.plan-modal__addon-name {
  flex: 1;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
}
.plan-modal__addon-price {
  font-size: 13px;
  font-weight: 500;
  opacity: .8;
  white-space: nowrap;
}
.plan-modal__addon-item.is-selected .plan-modal__addon-price { opacity: .6; }
.plan-modal__addon-included-badge {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .55;
}

/* "Your details" section — hidden until the Continue CTA is clicked */
.cust-details-section {
  scroll-margin-top: 24px;
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transform: translateY(12px);
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  pointer-events: none;
  transition: grid-template-rows .5s cubic-bezier(.4,0,.2,1),
              opacity .45s ease,
              transform .5s cubic-bezier(.4,0,.2,1),
              padding .5s cubic-bezier(.4,0,.2,1);
}
.cust-details-section > .container {
  width: 100%;
  min-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  transition: padding .5s cubic-bezier(.4,0,.2,1);
}
.cust-details-section.is-revealed {
  grid-template-rows: 1fr;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cust-details-section.is-revealed > .container {
  padding-top: 8px;
  padding-bottom: 8px;
}

/* Button swap inside the sticky bar (CTA out, Submit in) */
.cust-total-bar__actions {
  position: relative;
  display: grid;
}
.cust-total-bar__actions > .btn {
  grid-area: 1 / 1;
  transition: opacity .3s ease, transform .3s ease;
}
/* default: CTA shown, Submit hidden */
.cust-total-bar__actions #cust-submit {
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
}
/* after reveal: CTA hidden, Submit shown */
.cust-total-bar__actions.is-submit #cust-continue {
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
}
.cust-total-bar__actions.is-submit #cust-submit {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Sticky total bar */
.cust-total-bar {
  position: sticky;
  bottom: 0;
  z-index: 40;
  background: var(--white);
  border-top: 0.5px solid var(--outline);
  box-shadow: 0 -4px 16px rgba(0,0,0,.06);
}
.cust-total-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 32px;
  background-color: transparent;
  border: none;
  border-inline: 1px solid rgba(0,0,0,.10);
}
.cust-total-bar__left { display: flex; flex-direction: column; }
.cust-total-bar__label {
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .45;
}
.cust-total-bar__price {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.1;
}
.cust-total-bar__note {
  font-size: 14px;
  opacity: .45;
}

@media (max-width: 767px) {
  .cust-grid { grid-template-columns: 1fr; }
  .cust-summary { position: static; border-bottom-left-radius: 0; border-bottom-right-radius: 0; }
  .cust-addons { border-top-left-radius: 0; border-top-right-radius: 0; }
  .cust-summary__price { font-size: 34px; }
  .cust-total-bar__price { font-size: 20px; }
  .cust-total-bar__inner { padding: 12px 4px 12px 16px; }
  .billing-toggle-wrap { padding-inline: 8px; }
}

/* ── Billing toggle ─────────────────────────────────────────── */
.billing-toggle-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding: 24px var(--pad) 16px;
}

.billing-switch-label {
  font-size: 14px;
  color: rgba(255,255,255,.85);
  user-select: none;
  transition: color .2s;
}

.billing-switch-label.is-active {
  color: var(--white);
}

/* The sliding switch button */
.billing-switch {
  position: relative;
  width: 50px;
  height: 28px;
  border-radius: 100px;
  background-color: var(--black);
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background-color .2s;
}

.billing-switch:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 3px;
}

.billing-switch-thumb {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--white);
  transition: transform .25s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}

.billing-switch[aria-checked="true"] .billing-switch-thumb {
  transform: translateX(22px);
}

/* Annual label "save" highlight — light yellow as in reference */
.billing-annual-save {
  display: inline;
  margin-left: 6px;
  white-space: nowrap;
  background-color: #f7f0d0;
  border-radius: 3px;
  padding: 1px 5px;
  font-size: 13px;
  color: rgba(0,0,0,.65);
}

/* ── Saving badge — floats above each pricing card ───────────── */
/* Badge is now a full-width header banner inside the card top */
.pricing-saving-badge {
  display: block;
  /* Bleed to card edges (only sides — no top padding on card to cancel) */
  margin: 0 -24px 32px -24px; /* 32px bottom = replaces the removed card top padding */
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
  transition: max-height .3s ease, margin-bottom .3s ease;
}

.pricing-saving-badge.visible {
  max-height: 38px;
  line-height: 38px;
  margin-bottom: 20px;
}

/* White cards — faint grey tint */
.pricing-saving-badge {
  background: rgba(0,0,0,.04);
  color: rgba(0,0,0,.7);
}

/* Dark featured card — faint white tint */
.pricing-card--featured .pricing-saving-badge {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.75);
}

/* ── Digit pop-in animation (billing toggle) ─────────────────── */
:root {
  --digit-dur: 180ms;
  --digit-distance: 5px;
  --digit-stagger: 20ms;
  --digit-blur: 2px;
  --digit-ease: cubic-bezier(0.34, 1.45, 0.64, 1);
  --digit-dir-x: 0;
  --digit-dir-y: 1;
}

@keyframes t-digit-pop-in {
  0% {
    transform: translate(
      calc(var(--digit-distance) * var(--digit-dir-x)),
      calc(var(--digit-distance) * var(--digit-dir-y))
    );
    opacity: 0;
    filter: blur(var(--digit-blur));
  }
  100% { transform: translate(0, 0); opacity: 1; filter: blur(0); }
}

.t-digit-group {
  display: inline-flex;
  align-items: baseline;
}

.t-digit {
  display: inline-block;
  will-change: transform, opacity, filter;
}

.t-digit-group.is-animating .t-digit {
  animation: t-digit-pop-in var(--digit-dur) var(--digit-ease) both;
}

@media (prefers-reduced-motion: reduce) {
  .t-digit-group .t-digit { animation: none !important; }
}

/* ── Annual price info (hidden by default, fades in) ─────────── */

.pricing-annual-info {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .3s ease, opacity .3s ease, margin-top .3s ease;
  margin-top: 0;
}

.pricing-annual-info.visible {
  max-height: 40px;
  opacity: 1;
  margin-top: 4px;
}

.pricing-annual-total {
  font-size: 13px;
  opacity: .55;
  color: var(--black);
  margin-bottom: 20px;
}

/* Featured (dark) card override */
.pricing-card--featured .pricing-annual-total {
  color: rgba(255,255,255,.65);
  opacity: 1;
}

/* ── Annual billing note (shown only in annual state) ─────────── */
.pricing-annual-note {
  font-size: 15px;
  line-height: 1.6;
  opacity: .85;
  margin-top: 8px;
  padding: 14px var(--pad);
  background-color: rgba(0,0,0,.03);
  border-radius: 0 0 var(--radius) var(--radius);
  color: var(--white);
}

/* ── Reduced motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .logo-ticker-track { animation: none; }
}


/* ── Legal prose ─────────────────────────────────────────────── */
.prose { max-width: 680px; }
.prose h2 { font-size: 18px; font-weight: 600; margin: 40px 0 10px; color: var(--black); }
.prose h2:first-child { margin-top: 0; }
.prose p { font-size: 15px; line-height: 1.75; color: var(--text-secondary, #444); margin-bottom: 14px; }
.prose ul, .prose ol { margin: 0 0 14px 0; padding-left: 20px; }
.prose li { font-size: 15px; line-height: 1.75; color: var(--text-secondary, #444); margin-bottom: 4px; }
.prose strong { color: var(--black); font-weight: 600; }
.prose hr { border: none; border-top: 1px solid var(--outline, rgba(0,0,0,.08)); margin: 8px 0 0; }
.prose table { width: 100%; border-collapse: collapse; margin-bottom: 14px; font-size: 14px; }
.prose th { text-align: left; font-weight: 600; font-size: 12px; letter-spacing: .05em; text-transform: uppercase; padding: 8px 12px; border-bottom: 1px solid var(--outline, rgba(0,0,0,.1)); color: var(--black); }
.prose td { padding: 10px 12px; border-bottom: 1px solid var(--outline, rgba(0,0,0,.06)); color: var(--text-secondary, #444); vertical-align: top; }
.prose a { color: var(--black); text-decoration: underline; text-underline-offset: 3px; }
