@charset "UTF-8";
/* ==========================================================================
   Cortera — cortera.in
   Same design system as superchat.in (hand-built, no framework), re-tokened
   for Cortera and set light-first: the page is white, colour is an accent.
     01 Tokens · 02 Reset · 03 Type · 04 Layout & tone · 05 Nav · 06 Buttons
     07 Motion · 08 Hero · 09 App mockup · 10 Scenes · 11 Products & doors
     12 Pricing · 13 Work items · 14 End CTA + footer · 15 A11y
   ========================================================================== */

/* -- 01  Tokens ---------------------------------------------------------- */
:root {
  --ink:      #0b0c14;
  --ink-soft: #14161f;
  --paper:    #ffffff;
  --paper-2:  #f4f5fa;
  --haze:     #eef0fb;
  --indigo:   #4f3cc9;
  --azure:    #3b6bf0;
  --cyan:     #0e9cb8;
  --grad: linear-gradient(96deg, var(--indigo) 0%, var(--azure) 52%, var(--cyan) 100%);

  --fg:      #0b0c14;
  --fg-mid:  #4b4f5c;
  --fg-dim:  #83879a;
  --rule:    rgba(11, 12, 20, .12);
  --rule-2:  rgba(11, 12, 20, .06);
  --surface: rgba(11, 12, 20, .035);

  --lift-1: 0 1px 2px rgba(16, 12, 40, .06), 0 2px 8px rgba(16, 12, 40, .05);
  --lift-2: 0 2px 4px rgba(16, 12, 40, .07), 0 8px 24px rgba(16, 12, 40, .08);
  --lift-3: 0 4px 8px rgba(16, 12, 40, .08), 0 18px 48px rgba(16, 12, 40, .11);
  --lift-4: 0 8px 16px rgba(16, 12, 40, .10), 0 36px 90px rgba(16, 12, 40, .16);

  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue",
          "Segoe UI Variable Display", "Segoe UI", Inter, system-ui, Roboto, Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", "Cascadia Mono", Menlo, monospace;

  --t-display: clamp(2.05rem, 8.8vw, 7.4rem);
  --t-h1:      clamp(1.8rem, 6.6vw, 5.2rem);
  --t-h2:      clamp(1.55rem, 5vw, 3.7rem);
  --t-h3:      clamp(1.3rem, 2vw, 1.85rem);
  --t-h4:      clamp(1.05rem, 1.35vw, 1.25rem);
  --t-lead:    clamp(1.06rem, 1.5vw, 1.38rem);
  --t-body:    clamp(0.97rem, 1.02vw, 1.06rem);
  --t-small:   clamp(0.84rem, 0.9vw, 0.9rem);
  --t-eyebrow: clamp(0.72rem, 0.76vw, 0.78rem);

  --wrap: min(92vw, 1480px);
  --gut: clamp(1.25rem, 5vw, 3.5rem);
  --sec: clamp(4rem, 8vh, 7rem);
  --nav-h: 56px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-io: cubic-bezier(.65, .02, .28, 1);
}

/* -- 02  Reset ----------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--paper); color: var(--fg);
  font-family: var(--sans); font-size: var(--t-body); line-height: 1.55; letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden;
}
img, svg, canvas, video { display: block; max-width: 100%; }
h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
table { border-collapse: collapse; }
::selection { background: var(--indigo); color: #fff; }
.skip { position: absolute; left: -999px; top: 0; background: #fff; padding: .6rem 1rem; z-index: 999; }
.skip:focus { left: 1rem; top: 1rem; }

/* -- 03  Typography ------------------------------------------------------ */
.display, .h1, .h2 { font-weight: 700; line-height: 1; letter-spacing: -0.042em; text-wrap: balance; }
.display { font-size: var(--t-display); }
.h1 { font-size: var(--t-h1); }
.h2 { font-size: var(--t-h2); letter-spacing: -0.036em; line-height: 1.04; }
.h3 { font-size: var(--t-h3); font-weight: 650; letter-spacing: -0.026em; line-height: 1.12; }
.h4 { font-size: var(--t-h4); font-weight: 650; letter-spacing: -0.018em; line-height: 1.25; }
.eyebrow { font-size: var(--t-eyebrow); font-weight: 600; letter-spacing: .215em; text-transform: uppercase; color: var(--fg-dim); }
.lead { font-size: var(--t-lead); line-height: 1.44; letter-spacing: -0.017em; color: var(--fg-mid); text-wrap: pretty; }
.small { font-size: var(--t-small); color: var(--fg-mid); }
.dim { color: var(--fg-dim); }
.grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; padding-bottom: .14em; margin-bottom: -.14em; }
.measure { max-width: 34ch; }
.measure-lg { max-width: 56ch; }
.act__eyebrow { margin-bottom: 1.1rem; color: var(--indigo); }
.act__h { margin-bottom: 1.25rem; }

/* -- 04  Layout & tone --------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.sec { padding-block: var(--sec); position: relative; }
.sec--tight { padding-block: clamp(3.5rem, 7vh, 6rem); }
[data-tone="light"]  { background: var(--paper); }
[data-tone="paper2"] { background: var(--paper-2); }
[data-tone="haze"]   { background: linear-gradient(180deg, var(--haze), #fbfbff 70%); }
[data-tone="lilac"]  { background: linear-gradient(165deg, #f3f0fd, #fbfaff 62%, #f6f3fd); }
[data-tone="mint"]   { background: linear-gradient(165deg, #edf7f6, #fbfdfd 60%, #f1f8f8); }
[data-tone="peach"]  { background: linear-gradient(165deg, #fdf3ec, #fffbf7 60%, #fdf2e9); }
[data-tone="sky"]    { background: linear-gradient(165deg, #ecf3fc, #fbfcff 62%, #eff5fd); }
[id] { scroll-margin-top: calc(var(--nav-h) + 1.25rem); }
.split { display: grid; gap: clamp(2rem, 5vw, 5rem); grid-template-columns: 1fr; }
@media (min-width: 900px) {
  .split { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); align-items: start; }
  .split .h1 { font-size: clamp(1.8rem, 3.5vw, 3.15rem); }
}
.cols { display: grid; gap: clamp(1.75rem, 3.4vw, 3.25rem); grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }

/* -- 05  Navigation ------------------------------------------------------ */
.nav { position: fixed; inset: 0 0 auto; z-index: 90; height: var(--nav-h); color: var(--ink);
       transition: background .45s var(--ease), box-shadow .45s var(--ease); }
.nav--stuck { background: rgba(255, 255, 255, .78); -webkit-backdrop-filter: saturate(180%) blur(20px); backdrop-filter: saturate(180%) blur(20px); box-shadow: 0 1px 0 var(--rule-2), var(--lift-1); }
.nav__in { height: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); display: flex; align-items: center; gap: clamp(1rem, 3vw, 2.5rem); }
.nav__brand { display: inline-flex; align-items: center; gap: .55rem; margin-right: auto; }
.nav__word { font-size: 1rem; font-weight: 650; letter-spacing: -0.022em; }
.mark { color: var(--indigo); }
.nav__list { display: none; align-items: center; gap: clamp(1rem, 2.4vw, 2rem); }
.nav__list a { font-size: .82rem; line-height: 1; display: inline-flex; align-items: center; font-weight: 500; opacity: .72; transition: opacity .25s; position: relative; }
.nav__list a:hover, .nav__list a[aria-current="page"] { opacity: 1; }
.nav__list a[aria-current="page"]::after { content: ""; position: absolute; inset: auto 0 -7px; height: 1.5px; background: currentColor; }
.nav__cta { display: none; font-size: .8rem; line-height: 1; align-items: center; gap: .4rem; font-weight: 600; padding: .48rem .95rem; border-radius: 999px; background: var(--ink); color: #fff; transition: transform .25s var(--ease), box-shadow .25s; }
.nav__cta:hover { transform: translateY(-1px); box-shadow: var(--lift-2); }
.nav__burger { width: 44px; height: 44px; margin-right: -.5rem; display: grid; align-content: center; gap: 6px; justify-items: end; padding-right: .5rem; }
.nav__burger span { display: block; width: 20px; height: 1.5px; background: currentColor; transition: transform .35s var(--ease), opacity .2s; }
.nav__burger[aria-expanded="true"] span:first-child { transform: translateY(3.75px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:last-child  { transform: translateY(-3.75px) rotate(-45deg); }
@media (min-width: 860px) { .nav__list { display: flex; } .nav__cta { display: inline-flex; } .nav__burger { display: none; } }
.sheet { position: fixed; inset: 0; z-index: 85; background: rgba(255, 255, 255, .96); -webkit-backdrop-filter: blur(28px); backdrop-filter: blur(28px);
         padding: calc(var(--nav-h) + 6vh) var(--gut) 0; color: var(--ink); opacity: 0; transition: opacity .35s var(--ease); }
.sheet[hidden] { display: none; }
.sheet--open { opacity: 1; }
.sheet__list { display: grid; gap: 1.1rem; }
.sheet__list a { font-size: clamp(1.75rem, 8vw, 2.5rem); font-weight: 650; letter-spacing: -0.035em; opacity: 0; transform: translateY(14px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.sheet--open .sheet__list a { opacity: 1; transform: none; }
.sheet--open .sheet__list li:nth-child(2) a { transition-delay: .05s; }
.sheet--open .sheet__list li:nth-child(3) a { transition-delay: .1s; }
.sheet--open .sheet__list li:nth-child(4) a { transition-delay: .15s; }
.sheet--open .sheet__list li:nth-child(5) a { transition-delay: .2s; }
body.is-locked { overflow: hidden; }

/* The mark's caret blinks — the app is waiting for you. Calm users get a still one. */
.mark .mark__caret { animation: caret 1.1s steps(1) infinite; transform-origin: center; }
@keyframes caret { 50% { opacity: 0; } }

/* -- 06  Buttons ---------------------------------------------------------- */
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .82rem 1.6rem; border-radius: 999px; font-size: .92rem; font-weight: 600; letter-spacing: -0.012em;
       border: 1px solid transparent; transition: transform .3s var(--ease), background-color .3s, border-color .3s, box-shadow .3s; will-change: transform; }
.btn:hover { transform: translateY(-2px); }
.btn--grad { background: var(--grad); color: #fff; box-shadow: var(--lift-3), 0 6px 22px rgba(79, 60, 201, .3); }
.btn--grad:hover { box-shadow: var(--lift-4), 0 10px 30px rgba(79, 60, 201, .4); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--ghost { border-color: var(--rule); color: var(--fg); background: rgba(255, 255, 255, .6); }
.btn--ghost:hover { border-color: currentColor; }
.btn--wide { width: 100%; justify-content: center; }
.arrowlink { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; font-size: .95rem; color: var(--indigo); }
.arrowlink::after { content: "›"; font-size: 1.25em; line-height: 0; transform: translateY(-.02em); transition: transform .3s var(--ease); }
.arrowlink:hover::after { transform: translate(4px, -.02em); }
.btnrow { display: flex; flex-wrap: wrap; gap: .8rem; }

/* Download buttons: one per OS, the primary action of the whole site. */
.dl { display: flex; flex-wrap: wrap; gap: .7rem; }
.dl__btn { display: inline-grid; grid-template-columns: auto 1fr; align-items: center; gap: .3rem .75rem; padding: .7rem 1.1rem .7rem .95rem; border-radius: 14px;
           border: 1px solid var(--rule); background: rgba(255, 255, 255, .8); box-shadow: var(--lift-1); transition: transform .3s var(--ease), box-shadow .3s, border-color .3s; }
.dl__btn:hover { transform: translateY(-2px); box-shadow: var(--lift-3); border-color: var(--indigo); }
.dl__btn svg { grid-row: span 2; width: 22px; height: 22px; color: var(--indigo); }
.dl__btn b { font-size: .92rem; font-weight: 650; letter-spacing: -0.012em; }
.dl__btn small { font-size: .72rem; color: var(--fg-dim); }
.dl--dark .dl__btn { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .18); color: #fff; }
.dl--dark .dl__btn svg { color: #fff; }
.dl--dark .dl__btn small { color: rgba(255, 255, 255, .6); }

/* -- 07  Motion / reveal --------------------------------------------------- */
.r { display: block; }
.js .r { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.js .is-in .r, .js .r.is-in { opacity: 1; transform: none; }
.js .is-in .r:nth-child(2) { transition-delay: .08s; }
.js .is-in .r:nth-child(3) { transition-delay: .16s; }
.js .is-in .r:nth-child(4) { transition-delay: .24s; }
.js .fade { opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease) .1s, transform .8s var(--ease) .1s; }
.js .fade.is-in { opacity: 1; transform: none; }
.js [data-stagger] > * { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js [data-stagger].is-staggered > * { opacity: 1; transform: none; }
.js [data-stagger].is-staggered > *:nth-child(2) { transition-delay: .07s; }
.js [data-stagger].is-staggered > *:nth-child(3) { transition-delay: .14s; }
.js [data-stagger].is-staggered > *:nth-child(4) { transition-delay: .21s; }
.js [data-stagger].is-staggered > *:nth-child(5) { transition-delay: .28s; }
.js [data-stagger].is-staggered > *:nth-child(6) { transition-delay: .35s; }

/* -- 08  Hero ------------------------------------------------------------- */
.hero { position: relative; min-height: min(100svh, 54rem); display: grid; align-content: center; overflow: hidden;
        padding-block: calc(var(--nav-h) + 3rem) clamp(3rem, 8vh, 5rem); background: var(--paper); }
.hero--page { min-height: auto; padding-bottom: clamp(1.5rem, 4vh, 2.5rem); }
.hero__glow { position: absolute; width: min(150vw, 1500px); aspect-ratio: 1; left: 62%; top: 42%; translate: -50% -50%;
              background: radial-gradient(circle, rgba(79, 60, 201, .16), rgba(14, 156, 184, .07) 42%, transparent 66%); pointer-events: none; animation: breathe 13s var(--ease-io) infinite; }
@keyframes breathe { 0%, 100% { transform: scale(1); opacity: .85; } 50% { transform: scale(1.12); opacity: 1; } }
.hero .wrap { position: relative; z-index: 2; }
@media (min-width: 1200px) { .hero--scene .wrap { max-width: 88rem; } }
.hero__eyebrow { margin-bottom: clamp(1.25rem, 3vh, 2rem); color: var(--indigo); }
.hero__h { font-size: clamp(2.05rem, min(6.4vw, 12svh), 5.6rem); margin-bottom: clamp(1.5rem, 4vh, 2.25rem); }
.hero__h .r:nth-child(2) { color: var(--fg-mid); }
.hero__sub { max-width: 46ch; margin-bottom: clamp(1.75rem, 4vh, 2.5rem); }
.hero__grid { display: grid; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
@media (min-width: 1000px) { .hero__grid--split { grid-template-columns: minmax(0, 1fr) minmax(20rem, 1fr); } }
.hero__meta { margin-top: 1.25rem; display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; font-size: var(--t-small); color: var(--fg-dim); }
.hero__meta span::before { content: "—"; margin-right: .5rem; opacity: .5; }
.hero__foot { position: absolute; inset: auto 0 clamp(1.5rem, 4vh, 2.75rem); z-index: 2; display: flex; justify-content: center; transition: opacity .35s var(--ease); }
.hero__foot.is-gone { opacity: 0; pointer-events: none; }
.scrollcue { display: grid; justify-items: center; gap: .6rem; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--fg-dim); }
.scrollcue i { width: 1px; height: 34px; background: linear-gradient(180deg, var(--fg-dim), transparent); animation: cue 2.4s var(--ease-io) infinite; transform-origin: top; }
@keyframes cue { 0% { transform: scaleY(0); opacity: 0; } 40% { transform: scaleY(1); opacity: 1; } 100% { transform: scaleY(1); opacity: 0; } }
@media (max-height: 700px) { .hero { padding-top: calc(var(--nav-h) + 1.5rem); } .hero__foot { display: none; } }

/* -- 09  The app mockup ---------------------------------------------------- */
.ctd { background: #fff; border: 1px solid var(--rule); border-radius: 20px; box-shadow: 0 5px 0 rgba(35, 40, 115, .055), var(--lift-4); overflow: hidden;
       display: grid; grid-template-columns: 172px 1fr; font-size: .86rem; }
@media (max-width: 560px) { .ctd { grid-template-columns: 1fr; } .ctd-side { display: none; } }
.ctd-side { background: var(--paper-2); border-right: 1px solid var(--rule-2); padding: .9rem .75rem; display: grid; align-content: start; gap: .35rem; }
.ctd-side__new { font-size: .76rem; color: var(--fg-dim); border: 1px dashed var(--rule); border-radius: 8px; padding: .45rem; text-align: center; margin-bottom: .35rem; }
.ctd-side__item { font-size: .76rem; color: var(--fg-mid); padding: .4rem .5rem; border-radius: 7px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ctd-side__item.is-active { background: #fff; color: var(--fg); box-shadow: var(--lift-1); }
.ctd-main { padding: 1.1rem 1.2rem 1.25rem; min-height: 350px; display: flex; flex-direction: column; gap: .9rem; }
.ctd-top { display: flex; align-items: center; gap: .6rem; font-size: .74rem; color: var(--fg-dim); }
.ctd-top__pill { background: var(--haze); border-radius: 999px; padding: .28rem .7rem; display: inline-flex; align-items: center; gap: .35rem; color: var(--indigo); font-weight: 600; }
.ctd-top__pill svg { width: 13px; height: 13px; }
.ctd-user { align-self: flex-end; max-width: 88%; background: var(--haze); border-radius: 14px 14px 4px 14px; padding: .65rem 1rem; min-height: 1.4em; color: var(--fg); }
.ctd-cursor { display: inline-block; width: 2px; height: 1em; background: var(--indigo); vertical-align: -2px; animation: caret 1s steps(1) infinite; }
.ctd-assist { align-self: flex-start; max-width: 92%; background: #fff; border: 1px solid var(--rule); border-radius: 4px 14px 14px 14px; padding: .9rem 1rem; box-shadow: var(--lift-1); }
.ctd-steps { display: grid; gap: .5rem; margin: 0 0 .3rem; }
.ctd-step { display: flex; align-items: center; gap: .6rem; color: var(--fg-dim); transition: color .3s; }
.ctd-step__dot { width: 16px; height: 16px; border-radius: 50%; border: 2px solid var(--rule); flex: 0 0 auto; display: grid; place-items: center; transition: all .3s ease; }
.ctd-step.is-active { color: var(--fg); }
.ctd-step.is-active .ctd-step__dot { border-color: var(--azure); box-shadow: 0 0 0 4px rgba(59, 107, 240, .14); }
.ctd-step.is-done { color: var(--fg); }
.ctd-step.is-done .ctd-step__dot { background: var(--grad); border-color: transparent; }
.ctd-step.is-done .ctd-step__dot::after { content: ""; width: 5px; height: 8px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg) translate(-1px, -1px); }
.ctd-result { opacity: 0; transform: translateY(8px); transition: opacity .5s ease, transform .5s ease; margin-top: .4rem; background: var(--haze); border: 1px solid rgba(79, 60, 201, .2);
              border-radius: 12px; padding: .8rem 1rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.ctd-result.is-in { opacity: 1; transform: none; }
.ctd-result__name { font-weight: 650; }
.ctd-result__url { font-size: .74rem; color: var(--fg-dim); font-family: var(--mono); }
.ctd-result__open { font-size: .78rem; background: var(--grad); color: #fff; padding: .4rem .85rem; border-radius: 8px; font-weight: 600; white-space: nowrap; }

/* -- 10  Scene primitives (drawn, animated, never stock) --------------------- */
.hs-line { fill: none; stroke: currentColor; stroke-opacity: .17; stroke-width: 1; }
.hs-edge { fill: none; stroke: currentColor; stroke-opacity: .34; stroke-width: 1.3; }
.hs-dot  { fill: currentColor; fill-opacity: .5; }
.hs-cell { animation: hs-cell 3.6s var(--ease-io) infinite; }
.hs-ring { animation: hs-ring 4.8s var(--ease-io) infinite; stroke-opacity: .38; transform-box: fill-box; transform-origin: center; }
.hs-flow { animation: hs-flow 3.2s linear infinite; }
.hs-fill { transform-box: fill-box; transform-origin: left center; animation: hs-fill 4.4s var(--ease-io) infinite; }
.hs-ants { stroke-dasharray: 7 7; animation: hs-ants 2.4s linear infinite; }
.hs-sweep { animation: hs-sweep 7s linear infinite; transform-box: fill-box; transform-origin: center; }
.hs-bob { animation: hs-bob 5.2s var(--ease-io) infinite; }
.hs-twinkle { animation: hs-cell 5s var(--ease-io) infinite; }
@keyframes hs-cell { 0%, 100% { opacity: .14; } 50% { opacity: 1; } }
@keyframes hs-ring { 0% { opacity: .5; transform: scale(.5); } 100% { opacity: 0; transform: scale(1.35); } }
@keyframes hs-flow { 0% { opacity: 0; transform: translateX(0); } 14% { opacity: 1; } 86% { opacity: 1; } 100% { opacity: 0; transform: translateX(var(--run, 150px)); } }
@keyframes hs-fill { 0%, 8% { transform: scaleX(0); opacity: .35; } 45%, 78% { transform: scaleX(1); opacity: 1; } 100% { transform: scaleX(1); opacity: .35; } }
@keyframes hs-ants { to { stroke-dashoffset: -28; } }
@keyframes hs-sweep { to { transform: rotate(360deg); } }
@keyframes hs-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
.hs-lab { fill: currentColor; fill-opacity: .55; font-size: 11px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; }
.hs-val { font-size: 18px; font-weight: 700; letter-spacing: -.01em; }
.hs-mono { fill: currentColor; fill-opacity: .62; font-family: var(--mono); font-size: 12px; }
.secscene { margin: clamp(2.25rem, 5vh, 3.5rem) 0 0; display: grid; gap: clamp(1rem, 2.5vh, 1.5rem); }
.secscene svg { display: block; width: 100%; max-width: 58rem; height: auto; overflow: visible; }
.secscene__cap { display: grid; gap: .5rem; max-width: 62ch; font-size: .97rem; line-height: 1.55; }
.secscene__cap span { opacity: .8; }
.secscene__cap b { font-weight: 650; opacity: 1; }

/* -- 11  Products & doors --------------------------------------------------- */
.prod { border-top: 1px solid var(--rule); }
.prod__in { display: grid; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; padding-block: clamp(3.5rem, 8vh, 7rem); }
@media (min-width: 900px) { .prod__in { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } .prod--flip .prod__art { order: -1; } }
.prod__eyebrow { margin-bottom: 1rem; color: var(--indigo); }
.prod__name { margin-bottom: .75rem; }
.prod__line { font-size: var(--t-lead); font-weight: 600; letter-spacing: -0.02em; margin-bottom: 1rem; }
.prod__body { color: var(--fg-mid); max-width: 46ch; }
.prod__specs { margin-top: 1.75rem; display: grid; overflow: hidden; border: 1px solid var(--rule); border-radius: 16px; background: rgba(255, 255, 255, .72);
               box-shadow: 0 5px 0 rgba(35, 40, 115, .055), var(--lift-2); }
.prod__specs div { display: flex; align-items: baseline; justify-content: space-between; gap: 1.5rem; min-width: 0; padding: 1rem 1.15rem; border-top: 1px solid var(--rule-2); font-size: var(--t-small); }
.prod__specs div:first-child { border-top: 0; }
.prod__specs span:first-child { color: var(--fg-dim); }
.prod__specs span { min-width: 0; overflow-wrap: anywhere; }
.prod__specs span:last-child { font-weight: 600; text-align: right; }
@media (max-width: 520px) { .prod__specs div { display: grid; gap: .25rem; padding: .9rem 1rem; } .prod__specs span:last-child { text-align: left; } }
.prod__art { position: relative; aspect-ratio: 4 / 3; border-radius: 20px; overflow: hidden; display: grid; place-items: center; color: var(--ink);
             background: linear-gradient(155deg, #f4f2fd, #eef2fd 55%, #eaf6f9); border: 1px solid var(--rule-2); box-shadow: var(--lift-2); }
.prod__art svg { width: 78%; height: auto; overflow: visible; }

.doors { display: grid; gap: 1px; background: var(--rule); border-block: 1px solid var(--rule); }
@media (min-width: 860px) { .doors { grid-template-columns: repeat(3, 1fr); } }
.door { background: var(--paper); padding: clamp(2rem, 3.4vw, 3rem) clamp(1.5rem, 2.6vw, 2.4rem); display: grid; align-content: start; gap: .9rem; transition: background .4s; }
.door:hover { background: var(--paper-2); }
.door__n { font-size: var(--t-eyebrow); letter-spacing: .2em; font-weight: 600; }
.door:nth-child(1) .door__n { color: var(--cyan); }
.door:nth-child(2) .door__n { color: var(--indigo); }
.door:nth-child(3) .door__n { color: var(--azure); }
.door p { color: var(--fg-mid); font-size: var(--t-small); }
.door .price__is { margin-top: .25rem; }

/* What's in the box — a single spec strip under the products. */
.strip { display: grid; gap: 1px; background: var(--rule); border: 1px solid var(--rule); border-radius: 18px; overflow: hidden; margin-top: clamp(2rem, 5vh, 3rem); }
@media (min-width: 720px) { .strip { grid-template-columns: repeat(4, 1fr); } }
.strip div { background: var(--paper); padding: 1.25rem 1.3rem; display: grid; gap: .3rem; }
.strip b { font-size: .95rem; font-weight: 650; letter-spacing: -0.012em; }
.strip span { font-size: var(--t-small); color: var(--fg-dim); }

/* -- 12  Pricing ------------------------------------------------------------ */
.price__from { display: block; font-size: var(--t-eyebrow); font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--fg-dim); margin-bottom: .3rem; }
.price__is { font-size: clamp(2rem, 4.6vw, 3.2rem); font-weight: 700; letter-spacing: -0.045em; color: var(--indigo); line-height: 1; }
.price__is small { font-size: .38em; font-weight: 600; letter-spacing: -0.01em; color: var(--fg-dim); }
.price__note { margin-top: clamp(1.75rem, 4vh, 2.5rem); max-width: 62ch; font-size: var(--t-small); color: var(--fg-dim); }
.tiers { display: grid; gap: clamp(1rem, 2vw, 1.5rem); margin-top: clamp(2.5rem, 6vh, 4rem); }
@media (min-width: 860px) { .tiers { grid-template-columns: repeat(3, 1fr); } }
.tier { position: relative; background: #fff; border: 1px solid var(--rule); border-radius: 22px; padding: clamp(1.6rem, 2.6vw, 2.3rem); display: grid; align-content: start; gap: 1rem;
        transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.tier:hover { transform: translateY(-3px); box-shadow: var(--lift-4); }
.tier--hot { border-color: transparent; box-shadow: 0 0 0 2px var(--indigo), var(--lift-3); }
.tier__flag { position: absolute; top: -.75rem; left: 50%; translate: -50% 0; background: var(--grad); color: #fff; font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: .3rem .8rem; border-radius: 999px; }
.tier__name { font-size: var(--t-h4); font-weight: 650; }
.tier__tag { color: var(--fg-mid); font-size: var(--t-small); }
.tier ul { display: grid; gap: .55rem; margin-top: .25rem; }
.tier li { position: relative; padding-left: 1.4rem; font-size: var(--t-small); }
.tier li::before { content: ""; position: absolute; left: 0; top: .5em; width: 7px; height: 7px; border-radius: 50%; background: var(--grad); }
.tier .btn { margin-top: .5rem; }
.matrix { width: 100%; margin-top: clamp(2.5rem, 6vh, 4rem); font-size: var(--t-small); }
.matrix th, .matrix td { padding: .9rem 1rem; border-top: 1px solid var(--rule-2); text-align: left; vertical-align: top; }
.matrix thead th { border-top: 0; font-size: var(--t-eyebrow); letter-spacing: .16em; text-transform: uppercase; color: var(--fg-dim); font-weight: 600; }
.matrix th:not(:first-child), .matrix td:not(:first-child) { text-align: center; width: 15%; }
.matrix tbody th { font-weight: 500; color: var(--fg); }
.matrix .yes::before { content: ""; display: inline-block; width: 7px; height: 12px; border: solid var(--indigo); border-width: 0 2px 2px 0; transform: rotate(45deg); }
.matrix .no { color: var(--fg-dim); }
.matrix .no::before { content: "—"; }
.matrix__group td, .matrix__group th { padding-top: 1.6rem; font-size: var(--t-eyebrow); letter-spacing: .16em; text-transform: uppercase; color: var(--fg-dim); border-top: 0; }
@media (max-width: 640px) { .matrix th, .matrix td { padding: .7rem .5rem; } .matrix th:not(:first-child), .matrix td:not(:first-child) { width: 18%; } }

/* -- 13  Work items --------------------------------------------------------- */
.work__item { border-top: 1px solid var(--rule); padding-top: 1.4rem; }
.work__item .num { display: block; font-size: var(--t-eyebrow); letter-spacing: .2em; color: var(--indigo); margin-bottom: 1rem; font-weight: 600; }
.work__item p { color: var(--fg-mid); margin-top: .6rem; font-size: var(--t-small); }
.person { background: #fff; padding: clamp(1.5rem, 2.6vw, 2.2rem); border-radius: 18px; border: 1px solid var(--rule-2); transition: box-shadow .35s var(--ease), transform .35s var(--ease); }
.person:hover { box-shadow: var(--lift-4); transform: translateY(-3px); }
.person .eyebrow { color: var(--indigo); margin-bottom: .7rem; }
.person p { color: var(--fg-mid); font-size: var(--t-small); margin-top: .6rem; }
.people { display: grid; gap: clamp(.9rem, 1.6vw, 1.25rem); }
@media (min-width: 700px) { .people { grid-template-columns: repeat(2, 1fr); } }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.chip { font-size: .74rem; font-weight: 600; letter-spacing: .01em; padding: .38rem .8rem; border-radius: 999px; border: 1px solid var(--rule); color: var(--fg-mid); background: rgba(255, 255, 255, .7); }
.chip b { color: var(--fg); font-weight: 650; }

/* -- 14  End CTA + footer --------------------------------------------------- */
.endcta { padding-block: clamp(6rem, 16vh, 12rem); }
.endcta__h { margin-bottom: clamp(2rem, 5vh, 3.25rem); }
.endcta__act { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.endcta__note { margin-top: 1.75rem; font-size: var(--t-small); color: var(--fg-dim); max-width: 46ch; }
.foot { padding-block: clamp(3.5rem, 7vh, 5.5rem) 2.25rem; border-top: 1px solid var(--rule); background: var(--paper-2); }
.foot__grid { display: grid; gap: clamp(2rem, 3.5vw, 3rem); }
@media (min-width: 640px) { .foot__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .foot__grid { grid-template-columns: 1.5fr repeat(3, 1fr); } }
.foot__tag { margin-top: 1.1rem; color: var(--fg-dim); font-size: var(--t-small); max-width: 26ch; }
.foot__h { font-size: var(--t-eyebrow); letter-spacing: .2em; text-transform: uppercase; color: var(--fg-dim); font-weight: 600; margin-bottom: 1.1rem; }
.foot__col ul { display: grid; gap: .65rem; }
.foot__col a { font-size: var(--t-small); color: var(--fg-mid); transition: color .25s; }
.foot__col a:hover { color: var(--fg); }
.foot__caveat { margin-top: clamp(2.5rem, 6vh, 4rem); padding-top: 1.5rem; border-top: 1px solid var(--rule-2); max-width: 78ch; font-size: .78rem; line-height: 1.65; color: var(--fg-dim); }
.foot__base { margin-top: 1.75rem; display: flex; flex-wrap: wrap; gap: .75rem 2.5rem; justify-content: space-between; align-items: center; font-size: .78rem; color: var(--fg-dim); }

/* -- 15  Accessibility ------------------------------------------------------ */
:focus-visible { outline: 2px solid var(--indigo); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  .js .r, .js .fade, .js [data-stagger] > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hs-cell, .hs-ring, .hs-flow, .hs-fill, .hs-ants, .hs-sweep, .hs-bob, .hs-twinkle, .hero__glow, .scrollcue i, .mark .mark__caret, .ctd-cursor { animation: none !important; }
}
