/* ===================================================================
   Grovia · Editorial Landing v5
   White bg, off-white cards, lime accent, forest deep green.
   =================================================================== */

:root {
  --lime: #B5FF00;
  --lime-soft: #DFFF8A;
  --forest: #195935;
  --forest-deep: #0E3D24;
  --forest-soft: #C9E5D5;
  --ink: #050505;
  --ink-soft: #1A1A1A;
  --white: #FFFFFF;
  --paper: #F7F7F2;
  --paper-2: #EFEFE9;
  --line: rgba(5, 5, 5, 0.08);
  --line-strong: rgba(5, 5, 5, 0.18);
  --muted: rgba(5, 5, 5, 0.58);
  --muted-soft: rgba(5, 5, 5, 0.42);

  --font-display: 'Questrial', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-serif: 'Instrument Serif', 'Times New Roman', serif;

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  --container: 1320px;
  --pad-x: clamp(18px, 3.4vw, 36px);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ===== Reset ===== */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
input, button { font-family: inherit; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin: 0;
  text-wrap: balance;
}
em { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
p { margin: 0; text-wrap: pretty; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

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

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px;
  border-radius: var(--r-pill);
  font-size: 14.5px;
  letter-spacing: -0.005em;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms var(--ease), color 220ms var(--ease);
  white-space: nowrap;
  font-weight: 500;
}
.btn:hover { transform: translateY(-1px); }
.btn--ink { background: var(--ink); color: var(--paper); }
.btn--ink:hover { background: var(--ink-soft); box-shadow: 0 12px 28px -16px rgba(5, 5, 5, 0.5); }
.btn--ink .btn__arrow { background: var(--lime); color: var(--ink); }
.btn--lime { background: var(--lime); color: var(--ink); }
.btn--lime:hover { background: #c8ff33; box-shadow: 0 12px 28px -16px rgba(181, 255, 0, 0.6); }
.btn--paper { background: var(--paper); color: var(--ink); border: 1px solid var(--line); }
.btn--paper:hover { background: var(--white); box-shadow: 0 8px 18px -10px rgba(5, 5, 5, 0.18); }
.btn--outline-ink {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn--outline-ink:hover {
  background: var(--ink);
  color: var(--paper);
}
.btn--header {
  padding: 8px 16px 8px 18px;
  font-size: 14px;
}
.btn__arrow {
  display: inline-grid; place-items: center;
  width: 20px; height: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  transition: transform 220ms var(--ease);
}
.btn--lime .btn__arrow,
.btn--paper .btn__arrow,
.btn--outline-ink .btn__arrow { background: rgba(5, 5, 5, 0.08); }
.btn--outline-ink:hover .btn__arrow { background: rgba(255, 255, 255, 0.14); }
.btn:hover .btn__arrow { transform: translateX(3px); }
.btn__arrow svg { width: 11px; height: 11px; }

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 12px; left: 0; right: 0;
  z-index: 50;
  display: flex; justify-content: center;
  padding: 0 var(--pad-x);
  pointer-events: none;
}
.site-header__bar {
  pointer-events: auto;
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 8px 8px 22px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(5, 5, 5, 0.06);
  box-shadow: 0 4px 18px -10px rgba(5, 5, 5, 0.15);
  transition: background 220ms var(--ease);
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
}
.brand__logo {
  display: block;
  height: 34px; width: auto;
}
.site-nav {
  display: flex; gap: 4px;
  font-size: 14px;
}
.site-nav a {
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--ink);
  transition: color 200ms var(--ease), background 200ms var(--ease);
}
.site-nav a:hover { background: rgba(5, 5, 5, 0.06); }

/* ===== HERO ===== */
.hero {
  background: var(--white);
  padding: 92px 0 28px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}
.hero-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 1/1;
  display: flex; flex-direction: column;
}

/* Lime card */
.hero-card--lime {
  background: var(--lime);
  padding: clamp(28px, 4vw, 56px);
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
}
.hero-card__eyebrow {
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(5, 5, 5, 0.7);
  font-weight: 500;
}
.hero-card__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 64px);
  letter-spacing: -0.03em;
  line-height: 0.98;
  color: var(--ink);
  margin: 4px 0 6px;
  max-width: 22ch;
}
.hero-card__title em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--forest);
}
.hero-card__sub {
  font-size: clamp(14.5px, 1vw, 16px);
  color: rgba(5, 5, 5, 0.78);
  max-width: 38ch;
  line-height: 1.45;
}
.hero-card__cta {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
  margin-top: 8px;
}
.hero-card__proof {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  margin-top: 16px;
}
.proof-stars {
  display: inline-flex; gap: 3px;
  color: var(--ink);
}
.proof-stars svg { width: 14px; height: 14px; }
.proof-label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(5, 5, 5, 0.68);
  font-weight: 500;
}

/* Photo card */
.hero-card--photo {
  background: var(--ink);
}
.hero-card--photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-card__quote {
  position: absolute; top: 22px; left: 22px;
  max-width: 280px;
  padding: 14px 36px 14px 18px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 8px 24px -12px rgba(5, 5, 5, 0.3);
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--ink);
}
.hero-card__quote-arrow {
  position: absolute; top: 12px; right: 12px;
  width: 26px; height: 26px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  display: grid; place-items: center;
  color: var(--ink);
}
.hero-card__quote-arrow svg { width: 12px; height: 12px; }
.hero-card__pill {
  position: absolute; right: 22px; bottom: 22px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px 10px 14px;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-pill);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Marquee */
.hero-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.hero-marquee__track {
  display: inline-flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 34s linear infinite;
}
.hero-marquee__item {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}
.hero-marquee__item i {
  color: var(--lime);
  font-style: normal;
  font-size: 22px;
  display: inline-block;
  transform: translateY(2px);
}
.hero-marquee__item.is-soft { color: rgba(5, 5, 5, 0.22); }
.hero-marquee__item.is-soft i { color: rgba(5, 5, 5, 0.22); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Section base ===== */
.section {
  padding: clamp(56px, 7vw, 110px) 0;
  position: relative;
}
.section--tight { padding: clamp(48px, 6vw, 96px) 0; }

.section__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
  align-items: flex-end;
}
.section__top-left { max-width: 760px; display: grid; gap: 18px; }
.section__top-right { display: grid; gap: 12px; justify-items: flex-end; text-align: right; }
.section__title {
  font-size: clamp(32px, 4.4vw, 60px);
  letter-spacing: -0.03em;
  line-height: 1.04;
}
.section__title em {
  position: relative;
  font-family: var(--font-display);
  font-style: normal;
  white-space: nowrap;
  padding: 0 0.08em;
  z-index: 1;
}
.section__title em::before {
  content: '';
  position: absolute;
  left: -3%; right: -3%;
  bottom: 4%;
  height: 56%;
  background: var(--lime);
  z-index: -1;
  border-radius: 4px;
  transform: skewX(-6deg);
}
.section__lead {
  font-size: clamp(15px, 1.15vw, 17px);
  color: var(--muted);
  max-width: 56ch;
  line-height: 1.55;
}
.section__lead-block {
  display: grid; gap: 12px;
  font-size: clamp(15px, 1.15vw, 17px);
  color: var(--muted);
  max-width: 60ch;
  line-height: 1.55;
}
.section__lead-block p { margin: 0; }

/* ===== Pain ===== */
.pain { background: var(--white); }
.pain__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 18px;
  align-items: stretch;
}
.pain__question {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-lg);
  padding: 40px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.pain__question-eyebrow {
  font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.pain__question-title {
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.03em;
  line-height: 1.04;
}
.pain__question-title em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--lime);
}
.pain__answer {
  margin-top: auto;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.68);
  max-width: 38ch;
  line-height: 1.55;
}
.pain__list {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex; flex-direction: column;
}
.pain__list-eyebrow {
  font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 18px;
}
.pain__list ul {
  list-style: none; padding: 0; margin: 0;
  display: grid;
}
.pain__list li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 14px;
  font-size: 14.5px;
}
.pain__list li:first-child { border-top: 0; }
.pain__list li::before {
  content: '';
  width: 7px; height: 7px; border-radius: 999px;
  background: #d94040;
  flex: 0 0 auto;
}
.pain__cta {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px;
}
.pain__cta span { font-size: 13.5px; color: var(--muted); }

/* ===== Bento Antes vs Depois ===== */
.compare-bento {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 16px;
  grid-template-areas:
    "photo trad"
    "photo grov"
    "photo cards";
}
.cb-photo {
  grid-area: photo;
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--paper);
  min-height: 720px;
}
.cb-photo image-slot {
  position: absolute; inset: 0;
  width: 100% !important; height: 100% !important;
}
.cb-photo__overlay {
  position: absolute; inset: 0;
  padding: 28px;
  display: flex; flex-direction: column; justify-content: space-between;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5,5,5,0.25) 0%, transparent 28%, transparent 45%, rgba(5,5,5,0.55) 75%, rgba(5,5,5,0.82) 100%);
  color: var(--white);
}
.cb-photo__top { display: flex; justify-content: space-between; align-items: flex-start; }
.cb-photo__num { font-family: var(--font-display); font-size: 13px; letter-spacing: 0.06em; }
.cb-photo__label {
  font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 5px 10px; background: rgba(255,255,255,0.18); border-radius: 999px;
  backdrop-filter: blur(8px);
}
.cb-photo__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -0.025em;
  line-height: 1.1;
  max-width: 18ch;
}
.cb-photo__title em { color: var(--lime); font-family: var(--font-serif); }

.cb-trad {
  grid-area: trad;
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--r-lg);
  padding: 26px 28px;
  display: flex; flex-direction: column; gap: 12px;
  overflow: hidden;
}
.cb-trad__head { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
.cb-trad__num { font-family: var(--font-display); font-size: 12px; color: var(--muted); }
.cb-trad__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  letter-spacing: -0.02em; line-height: 1.05;
}
.cb-trad__list {
  list-style: none; padding: 0; margin: 4px 0 0;
  display: grid; gap: 0;
}
.cb-trad__list li {
  display: flex; align-items: center; gap: 12px;
  padding: 9px 0;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.35;
}
.cb-trad__list li:first-child { border-top: 0; }
.cb-trad__ic {
  width: 20px; height: 20px; border-radius: 999px;
  background: rgba(5,5,5,0.05);
  color: rgba(5,5,5,0.55);
  display: grid; place-items: center; flex: 0 0 auto;
}
.cb-trad__ic svg { width: 11px; height: 11px; }

.cb-grov {
  grid-area: grov;
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid var(--lime);
  border-radius: var(--r-lg);
  padding: 26px 28px;
  display: flex; flex-direction: column; gap: 12px;
  overflow: hidden;
  box-shadow: 0 0 0 6px rgba(181, 255, 0, 0.18);
}
.cb-grov__head { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
.cb-grov__num { font-family: var(--font-display); font-size: 12px; color: var(--muted); }
.cb-grov__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  letter-spacing: -0.02em; line-height: 1.05;
}
.cb-grov__title em { font-family: var(--font-serif); font-style: italic; color: var(--forest); }
.cb-grov__logo {
  display: block;
  height: 30px;
  width: auto;
}
.cb-grov__list {
  list-style: none; padding: 0; margin: 4px 0 0;
  display: grid; gap: 0;
}
.cb-grov__list li {
  display: flex; align-items: center; gap: 12px;
  padding: 9px 0;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  line-height: 1.35;
}
.cb-grov__list li:first-child { border-top: 0; }
.cb-grov__ic {
  width: 20px; height: 20px; border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  display: grid; place-items: center; flex: 0 0 auto;
}
.cb-grov__ic svg { width: 11px; height: 11px; }

.cb-cards {
  grid-area: cards;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cb-card {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
  min-height: 220px;
}
.cb-card--dark { background: var(--ink); color: var(--paper); }
.cb-card__num { font-family: var(--font-display); font-size: 12px; opacity: 0.55; }
.cb-card__title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: -0.02em;
}
.cb-card__big-num {
  margin-top: auto;
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  letter-spacing: -0.04em;
  line-height: 0.95;
}
.cb-card--dark .cb-card__big-num { color: var(--lime); }
.cb-card__hint { font-size: 13px; color: var(--muted); margin-top: 4px; }
.cb-card--dark .cb-card__hint { color: rgba(255,255,255,0.55); }

.section__bottom-cta {
  margin-top: 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; flex-wrap: wrap;
}
.section__bottom-cta-text {
  font-family: var(--font-serif); font-style: italic;
  font-size: 20px;
  color: var(--ink);
}

/* ===== Introducing Dara ===== */
.intro-dara-wrap { padding: clamp(48px, 6vw, 96px) 0; }
.intro-dara {
  background: var(--forest);
  color: var(--paper);
  border-radius: var(--r-xl);
  margin: 0 var(--pad-x);
  padding: clamp(56px, 6vw, 88px) clamp(32px, 4vw, 72px);
  position: relative;
  overflow: hidden;
}
.intro-dara__bg {
  position: absolute; inset: -10% -10% auto auto;
  width: 60%; aspect-ratio: 1/1; z-index: 0;
  background: radial-gradient(50% 50% at 50% 50%, rgba(181, 255, 0, 0.18), transparent 70%);
}
.intro-dara__inner {
  position: relative; z-index: 1;
  max-width: 1180px; margin: 0 auto;
  display: grid; gap: 40px;
}
.intro-dara__head {
  display: flex; flex-direction: column; gap: 14px;
  text-align: center; align-items: center;
}
.intro-dara__title {
  font-size: clamp(44px, 6.4vw, 96px);
  letter-spacing: -0.035em;
  line-height: 0.96;
}
.intro-dara__title em {
  color: var(--lime); font-family: var(--font-serif);
}

.intro-dara__shot { margin: 0 auto; max-width: 1100px; width: 100%; }
.intro-dara__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.intro-dara__copy { display: grid; gap: 22px; }
.intro-dara__sub {
  font-size: clamp(15px, 1.15vw, 17px);
  color: rgba(255,255,255,0.78);
  max-width: 44ch;
  line-height: 1.5;
}
.intro-dara__list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px;
}
.intro-dara__list li {
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.14);
  display: flex; align-items: center; gap: 12px;
  font-size: 14.5px;
}
.intro-dara__list li:first-child,
.intro-dara__list li:nth-child(2) { border-top: 0; }
.intro-dara__list .n {
  font-family: var(--font-display);
  font-size: 11.5px;
  color: rgba(255,255,255,0.45);
  width: 20px;
}
.intro-dara__cta { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

/* ===== Glass screenshot frame ===== */
.glass-frame {
  position: relative;
  width: 100%;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.18);
  padding: 8px 8px 10px;
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 24px 60px -28px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05);
}
.glass-frame--light {
  background: linear-gradient(180deg, rgba(5,5,5,0.04), rgba(5,5,5,0.02));
  border-color: rgba(5,5,5,0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 24px 60px -28px rgba(5, 5, 5, 0.28),
    0 0 0 1px rgba(5, 5, 5, 0.04);
}
.glass-frame__bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 12px 8px;
  font-size: 11.5px; color: rgba(255,255,255,0.7);
}
.glass-frame--light .glass-frame__bar { color: var(--muted); }
.glass-frame__dots { display: inline-flex; gap: 5px; }
.glass-frame__dots i {
  width: 9px; height: 9px; border-radius: 999px;
  background: rgba(255,255,255,0.2);
}
.glass-frame--light .glass-frame__dots i { background: rgba(5,5,5,0.1); }
.glass-frame__url {
  font-size: 11.5px; letter-spacing: 0.04em;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
}
.glass-frame--light .glass-frame__url {
  background: rgba(5,5,5,0.04);
  border-color: rgba(5,5,5,0.06);
}
.glass-frame__status {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
}
.pulse-dot {
  width: 7px; height: 7px; border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(181, 255, 0, 0.5);
  animation: pulse 2s var(--ease) infinite;
  display: inline-block;
  flex: 0 0 auto;
}
.glass-frame--light .pulse-dot {
  background: var(--forest);
  box-shadow: 0 0 0 0 rgba(25, 89, 53, 0.5);
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(181, 255, 0, 0.4); }
  100% { box-shadow: 0 0 0 10px rgba(181, 255, 0, 0); }
}
.glass-frame__body {
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(5, 5, 5, 0.06);
  display: block;
  line-height: 0;
}
.glass-frame__body img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ===== Diferencial ===== */
.diff { background: var(--white); }
.diff__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
  align-items: stretch;
}
.diff__poster {
  background: var(--lime);
  border-radius: var(--r-lg);
  padding: 48px 40px 40px;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
  min-height: 540px;
}
.diff__poster-eyebrow {
  font-size: 11.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink); opacity: 0.6;
  margin-bottom: 22px;
}
.diff__words {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 92px);
  letter-spacing: -0.04em;
  line-height: 0.94;
}
.diff__words em { font-family: var(--font-serif); }
.diff__words .word { display: block; }
.diff__words .word--soft { color: rgba(5,5,5,0.42); }
.diff__poster-foot {
  margin-top: auto;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 18px; flex-wrap: wrap;
  font-size: 14px;
}
.diff__poster-foot p { max-width: 36ch; line-height: 1.5; }
.diff__poster-foot strong { font-weight: 500; }
.diff__photo--full {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--paper);
  min-height: 540px;
}
.diff__photo--full image-slot {
  position: absolute; inset: 0;
  width: 100% !important; height: 100% !important;
}
.diff__photo-overlay {
  position: absolute; inset: 0; z-index: 2;
  padding: 32px;
  display: flex; flex-direction: column; justify-content: space-between;
  background: linear-gradient(180deg, rgba(5,5,5,0.22) 0%, transparent 28%, transparent 42%, rgba(5,5,5,0.55) 72%, rgba(5,5,5,0.82) 100%);
  color: var(--white);
  pointer-events: none;
}
.diff__photo-chip {
  align-self: flex-start;
  padding: 6px 12px;
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  border-radius: 999px;
}
.diff__photo-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 36px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  max-width: 18ch;
}
.diff__photo-title em { font-family: var(--font-serif); color: var(--lime); }

/* ===== Não é chatbot ===== */
.notchat { background: var(--white); }
.notchat__title {
  font-size: clamp(32px, 4.4vw, 60px);
  letter-spacing: -0.03em;
  line-height: 1.04;
}
.notchat__title em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--forest);
}
.notchat__shot { margin: 0 auto 40px; max-width: 1200px; }
.notchat__bottom {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: flex-end;
}
.notchat__list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 0;
}
.notchat__list li {
  display: grid; grid-template-columns: 28px 1fr auto; align-items: center; gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
}
.notchat__list li:first-child { border-top: 0; }
.notchat__list .n {
  font-family: var(--font-display); font-size: 11.5px; color: var(--muted);
}
.notchat__list .chip {
  font-size: 11px; padding: 4px 10px;
  background: var(--paper); border-radius: 999px;
  color: var(--muted); letter-spacing: 0.06em;
}
.notchat__cta {
  display: flex; flex-direction: column; gap: 12px; align-items: flex-start;
}

/* ===== OS section ===== */
.os { background: var(--paper); }
.os__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}
.os__poster {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 40px;
  display: flex; flex-direction: column; gap: 24px;
}
.os__statement {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.4vw, 60px);
  letter-spacing: -0.035em;
  line-height: 1.04;
}
.os__statement-soft { color: var(--muted); }
.os__statement em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--forest);
}
.os__poster-body { font-size: 15.5px; color: var(--muted); max-width: 46ch; line-height: 1.55; }
.os__poster-body strong { color: var(--ink); font-weight: 500; }
.os__poster-cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

.os__photo {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--paper-2);
  min-height: 420px;
}
.os__photo image-slot {
  position: absolute; inset: 0;
  width: 100% !important; height: 100% !important;
}
.os__photo-overlay {
  position: absolute; inset: 0; z-index: 2;
  padding: 32px;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(180deg, rgba(5,5,5,0.2), transparent 35%, transparent 55%, rgba(5,5,5,0.6) 80%, rgba(5,5,5,0.85) 100%);
  color: var(--white);
  pointer-events: none;
}
.os__photo-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 34px);
  letter-spacing: -0.025em;
  max-width: 18ch;
  line-height: 1.05;
}

/* ===== Bento ferramentas ===== */
.tools-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 14px;
}
.tool {
  position: relative;
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
  overflow: hidden;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease);
}
.tool:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -24px rgba(5,5,5,0.18); }
.tool__num {
  position: absolute; top: 18px; right: 20px;
  font-family: var(--font-display); font-size: 11.5px; color: var(--muted);
}
.tool__head { display: flex; align-items: center; gap: 12px; margin-bottom: 2px; }
.tool__icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--white);
  display: grid; place-items: center;
  color: var(--ink);
  border: 1px solid var(--line);
  flex: 0 0 auto;
}
.tool__icon svg { width: 20px; height: 20px; }
.tool__icon--svg {
  background: var(--white);
  padding: 8px;
}
.tool__icon--svg img { width: 100%; height: 100%; object-fit: contain; display: block; }
.tool__icon--dara {
  width: 48px; height: 48px;
  background: var(--paper);
  border-color: transparent;
  padding: 9px;
}
.tool__icon--dara img { width: 100%; height: 100%; object-fit: contain; display: block; }
.tool__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.tool__text { font-size: 14px; color: var(--muted); max-width: 36ch; line-height: 1.5; }

/* 01 Dara feature */
.tool--feature {
  grid-column: span 4;
  grid-row: span 2;
  background: var(--ink);
  color: var(--paper);
  padding: 32px;
}
.tool--feature .tool__title { font-size: clamp(36px, 4.4vw, 54px); letter-spacing: -0.03em; }
.tool--feature .tool__text { color: rgba(255,255,255,0.7); font-size: 16px; max-width: 40ch; }
.tool--feature .tool__num { color: rgba(255,255,255,0.45); }

/* 02 Photo */
.tool--photo {
  grid-column: span 2;
  grid-row: span 2;
  background: var(--forest);
  color: var(--paper);
  padding: 0;
}
.tool--photo .tool__photo-wrap { position: absolute; inset: 0; }
.tool--photo image-slot {
  position: absolute; inset: 0;
  width: 100% !important; height: 100% !important;
}
.tool--photo .tool__overlay {
  position: absolute; left: 0; right: 0; top: 0; bottom: 0;
  z-index: 3;
  padding: 24px;
  display: flex; flex-direction: column; justify-content: space-between;
  background: linear-gradient(180deg, rgba(5,5,5,0.85) 0%, rgba(5,5,5,0.6) 22%, transparent 50%, transparent 68%, rgba(5,5,5,0.25) 100%);
  color: var(--white);
  pointer-events: none;
}
.tool--photo .tool__title { color: var(--white); font-size: clamp(22px, 2.4vw, 28px); }
.tool--photo .tool__num { color: rgba(255,255,255,0.7); }

/* 03/04/05/06/07/08 Third cards */
.tool--third { grid-column: span 2; }
.tool__status {
  align-self: flex-start;
  margin-top: auto;
  padding: 5px 11px;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  background: rgba(25, 89, 53, 0.1);
  color: var(--forest);
  border-radius: 999px;
}
.tool--soon { background: var(--paper-2); }
.tool--soon .tool__icon--svg img { opacity: 0.55; }
.tool--soon .tool__title { color: rgba(5,5,5,0.65); }
.tool--soon .tool__text { color: var(--muted-soft); }
.tool__soon-tag {
  position: absolute; top: 16px; left: 20px;
  padding: 4px 10px;
  font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
  background: var(--ink); color: var(--lime);
  border-radius: 999px;
}
.tool--soon .tool__head { margin-top: 22px; }

/* Full-width dashboard shot */
.tool--full-shot {
  grid-column: span 6;
  padding: 24px 0 0 0;
  background: var(--paper);
  display: flex; flex-direction: column; gap: 16px;
}
.tool--full-shot__head {
  padding: 0 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  flex-wrap: wrap;
}
.tool--full-shot__head .tool__title { font-size: clamp(20px, 2.2vw, 26px); margin: 4px 0; }
.tool--full-shot__head .tool__num { position: static; }
.tool--full-shot__img {
  margin: 0 14px 14px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  display: block;
  line-height: 0;
}
.tool--full-shot__img img {
  width: 100%; height: auto;
  display: block;
  object-fit: contain;
}

/* tool__art mini visuals */
.tool__art { margin-top: auto; }
.tool-chart {
  display: grid; grid-template-columns: repeat(14, 1fr); align-items: end; gap: 5px;
  height: 90px; margin-top: 12px;
}
.tool-chart span {
  background: rgba(181, 255, 0, 0.3);
  border-radius: 3px 3px 1px 1px;
  position: relative;
}
.tool-chart span::after {
  content: ''; position: absolute; inset: auto 0 0 0; height: 35%;
  background: var(--lime); border-radius: inherit;
}

/* ===== Price ===== */
.price { background: var(--white); }
.price__card {
  position: relative;
  background: var(--lime);
  border-radius: var(--r-xl);
  padding: clamp(32px, 4vw, 60px);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.price__card::before {
  content: '';
  position: absolute; inset: auto -10% -40% auto;
  width: 60%; aspect-ratio: 1/1;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255,255,255,0.4), transparent 70%);
  pointer-events: none;
}
.price__num {
  font-family: var(--font-display);
  font-size: clamp(80px, 11vw, 168px);
  line-height: 0.88;
  letter-spacing: -0.05em;
  color: var(--ink);
}
.price__num small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.14em;
  letter-spacing: -0.01em;
  font-weight: 500;
  color: var(--ink-soft);
  margin-top: 8px;
}
.price__right { position: relative; z-index: 1; }
.price__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}
.price__title em { font-family: var(--font-serif); }
.price__list {
  list-style: none; padding: 0; margin: 22px 0 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px 18px;
}
.price__list li {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0;
  border-top: 1px solid rgba(5,5,5,0.18);
  font-size: 13.5px; color: var(--ink);
}
.price__list li:first-child,
.price__list li:nth-child(2) { border-top: 0; }
.price__list .ic {
  width: 18px; height: 18px; border-radius: 999px;
  background: var(--ink); color: var(--lime);
  display: grid; place-items: center; flex: 0 0 auto;
}
.price__list .ic svg { width: 10px; height: 10px; }
.price__no {
  margin-top: 18px;
  display: flex; gap: 14px; flex-wrap: wrap;
  font-size: 13px; color: rgba(5,5,5,0.6);
}
.price__no span { display: inline-flex; align-items: center; gap: 6px; }
.price__no span::before {
  content: '×';
  font-family: var(--font-serif); font-weight: 600;
  color: rgba(5,5,5,0.4); font-style: italic;
}
.price__cta { margin-top: 26px; display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* ===== CTA Final ===== */
.cta-final {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  padding: clamp(80px, 11vw, 160px) 0 clamp(64px, 9vw, 130px);
  text-align: center;
}
.cta-final__bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('assets/cta-bg.png');
  background-size: cover;
  background-position: center 65%;
  opacity: 0.6;
}
.cta-final__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(80% 60% at 50% 50%, rgba(5,5,5,0) 0%, rgba(5,5,5,0.55) 80%),
    linear-gradient(180deg, rgba(5,5,5,0.35), rgba(5,5,5,0.6));
}
.cta-final__inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.cta-final__title {
  font-size: clamp(40px, 6.4vw, 100px);
  letter-spacing: -0.035em;
  max-width: 14ch;
  line-height: 0.96;
}
.cta-final__title em { color: var(--lime); font-family: var(--font-serif); }
.cta-final__sub {
  color: rgba(255,255,255,0.7);
  font-size: clamp(15px, 1.15vw, 17px);
  max-width: 48ch;
}
.cta-final__form-wrap {
  margin-top: 22px;
  width: 100%; max-width: 880px;
}

/* Waitlist form */
.waitlist {
  width: 100%;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: var(--r-pill);
  padding: 6px;
  display: grid;
  grid-template-columns: 1.1fr 1.3fr 1.1fr auto;
  align-items: center;
  gap: 0;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 18px 40px -22px rgba(5, 5, 5, 0.4);
  transition: box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}
.waitlist:focus-within {
  border-color: rgba(25, 89, 53, 0.45);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 0 0 4px rgba(181, 255, 0, 0.35),
    0 18px 40px -22px rgba(5, 5, 5, 0.4);
}
.waitlist__field { position: relative; display: flex; align-items: center; }
.waitlist__field + .waitlist__field { border-left: 1px solid rgba(5, 5, 5, 0.08); }
.waitlist__field input {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 12px 16px;
  font-size: 14.5px;
  color: var(--ink);
  outline: none;
}
.waitlist__field input::placeholder { color: rgba(5, 5, 5, 0.42); }
.waitlist__submit {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px;
  background: var(--lime); color: var(--ink);
  border-radius: var(--r-pill);
  font-size: 14px;
  letter-spacing: -0.005em;
  transition: transform 200ms var(--ease), background 200ms var(--ease);
  font-weight: 500;
}
.waitlist__submit:hover { background: #c8ff33; transform: translateY(-1px); }
.waitlist__submit svg { width: 13px; height: 13px; }
.waitlist__success {
  display: none;
  width: 100%;
  padding: 16px 22px;
  background: var(--lime);
  color: var(--ink);
  border-radius: var(--r-pill);
  text-align: center;
  font-size: 14.5px;
  margin-bottom: 14px;
  align-items: center; justify-content: center; gap: 10px;
}
.waitlist__success.is-visible { display: inline-flex; }

/* ===== Captcha ===== */
.captcha {
  margin-top: 14px;
  display: flex; flex-direction: column; gap: 8px;
  align-items: center;
}
.captcha__inner {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 6px 6px 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: var(--r-pill);
  font-size: 13.5px;
  color: var(--ink);
}
.captcha__question { color: var(--muted); }
.captcha__question strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 15px;
  color: var(--ink);
  padding: 0 4px;
}
.captcha input {
  width: 56px;
  border: 0; outline: 0;
  background: var(--paper);
  border-radius: var(--r-pill);
  padding: 7px 10px;
  font-size: 14px;
  text-align: center;
  font-feature-settings: "tnum";
}
.captcha input:focus {
  background: var(--white);
  box-shadow: 0 0 0 2px rgba(181, 255, 0, 0.5);
}
.captcha__refresh {
  width: 30px; height: 30px;
  border-radius: 999px;
  background: var(--paper);
  display: grid; place-items: center;
  color: var(--muted);
  transition: background 200ms var(--ease), color 200ms var(--ease), transform 400ms var(--ease);
}
.captcha__refresh:hover { background: var(--ink); color: var(--lime); transform: rotate(-90deg); }
.captcha__refresh svg { width: 13px; height: 13px; }
.captcha__hint {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.55);
}

/* ===== Footer ===== */
.footer {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 44px 0 28px;
}
.footer__top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.footer__about p { color: var(--muted); margin-top: 12px; max-width: 36ch; font-size: 13.5px; }
.footer__col h4 {
  font-family: var(--font-body); font-weight: 500;
  font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer__col a { color: var(--ink); font-size: 13.5px; }
.footer__col a:hover { color: var(--forest); }
.footer__bottom {
  margin-top: 22px;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  flex-wrap: wrap;
  font-size: 12.5px; color: var(--muted);
}

/* ===== Fluxo section ===== */
.flow { background: var(--white); }
.flow__stage {
  position: relative;
  background: transparent;
  border-radius: var(--r-xl);
  overflow: visible;
  padding: 48px 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0;
  min-height: 420px;
  isolation: isolate;
}
.flow__stage::before {
  content: '';
  position: absolute; inset: -10% -2%;
  background:
    radial-gradient(40% 55% at 50% 50%, rgba(181, 255, 0, 0.16), transparent 70%),
    radial-gradient(30% 50% at 12% 50%, rgba(25, 89, 53, 0.07), transparent 70%),
    radial-gradient(30% 50% at 88% 50%, rgba(25, 89, 53, 0.07), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.flow__col {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.flow__col--clients { align-items: flex-start; }
.flow__col--team { align-items: flex-end; }
.flow__col-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 9px 16px 9px 14px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 6px 18px -12px rgba(5,5,5,0.25);
}
.flow__col-label::before {
  content: '';
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 0 3px rgba(181, 255, 0, 0.25);
}
.flow__col--team .flow__col-label::before { background: var(--forest); box-shadow: 0 0 0 3px rgba(25, 89, 53, 0.18); }
.flow__nodes {
  display: grid; gap: 14px;
}
.flow__col--clients .flow__nodes { justify-items: flex-start; }
.flow__col--team .flow__nodes { justify-items: flex-end; }
.flow__node {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--ink);
  position: relative;
  box-shadow: 0 8px 20px -14px rgba(5,5,5,0.18);
  transition: border-color 240ms var(--ease), background 240ms var(--ease), box-shadow 240ms var(--ease), color 240ms var(--ease), transform 240ms var(--ease);
}
.flow__node svg { width: 24px; height: 24px; }
.flow__node.is-active {
  border-color: var(--forest);
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 0 0 4px rgba(181, 255, 0, 0.35), 0 14px 28px -14px rgba(25, 89, 53, 0.45);
  transform: translateX(0) scale(1.04);
}

.flow__center {
  position: relative;
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.flow__hub {
  position: relative;
  width: 124px; height: 124px;
  display: grid; place-items: center;
}
.flow__hub-ring,
.flow__hub-ring--2 {
  position: absolute; inset: 0;
  border-radius: 999px;
  border: 1px solid rgba(25, 89, 53, 0.4);
  animation: flowRing 3.4s var(--ease) infinite;
}
.flow__hub-ring--2 { animation-delay: 1.7s; }
@keyframes flowRing {
  0% { transform: scale(0.72); opacity: 0.85; }
  100% { transform: scale(1.55); opacity: 0; }
}
.flow__hub-inner {
  position: relative;
  width: 88px; height: 88px;
  border-radius: 999px;
  background: var(--ink);
  display: grid; place-items: center;
  box-shadow: 0 0 0 8px rgba(181,255,0,0.18), 0 16px 36px -12px rgba(5, 5, 5, 0.35);
}
.flow__hub-inner img { width: 62%; height: 62%; object-fit: contain; filter: brightness(0) invert(1); }
.flow__hub-label {
  font-family: var(--font-display);
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--forest);
}

.flow__svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}
.flow__lines path {
  fill: none;
  stroke: rgba(5,5,5,0.08);
  stroke-width: 1.3;
  stroke-linecap: round;
}
.flow__beams path {
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  filter: drop-shadow(0 0 6px rgba(181, 255, 0, 0.55));
}
.flow__beams path.beam-left  { stroke: url(#beamGradLeft); }
.flow__beams path.beam-right { stroke: url(#beamGradRight); }

.flow__legend {
  margin-top: 28px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.flow__legend-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--muted); line-height: 1.45;
}
.flow__legend-dot {
  width: 10px; height: 10px; border-radius: 999px; flex: 0 0 auto;
}
.flow__legend-dot--in { background: var(--lime); box-shadow: 0 0 12px rgba(181,255,0,0.6); }
.flow__legend-dot--hub { background: var(--forest); }
.flow__legend-dot--out { background: var(--lime); box-shadow: 0 0 12px rgba(181,255,0,0.6); }

/* ===== Reveal animation ===== */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 70ms; }
.reveal[data-delay="2"] { transition-delay: 140ms; }
.reveal[data-delay="3"] { transition-delay: 210ms; }
.reveal[data-delay="4"] { transition-delay: 280ms; }

/* ===== image-slot styling ===== */
image-slot {
  --is-bg: var(--paper-2);
  --is-fg: var(--muted);
  --is-border: var(--line);
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .compare-bento {
    grid-template-columns: 1fr;
    grid-template-areas: "photo" "trad" "grov" "cards";
  }
  .cb-photo { min-height: 440px; }
  .tools-bento { grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(180px, auto); }
  .tool--feature { grid-column: span 4; grid-row: span 2; }
  .tool--photo { grid-column: span 4; grid-row: auto; min-height: 320px; }
  .tool--third { grid-column: span 2; }
  .tool--full-shot { grid-column: span 4; }
  .intro-dara__bottom { grid-template-columns: 1fr; }
  .notchat__bottom { grid-template-columns: 1fr; gap: 24px; align-items: flex-start; }
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { aspect-ratio: auto; min-height: 480px; }
  .section__top { grid-template-columns: 1fr; gap: 18px; }
  .section__top-right { text-align: left; justify-items: flex-start; }
  .pain__grid, .diff__grid, .notchat__grid, .os__grid, .price__card { grid-template-columns: 1fr; }
  .cb-cards { grid-template-columns: 1fr; }
  .intro-dara__list { grid-template-columns: 1fr; }
  .intro-dara__list li:nth-child(2) { border-top: 1px solid rgba(255,255,255,0.14); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .waitlist { grid-template-columns: 1fr; padding: 10px; border-radius: 28px; }
  .waitlist__field + .waitlist__field { border-left: 0; border-top: 1px solid var(--line); }
  .waitlist__submit { justify-content: center; padding: 14px; border-radius: 999px; }
  .site-nav { display: none; }
  .price__list { grid-template-columns: 1fr; }
  .price__list li:first-child,
  .price__list li:nth-child(2) { border-top: 1px solid rgba(5,5,5,0.18); }
  .price__list li:first-child { border-top: 0; }
  .flow__stage { padding: 40px 24px; min-height: 380px; }
  .flow__node { width: 46px; height: 46px; }
  .flow__node svg { width: 20px; height: 20px; }
  .flow__hub { width: 96px; height: 96px; }
  .flow__hub-inner { width: 68px; height: 68px; }
  .flow__legend { grid-template-columns: 1fr; gap: 10px; }
}
@media (max-width: 640px) {
  .tools-bento { grid-template-columns: 1fr; }
  .tool--feature, .tool--photo, .tool--third, .tool--full-shot { grid-column: span 1; grid-row: auto; }
  .tool--photo { min-height: 300px; }
  .footer__top { grid-template-columns: 1fr; }
  .intro-dara__title { font-size: clamp(48px, 12vw, 72px); }
  .notchat__title, .section__title { font-size: clamp(32px, 8vw, 48px); }
  .glass-frame { padding: 5px; border-radius: 16px; }
  .glass-frame__bar { padding: 5px 10px 7px; font-size: 11px; }
  .glass-frame__url { display: none; }
  .captcha__inner { padding: 6px; flex-wrap: wrap; justify-content: center; }
  .hero-card__title { font-size: clamp(30px, 9vw, 48px); }
}
