/* ==========================================================================
   Primie Global — "Lumina Precision" design system
   High-contrast tech minimalism: extreme whitespace, Swiss structure,
   soft glassmorphism, single chromatic driver (brand orange).
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Surfaces */
  --surface:            #f9f9f8;
  --surface-lowest:     #ffffff;
  --surface-low:        #f4f4f3;
  --surface-container:  #eeeeed;
  --surface-high:       #e8e8e7;
  --surface-highest:    #e2e2e2;
  --surface-dim:        #dadad9;
  --inverse-surface:    #1a1c1c;
  --inverse-on-surface: #f1f1f0;

  /* Ink */
  --on-surface:         #1a1c1c;
  --on-surface-variant: #564337;
  --secondary:          #5e5e5e;
  --muted:              #71717a;

  /* Brand — sampled from the Primie Global logo (#f49214) */
  --brand:              #f49214;
  --brand-dim:          #d97c06;
  --brand-soft:         #ffdcc5;
  --primary:            #aa5c09;   /* deepened brand orange: AA on white  */
  --primary-hover:      #8c4b06;
  --on-primary:         #ffffff;

  /* Lines & depth */
  --stroke:             rgba(0, 0, 0, .08);
  --stroke-strong:      rgba(0, 0, 0, .16);
  --shadow-float:       0 4px 20px rgba(0, 0, 0, .04);
  --shadow-lift:        0 12px 32px rgba(0, 0, 0, .08);

  /* Shape */
  --r-sm:  2px;
  --r:     4px;
  --r-lg:  8px;
  --r-xl:  12px;
  --r-full: 9999px;

  /* Rhythm */
  --container: 1280px;
  --gutter:    24px;
  --section:   120px;
  --section-m: 64px;

  /* Type */
  --font-head: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, sans-serif;
  --font-body: "Geist", "Inter", system-ui, -apple-system, sans-serif;
  --topbar-h: 0px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

@media (min-width: 768px) {
  :root { --topbar-h: 42px; }
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--surface);
  color: var(--on-surface);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 24px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }

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

button, input, select, textarea { font: inherit; color: inherit; }

::selection { background: var(--brand-soft); color: #502600; }

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(0,0,0,.14); border-radius: var(--r-full); }
::-webkit-scrollbar-thumb:hover { background: rgba(0,0,0,.26); }

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--on-surface); color: var(--surface);
  padding: 12px 20px; border-radius: 0 0 var(--r-lg) 0;
}
.skip-link:focus { left: 0; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   3. Typography scale
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--font-head); margin: 0; }
p { margin: 0; }

.display-xl {
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.08;
  letter-spacing: -.025em;
  font-weight: 700;
}
.headline-lg {
  font-size: clamp(32px, 4.4vw, 48px);
  line-height: 1.15;
  letter-spacing: -.015em;
  font-weight: 600;
}
.headline-md {
  font-size: clamp(24px, 2.6vw, 30px);
  line-height: 1.26;
  letter-spacing: -.01em;
  font-weight: 600;
}
.headline-sm {
  font-size: 21px;
  line-height: 30px;
  letter-spacing: -.005em;
  font-weight: 600;
}
.body-lg  { font-size: 18px; line-height: 28px; }
.body-md  { font-size: 16px; line-height: 24px; }
.metric {
  font-family: var(--font-body);
  font-size: clamp(32px, 4vw, 40px);
  line-height: 1.2;
  letter-spacing: -.05em;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.eyebrow {
  display: block;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: .1em;
  font-weight: 600;
  text-transform: uppercase;
}

.text-muted   { color: var(--muted); }
.text-second  { color: var(--secondary); }
.text-variant { color: var(--on-surface-variant); }
.text-brand   { color: var(--primary); }
.lead         { color: var(--secondary); font-size: 18px; line-height: 28px; }
.measure      { max-width: 62ch; }
.measure-sm   { max-width: 46ch; }

/* --------------------------------------------------------------------------
   4. Layout
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section        { padding-block: var(--section-m); }
.section-sm     { padding-block: 48px; }
.section-tint   { background: var(--surface-low); }
.section-white  { background: var(--surface-lowest); }
.border-t       { border-top: 1px solid var(--stroke); }
.border-y       { border-block: 1px solid var(--stroke); }

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--gutter);
}
/* Below the desktop breakpoint every child stacks full width. Without this
   the .col-* spans (defined only at >=1024px) would auto-place into a single
   1/12 column and collapse to a few pixels wide. */
.grid-12 > * { grid-column: 1 / -1; }
.stack   { display: flex; flex-direction: column; }
.gap-8   { gap: 8px; }
.gap-16  { gap: 16px; }
.gap-24  { gap: 24px; }
.gap-32  { gap: 32px; }
.center  { text-align: center; }
.center-x { margin-inline: auto; }

.section-head { margin-bottom: 56px; }
.section-head.center { max-width: 720px; margin-inline: auto; }
.section-head .eyebrow { color: var(--primary); margin-bottom: 16px; }
.section-head h2 { margin-bottom: 16px; }

/* Ambient bloom used behind heroes */
.bloom {
  position: absolute;
  width: 60vw; height: 60vw;
  max-width: 900px; max-height: 900px;
  top: -22%; left: -12%;
  background: radial-gradient(circle, rgba(244,146,20,.14) 0%, rgba(249,249,248,0) 70%);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.bloom-r { left: auto; right: -14%; top: 8%; }
.relative { position: relative; }
.above { position: relative; z-index: 1; }

/* --------------------------------------------------------------------------
   5. Header / navigation
   -------------------------------------------------------------------------- */
/* --- Utility topbar --------------------------------------------------- */
.topbar {
  display: none;                 /* shown from 768px up — see breakpoints */
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 101;
  height: var(--topbar-h);
  background: var(--inverse-surface);
  color: #d7d7d5;
  font-size: 13px;
  transition: transform .35s var(--ease), opacity .25s linear;
}
.topbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar__contact { display: flex; align-items: center; gap: 24px; }
.topbar a, .topbar__note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  white-space: nowrap;
}
.topbar a { transition: color .2s ease; }
.topbar a:hover { color: var(--brand); }
.topbar svg { width: 15px; height: 15px; color: var(--brand); flex-shrink: 0; }
.topbar__note { display: none; }
/* The topbar slides away on scroll and the header takes the top edge. */
.is-stuck .topbar { transform: translateY(-100%); opacity: 0; }

/* --- Header ----------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: var(--topbar-h) 0 auto 0;
  z-index: 100;
  background: rgba(249, 249, 248, .82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stroke);
  transition: top .35s var(--ease), box-shadow .3s ease, background-color .3s ease;
}
.site-header.is-stuck {
  top: 0;
  background: rgba(249, 249, 248, .94);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .06);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
  transition: height .35s var(--ease);
}
.site-header.is-stuck .container { height: 68px; }
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand img { height: 30px; width: auto; }

.nav { display: none; align-items: center; gap: 32px; }
.nav a {
  position: relative;
  font-size: 16px;
  color: var(--on-surface);
  padding-block: 4px;
  transition: color .3s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.nav a:hover { color: var(--primary); }
.nav a[aria-current="page"] { color: var(--primary); font-weight: 700; }
.nav a[aria-current="page"]::after,
.nav a:hover::after { transform: scaleX(1); }

/* Specificity must beat `.btn { display: inline-flex }` further down the
   sheet, otherwise the CTA stays visible on mobile and shoves the menu
   toggle off-screen. */
.site-header .header-cta { display: none; }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: none;
  border: 1px solid var(--stroke);
  border-radius: var(--r);
  cursor: pointer;
}
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open  { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.mobile-menu {
  display: none;
  border-top: 1px solid var(--stroke);
  background: rgba(249, 249, 248, .97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.mobile-menu.open { display: block; }
.mobile-menu nav { display: flex; flex-direction: column; padding-block: 12px 24px; }
.mobile-menu nav a {
  padding: 14px 0;
  border-bottom: 1px solid var(--stroke);
  font-size: 18px;
}
.mobile-menu nav a[aria-current="page"] { color: var(--primary); font-weight: 600; }
.mobile-menu .btn { margin-top: 24px; }

/* --------------------------------------------------------------------------
   6. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border: 1px solid transparent;
  border-radius: var(--r-lg);
  font-size: 12px;
  line-height: 16px;
  letter-spacing: .1em;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .25s ease, background-color .25s ease,
              box-shadow .25s ease, border-color .25s ease, color .25s ease;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary {
  background: var(--primary);
  color: var(--on-primary);
  box-shadow: var(--shadow-float);
}
.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}
.btn-ghost {
  background: transparent;
  color: var(--on-surface);
  border-color: var(--on-surface);
}
.btn-ghost:hover { background: var(--surface-container); transform: translateY(-2px); }

.btn-brand { background: var(--brand); color: #2b1500; }
.btn-brand:hover { background: #ffa733; transform: translateY(-2px); box-shadow: var(--shadow-lift); }

.btn-lg { padding: 20px 40px; }
.btn-block { width: 100%; }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 0;
  padding: 0;
  color: var(--primary);
  font-size: 12px;
  line-height: 16px;
  letter-spacing: .1em;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: gap .25s ease;
}
.btn-link:hover { gap: 16px; }
.btn-link svg { width: 16px; height: 16px; }

.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 8px;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: .1em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--on-surface);
  transition: color .25s ease;
}
.btn-play__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: var(--r-full);
  border: 1px solid var(--stroke-strong);
  color: var(--primary);
  transition: background-color .25s ease, color .25s ease,
              border-color .25s ease, transform .25s ease;
}
.btn-play__ico svg { width: 13px; height: 13px; margin-left: 2px; }
.btn-play:hover { color: var(--primary); }
.btn-play:hover .btn-play__ico {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: scale(1.08);
}

.btn-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.btn-row.center { justify-content: center; }

/* --------------------------------------------------------------------------
   7. Surfaces — the three material tiers
   -------------------------------------------------------------------------- */
.card {                       /* Level 1: flat container */
  background: var(--surface-low);
  border: 1px solid var(--stroke);
  border-radius: var(--r-xl);
  padding: 40px;
}
.card-white { background: var(--surface-lowest); }
.card-tint  { background: var(--surface-highest); }

.glass {                      /* Level 2: floating translucent */
  background: rgba(255, 255, 255, .7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--stroke);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-float);
  padding: 40px;
}

.hoverable { transition: transform .3s ease, box-shadow .3s ease; }
.hoverable:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }

.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid var(--stroke);
  border-radius: var(--r-full);
  background: var(--surface-highest);
  color: var(--on-surface);
}
.pill-light { background: var(--surface-lowest); color: var(--primary); }

/* Icon chips */
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: var(--r-full);
  background: var(--surface-lowest);
  border: 1px solid var(--stroke);
  color: var(--primary);
  flex-shrink: 0;
}
.chip svg { width: 22px; height: 22px; }
.chip-lg { width: 56px; height: 56px; }
.chip-lg svg { width: 26px; height: 26px; }
.chip-plain { background: none; border: 0; width: auto; height: auto; }
.chip-plain svg { width: 32px; height: 32px; }

/* Thin-stroke icon default */
.ico { stroke-width: 1.5; }

/* --------------------------------------------------------------------------
   8. Hero
   -------------------------------------------------------------------------- */
main { padding-top: calc(80px + var(--topbar-h)); }

/* overflow clips the decorative .bloom glow, which is deliberately oversized
   and offset past the section edge — unclipped it forces a horizontal scrollbar. */
.hero { padding-block: var(--section-m); position: relative; overflow: hidden; }
.hero-center { text-align: center; display: flex; flex-direction: column; align-items: center; }

/* --- Showcase hero: copy + photo with floating cards -------------------- */
.hero--showcase { padding-block: 48px 64px; overflow: hidden; }
.hero__grid { display: grid; gap: 48px; align-items: center; }

.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__wash {
  position: absolute; inset: 0;
  background:
    radial-gradient(1100px 620px at 88% 12%, rgba(244, 146, 20, .12) 0%, transparent 62%),
    radial-gradient(900px 560px at 6% 88%, rgba(244, 146, 20, .07) 0%, transparent 60%),
    linear-gradient(180deg, #fdf9f4 0%, var(--surface) 72%);
}
/* Faint diagonal weave, echoing the reference's watermark. */
.hero__weave {
  position: absolute; inset: 0;
  opacity: .5;
  background-image:
    repeating-linear-gradient(45deg, rgba(0,0,0,.028) 0 1px, transparent 1px 46px),
    repeating-linear-gradient(-45deg, rgba(0,0,0,.028) 0 1px, transparent 1px 46px);
}
.hero--showcase .container { position: relative; z-index: 1; }

.hero__eyebrow { color: var(--primary); margin-bottom: 18px; }

.hero__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(36px, 5.6vw, 60px);
  line-height: 1.1;
  letter-spacing: -.025em;
  margin-bottom: 24px;
}
/* Hand-drawn underline that hugs the highlighted phrase. */
.swash { position: relative; display: inline-block; white-space: nowrap; }
.swash__line {
  position: absolute;
  left: 0; right: 0; bottom: -.22em;
  width: 100%; height: .3em;
  color: var(--brand);
  overflow: visible;
}
/* Gated on `js` so the underline is simply drawn when scripting is off,
   rather than sitting permanently dashed out of view. */
.js .swash__line path {
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
}
.js .in .swash__line path { animation: swash-draw .9s .35s var(--ease) forwards; }
@keyframes swash-draw { to { stroke-dashoffset: 0; } }

.hero__lede {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.6;
  color: var(--secondary);
  max-width: 44ch;
  margin-bottom: 36px;
}

.hero__with {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--stroke);
}
.hero__with .eyebrow { margin-bottom: 18px; }
.hero__plats {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 28px;
}
.hero__plat {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 500;
  color: var(--on-surface);
}
.hero__plat svg { width: 20px; height: 20px; color: var(--primary); }

/* --- Hero media ---------------------------------------------------------- */
.hero__media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 560px;
  justify-self: center;
}
.hero__photo {
  position: absolute;
  inset: 8%;
  border-radius: var(--r-full);
  overflow: hidden;
  border: 6px solid var(--surface-lowest);
  box-shadow: 0 24px 60px -22px rgba(0, 0, 0, .28);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }

/* Thin arc ring sitting behind the portrait. */
.hero__ring {
  position: absolute;
  inset: 1%;
  border-radius: var(--r-full);
  border: 1px dashed rgba(244, 146, 20, .45);
}

/* Dot fields, as in the reference. */
.dots {
  position: absolute;
  width: 118px; height: 118px;
  background-image: radial-gradient(var(--primary) 1.6px, transparent 1.6px);
  background-size: 15px 15px;
  opacity: .28;
}
.dots--tl { top: -6px; left: -14px; }
.dots--br { bottom: 6px; right: -16px; }

/* Floating info cards. */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--surface-lowest);
  border: 1px solid var(--stroke);
  border-radius: var(--r-lg);
  box-shadow: 0 16px 38px -14px rgba(0, 0, 0, .22);
  white-space: nowrap;
}
.float-card b { display: block; font-size: 14px; font-weight: 600; line-height: 1.3; }
.float-card small { font-size: 12px; color: var(--muted); }
.float-card__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: var(--r-full);
  background: var(--brand);
  color: #fff;
  flex-shrink: 0;
}
.float-card__ico--alt { background: var(--inverse-surface); }
.float-card__ico svg { width: 18px; height: 18px; }
/* Tucked inside the media box by default so they never spill off a narrow
   screen; they overhang the portrait only once there's room at 1024px. */
.float-card--a { top: 10%; right: 0; }
.float-card--b { bottom: 8%; left: 0; }
.float-card small { display: none; }

/* Rotating cube. */
.hero__cube { position: absolute; top: 2%; left: 8%; width: 74px; height: 74px; }
.hero__cube svg { width: 100%; height: 100%; overflow: visible; }

@media (prefers-reduced-motion: no-preference) {
  .float-card--a { animation: drift 6s ease-in-out infinite; }
  .float-card--b { animation: drift 7.5s ease-in-out .8s infinite; }
  .hero__cube    { animation: drift 5.5s ease-in-out infinite; }
  .cube          { animation: spin 14s linear infinite; transform-origin: 0 0; }
  .swash__line path { will-change: stroke-dashoffset; }
}
@keyframes drift {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-13px); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.hero-center h1 { max-width: 15ch; margin-bottom: 24px; }
.hero-center .lead { max-width: 60ch; margin-bottom: 40px; }

.hero-visual {
  width: 100%;
  border: 1px solid var(--stroke);
  border-radius: var(--r-xl);
  background: var(--surface-low);
  overflow: hidden;
  position: relative;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual svg { width: 100%; height: auto; display: block; }

/* Artwork panel — background matched to the illustration's own cream so the
   image blends into the frame rather than sitting on a visible rectangle. */
.hero-visual--art { background: #f9f8f5; }
.hero-visual--art img { height: auto; object-fit: contain; }

.frame {
  border: 1px solid var(--stroke);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--surface-low);
  position: relative;
}
/* <picture> is only a source-selection wrapper — take it out of the layout so
   the <img> stays a direct child and height:100% / object-fit still resolve. */
.frame picture, .hero-visual picture { display: contents; }

.frame img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s ease;
}
.frame:hover img { transform: scale(1.04); }
/* Screenshot panel — let the image set its own height and keep it uncropped;
   no hover zoom, since scaling a UI screenshot just blurs the text. */
.frame--shot { background: var(--surface-lowest); }
.frame--shot img { height: auto; object-fit: contain; }
.frame--shot:hover img { transform: none; }

.frame-tag {
  position: absolute;
  left: 16px; bottom: 16px;
  background: var(--surface-lowest);
  border: 1px solid var(--stroke);
  border-radius: var(--r);
  padding: 8px 14px;
  font-size: 12px;
  letter-spacing: .1em;
  font-weight: 600;
  text-transform: uppercase;
}
.ratio-16-9 { aspect-ratio: 16 / 9; }
.ratio-3-2  { aspect-ratio: 3 / 2; }
.ratio-4-3  { aspect-ratio: 4 / 3; }

/* --------------------------------------------------------------------------
   9. Ticker
   -------------------------------------------------------------------------- */
.ticker-wrap { overflow: hidden; width: 100%; }
.ticker {
  display: flex;
  width: max-content;
  animation: ticker 38s linear infinite;
}
.ticker-group {
  display: flex;
  align-items: center;
  gap: 72px;
  padding-right: 72px;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--on-surface);
  opacity: .55;
  white-space: nowrap;
  transition: opacity .4s ease, color .4s ease;
}
.ticker-item svg { width: 26px; height: 26px; }
.ticker-wrap:hover .ticker-item { opacity: 1; }
.ticker-wrap:hover .ticker-item svg { color: var(--primary); }
@keyframes ticker {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker { animation: none; }
}

/* --------------------------------------------------------------------------
   10. Stat band — hairline divided grid
   -------------------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--stroke);
  border-block: 1px solid var(--stroke);
}
.stat {
  background: var(--surface);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
}
.stat .metric { color: var(--primary); }
.stat .eyebrow { color: var(--on-surface-variant); }
.stats-plain .stat .metric { color: var(--on-surface); }

/* --------------------------------------------------------------------------
   11. Bento grid
   -------------------------------------------------------------------------- */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: var(--gutter); }
.bento > * { grid-column: span 12; }
.bento-cell {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}
.bento-cell h3 { margin-bottom: 8px; }
.bento-head { display: flex; align-items: flex-start; justify-content: space-between; }
.bento-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border: 1px solid var(--stroke);
  border-radius: var(--r-full);
  transition: background-color .3s ease, color .3s ease;
  flex-shrink: 0;
}
.bento-cell:hover .bento-arrow { background: var(--primary); color: var(--on-primary); }
.dot-field {
  position: absolute;
  inset: 0 0 0 auto;
  width: 50%;
  opacity: .12;
  background-image: radial-gradient(currentColor 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   12. Process steps & timeline
   -------------------------------------------------------------------------- */
.steps { display: grid; gap: var(--gutter); }
.step { position: relative; }
.step-n {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -.05em;
  font-weight: 500;
  color: var(--muted);
  opacity: .3;
}

/* Vertical protocol list */
.protocol { position: relative; display: flex; flex-direction: column; gap: 40px; }
.protocol-row { display: flex; gap: 32px; align-items: flex-start; }
.protocol-num {
  display: none;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -.05em;
  font-weight: 500;
  color: #c6c6c6;
  background: var(--surface);
  position: relative;
  z-index: 1;
  padding-block: 8px;
  min-width: 62px;
}
.protocol-line {
  display: none;
  position: absolute;
  left: 31px; top: 24px; bottom: 24px;
  width: 1px;
  background: var(--stroke);
}
.protocol-row .card { flex: 1; }

/* Rail timeline (About) */
.rail { position: relative; border-left: 1px solid var(--stroke); padding-left: 40px; display: flex; flex-direction: column; gap: 56px; }
.rail-item { position: relative; }
.rail-item::before {
  content: "";
  position: absolute;
  left: -47px; top: 4px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--primary);
}
.rail-num {
  font-size: 32px;
  line-height: 1;
  letter-spacing: -.05em;
  font-weight: 500;
  color: #c6c6c6;
  margin-bottom: 12px;
  display: block;
}
.rail-item h3 { margin-bottom: 12px; }

/* --------------------------------------------------------------------------
   13. Feature rows & lists
   -------------------------------------------------------------------------- */
.feature { display: flex; gap: 20px; align-items: flex-start; }
.feature h3 { margin-bottom: 6px; }

.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--secondary); }
.check-list svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }

/* Mock growth chart */
.chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 180px;
  padding-top: 16px;
}
.chart span {
  flex: 1;
  background: var(--surface-highest);
  border-radius: var(--r-sm) var(--r-sm) 0 0;
}
.chart span.on-1 { background: rgba(244, 146, 20, .4); }
.chart span.on-2 { background: rgba(244, 146, 20, .7); }
.chart span.on-3 { background: var(--brand); }

.kpi-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  border-bottom: 1px solid var(--stroke);
  padding-bottom: 24px;
}
.kpi .eyebrow { color: var(--secondary); margin-bottom: 8px; }

/* --------------------------------------------------------------------------
   14. FAQ
   -------------------------------------------------------------------------- */
.faq { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--stroke); }
.faq-item summary {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-num { color: var(--muted); font-weight: 500; font-variant-numeric: tabular-nums; flex-shrink: 0; }
.faq-item summary .caret { margin-left: auto; color: var(--secondary); transition: transform .3s ease; flex-shrink: 0; }
.faq-item[open] summary .caret { transform: rotate(180deg); }
.faq-item[open] summary { color: var(--primary); }
.faq-body { padding: 0 0 24px; color: var(--secondary); max-width: 78ch; }
.faq-plain .faq-item summary { font-size: 16px; }

/* --------------------------------------------------------------------------
   15. Forms
   -------------------------------------------------------------------------- */
.form-grid { display: grid; gap: 28px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 12px;
  line-height: 16px;
  letter-spacing: .1em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--on-surface-variant);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--stroke-strong);
  border-radius: 0;
  padding: 10px 0;
  font-size: 16px;
  transition: border-color .25s ease;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input::placeholder,
.field textarea::placeholder { color: #a1a1aa; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--primary);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2371717a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  padding-right: 28px;
  cursor: pointer;
}
.form-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
}
.webmail-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;               /* keep it a comfortable touch target */
  padding: 4px;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: .1em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--secondary);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 5px;
  transition: color .25s ease, text-decoration-color .25s ease;
}
.webmail-link svg { width: 16px; height: 16px; color: var(--primary); }
.webmail-link:hover { color: var(--primary); text-decoration-color: currentColor; }

.form-note { font-size: 14px; color: var(--muted); }
.form-note a { color: var(--primary); text-decoration: underline; }
.form-note a:hover { color: var(--primary-hover); }
.form-status { font-size: 14px; color: var(--primary); min-height: 20px; }

.info-list { display: grid; gap: 32px; }
.info-item .eyebrow { color: var(--muted); margin-bottom: 10px; }
.info-item a:hover { color: var(--primary); text-decoration: underline; }

/* --------------------------------------------------------------------------
   16. Dark CTA panel
   -------------------------------------------------------------------------- */
.cta-dark {
  background: var(--inverse-surface);
  color: var(--inverse-on-surface);
  border-radius: var(--r-xl);
  padding: 64px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-dark::before {
  content: "";
  position: absolute;
  inset: -50% -20% auto;
  height: 140%;
  background: radial-gradient(circle at 50% 0%, rgba(244,146,20,.18) 0%, transparent 62%);
  pointer-events: none;
}
.cta-dark > * { position: relative; z-index: 1; }
.cta-dark h2 { margin-bottom: 20px; }
.cta-dark p { color: #c6c6c6; max-width: 56ch; margin-inline: auto; margin-bottom: 40px; }

.cta-soft {
  background: var(--surface-container);
  border: 1px solid var(--stroke);
  border-radius: var(--r-xl);
  padding: 64px 32px;
  text-align: center;
}
.cta-soft h2 { margin-bottom: 20px; }
.cta-soft p { color: var(--secondary); max-width: 52ch; margin-inline: auto; margin-bottom: 40px; }

/* --------------------------------------------------------------------------
   17. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--surface-lowest);
  border-top: 1px solid var(--stroke);
  padding-top: 80px;
  padding-bottom: 32px;
}
.footer-grid { display: grid; gap: 48px; }
.footer-brand img { height: 30px; width: auto; margin-bottom: 20px; }
.footer-brand p { color: var(--muted); max-width: 34ch; }
.footer-col { display: flex; flex-direction: column; gap: 14px; }
.footer-col .eyebrow { color: var(--on-surface); }
.footer-col a { color: var(--muted); transition: color .2s ease; }
.footer-col a:hover { color: var(--on-surface); text-decoration: underline; }
.footer-col a[aria-current="page"] { color: var(--primary); }
.footer-bottom {
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid var(--stroke);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
  color: var(--muted);
  font-size: 14px;
}
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--stroke);
  border-radius: var(--r-full);
  color: var(--muted);
  transition: color .2s ease, border-color .2s ease;
}
.footer-social a:hover { color: var(--primary); border-color: var(--primary); }
.footer-social svg { width: 18px; height: 18px; }

/* --------------------------------------------------------------------------
   18. Scroll reveal
   -------------------------------------------------------------------------- */
/* Gated on the `js` class so the site is fully visible if scripting is
   unavailable — without this, every revealable block would stay at opacity 0. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
}
.js [data-reveal].in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }
[data-reveal-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
  .js .swash__line path { stroke-dashoffset: 0; animation: none; }
  html { scroll-behavior: auto; }
}

/* --------------------------------------------------------------------------
   19. Breakpoints
   -------------------------------------------------------------------------- */
@media (min-width: 640px) {
  .stats { grid-template-columns: repeat(4, 1fr); }
  .stats-3 { grid-template-columns: repeat(3, 1fr); }
  .form-grid.two { grid-template-columns: 1fr 1fr; }
  .cta-dark, .cta-soft { padding: 80px 48px; }
}

@media (min-width: 768px) {
  .steps, .steps-3, .steps-4 { grid-template-columns: repeat(2, 1fr); }
  .hero__plats { gap: 12px 34px; }
  .topbar { display: block; }
  .topbar__note { display: inline-flex; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; align-items: center; }
  .info-list { grid-template-columns: 1fr 1fr; }
  .info-list.stacked { grid-template-columns: 1fr; }
}

@media (min-width: 1024px) {
  .section    { padding-block: var(--section); }
  .section-sm { padding-block: 56px; }
  .hero       { padding-block: var(--section); }
  .site-footer { padding-top: var(--section); }

  .nav { display: flex; }
  .site-header .header-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .mobile-menu { display: none !important; }

  .col-4  { grid-column: span 4; }
  .col-5  { grid-column: span 5; }
  .col-6  { grid-column: span 6; }
  .col-7  { grid-column: span 7; }
  .col-8  { grid-column: span 8; }
  .start-3 { grid-column: 3 / span 8; }
  .start-7 { grid-column: 7 / span 6; }

  .bento-8 { grid-column: span 8; }
  .bento-6 { grid-column: span 6; }
  .bento-4 { grid-column: span 4; }
  .bento-cell { min-height: 320px; }

  .steps-3 { grid-template-columns: repeat(3, 1fr); }
  .steps-4 { grid-template-columns: repeat(4, 1fr); }
  .steps-4 .card { padding: 32px; }

  .protocol-num, .protocol-line { display: block; }
  .protocol { gap: 56px; }

  .hero--showcase { padding-block: 72px 104px; }
  .hero__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 48%); gap: 64px; }
  .hero__media { max-width: 100%; justify-self: end; }
  .dots { width: 150px; height: 150px; }
  .float-card small { display: block; }
  .float-card--a { top: 16%; right: -6%; }
  .float-card--b { bottom: 14%; left: -8%; }

  .cta-dark, .cta-soft { padding: 96px 64px; }
  .items-center { align-items: center; }
  .grid-12.items-center { align-items: center; }
}
