/* ============================================================================
   VITARY · BENTO — the native design language
   ----------------------------------------------------------------------------
   Thesis: the product is a lacquered bento box. Every idea lives in a modular
   compartment (a "tile") packed into a precise 12-column grid with hairline
   dividers. Editorial Fraunces-italic display, grotesque Plus Jakarta UI, and
   JetBrains "spec" labels. Warm paper, deep-teal ink, one breath of coral.
   Bento replaces skeuomorphism: conversations & dashboards ARE tiles.
   ==========================================================================*/

:root {
  /* —— Brand (packages/config vitaTheme) —— */
  --teal:        #0A7B6E;
  --teal-rgb:    10,123,110;
  --teal-2:      #12A090;
  --teal-2-rgb:  18,160,144;
  --teal-deep:   #063F38;
  --teal-ink:    #0A2A26;
  --coral:       #D96C4A;
  --coral-rgb:   217,108,74;
  --coral-soft:  #F2A98A;

  /* —— Bento surfaces —— */
  --paper:   #F4F1EB;   /* warm lacquer tray */
  --paper-2: #EDE8DF;
  --tile:    #FFFFFF;   /* compartment fill */
  --tile-2:  #FBFAF7;
  --ink:     #16211E;   /* primary text */
  --ink-2:   #55635F;   /* secondary text */
  --ink-3:   #8B968F;   /* tertiary / mono labels */
  --hair:    rgba(22,33,30,0.09);   /* divider between compartments */
  --hair-2:  rgba(22,33,30,0.14);
  --on-dark:      #F1EEE7;
  --on-dark-2:    rgba(241,238,231,0.66);

  /* —— Type —— */
  --display: "Fraunces", ui-serif, Georgia, serif;
  --sans:    "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --mono:    "JetBrains Mono", "SF Mono", ui-monospace, monospace;

  /* —— Geometry —— */
  --r-tile: 24px;
  --r-in:   15px;
  --r-sm:   10px;
  --pill:   999px;
  --gap:    16px;
  --edge:   max(20px, 4vw);
  --maxw:   1200px;

  /* —— Motion —— */
  --ease:     cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* —— Elevation —— */
  --lift-1: 0 1px 2px rgba(22,33,30,0.04), 0 8px 24px -14px rgba(22,33,30,0.18);
  --lift-2: 0 2px 4px rgba(22,33,30,0.05), 0 20px 50px -24px rgba(22,33,30,0.28);
  --lift-teal: 0 24px 60px -28px rgba(var(--teal-rgb),0.5);
}

/* ---------- reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: -0.011em;
  color: var(--ink-2);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4,p { margin: 0; }
::selection { background: rgba(var(--teal-rgb),0.18); color: var(--teal-deep); }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 4px; }
.sr { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; }

/* ---------- lacquer background grain (whole tray) ---------- */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  background:
    radial-gradient(120% 80% at 12% -10%, rgba(var(--teal-2-rgb),0.10), transparent 55%),
    radial-gradient(90% 70% at 100% 0%, rgba(var(--coral-rgb),0.07), transparent 50%);
}
main, nav.nav, footer { position: relative; z-index: 1; }

/* ---------- ambient bento shapes (decorative field) ---------- */
#deco { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.deco { position: absolute; will-change: transform; opacity: 0; animation: deco-fade 1.4s var(--ease-out) forwards; }
@keyframes deco-fade { to { opacity: 1; } }
.deco-sq { width: 138px; height: 138px; border-radius: 26px; border: 1.5px solid rgba(var(--teal-rgb),0.20); }
.deco-sq--coral { border-color: rgba(var(--coral-rgb),0.22); border-radius: 32px; }
.deco-ring { width: 104px; height: 104px; border-radius: 50%; border: 1.5px solid rgba(var(--coral-rgb),0.22); }
.deco-ring--teal { border-color: rgba(var(--teal-rgb),0.20); }
.deco-plus { width: 42px; height: 42px; }
.deco-plus::before, .deco-plus::after { content: ""; position: absolute; background: rgba(var(--teal-rgb),0.28); border-radius: 2px; }
.deco-plus--coral::before, .deco-plus--coral::after { background: rgba(var(--coral-rgb),0.30); }
.deco-plus::before { left: 50%; top: 0; width: 2px; height: 100%; transform: translateX(-50%); }
.deco-plus::after { top: 50%; left: 0; height: 2px; width: 100%; transform: translateY(-50%); }
.deco-dots { width: 120px; height: 120px; background-image: radial-gradient(rgba(var(--teal-rgb),0.30) 1.5px, transparent 1.7px); background-size: 17px 17px; }
.deco-bar { width: 168px; height: 2px; border-radius: 2px; background: linear-gradient(90deg, rgba(var(--coral-rgb),0.36), transparent); }

.s1 { top: 15%; left: 4%; animation: floatA 23s ease-in-out infinite; }
.s2 { top: 24%; right: 6%; animation: floatB 27s ease-in-out infinite; }
.s3 { top: 52%; left: 7%; animation: floatC 19s ease-in-out infinite; }
.s4 { bottom: 16%; right: 9%; animation: floatA 31s ease-in-out infinite; }
.s5 { bottom: 26%; left: 12%; animation: floatB 25s ease-in-out infinite; }
.s6 { top: 42%; right: 14%; animation: floatC 29s ease-in-out infinite; }
.s7 { top: 68%; left: 42%; animation: floatA 34s ease-in-out infinite; }
.s8 { top: 8%; left: 46%; animation: floatB 21s ease-in-out infinite; }
@keyframes floatA { 0%,100%{transform:translate(0,0) rotate(0deg)} 50%{transform:translate(18px,-26px) rotate(9deg)} }
@keyframes floatB { 0%,100%{transform:translate(0,0) rotate(0deg)} 50%{transform:translate(-24px,18px) rotate(-11deg)} }
@keyframes floatC { 0%,100%{transform:translate(0,0) rotate(0deg)} 50%{transform:translate(14px,22px) rotate(6deg)} }
@media (max-width: 760px){ .s4, .s6, .s7, .s8 { display: none; } }

/* ============================================================================
   PRIMITIVES
   ==========================================================================*/

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--edge); }

/* — spec label: the signature mono kicker — */
.spec {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--mono);
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3);
}
.spec::before {
  content: ""; width: 6px; height: 6px; border-radius: 2px;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(var(--coral-rgb),0.12);
}
.spec--teal { color: var(--teal); }
.spec--teal::before { background: var(--teal); box-shadow: 0 0 0 4px rgba(var(--teal-rgb),0.12); }
.spec--light { color: var(--on-dark-2); }

/* — display type — */
.display {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.04;
  color: var(--ink);
  text-wrap: balance;
}
.em { font-family: var(--display); font-style: italic; font-weight: 400; letter-spacing: -0.01em; }
.em-teal { font-family: var(--display); font-style: italic; font-weight: 400; color: var(--teal); letter-spacing: -0.01em; }
.em-coral{ font-family: var(--display); font-style: italic; font-weight: 400; color: var(--coral); letter-spacing: -0.01em; }

.lead { font-size: 1.075rem; line-height: 1.6; color: var(--ink-2); letter-spacing: -0.01em; }

/* — buttons — */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  font-family: var(--sans); font-weight: 600; font-size: 0.95rem;
  letter-spacing: -0.01em;
  padding: 0.85em 1.4em; border-radius: var(--pill);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s;
  will-change: transform;
}
.btn svg { width: 1em; height: 1em; }
.btn--primary { background: var(--teal); color: #fff; box-shadow: var(--lift-teal); }
.btn--primary:hover { transform: translateY(-2px); background: var(--teal-deep); }
.btn--ghost { background: rgba(22,33,30,0.03); color: var(--ink); box-shadow: inset 0 0 0 1px var(--hair-2); }
.btn--ghost:hover { background: rgba(22,33,30,0.06); transform: translateY(-1px); }
.btn--ondark { background: rgba(255,255,255,0.1); color: #fff; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.22); backdrop-filter: blur(8px); }
.btn--ondark:hover { background: rgba(255,255,255,0.18); transform: translateY(-1px); }
.btn--lg { padding: 1em 1.7em; font-size: 1rem; }
.btn--block { width: 100%; }

/* — the tile: a bento compartment — */
.tile {
  position: relative;
  background: var(--tile);
  border-radius: var(--r-tile);
  box-shadow: inset 0 0 0 1px var(--hair), var(--lift-1);
  padding: clamp(1.4rem, 2.4vw, 2.1rem);
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.tile--pad0 { padding: 0; }
.tile--ghost { background: linear-gradient(180deg, var(--tile-2), var(--paper-2)); }
.tile--hover { cursor: pointer; }
.tile--hover::after { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; opacity: 0;
  background: linear-gradient(130deg, transparent 30%, rgba(255,255,255,0.5) 48%, transparent 62%); transition: opacity .6s var(--ease); }
.tile--hover:hover { transform: translateY(-4px); box-shadow: inset 0 0 0 1px var(--hair-2), var(--lift-2); }
.tile--hover:hover::after { opacity: 1; }
.tile--dark {
  color: var(--on-dark);
  background:
    radial-gradient(120% 120% at 85% -20%, rgba(var(--teal-2-rgb),0.55), transparent 60%),
    radial-gradient(90% 90% at 0% 120%, rgba(var(--coral-rgb),0.25), transparent 55%),
    linear-gradient(155deg, #0C3A34, var(--teal-ink) 70%);
  box-shadow: var(--lift-2);
}
.tile--dark .tspec, .tile--dark .lead { color: var(--on-dark-2); }
.tile--teal {
  color: #fff;
  background: radial-gradient(120% 140% at 100% 0%, var(--teal-2), var(--teal) 55%, var(--teal-deep));
  box-shadow: var(--lift-teal);
}

/* tile eyebrow inside compartments */
.t-eyebrow { display: flex; align-items: center; gap: .55em; font-family: var(--mono); font-size: .68rem; letter-spacing:.14em; text-transform: uppercase; color: var(--ink-3); }
.t-title { font-family: var(--sans); font-weight: 700; letter-spacing: -0.02em; color: var(--ink); font-size: 1.15rem; line-height: 1.2; }
.tile--dark .t-title { color: #fff; }
.t-body { margin-top: .5rem; font-size: .96rem; line-height: 1.55; color: var(--ink-2); }
.tile--dark .t-body { color: var(--on-dark-2); }

/* ============================================================================
   BENTO GRID
   ==========================================================================*/
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: var(--gap); }
.c3{grid-column:span 3}.c4{grid-column:span 4}.c5{grid-column:span 5}
.c6{grid-column:span 6}.c7{grid-column:span 7}.c8{grid-column:span 8}
.c12{grid-column:span 12}
.r2{grid-row:span 2}

/* ============================================================================
   SECTION SCAFFOLD
   ==========================================================================*/
.section { padding-block: clamp(4.5rem, 9vw, 8rem); }
.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .spec { margin-bottom: 1rem; }
.section-head h2 { font-size: clamp(2rem, 4.2vw, 3.25rem); }
.section-head .lead { margin-top: 1.1rem; }
.section-head.center .spec { justify-content: center; }

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.d1{transition-delay:.08s}.d2{transition-delay:.16s}.d3{transition-delay:.24s}
.d4{transition-delay:.32s}.d5{transition-delay:.4s}.d6{transition-delay:.48s}
@media (prefers-reduced-motion: reduce){
  .reveal{opacity:1;transform:none;transition:none}
  html{scroll-behavior:auto}
  *{animation-duration:.001ms!important;animation-iteration-count:1!important}
}

/* ============================================================================
   NAV
   ==========================================================================*/
nav.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; gap: 1rem;
  height: 62px; padding-inline: var(--edge);
  transition: background .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s;
}
nav.nav.solid {
  background: rgba(244,241,235,0.72);
  backdrop-filter: saturate(180%) blur(18px);
  box-shadow: 0 1px 0 var(--hair);
}
.nav-home { display: inline-flex; align-items: center; gap: .5rem; }
.nav-mono { width: 26px; height: 26px; }
.wordmark { font-family: var(--display); font-style: italic; font-weight: 300; font-size: 1.25rem; letter-spacing: -0.025em; line-height: 1; color: var(--ink); position: relative; }
.wordmark .dot { position: relative; display: inline-block; }
.wordmark .dot::after { content: ""; position: absolute; border-radius: 50%; background: var(--coral); width: 0.17em; height: 0.17em; top: 0.14em; left: 82%; transform: translateX(-50%); }
.nav-links { display: flex; align-items: center; gap: .35rem; margin-inline: auto; }
.nav-links-h { display: none; }
.nav-links a {
  font-size: .875rem; font-weight: 500; color: var(--ink-2);
  padding: .45rem .7rem; border-radius: var(--pill);
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--ink); background: rgba(22,33,30,0.05); }
.nav-right { display: flex; align-items: center; gap: .6rem; }
.nav-right .btn { padding: .6em 1.1em; font-size: .875rem; }
.nav-login { display: inline-flex; align-items: center; gap: .4em; font-size: .875rem; font-weight: 600; color: var(--ink); padding: .5em .5em; }
.nav-login svg { width: 15px; height: 15px; }
.nav-login .lbl { display: none; }

.hamburger { display: none; width: 40px; height: 40px; border-radius: 12px; flex-direction: column; align-items: center; justify-content: center; gap: 4px; box-shadow: inset 0 0 0 1px var(--hair-2); }
.hamburger span { width: 17px; height: 1.6px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.hamburger.open span:nth-child(1){ transform: translateY(5.6px) rotate(45deg); }
.hamburger.open span:nth-child(2){ opacity: 0; }
.hamburger.open span:nth-child(3){ transform: translateY(-5.6px) rotate(-45deg); }

@media (min-width: 1000px){
  .nav-login .lbl { display: inline; }
}
@media (max-width: 999px){
  .nav-links {
    position: fixed; inset: 62px var(--edge) auto var(--edge);
    flex-direction: column; align-items: stretch; gap: .1rem;
    background: rgba(244,241,235,0.9); backdrop-filter: blur(20px);
    border-radius: 20px; box-shadow: inset 0 0 0 1px var(--hair), var(--lift-2);
    padding: .6rem; margin: 0;
    max-height: 0; opacity: 0; overflow: hidden; pointer-events: none;
    transition: max-height .4s var(--ease), opacity .3s;
  }
  .nav-links.open { max-height: 70vh; opacity: 1; pointer-events: auto; padding: .6rem; }
  .nav-links-h { display: block; font-family: var(--mono); font-size: .65rem; letter-spacing:.14em; text-transform: uppercase; color: var(--ink-3); padding: .5rem .7rem .2rem; }
  .nav-links a { padding: .7rem .7rem; }
  .nav-right .desktop-only { display: none; }
  .hamburger { display: flex; }
}

/* ============================================================================
   HERO — the signature awwwards moment
   ==========================================================================*/
.hero { position: relative; padding-top: 104px; padding-bottom: clamp(3rem,6vw,5rem); overflow: hidden; }

/* animated mesh + grain behind the hero */
.hero-mesh { position: absolute; inset: -20% -10% 0; z-index: 0; pointer-events: none; }
.hero-mesh .blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .55; mix-blend-mode: multiply; will-change: transform; }
.blob-1 { width: 46vw; height: 46vw; left: -8vw; top: -6vw; background: radial-gradient(circle at 30% 30%, rgba(var(--teal-2-rgb),0.55), transparent 68%); animation: drift1 22s ease-in-out infinite; }
.blob-2 { width: 40vw; height: 40vw; right: -6vw; top: -10vw; background: radial-gradient(circle at 60% 40%, rgba(var(--coral-rgb),0.42), transparent 66%); animation: drift2 26s ease-in-out infinite; }
.blob-3 { width: 34vw; height: 34vw; left: 34vw; top: 6vw; background: radial-gradient(circle at 50% 50%, rgba(var(--teal-rgb),0.4), transparent 70%); animation: drift3 30s ease-in-out infinite; }
@keyframes drift1 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(6%,4%) scale(1.12)} }
@keyframes drift2 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-5%,6%) scale(1.1)} }
@keyframes drift3 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(4%,-5%) scale(1.15)} }
.hero-grain { position: absolute; inset: 0; opacity: .5; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E"); }
.hero .wrap { position: relative; z-index: 1; }

.hero-grid { display: grid; grid-template-columns: 1fr 1.12fr; gap: clamp(1.5rem,3vw,2.5rem); align-items: center; }

.hero-eyebrow { display: inline-flex; align-items: center; gap: .6em; margin-bottom: 1.6rem; padding: .5rem .9rem; background: rgba(255,255,255,0.55); border-radius: var(--pill); box-shadow: inset 0 0 0 1px var(--hair); backdrop-filter: blur(6px); }
.hero-eyebrow::before { display: none; }
.eyebrow-spark { color: var(--teal-2); font-size: .9em; line-height: 1; }
.pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--teal-2); box-shadow: 0 0 0 0 rgba(var(--teal-2-rgb),0.5); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(var(--teal-2-rgb),.5)} 70%{box-shadow:0 0 0 9px rgba(var(--teal-2-rgb),0)} 100%{box-shadow:0 0 0 0 rgba(var(--teal-2-rgb),0)} }

/* colossal editorial headline with mask reveal */
.hero-h1 { font-size: clamp(2.2rem, 3.9vw, 3.4rem); font-weight: 800; letter-spacing: -0.035em; line-height: 1.02; color: var(--ink); }
.hero-h1 .ln { display: block; overflow: hidden; padding-bottom: 0.18em; }
.hero-h1 .ln > span { display: block; transform: translateY(115%); transition: transform 1.05s var(--ease); }
.hero-lead.in .hero-h1 .ln:nth-child(1) > span { transform: none; transition-delay: .05s; }
.hero-lead.in .hero-h1 .ln:nth-child(2) > span { transform: none; transition-delay: .14s; }
.hero-lead.in .hero-h1 .ln:nth-child(3) > span { transform: none; transition-delay: .23s; }
.hero-lead.in .hero-h1 .ln:nth-child(4) > span { transform: none; transition-delay: .32s; }
.hero-h1 .em, .hero-h1 .em-teal { font-family: var(--display); font-style: italic; font-weight: 400; color: var(--teal); }
.hero-h1 .hl-teal { color: var(--teal); }

/* hand-drawn underline that draws itself */
.ul-wrap { position: relative; display: inline-block; }
.ul { position: relative; color: var(--coral); font-family: var(--display); font-style: italic; font-weight: 400; }
.ul-wrap::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0.02em; height: 0.5em;
  background: no-repeat center/100% 100% url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 20' preserveAspectRatio='none'%3E%3Cpath d='M2 13 C 60 4, 120 4, 180 10 S 260 16, 298 7' fill='none' stroke='%23D96C4A' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E");
  transform: scaleX(0); transform-origin: left; transition: transform 1s var(--ease) .8s; }
.hero-lead.in .ul-wrap::after { transform: scaleX(1); }

.hero-sub { margin-top: 1.8rem; max-width: 34rem; font-size: 1.15rem; }
.hero-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 2.2rem; }
.hero-cta .link-arrow { display: inline-flex; align-items: center; gap: .6em; font-weight: 600; color: var(--ink); font-size: .95rem; }
.hero-cta .link-arrow .dot-live { width:8px; height:8px; border-radius:50%; background: var(--teal-2); box-shadow: 0 0 0 4px rgba(var(--teal-2-rgb),0.18); }
.hero-cta .play-ic { display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: rgba(var(--teal-rgb),0.1); color: var(--teal); transition: transform .3s var(--ease); }
.hero-cta .link-arrow:hover .play-ic { transform: scale(1.08); }
.hero-cta .play-ic svg { width: 12px; height: 12px; margin-left: 1px; }

/* hero feature row (replaces the 3 big stats) */
.hero-features { display: flex; flex-wrap: wrap; gap: 1rem 1.9rem; margin-top: 2.6rem; padding-top: 1.7rem; border-top: 1px solid var(--hair); }
.hero-features li { display: inline-flex; align-items: center; gap: .55rem; font-size: .9rem; font-weight: 500; color: var(--ink-2); }
.hero-features svg { width: 16px; height: 16px; color: var(--teal); flex-shrink: 0; }

.hero-stats { display: flex; gap: clamp(1.5rem,3vw,3rem); margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--hair); }
.hero-stat { display: flex; flex-direction: column; gap: .3rem; }
.hero-stat .v { font-family: var(--display); font-style: italic; font-weight: 400; font-size: clamp(2rem,3.4vw,2.9rem); line-height: .9; color: var(--teal); letter-spacing: -0.02em; }
.hero-stat.coral .v { color: var(--coral); }
.hero-stat .k { font-family: var(--mono); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }

/* floating chat cluster */
.hero-chat { position: relative; }
.chat-tile.glass { background: rgba(255,255,255,0.72); backdrop-filter: blur(20px) saturate(160%); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.6), var(--lift-2); }
.hero-float { position: absolute; display: flex; align-items: center; gap: .7rem; padding: .8rem 1rem; border-radius: 16px; background: rgba(255,255,255,0.85); backdrop-filter: blur(14px); box-shadow: inset 0 0 0 1px var(--hair), var(--lift-2); animation: floaty 5s ease-in-out infinite; }
.hero-float--appt { right: -14px; bottom: 44px; }
.hero-float .hf-ic { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; background: var(--teal); color: #fff; font-size: .8rem; }
.hero-float strong { display: block; font-size: .82rem; color: var(--ink); }
.hero-float span:not(.hf-ic) { font-size: .74rem; color: var(--ink-2); }
@keyframes floaty { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }

.scroll-cue { position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%); width: 26px; height: 42px; border-radius: var(--pill); box-shadow: inset 0 0 0 1.5px var(--hair-2); display: grid; justify-items: center; padding-top: 8px; z-index: 1; }
.scroll-cue span { width: 4px; height: 8px; border-radius: 2px; background: var(--teal); animation: cue 1.8s var(--ease) infinite; }
@keyframes cue { 0%{transform:translateY(0);opacity:1} 70%{transform:translateY(12px);opacity:0} 100%{opacity:0} }

/* ---------- HERO VISUAL — radial hub + live KPI panel ---------- */
.hero-visual { position: relative; min-height: 520px; }

.hero-hub { position: absolute; inset: 0 210px 0 0; }
.hub-links { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; filter: drop-shadow(0 0 5px rgba(var(--teal-2-rgb),0.4)); }
.hub-link { stroke: rgba(var(--teal-2-rgb),0.34); stroke-width: 1.6; stroke-linecap: round; fill: none; vector-effect: non-scaling-stroke; }

/* particle orb — interconnected dot field circling the core */
.hub-orb { position: absolute; left: 50%; top: 50%; width: 500px; height: 500px; transform: translate(-50%,-50%); z-index: 1; pointer-events: none; overflow: visible; animation: orbspin 90s linear infinite; }
.hub-orb .orb-dots circle { animation: twinkle 4s ease-in-out infinite; }
@keyframes orbspin { to { transform: translate(-50%,-50%) rotate(360deg); } }
@keyframes twinkle { 0%,100%{ opacity: 1; } 50%{ opacity: .45; } }

.hub-glow { position: absolute; left: 50%; top: 50%; width: 500px; height: 500px; transform: translate(-50%,-50%); border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(255,255,255,0.55) 0%, rgba(var(--teal-2-rgb),0.32) 20%, rgba(var(--teal-2-rgb),0.21) 40%, rgba(var(--teal-rgb),0.10) 58%, transparent 72%); animation: hubpulse 5.5s ease-in-out infinite; }
@keyframes hubpulse { 0%,100%{ transform: translate(-50%,-50%) scale(1); opacity:.9 } 50%{ transform: translate(-50%,-50%) scale(1.12); opacity:1 } }

.hub-core { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 92px; height: 92px; border-radius: 26px; display: grid; place-items: center; z-index: 4; color: #fff;
  background: linear-gradient(150deg, var(--teal-2) 0%, var(--teal) 55%, var(--teal-deep) 100%); backdrop-filter: blur(8px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.35), 0 0 0 6px rgba(255,255,255,1), 0 0 26px 10px rgba(255,255,255,1), 0 0 60px 20px rgba(255,255,255,0.85), 0 18px 50px -10px rgba(var(--teal-rgb),0.55), 0 0 90px rgba(var(--teal-2-rgb),0.5); }
.hub-core svg { width: 50px; height: 50px; filter: drop-shadow(0 0 6px rgba(var(--teal-2-rgb),0.9)) drop-shadow(0 0 14px rgba(var(--teal-2-rgb),0.6)); }

.hub-node { position: absolute; z-index: 3; display: inline-flex; align-items: center; gap: .55rem; padding: .58rem .72rem; border-radius: 14px; white-space: nowrap;
  background: rgba(255,255,255,0.94); backdrop-filter: blur(10px); box-shadow: inset 0 0 0 1px var(--hair), var(--lift-1); animation: floaty 6s ease-in-out infinite; }
.hub-node strong { display: block; font-size: .8rem; font-weight: 700; color: var(--ink); line-height: 1.15; }
.hub-node em { font-style: normal; font-size: .69rem; color: var(--ink-3); }
.hn-ic { width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center; background: rgba(var(--teal-rgb),0.10); color: var(--teal); flex-shrink: 0; }
.hn-ic svg { width: 16px; height: 16px; }
.hn-ic.wa { background: #25D366; color: #fff; }
.hn-ic.wa svg { width: 18px; height: 18px; }

.hn-wa  { top: 8%;   left: 0%;   animation-delay: 0s; }
.hn-seg { top: 0%;   right: 2%;  animation-delay: .8s; }
.hn-ag  { top: 40%;  left: -9%;  animation-delay: 1.4s; }
.hn-pay { top: 48%;  right: -9%; animation-delay: .5s; }
.hn-rec { bottom: 8%; left: 3%;  animation-delay: 1.1s; }
.hn-rep { bottom: 0%; right: 3%; animation-delay: 1.8s; }

/* live KPI panel (floats over the right edge) */
.hero-kpis { position: absolute; top: 50%; right: -72px; transform: translateY(-50%); width: 220px; z-index: 5;
  background: rgba(255,255,255,0.93); backdrop-filter: blur(18px) saturate(160%); border-radius: 20px;
  box-shadow: inset 0 0 0 1px var(--hair), var(--lift-2); padding: 1rem 1.05rem; }
.kpi-hd { display: flex; align-items: center; justify-content: flex-end; gap: .4rem; font-family: var(--mono); font-size: .66rem; letter-spacing: .04em; color: var(--ink-3); margin-bottom: .5rem; }
.kpi-live { width: 7px; height: 7px; border-radius: 50%; background: #4ADE80; box-shadow: 0 0 0 0 rgba(74,222,128,.5); animation: pulse-g 2s infinite; }
.kpi-item { display: grid; grid-template-columns: auto 1fr; column-gap: .7rem; row-gap: .1rem; align-items: center; padding: .7rem 0; border-top: 1px solid var(--hair); }
.kpi-item:first-of-type { border-top: 0; }
.kpi-ic { grid-row: 1 / 3; align-self: center; width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; background: rgba(var(--teal-rgb),0.09); color: var(--teal); }
.kpi-ic svg { width: 15px; height: 15px; }
.kpi-lab { font-size: .72rem; color: var(--ink-3); }
.kpi-num { font-family: var(--display); font-style: italic; font-size: 1.55rem; color: var(--ink); line-height: 1; }
.kpi-val { display: inline-block; }
.kpi-val.bump { animation: kpibump .5s ease; }
@keyframes kpibump { 0% { color: var(--teal); transform: translateY(-1px); } 100% { color: var(--ink); transform: none; } }
.kpi-up { font-family: var(--sans); font-style: normal; font-size: .66rem; font-weight: 700; color: var(--teal); vertical-align: middle; margin-left: .15rem; }
.kpi-spark { grid-column: 1 / -1; width: 100%; height: 22px; margin-top: .4rem; }
.kpi-spark polyline { fill: none; stroke: var(--teal); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

@media (max-width: 900px){
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 440px; margin-top: 1.5rem; }
}
@media (max-width: 560px){
  .hero-visual { min-height: 400px; }
  .hero-hub { inset: 0 0 90px 0; }
  .hub-node { padding: .55rem .65rem; gap: .5rem; }
  .hub-node strong { font-size: .78rem; }
  .hub-node em { font-size: .66rem; }
  .hn-ic { width: 30px; height: 30px; }
  .hero-kpis { position: absolute; top: auto; bottom: -8px; right: 50%; transform: translateX(50%); width: min(320px, 92%); }
  .hero-kpis .kpi-item:nth-child(n+3) { display: none; }
}

/* chat compartment internals (shared) */
.chat-tile { height: 100%; display: flex; flex-direction: column; padding: 0; }
.chat-hd { display: flex; align-items: center; gap: .7rem; padding: 1rem 1.2rem; border-bottom: 1px solid var(--hair); }
.chat-av { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(150deg, var(--teal-2), var(--teal-deep)); box-shadow: var(--lift-teal); }
.chat-av img { width: 22px; height: 22px; }
.chat-hd .nm { font-weight: 700; color: var(--ink); font-size: .92rem; line-height: 1.1; }
.chat-hd .st { font-size: .74rem; color: var(--teal); display: flex; align-items: center; gap: .35em; }
.chat-hd .st::before { content:""; width:6px; height:6px; border-radius:50%; background: var(--teal-2); }
.chat-hd .wa { margin-left: auto; font-family: var(--mono); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.chat-body { flex: 1; padding: 1.2rem; display: flex; flex-direction: column; gap: .55rem; overflow: hidden; }
.bub { max-width: 82%; padding: .7rem .9rem; border-radius: 16px; font-size: .9rem; line-height: 1.45; opacity: 0; transform: translateY(10px) scale(.98); animation: bub-in .5s var(--ease-out) forwards; }
.bub strong { font-weight: 700; }
.bub--p { align-self: flex-end; background: var(--teal); color: #fff; border-bottom-right-radius: 5px; }
.bub--v { align-self: flex-start; background: #fff; color: var(--ink); box-shadow: inset 0 0 0 1px var(--hair); border-bottom-left-radius: 5px; }
.bub .deliv { display: block; margin-top: .35rem; font-size: .68rem; color: rgba(255,255,255,0.7); }
@keyframes bub-in { to { opacity: 1; transform: none; } }
.chat-typing { align-self: flex-start; display: inline-flex; gap: 4px; padding: .7rem .9rem; background: #fff; border-radius: 16px; box-shadow: inset 0 0 0 1px var(--hair); }
.chat-typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--ink-3); animation: typing 1.2s infinite; }
.chat-typing span:nth-child(2){ animation-delay:.2s } .chat-typing span:nth-child(3){ animation-delay:.4s }
@keyframes typing { 0%,60%,100%{ opacity:.3; transform:translateY(0) } 30%{ opacity:1; transform:translateY(-3px) } }
.chat-ft { padding: .8rem 1.2rem; border-top: 1px solid var(--hair); display: flex; align-items: center; gap: .6rem; }
.chat-ft .fake-in { flex: 1; height: 34px; border-radius: var(--pill); background: rgba(22,33,30,0.04); display: flex; align-items: center; padding-inline: .9rem; font-size: .82rem; color: var(--ink-3); }
.chat-ft .snd { width: 34px; height: 34px; border-radius: 50%; background: var(--teal); color: #fff; display: grid; place-items: center; }

/* ============================================================================
   MARQUEE
   ==========================================================================*/
.marquee { overflow: hidden; border-block: 1px solid var(--hair); padding-block: 1.1rem; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: inline-flex; align-items: center; gap: 1.6rem; white-space: nowrap; animation: marquee 34s linear infinite; will-change: transform; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: var(--display); font-style: italic; font-size: 1.5rem; color: var(--ink); opacity: .82; }
.marquee-track i { color: var(--coral); font-style: normal; font-size: .8rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================================
   SCROLL PROGRESS + CURSOR GLOW
   ==========================================================================*/
.scroll-prog { position: fixed; top: 0; left: 0; height: 2.5px; width: 0; z-index: 200; background: linear-gradient(90deg, var(--teal), var(--coral)); box-shadow: 0 0 12px rgba(var(--teal-rgb),0.5); transition: width .1s linear; }
.cursor-glow { position: fixed; top: 0; left: 0; width: 460px; height: 460px; border-radius: 50%; pointer-events: none; z-index: 90; transform: translate(-50%,-50%); opacity: 0; transition: opacity .4s;
  background: radial-gradient(circle, rgba(var(--teal-2-rgb),0.10), transparent 62%); mix-blend-mode: multiply; }
@media (hover: hover) and (pointer: fine) { .cursor-glow.on { opacity: 1; } }
@media (hover: none) { .cursor-glow { display: none; } }

.trust { border-top: 1px solid var(--hair); }
.trust .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 1.4rem; }
.trust-mission { display: inline-flex; align-items: center; gap: .6rem; font-size: .92rem; color: var(--ink-2); }
.trust-mission img { width: 20px; height: 20px; }
.trust-regions { font-family: var(--mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }

/* ============================================================================
   CLIENT SPOTLIGHT
   ==========================================================================*/
.spot-logotile { grid-column: span 3; display: grid; place-items: center; }
.spot-tile { grid-column: span 9; display: grid; grid-template-columns: 0.6fr 2.4fr; align-items: center; gap: clamp(1rem,2.4vw,2rem); min-width: 0; }
.spot-brand { display: flex; align-items: center; gap: 1.2rem; min-width: 0; }
.spot-logo { width: 76px; height: auto; }
.spot-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(.6rem,1.4vw,1.1rem); min-width: 0; }
.spot-metric .v { font-family: var(--display); font-style: italic; font-size: clamp(1.5rem,2.1vw,2.1rem); line-height: .9; letter-spacing: -0.02em; color: var(--teal); white-space: nowrap; }
.spot-metric.coral .v { color: var(--coral); }
.spot-metric .v .sfx { font-size: .5em; }
.spot-metric .k { margin-top: .4rem; font-size: .78rem; color: var(--ink-2); line-height: 1.3; }
.spot-metric { border-left: 1px solid var(--hair); padding-left: clamp(.6rem,1.2vw,1.1rem); min-width: 0; }
@media (max-width: 900px){ .spot-logotile { grid-column: 1 / -1; } .spot-tile { grid-column: 1 / -1; grid-template-columns: 1fr; } .spot-brand { grid-column: 1 / -1; } }
@media (max-width: 560px){ .spot-metrics { grid-template-columns: 1fr 1fr; gap: 1.4rem; } .spot-metric:nth-child(odd){ border-left: 0; padding-left: 0; } }

/* ============================================================================
   HOW IT WORKS — numbered step tiles
   ==========================================================================*/
.step-tile { grid-column: span 3; display: flex; flex-direction: column; gap: .8rem; min-height: 210px; }
.step-num { font-family: var(--display); font-style: italic; font-size: 2.6rem; line-height: 1; color: var(--teal); opacity: .9; }
.step-tile h3 { font-family: var(--sans); font-weight: 700; font-size: 1.08rem; letter-spacing: -0.02em; color: var(--ink); }
.step-tile p { font-size: .92rem; line-height: 1.5; color: var(--ink-2); margin-top: auto; }
.step-tile .step-num { transition: transform .5s var(--ease); }
.step-tile:hover .step-num { transform: translateY(-3px); }
@media (max-width:900px){ .step-tile{ grid-column: span 6; } }
@media (max-width:560px){ .step-tile{ grid-column: span 12; } }

/* ============================================================================
   DEMO
   ==========================================================================*/
.demo-grid { display: grid; grid-template-columns: 340px 1fr; gap: var(--gap); align-items: stretch; }
.demo-stages { display: flex; flex-direction: column; }
.demo-stages .spec { margin-bottom: 1rem; }
.stage-list { display: flex; flex-direction: column; gap: .3rem; }
.stage { display: flex; gap: .9rem; padding: .85rem .9rem; border-radius: var(--r-in); transition: background .3s; }
.stage-dot { width: 12px; height: 12px; border-radius: 50%; margin-top: .25rem; flex-shrink: 0; box-shadow: inset 0 0 0 2px var(--hair-2); transition: all .3s; }
.stage.active { background: rgba(var(--teal-rgb),0.06); }
.stage.active .stage-dot { background: var(--teal); box-shadow: 0 0 0 4px rgba(var(--teal-rgb),0.15); }
.stage.done .stage-dot { background: var(--teal-2); box-shadow: none; }
.stage .st-t { font-weight: 600; color: var(--ink); font-size: .92rem; }
.stage .st-d { font-size: .82rem; color: var(--ink-2); margin-top: .1rem; }
.demo-replay { margin-top: 1rem; align-self: flex-start; font-family: var(--mono); font-size: .74rem; letter-spacing: .06em; color: var(--teal); padding: .55rem .9rem; border-radius: var(--pill); box-shadow: inset 0 0 0 1px var(--hair-2); transition: background .2s; }
.demo-replay:hover { background: rgba(var(--teal-rgb),0.06); }

.demo-stage-tile { padding: 0; display: flex; flex-direction: column; min-height: 520px; }
.demo-chat { flex: 1; padding: 1.4rem; display: flex; flex-direction: column; gap: .55rem; overflow: hidden; }
.demo-chat .bub { max-width: 78%; }
.mhoff { align-self: center; font-family: var(--mono); font-size: .74rem; color: var(--teal); background: rgba(var(--teal-rgb),0.08); padding: .5rem .9rem; border-radius: var(--pill); margin-top: .4rem; }
.demo-notif { display: flex; align-items: center; gap: .8rem; margin: 0 1.4rem 1.4rem; padding: .9rem 1.1rem; border-radius: var(--r-in); background: var(--tile-2); box-shadow: inset 0 0 0 1px var(--hair); opacity: 0; transform: translateY(8px); transition: all .5s var(--ease); }
.demo-notif.show { opacity: 1; transform: none; }
.demo-notif .ic { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: rgba(var(--coral-rgb),0.12); font-size: 1.1rem; }
.demo-notif strong { display: block; color: var(--ink); font-size: .9rem; }
.demo-notif .sub { font-size: .78rem; color: var(--ink-2); }
@media (max-width: 860px){ .demo-grid { grid-template-columns: 1fr; } }

/* ============================================================================
   INTELLIGENCE — capability bento + ribbon
   ==========================================================================*/
.ribbon-tile { grid-column: span 12; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: clamp(1rem,3vw,2.5rem); }
.ribbon-tile h3 { font-family: var(--sans); font-weight: 700; font-size: 1.05rem; letter-spacing: -0.02em; color: var(--ink); margin-bottom: .4rem; }
.ribbon-tile h3 .tm { color: var(--teal); }
.ribbon-tile p { font-size: .92rem; color: var(--ink-2); line-height: 1.5; }
.ribbon-arrow { font-size: 1.6rem; color: var(--teal); font-family: var(--display); }
@media (max-width: 720px){ .ribbon-tile { grid-template-columns: 1fr; text-align: center; } .ribbon-arrow { transform: rotate(90deg); } }

.cap { grid-column: span 4; min-height: 170px; display: flex; flex-direction: column; }
.cap h3 { font-family: var(--sans); font-weight: 700; font-size: 1.05rem; letter-spacing: -0.02em; color: var(--ink); margin-bottom: .5rem; }
.cap p { font-size: .92rem; line-height: 1.5; color: var(--ink-2); }
.cap--fu { background: linear-gradient(160deg, #fff, rgba(var(--coral-rgb),0.06)); }
.badge-fu { display: inline-flex; align-self: flex-start; font-family: var(--mono); font-size: .64rem; letter-spacing: .08em; text-transform: uppercase; color: var(--coral); background: rgba(var(--coral-rgb),0.1); padding: .3rem .6rem; border-radius: var(--pill); margin-bottom: .7rem; }
@media (max-width: 900px){ .cap{ grid-column: span 6; } }
@media (max-width: 560px){ .cap{ grid-column: span 12; } }

/* ============================================================================
   INTEGRATIONS (Huli)
   ==========================================================================*/
.hcard { grid-column: span 3; min-height: 200px; display: flex; flex-direction: column; }
.h-ico { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(var(--teal-rgb),0.08); color: var(--teal); margin-bottom: 1rem; }
.h-ico svg { width: 22px; height: 22px; stroke-width: 1.9; }
.hcard h3 { font-family: var(--sans); font-weight: 700; font-size: 1.02rem; letter-spacing: -0.02em; color: var(--ink); margin-bottom: .5rem; }
.hcard p { font-size: .9rem; line-height: 1.5; color: var(--ink-2); }
@media (max-width: 900px){ .hcard{ grid-column: span 6; } }
@media (max-width: 560px){ .hcard{ grid-column: span 12; } }

.cmp-tile { grid-column: span 12; padding: 0; }
.cmp-h { padding: 1.5rem clamp(1.4rem,2.4vw,2.1rem) 0; font-family: var(--sans); font-weight: 700; font-size: 1.15rem; letter-spacing: -0.02em; color: var(--ink); }
.cmp-scroll { overflow-x: auto; padding: 1rem clamp(1.4rem,2.4vw,2.1rem) 1.5rem; }
table.cmp { width: 100%; border-collapse: collapse; min-width: 520px; }
table.cmp th, table.cmp td { text-align: left; padding: .85rem 1rem; font-size: .9rem; border-bottom: 1px solid var(--hair); }
table.cmp th { font-family: var(--mono); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); font-weight: 500; }
table.cmp th:not(:first-child), table.cmp td:not(:first-child) { text-align: center; width: 22%; }
table.cmp td:first-child { color: var(--ink-2); }
table.cmp .ok { color: var(--teal); font-weight: 700; }
table.cmp .no { color: var(--ink-3); }
table.cmp tr:last-child td { border-bottom: 0; }
.huli-note { grid-column: span 12; text-align: center; font-size: .92rem; color: var(--ink-2); padding: 0 1rem; }

/* ============================================================================
   PLATFORM — bento dashboard preview
   ==========================================================================*/
.dash-tile { grid-column: span 12; padding: 0; overflow: hidden; }
.dash-top { display: flex; align-items: center; gap: .7rem; padding: 1rem 1.3rem; border-bottom: 1px solid var(--hair); background: var(--tile-2); }
.dash-dots { display: flex; gap: 6px; }
.dash-dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--hair-2); }
.dash-top .lbl { font-family: var(--mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.dash-tabs { display: flex; gap: .3rem; margin-left: auto; flex-wrap: wrap; }
.dash-tab { font-size: .82rem; font-weight: 600; color: var(--ink-2); padding: .4rem .8rem; border-radius: var(--pill); transition: all .2s; }
.dash-tab[aria-pressed="true"] { background: var(--teal); color: #fff; }
.dash-panel { padding: clamp(1.2rem,2.4vw,2rem); }
.dash-panel[hidden] { display: none; }

/* inbox panel */
.dash-inbox { display: grid; grid-template-columns: 260px 1fr; gap: var(--gap); min-height: 340px; }
.inbox-list { display: flex; flex-direction: column; gap: .3rem; }
.inbox-list h3 { font-family: var(--sans); font-weight: 700; color: var(--ink); font-size: 1rem; margin-bottom: .6rem; }
.inbox-row { display: flex; gap: .7rem; padding: .7rem; border-radius: var(--r-in); transition: background .2s; }
.inbox-row.on { background: rgba(var(--teal-rgb),0.06); }
.inbox-av { width: 34px; height: 34px; border-radius: 50%; background: var(--paper-2); display: grid; place-items: center; font-weight: 700; font-size: .8rem; color: var(--teal); flex-shrink: 0; }
.inbox-row .nm { font-weight: 600; color: var(--ink); font-size: .86rem; }
.inbox-row .pv { font-size: .78rem; color: var(--ink-2); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.inbox-row .tag { margin-left: auto; font-family: var(--mono); font-size: .58rem; letter-spacing:.06em; text-transform: uppercase; padding: .2rem .45rem; border-radius: var(--pill); align-self: flex-start; }
.tag--vita { color: var(--teal); background: rgba(var(--teal-rgb),0.1); }
.tag--new { color: var(--coral); background: rgba(var(--coral-rgb),0.12); }
.inbox-thread { background: var(--tile-2); border-radius: var(--r-in); box-shadow: inset 0 0 0 1px var(--hair); padding: 1.2rem; display: flex; flex-direction: column; gap: .5rem; }
.inbox-thread .bub { max-width: 84%; animation: none; opacity: 1; transform: none; }
@media (max-width: 720px){ .dash-inbox { grid-template-columns: 1fr; } .inbox-thread { display: none; } }

/* calendar/patients */
.dash-panel h3.pg { font-family: var(--sans); font-weight: 700; color: var(--ink); font-size: 1.1rem; margin-bottom: .3rem; }
.dash-panel .pg-sub { font-size: .84rem; color: var(--ink-3); margin-bottom: 1.2rem; }
.dash-panel .pg-sub .mono, .mono { font-family: var(--mono); font-size: .9em; }
.agenda { display: flex; flex-direction: column; gap: .3rem; }
.agenda li { display: flex; gap: 1rem; padding: .8rem 1rem; border-radius: var(--r-in); background: var(--tile-2); box-shadow: inset 0 0 0 1px var(--hair); }
.agenda .t { font-family: var(--mono); font-size: .82rem; color: var(--teal); width: 54px; }
.agenda .b { color: var(--ink); font-size: .9rem; }
.agenda .b em { font-style: normal; color: var(--ink-3); font-size: .82rem; }
.agenda .off { color: var(--ink-3); }
.dtable { width: 100%; border-collapse: collapse; }
.dtable th { text-align: left; font-family: var(--mono); font-size: .66rem; letter-spacing:.08em; text-transform: uppercase; color: var(--ink-3); padding: .6rem .8rem; font-weight: 500; }
.dtable td { padding: .8rem; border-top: 1px solid var(--hair); font-size: .9rem; color: var(--ink-2); }
.dtable .nm { font-weight: 600; color: var(--ink); }

/* metrics */
.kpi-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.kpi { background: var(--tile-2); border-radius: var(--r-in); box-shadow: inset 0 0 0 1px var(--hair); padding: 1.1rem; }
.kpi .lab { font-family: var(--mono); font-size: .64rem; letter-spacing:.08em; text-transform: uppercase; color: var(--ink-3); }
.kpi .val { font-family: var(--display); font-style: italic; font-size: 2rem; color: var(--ink); line-height: 1; margin-top: .5rem; }
.kpi .val.teal { color: var(--teal); } .kpi .val.coral { color: var(--coral); }
.kpi .val .u { font-size: .5em; }
.kpi .delta { font-size: .72rem; font-weight: 700; color: var(--teal); }
.spark { display: flex; align-items: flex-end; gap: 3px; height: 30px; margin-top: .7rem; }
.spark span { flex: 1; background: rgba(var(--teal-rgb),0.25); border-radius: 2px; }
.spark .hi { background: var(--teal); }
.mbars { display: flex; align-items: flex-end; gap: 8px; height: 120px; margin-top: 1rem; padding: 1rem; background: var(--tile-2); border-radius: var(--r-in); box-shadow: inset 0 0 0 1px var(--hair); }
.mbars span { flex: 1; background: rgba(var(--teal-rgb),0.2); border-radius: 4px 4px 0 0; }
.mbars .now { background: var(--teal); }
@media (max-width: 720px){ .kpi-row { grid-template-columns: repeat(2,1fr); } }

/* ============================================================================
   PRICING
   ==========================================================================*/
.price { grid-column: span 3; display: flex; flex-direction: column; min-height: 100%; }
.price h3 { font-family: var(--sans); font-weight: 700; font-size: 1.1rem; letter-spacing: -0.02em; color: var(--ink); }
.price .amt { font-family: var(--display); font-style: italic; font-size: 2.6rem; color: var(--ink); line-height: 1; margin: .8rem 0 .2rem; letter-spacing: -0.02em; }
.price .amt .cur { font-size: .5em; vertical-align: super; }
.price .amt .cents { font-size: .5em; }
.price .amt .unit { display: block; font-family: var(--mono); font-style: normal; font-size: .62rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); margin-top: .5rem; }
.price .amt.custom { font-size: 2rem; }
.price .desc { font-size: .88rem; color: var(--ink-2); margin: .8rem 0 1.2rem; line-height: 1.45; }
.price ul { display: flex; flex-direction: column; gap: .55rem; margin-bottom: 1.4rem; }
.price li { position: relative; padding-left: 1.5rem; font-size: .86rem; color: var(--ink-2); line-height: 1.4; }
.price li::before { content: ""; position: absolute; left: 0; top: .35em; width: 14px; height: 14px; border-radius: 50%; background: rgba(var(--teal-rgb),0.1); }
.price li::after { content: ""; position: absolute; left: 4px; top: .58em; width: 6px; height: 3px; border-left: 1.5px solid var(--teal); border-bottom: 1.5px solid var(--teal); transform: rotate(-45deg); }
.price li.addon { color: var(--ink-3); }
.price .tip { border-bottom: 1px dotted var(--ink-3); cursor: help; }
.price .foot { margin-top: auto; padding-top: 1rem; font-family: var(--mono); font-size: .68rem; letter-spacing: .04em; color: var(--ink-3); }
.price .btn { margin-top: 1rem; }
.price--featured { color: #fff; background:
  radial-gradient(120% 120% at 100% 0%, rgba(var(--teal-2-rgb),0.5), transparent 55%),
  linear-gradient(160deg, #0C3A34, var(--teal-ink)); box-shadow: var(--lift-2); }
.price--featured h3, .price--featured .amt, .price--featured .amt .unit { color: #fff; }
.price--featured .desc, .price--featured li { color: var(--on-dark-2); }
.price--featured li::before { background: rgba(255,255,255,0.15); }
.price--featured li::after { border-color: #fff; }
.price--featured .foot { color: var(--on-dark-2); }
.price--featured .tip { border-color: rgba(255,255,255,0.4); }
.pop { position: absolute; top: 1.2rem; right: 1.2rem; font-family: var(--mono); font-size: .6rem; letter-spacing: .08em; text-transform: uppercase; color: #fff; background: var(--coral); padding: .3rem .6rem; border-radius: var(--pill); }
@media (max-width: 1000px){ .price{ grid-column: span 6; } }
@media (max-width: 560px){ .price{ grid-column: span 12; } }

/* ============================================================================
   FAQ
   ==========================================================================*/
.faq-tile { grid-column: span 12; padding: 0; }
.faq-item { border-bottom: 1px solid var(--hair); }
.faq-item:last-child { border-bottom: 0; }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: 100%; text-align: left; padding: 1.3rem clamp(1.4rem,2.4vw,2.1rem); font-family: var(--sans); font-weight: 600; font-size: 1.02rem; letter-spacing: -0.01em; color: var(--ink); }
.faq-ic { width: 26px; height: 26px; flex-shrink: 0; position: relative; }
.faq-ic::before, .faq-ic::after { content: ""; position: absolute; top: 50%; left: 50%; width: 12px; height: 1.8px; background: var(--teal); border-radius: 2px; transform: translate(-50%,-50%); transition: transform .3s var(--ease); }
.faq-ic::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-item.open .faq-ic::after { transform: translate(-50%,-50%) rotate(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-item.open .faq-a { max-height: 320px; }
.faq-a p { padding: 0 clamp(1.4rem,2.4vw,2.1rem) 1.4rem; font-size: .95rem; line-height: 1.6; color: var(--ink-2); max-width: 60ch; }

/* ============================================================================
   CLOSING CTA
   ==========================================================================*/
.cta { padding-block: clamp(3rem,7vw,6rem); }
.cta-tile { grid-column: span 12; text-align: center; padding: clamp(2.5rem,6vw,5rem) clamp(1.5rem,4vw,3rem); }
.cta-tile .spec { justify-content: center; margin-bottom: 1.4rem; }
.cta-tile h2 { font-size: clamp(2rem,4.4vw,3.4rem); font-weight: 700; letter-spacing: -0.03em; color: #fff; max-width: 18ch; margin-inline: auto; line-height: 1.05; }
.cta-tile .lead { color: var(--on-dark-2); max-width: 36rem; margin: 1.2rem auto 0; }
.cta-tile .btn { margin-top: 1.8rem; }
.cta-sep { display: flex; align-items: center; gap: 1rem; max-width: 320px; margin: 2rem auto 1.2rem; color: var(--on-dark-2); font-family: var(--mono); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }
.cta-sep::before, .cta-sep::after { content: ""; flex: 1; height: 1px; background: rgba(255,255,255,0.15); }
.cform { display: flex; align-items: center; gap: .6rem; max-width: 420px; margin: 0 auto; }
.cin { flex: 1; height: 46px; border-radius: var(--pill); background: rgba(255,255,255,0.1); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2); color: #fff; padding-inline: 1.1rem; font: inherit; font-size: .92rem; backdrop-filter: blur(8px); }
.cform .btn { height: 46px; flex-shrink: 0; margin-top: 0; }
.cin::placeholder { color: rgba(255,255,255,0.5); }
.cform.err .cin { box-shadow: inset 0 0 0 1.5px var(--coral-soft); }
.cok { margin-top: 1rem; color: var(--on-dark); font-size: .9rem; }
.cta-fine { color: var(--on-dark-2); font-size: .78rem; margin-top: 1rem; opacity: .8; }
@media (max-width: 480px){ .cform { flex-direction: column; } }

/* ============================================================================
   FOOTER
   ==========================================================================*/
.foot { border-top: 1px solid var(--hair); padding-block: clamp(3rem,5vw,4rem) 2rem; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; }
.foot-brand { display: inline-flex; align-items: center; gap: .5rem; margin-bottom: 1rem; }
.foot-brand img { width: 30px; height: 30px; }
.foot-lead { font-size: .92rem; color: var(--ink-2); max-width: 28ch; }
.foot h4 { font-family: var(--mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 1rem; font-weight: 500; }
.foot-col a { display: block; font-size: .9rem; color: var(--ink-2); padding: .35rem 0; transition: color .2s; }
.foot-col a:hover { color: var(--teal); }
.foot-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--hair); font-size: .82rem; color: var(--ink-3); }
.foot-bottom a:hover { color: var(--teal); }
@media (max-width: 780px){ .foot-grid { grid-template-columns: 1fr 1fr; } .foot-brand-col { grid-column: 1 / -1; } }

/* ============================================================================
   ADD-ONS / SUITE MODULAR
   ==========================================================================*/
.addon-tile { display: flex; flex-direction: column; }
.addon-badge { display: inline-flex; align-items: center; gap: .45em; align-self: flex-start; font-family: var(--mono); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; color: var(--teal); background: rgba(var(--teal-rgb),0.08); padding: .32rem .62rem; border-radius: var(--pill); margin-bottom: 1rem; }
.addon-badge .live-dot { background: var(--teal-2); animation: none; }
.addon-badge--coral { color: var(--coral-soft); background: rgba(var(--coral-rgb),0.16); }
.addon-tile .t-body { margin-top: .5rem; max-width: 48ch; }
.addon-chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.3rem; }
.addon-chips li { font-size: .78rem; color: var(--teal-deep); padding: .42rem .8rem; border-radius: var(--pill); background: rgba(var(--teal-rgb),0.07); box-shadow: inset 0 0 0 1px rgba(var(--teal-rgb),0.16); }
.addon-chips--dark li { color: var(--on-dark); background: rgba(255,255,255,0.07); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.16); }

/* Marketing funnel mini-viz */
.mkt { margin-top: 1.4rem; display: flex; flex-direction: column; gap: .7rem; }
.mkt-row { display: grid; grid-template-columns: 74px 1fr auto; align-items: center; gap: .8rem; }
.mkt-lbl { font-size: .78rem; color: var(--ink-2); }
.mkt-bar { height: 10px; border-radius: var(--pill); background: var(--paper-2); overflow: hidden; }
.mkt-bar i { display: block; height: 100%; border-radius: var(--pill); background: linear-gradient(90deg, var(--teal-2), var(--teal)); animation: mkt-grow 1s var(--ease) both; }
.mkt-row:nth-child(3) .mkt-bar i { background: linear-gradient(90deg, var(--coral-soft), var(--coral)); }
.mkt-val { font-family: var(--mono); font-size: .78rem; color: var(--ink); min-width: 2.5ch; text-align: right; }
@keyframes mkt-grow { from { transform: scaleX(0); transform-origin: left; } }

/* Follow-up wide dark tile */
.addon-tile--wide { display: grid; grid-template-columns: 1.4fr .9fr; align-items: center; gap: clamp(1.5rem,4vw,3rem); }
.addon-viz { border-radius: var(--r-in); padding: 1.2rem; background: rgba(255,255,255,0.05); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12); }
.viz-hd { display: flex; justify-content: space-between; align-items: center; font-size: .78rem; color: var(--on-dark-2); margin-bottom: 1rem; }
.viz-up { font-family: var(--mono); color: #4ADE80; }
.viz-bars { display: flex; align-items: flex-end; gap: 8px; height: 120px; }
.viz-bars span { flex: 1; border-radius: 6px 6px 0 0; background: rgba(255,255,255,0.16); }
.viz-bars span.hi { background: linear-gradient(180deg, var(--teal-2), var(--teal)); }
@media (max-width: 820px){
  .addon-tile--wide { grid-template-columns: 1fr; }
}

/* ============================================================================
   ORCHESTRATION HUB (Onvo-inspired node graph)
   ==========================================================================*/
.orch-tile { grid-column: span 12; display: grid; grid-template-columns: 0.85fr 1.15fr; align-items: center; gap: clamp(1.5rem,4vw,3.5rem); }
.orch-copy .t-title { font-size: clamp(1.4rem,2.6vw,2rem); margin-top: .6rem; }
.orch-copy .t-body { max-width: 40ch; margin-top: .8rem; }
.live-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #4ADE80; box-shadow: 0 0 0 0 rgba(74,222,128,0.5); animation: pulse-g 2s infinite; }
@keyframes pulse-g { 0%{box-shadow:0 0 0 0 rgba(74,222,128,.5)} 70%{box-shadow:0 0 0 7px rgba(74,222,128,0)} 100%{box-shadow:0 0 0 0 rgba(74,222,128,0)} }

.orch { position: relative; height: 320px; width: 100%; }
.orch-svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.orch-line { fill: none; stroke: rgba(255,255,255,0.22); stroke-width: 0.6; stroke-dasharray: 3 3; vector-effect: non-scaling-stroke; }
.orch-line { animation: flow 1.2s linear infinite; }
.orch-line.d1 { animation-delay: .1s } .orch-line.d2 { animation-delay: .2s } .orch-line.d3 { animation-delay: .3s } .orch-line.d4 { animation-delay: .4s }
@keyframes flow { to { stroke-dashoffset: -12; } }
.orch-node { position: absolute; transform: translate(-50%,-50%); display: inline-flex; align-items: center; gap: .45rem; padding: .5rem .85rem; border-radius: var(--pill); font-size: .82rem; font-weight: 600; white-space: nowrap; z-index: 1;
  background: rgba(255,255,255,0.08); color: var(--on-dark); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.16); backdrop-filter: blur(6px); }
.orch-node .on-ic { font-size: .9rem; }
.orch-out { animation: nodepop .5s var(--ease) both; }
.orch-core { flex-direction: column; gap: .4rem; padding: 1rem; border-radius: 20px; font-weight: 700; font-size: .9rem;
  background: linear-gradient(150deg, var(--teal-2), var(--teal-deep)); box-shadow: var(--lift-teal), inset 0 0 0 1px rgba(255,255,255,0.2); color:#fff; }
.orch-mono { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; background: #fff; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.6), 0 4px 14px -4px rgba(0,0,0,0.4); color: var(--teal); }
.orch-mono svg { width: 22px; height: 22px; }
.orch-ring { position: absolute; inset: -8px; border-radius: 26px; border: 1px solid rgba(255,255,255,0.35); animation: ring 2.6s var(--ease) infinite; }
@keyframes ring { 0%{transform:scale(.9);opacity:.8} 100%{transform:scale(1.5);opacity:0} }
@keyframes nodepop { from{opacity:0;transform:translate(-50%,-50%) scale(.8)} to{opacity:1} }
@media (max-width: 820px){
  .orch-tile { grid-template-columns: 1fr; }
  .orch { height: auto; display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
  .orch-svg { display: none; }
  .orch-node { position: static; transform: none; justify-content: center; }
  .orch-in, .orch-core { grid-column: 1 / -1; }
  .orch-core { flex-direction: row; }
}

/* ============================================================================
   INFRASTRUCTURE (event log + compliance chips)
   ==========================================================================*/
.infra-tile { grid-column: span 12; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(1.5rem,4vw,3.5rem); }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.chips li { font-family: var(--mono); font-size: .68rem; letter-spacing: .02em; color: var(--on-dark); padding: .4rem .75rem; border-radius: var(--pill); background: rgba(255,255,255,0.07); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.14); }
.evlog { border-radius: var(--r-in); overflow: hidden; background: rgba(4,20,18,0.55); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1); backdrop-filter: blur(6px); }
.evlog-hd { display: flex; align-items: center; gap: .6rem; padding: .8rem 1rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.ev-dots { display: flex; gap: 5px; } .ev-dots i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.2); }
.ev-title { font-family: var(--mono); font-size: .68rem; letter-spacing: .06em; color: var(--on-dark-2); }
.live-pill { margin-left: auto; display: inline-flex; align-items: center; gap: .4em; font-family: var(--mono); font-size: .64rem; letter-spacing: .06em; text-transform: uppercase; color: #4ADE80; padding: .25rem .55rem; border-radius: var(--pill); background: rgba(74,222,128,0.12); }
.live-pill--sm { color: var(--teal); background: rgba(var(--teal-rgb),0.1); margin-left: .5rem; padding: .12rem .4rem; font-size: .56rem; vertical-align: middle; }
.live-pill--sm .live-dot { background: var(--teal-2); animation: none; }
.evlog-body { padding: .5rem; display: flex; flex-direction: column; }
.ev { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: .8rem; padding: .55rem .7rem; border-radius: 8px; font-family: var(--mono); font-size: .76rem;
  opacity: 0; transform: translateX(-8px); animation: ev-in .5s var(--ease) forwards; }
.evlog-body .ev:nth-child(1){animation-delay:.1s}.evlog-body .ev:nth-child(2){animation-delay:.5s}.evlog-body .ev:nth-child(3){animation-delay:.9s}
.evlog-body .ev:nth-child(4){animation-delay:1.3s}.evlog-body .ev:nth-child(5){animation-delay:1.7s}.evlog-body .ev:nth-child(6){animation-delay:2.1s}
@keyframes ev-in { to { opacity: 1; transform: none; } }
.ev-t { color: rgba(255,255,255,0.4); }
.ev-name { color: var(--on-dark); }
.ev-meta { color: var(--on-dark-2); font-size: .72rem; }
.ev-meta.ok { color: #4ADE80; }
.ev--ok { background: rgba(74,222,128,0.06); }
@media (max-width: 820px){ .infra-tile { grid-template-columns: 1fr; } }
@media (max-width: 440px){ .ev { grid-template-columns: auto 1fr; } .ev-meta { grid-column: 2; text-align: right; } .ev-t { display: none; } }

/* ============================================================================
   ENTERPRISE POLISH — chapter rhythm, scroll-spy nav, tile craft
   ==========================================================================*/

/* honour the Fraunces optical-size axis at every display size */
html { font-optical-sizing: auto; }

/* editorial chapter numbers — a huge ghosted index behind every section head,
   the magazine-grade move that gives the page real rhythm & hierarchy */
main { counter-reset: chapter; }
.section-head { counter-increment: chapter; position: relative; }
.section-head::before {
  content: counter(chapter, decimal-leading-zero);
  position: absolute; top: -0.52em; right: -0.04em;
  font-family: var(--display); font-style: italic; font-weight: 400;
  font-size: clamp(4.5rem, 11vw, 9.5rem); line-height: 1.18;
  letter-spacing: -0.04em; padding: 0.12em 0.1em 0.16em;
  color: transparent;
  background: linear-gradient(160deg, rgba(var(--teal-rgb),0.16), rgba(var(--coral-rgb),0.10));
  -webkit-background-clip: text; background-clip: text;
  pointer-events: none; z-index: 0; user-select: none; overflow: visible;
}
.section-head > * { position: relative; z-index: 1; }
.section-head.center::before { left: 50%; right: auto; transform: translateX(-50%); top: -0.9em; }
@media (max-width: 640px){ .section-head::before { font-size: 4rem; top: -0.7em; opacity: .8; } }

/* chapter bands — clearly-felt warm panels that split the scroll into movements */
.section--band { position: relative; background: var(--paper-2); }
.section--band::before, .section--band::after { content: ""; position: absolute; left: 0; right: 0; height: 1px; background: var(--hair-2); pointer-events: none; }
.section--band::before { top: 0; }
.section--band::after  { bottom: 0; }

/* scroll-spy: the nav quietly tracks where you are on the page */
.nav-links a { position: relative; }
.nav-links a.active { color: var(--teal); }
.nav-links a.active::after { content: ""; position: absolute; left: 50%; bottom: 2px; transform: translateX(-50%); width: 4px; height: 4px; border-radius: 50%; background: var(--teal); }
@media (max-width: 999px){
  .nav-links a.active { background: rgba(var(--teal-rgb),0.08); }
  .nav-links a.active::after { display: none; }
}

/* refined tile hover — a breath of teal at the edge, deeper coloured lift */
.tile--hover:hover {
  box-shadow: inset 0 0 0 1px rgba(var(--teal-rgb),0.22), var(--lift-2), 0 32px 64px -34px rgba(var(--teal-rgb),0.34);
}

/* dark compartments catch a soft top-corner sheen for depth */
.tile--dark::before, .price--featured::before {
  content: ""; position: absolute; top: 0; right: 0; width: 62%; height: 62%; pointer-events: none;
  background: radial-gradient(120% 120% at 100% 0%, rgba(255,255,255,0.10), transparent 60%);
}

/* ============================================================================
   RESPONSIVE — bento reflow
   ==========================================================================*/
@media (max-width: 560px){
  .hero-stats { flex-wrap: wrap; gap: 1.2rem 2rem; }
  :root { --gap: 12px; }
}
