/* =========================================================================
   SENTIRA — AI Voice-of-Customer Intelligence
   Design system: warm, human, editorial. Violet + coral, Fraunces serif
   headings, genuine light/dark section mix (not all-dark like Evalio, not
   Fundari's rhythm). Every section is its own distinct component — no
   card-grid/spec-row/roster-row patterns reused from the other two sites.
   Mobile nav follows the proven-safe pattern: plain display toggle only,
   explicit height, no transition/animation on the show/hide itself.
   ========================================================================= */

:root {
  --violet-950: #150e24;
  --violet-900: #1d1333;
  --violet-800: #2b1d4d;
  --violet-700: #452c7d;
  --violet-600: #6432c7;
  --violet-500: #7c3aed;
  --violet-400: #a78bfa;
  --violet-100: #ede7fc;
  --violet-50:  #f5f2fe;
  --violet-rgb: 124, 58, 237;

  --coral-600: #d9432f;
  --coral-500: #f2694f;
  --coral-400: #ff8b6b;
  --coral-rgb: 242, 105, 79;

  --cream: #fbf7f2;
  --cream-soft: #f4ede3;
  --line: #e9e1d6;

  --ink: #241a33;
  --ink-soft: #5b4e70;
  --ink-mut: #857a96;

  --on-dark-100: #f3eefb;
  --on-dark-80: #c9bee0;
  --on-dark-60: #9a8cb8;
  --on-dark-40: #6f6293;

  --radius-btn: 999px;
  --radius: 20px;
  --radius-lg: 28px;

  --maxw: 1160px;
  --gutter: clamp(20px, 5vw, 40px);

  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-head: "Fraunces", Georgia, serif;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --shadow-sm: 0 1px 2px rgba(36,26,51,.06), 0 1px 3px rgba(36,26,51,.05);
  --shadow-md: 0 12px 28px -14px rgba(36,26,51,.22);
  --shadow-lg: 0 30px 60px -24px rgba(21,14,36,.35);
}

/* ------------------------------------------------------------------ Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(var(--violet-rgb), .35); border-radius: 6px; }
::selection { background: var(--coral-400); color: #fff; }

/* ---------------------------------------------------------------- Layout */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(60px, 8vw, 116px); position: relative; }
.section--dark { background: var(--violet-950); color: var(--on-dark-100); }
.section--soft { background: var(--cream-soft); }

/* --------------------------------------------------------------- Typography */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.12; letter-spacing: -.01em; color: var(--ink); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.display { font-size: clamp(2.5rem, 5.6vw, 4.2rem); font-weight: 600; letter-spacing: -.02em; }
.h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); }
.lead { font-size: clamp(1.02rem, 1.5vw, 1.18rem); color: var(--ink-soft); line-height: 1.65; }
.section--dark .lead { color: var(--on-dark-80); }

.eyebrow { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-body); font-weight: 700; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--coral-600); }
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--coral-500); }
.section--dark .eyebrow { color: var(--coral-400); }
.section-head { max-width: 660px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head .lead { margin-top: 14px; }
.section-head .eyebrow { margin-bottom: 16px; }
.text-accent { color: var(--violet-600); font-style: italic; }
.section--dark .text-accent { color: var(--violet-400); }

/* ---------------------------------------------------------------- Buttons (pill) */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-family: var(--font-body); font-weight: 600; font-size: .96rem; padding: 14px 26px; border-radius: var(--radius-btn); white-space: nowrap; transition: transform .2s var(--ease), background .2s, color .2s, border-color .2s; }
.btn svg { width: 18px; height: 18px; }
.btn--primary { color: #fff; background: var(--violet-600); box-shadow: 0 10px 22px -10px rgba(var(--violet-rgb),.55); }
.btn--primary:hover { background: var(--violet-700); transform: translateY(-2px); }
.btn--coral { color: #fff; background: var(--coral-500); box-shadow: 0 10px 22px -10px rgba(var(--coral-rgb),.5); }
.btn--coral:hover { background: var(--coral-600); transform: translateY(-2px); }
.btn--line { color: var(--ink); background: transparent; border: 1.5px solid var(--line); }
.btn--line:hover { border-color: var(--violet-500); color: var(--violet-600); transform: translateY(-2px); }
.section--dark .btn--line { color: #fff; border-color: rgba(255,255,255,.22); }
.section--dark .btn--line:hover { border-color: var(--violet-400); color: var(--violet-400); }
.btn--lg { padding: 16px 30px; font-size: 1.02rem; }
.btn--block { width: 100%; }

/* ---------------------------------------------------------------- Navbar (3-zone, solid) */
.nav { position: sticky; top: 0; z-index: 70; background: rgba(251,247,242,.9); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s; }
.nav.is-stuck { border-bottom-color: var(--line); box-shadow: 0 4px 20px -16px rgba(36,26,51,.4); }
.nav__inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: 76px; gap: 16px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 600; font-size: 1.32rem; letter-spacing: -.01em; color: var(--ink); }
.brand__mark { height: 30px; width: auto; display: inline-flex; align-items: center; }
.brand__mark svg { height: 100%; width: auto; }
.nav__links { display: flex; align-items: center; justify-content: center; gap: 28px; }
.nav__links a { font-size: .92rem; font-weight: 500; color: var(--ink-soft); transition: color .2s; white-space: nowrap; }
.nav__links a:hover { color: var(--violet-600); }
.nav__cta { display: flex; align-items: center; justify-content: flex-end; gap: 16px; }
.nav__login { font-size: .92rem; font-weight: 600; color: var(--ink); transition: color .2s; }
.nav__login:hover { color: var(--violet-600); }
.nav__cta .btn { padding: 10px 20px; font-size: .9rem; }
.nav__toggle { display: none; width: 40px; height: 40px; border-radius: 999px; color: var(--ink); justify-self: end; }
.nav__toggle svg { width: 22px; height: 22px; margin-inline: auto; }
.nav__m-only { display: none; }

/* --------------------------------------------------------------- Hero (light, waveform) */
.hero { padding-top: clamp(40px, 7vw, 76px); padding-bottom: clamp(50px, 7vw, 90px); text-align: center; overflow: hidden; }
.hero__inner { max-width: 740px; margin-inline: auto; position: relative; }
.pill { display: inline-flex; align-items: center; gap: 9px; padding: 9px 18px; border-radius: 999px; font-size: .82rem; font-weight: 600; background: var(--violet-50); border: 1px solid var(--violet-100); color: var(--violet-700); }
.pill i { width: 7px; height: 7px; border-radius: 50%; background: var(--coral-500); flex: none; }
.hero h1 { margin-top: 24px; font-size: clamp(2.5rem, 6vw, 4.3rem); }
.hero__sub { margin-top: 20px; font-size: clamp(1.04rem, 1.7vw, 1.22rem); color: var(--ink-soft); max-width: 580px; margin-inline: auto; }
.hero__actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: center; }
.hero__note { margin-top: 18px; font-size: .85rem; color: var(--ink-mut); }

/* Animated waveform — simple, robust CSS-only "video-like" motion */
.waveform-wrap { position: relative; margin-top: clamp(48px, 7vw, 72px); max-width: 780px; margin-inline: auto; }
.waveform { display: flex; align-items: center; justify-content: center; gap: 5px; height: 130px; padding: 0 20px; }
.waveform i { display: block; width: 6px; border-radius: 999px; background: var(--violet-500); flex: none; animation: waveBounce 1.6s ease-in-out infinite; transform-origin: center; }
.waveform i:nth-child(odd) { background: var(--coral-500); }
@keyframes waveBounce { 0%, 100% { transform: scaleY(.28); } 50% { transform: scaleY(1); } }
.waveform-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 8px 8px 0; overflow: hidden; }
.waveform-card__bar { display: flex; align-items: center; gap: 10px; padding: 10px 14px; }
.waveform-card__bar span { font-size: .8rem; color: var(--ink-mut); font-weight: 600; }
.waveform-card__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--coral-500); }

.sent-tag { position: absolute; display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 9px 16px; box-shadow: var(--shadow-md); font-size: .84rem; font-weight: 600; }
.sent-tag b { font-weight: 700; }
.sent-tag--pos { color: #15803d; }
.sent-tag--pos b { color: #15803d; }
.sent-tag--neg { color: var(--coral-600); }
.sent-tag--neg b { color: var(--coral-600); }
.sent-tag--a { top: -6px; left: -4%; }
.sent-tag--b { bottom: 4px; right: -4%; }

/* ---------------------------------------------------------------- Trust chips (marquee) */
.trust { padding-block: 34px; }
.trust__label { text-align: center; font-weight: 700; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-mut); margin-bottom: 20px; }
.chip-marquee { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.chip-marquee__track { display: flex; width: max-content; gap: 12px; animation: chipScroll 36s linear infinite; }
.chip-marquee:hover .chip-marquee__track { animation-play-state: paused; }
.chip-marquee__item { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; padding: 10px 18px; border: 1.5px solid var(--violet-100); border-radius: 999px; background: var(--violet-50); font-weight: 600; font-size: .88rem; color: var(--violet-700); }
@keyframes chipScroll { to { transform: translateX(-50%); } }

/* --------------------------------------------------------- Problem: snippet grid */
.snippet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.snippet-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 22px; }
.snippet-card__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.snippet-card__ch { display: inline-flex; align-items: center; gap: 7px; font-size: .78rem; color: var(--on-dark-60); }
.snippet-card__ch svg { width: 15px; height: 15px; }
.snippet-tag { font-size: .68rem; font-weight: 700; padding: 4px 10px; border-radius: 999px; }
.snippet-tag--neg { background: rgba(242,105,79,.18); color: var(--coral-400); }
.snippet-tag--neu { background: rgba(167,139,250,.18); color: var(--violet-400); }
.snippet-card p { font-family: var(--font-head); font-style: italic; font-size: 1.02rem; line-height: 1.5; color: var(--on-dark-100); }
.snippet-card__meta { margin-top: 14px; font-size: .78rem; color: var(--on-dark-60); }

/* ------------------------------------------------------ Solution: flow diagram */
.flow { display: flex; align-items: center; justify-content: center; gap: clamp(10px,3vw,26px); flex-wrap: wrap; margin-top: 44px; }
.flow__sources { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.flow__source { display: flex; align-items: center; gap: 9px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 10px 16px; font-size: .82rem; font-weight: 600; color: var(--ink-soft); box-shadow: var(--shadow-sm); }
.flow__source svg { width: 16px; height: 16px; color: var(--violet-500); flex: none; }
.flow__arrow { color: var(--ink-mut); flex: none; }
.flow__arrow svg { width: 34px; height: 34px; }
.flow__result { display: flex; flex-direction: column; gap: 10px; }
.flow__theme { display: flex; align-items: center; gap: 10px; background: var(--violet-600); color: #fff; border-radius: 999px; padding: 11px 20px; font-weight: 700; font-size: .9rem; }
.flow__theme span { background: rgba(255,255,255,.22); border-radius: 999px; padding: 2px 9px; font-size: .74rem; }
.flow__theme--coral { background: var(--coral-500); }

/* ------------------------------------------------------- AI Technology: mosaic */
.ai-mosaic { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-top: 44px; }
.ai-tile { border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.04); border-radius: var(--radius); padding: 24px; }
.ai-mosaic .ai-tile:nth-child(1) { grid-column: span 4; }
.ai-mosaic .ai-tile:nth-child(2) { grid-column: span 2; }
.ai-mosaic .ai-tile:nth-child(3) { grid-column: span 2; }
.ai-mosaic .ai-tile:nth-child(4) { grid-column: span 4; }
.ai-tile__k { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--coral-400); }
.ai-tile h3 { font-size: 1.16rem; margin: 12px 0 8px; color: #fff; }
.ai-tile p { color: var(--on-dark-80); font-size: .92rem; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.tag { font-size: .72rem; font-weight: 600; padding: 6px 13px; border-radius: 999px; background: rgba(167,139,250,.16); color: var(--violet-400); }

/* ------------------------------------------------------------ Features: tiles */
.feature-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.feature-tile { border-radius: var(--radius); padding: 28px; }
.feature-tile:nth-child(3n+1) { background: var(--violet-50); }
.feature-tile:nth-child(3n+2) { background: #fff; border: 1px solid var(--line); }
.feature-tile:nth-child(3n+3) { background: #fff1ec; }
.feature-tile__ico { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 16px; background: #fff; box-shadow: var(--shadow-sm); color: var(--violet-600); }
.feature-tile__ico svg { width: 23px; height: 23px; }
.feature-tile h3 { font-size: 1.12rem; margin-bottom: 8px; }
.feature-tile p { color: var(--ink-soft); font-size: .93rem; }

/* -------------------------------------------------------- How it works: path */
.path { display: flex; align-items: flex-start; justify-content: space-between; margin-top: 48px; position: relative; }
.path::before { content: ""; position: absolute; top: 26px; left: 6%; right: 6%; height: 2px; background: var(--line); }
.path__node { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; width: 22%; }
.path__dot { width: 52px; height: 52px; border-radius: 50%; background: #fff; border: 2px solid var(--violet-500); display: grid; place-items: center; color: var(--violet-600); z-index: 1; }
.path__dot svg { width: 24px; height: 24px; }
.path__node h3 { font-size: 1rem; margin: 16px 0 6px; }
.path__node p { color: var(--ink-soft); font-size: .86rem; }

/* --------------------------------------------------------------- Infra trio */
.infra-trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.infra-card { text-align: center; padding: 30px 22px; }
.infra-card__ico { width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; margin: 0 auto 18px; background: var(--violet-50); color: var(--violet-600); }
.infra-card__ico svg { width: 27px; height: 27px; }
.infra-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.infra-card p { color: var(--ink-soft); font-size: .92rem; }

/* ------------------------------------------------------------------- Market */
.market-split { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px,4vw,60px); align-items: center; margin-top: 40px; }
.market-big { font-family: var(--font-head); font-size: clamp(3.4rem, 8vw, 6rem); font-weight: 600; line-height: .95; color: #fff; }
.market-big span { color: var(--coral-400); font-style: italic; }
.market-list-min { display: grid; gap: 18px; }
.market-row { display: flex; justify-content: space-between; gap: 16px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.12); }
.market-row b { font-family: var(--font-head); font-size: 1rem; color: #fff; }
.market-row p { color: var(--on-dark-80); font-size: .88rem; margin-top: 4px; max-width: 340px; }

/* ----------------------------------------------------------------- Traction */
.stat-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; margin-top: 44px; }
.stat-badge { width: 168px; height: 168px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; border: 2px dashed var(--violet-200, var(--violet-100)); background: var(--violet-50); }
.stat-badge:nth-child(even) { background: #fff1ec; border-color: #ffd9c9; }
.stat-badge__num { font-family: var(--font-head); font-weight: 700; font-size: 1.9rem; color: var(--violet-700); display: inline-flex; align-items: baseline; }
.stat-badge:nth-child(even) .stat-badge__num { color: var(--coral-600); }
.stat-badge__num .suffix { font-size: 1.3rem; }
.stat-badge__label { font-size: .78rem; color: var(--ink-soft); margin-top: 4px; padding: 0 14px; }
.banner { margin-top: 34px; text-align: center; font-size: .96rem; color: var(--ink-soft); }
.banner b { color: var(--violet-700); }

/* --------------------------------------------------------------- Pull quote */
.pull-quote { max-width: 780px; margin-inline: auto; text-align: center; }
.pull-quote p { font-family: var(--font-head); font-style: italic; font-size: clamp(1.5rem, 3.2vw, 2.3rem); line-height: 1.45; color: #fff; }
.pull-quote cite { display: block; margin-top: 22px; font-style: normal; font-size: .88rem; color: var(--on-dark-60); }

/* --------------------------------------------------- Roadmap: horizontal scroll */
.timeline-scroll { display: flex; gap: 18px; overflow-x: auto; margin-top: 40px; padding-bottom: 14px; scroll-snap-type: x proximity; }
.timeline-card { scroll-snap-align: start; flex: none; width: 260px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.timeline-card__ph { font-family: var(--font-head); font-weight: 600; font-size: .82rem; color: var(--ink-mut); }
.timeline-card__state { display: inline-block; margin-top: 8px; font-size: .68rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: 4px 11px; border-radius: 999px; }
.timeline-card--done .timeline-card__state { background: #dcfce7; color: #15803d; }
.timeline-card--now .timeline-card__state { background: #fff1ec; color: var(--coral-600); }
.timeline-card--next .timeline-card__state { background: var(--violet-50); color: var(--violet-700); }
.timeline-card h3 { font-size: 1.02rem; margin: 12px 0 6px; }
.timeline-card p { font-size: .86rem; color: var(--ink-soft); }

/* -------------------------------------------------------------------- Team */
.team-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 56px; margin-top: 48px; }
.member-circle { width: 240px; text-align: center; }
.member-circle__ph { width: 168px; height: 168px; border-radius: 50%; margin: 0 auto; background: var(--violet-100); display: grid; place-items: center; color: var(--violet-600); font-family: var(--font-head); font-weight: 600; font-size: 2.3rem; overflow: hidden; position: relative; border: 4px solid #fff; box-shadow: var(--shadow-md); }
.member-circle__ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.member-circle h3 { font-size: 1.2rem; margin-top: 18px; }
.member-circle .role { color: var(--coral-600); font-size: .88rem; font-weight: 600; }
.member-circle p { font-size: .92rem !important; }
.member-circle__socials { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 10px; }
.member-circle .li { display: inline-flex; align-items: center; justify-content: center; }
.member-circle .li svg { width: 22px; height: 22px; }
.team-more { text-align: center; margin-top: 36px; }

/* --------------------------------------------------------------- CTA block */
.cta-block { background: var(--coral-500); border-radius: var(--radius-lg); overflow: hidden; padding: clamp(40px,6vw,70px) clamp(24px,5vw,60px); text-align: center; color: #fff; }
.cta-block .eyebrow { color: rgba(255,255,255,.85); }
.cta-block .eyebrow::before { background: #fff; }
.cta-block h2 { color: #fff; max-width: 640px; margin-inline: auto; }
.cta-block .lead { color: rgba(255,255,255,.88); max-width: 520px; margin: 16px auto 0; }
.cta-block__form { max-width: 420px; margin: 30px auto 0; background: #fff; border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-lg); text-align: left; }
.field { margin-top: 12px; }
.field:first-child { margin-top: 0; }
.field label { display: block; font-size: .8rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 6px; }
.field input, .field select, .field textarea { width: 100%; padding: 12px 15px; border: 1px solid var(--line); border-radius: 12px; color: var(--ink); background: #fff; transition: border-color .2s; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--violet-500); outline: none; }
.form__note { font-size: .76rem; color: var(--ink-mut); margin-top: 12px; text-align: center; }
.form__note a { color: var(--violet-600); font-weight: 600; }
.form__ok { display: none; text-align: center; padding: 16px 0; }
.form__ok .ic { width: 50px; height: 50px; border-radius: 50%; background: var(--violet-50); color: var(--violet-600); display: grid; place-items: center; margin: 0 auto 12px; }
.form__ok .ic svg { width: 24px; height: 24px; }
.cta-block__form.sent .form__body { display: none; }
.cta-block__form.sent .form__ok { display: block; }

/* --------------------------------------------------------------- Reveal on scroll */
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal[data-d="1"]{ transition-delay: .07s; } .js .reveal[data-d="2"]{ transition-delay: .14s; }
.js .reveal[data-d="3"]{ transition-delay: .21s; } .js .reveal[data-d="4"]{ transition-delay: .28s; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1 !important; transform: none !important; transition: none; } html { scroll-behavior: auto; } .chip-marquee__track { animation: none; } .waveform i { animation: none; transform: scaleY(.6); } }

/* --------------------------------------------------------------- Footer (no wordmark) */
.footer { background: var(--violet-950); color: var(--on-dark-80); padding-block: 60px 30px; }
.footer__top { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 30px; }
.footer .tagline { font-family: var(--font-head); font-style: italic; font-size: 1.5rem; color: #fff; max-width: 320px; line-height: 1.3; }
.footer__contact { margin-top: 16px; max-width: 300px; font-size: .84rem; color: var(--on-dark-60); display: flex; flex-direction: column; gap: 4px; }
.footer__contact a { color: var(--on-dark-60); font-size: .84rem; }
.footer__contact a:hover { color: var(--coral-400); }
.footer .brand { color: #fff; margin-bottom: 18px; }
.footer h4 { color: #fff; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.footer ul { display: grid; gap: 10px; }
.footer a { font-size: .9rem; color: var(--on-dark-80); transition: color .2s; }
.footer a:hover { color: var(--coral-400); }
.footer__bottom { margin-top: 46px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; justify-content: space-between; font-size: .82rem; color: var(--on-dark-60); }
.footer__socials { display: flex; gap: 10px; }
.footer__socials a { width: 36px; height: 36px; border-radius: 999px; display: grid; place-items: center; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); }
.footer__socials a:hover { background: rgba(var(--coral-rgb),.2); }
.footer__socials svg { width: 17px; height: 17px; }
.footer__disclaimer { margin-top: 18px; font-size: .78rem; color: var(--on-dark-60); max-width: 720px; }

/* ------------------------------------------------------------- Auth pages */
.auth { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; }
.auth__aside { position: relative; background: var(--violet-950); color: var(--on-dark-80); padding: clamp(34px, 5vw, 64px); display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; }
.auth__aside::before { content:""; position:absolute; inset:-10% -10% auto -10%; height:60%; background: radial-gradient(60% 70% at 25% 10%, rgba(var(--violet-rgb),.28), transparent 68%); }
.auth__aside > * { position: relative; }
.auth__quote { font-family: var(--font-head); font-style: italic; font-size: 1.5rem; line-height: 1.4; color: #fff; max-width: 400px; }
.auth__points { display: grid; gap: 13px; margin-top: 26px; }
.auth__points li { display: flex; gap: 10px; align-items: center; font-size: .94rem; color: var(--on-dark-80); }
.auth__points .ic { width: 24px; height: 24px; border-radius: 7px; background: rgba(var(--coral-rgb),.2); color: var(--coral-400); display: grid; place-items: center; flex: none; }
.auth__points .ic svg { width: 14px; height: 14px; }
.auth__main { display: flex; align-items: center; justify-content: center; padding: clamp(28px, 5vw, 56px); }
.auth__card { width: 100%; max-width: 400px; }
.auth__card h1 { font-size: 1.9rem; }
.auth__card .sub { color: var(--ink-soft); margin-top: 8px; margin-bottom: 24px; }
.oauth { display: grid; gap: 10px; }
.oauth button { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 12px; border: 1px solid var(--line); border-radius: 999px; font-weight: 600; font-size: .92rem; transition: border-color .2s, background .2s; background: #fff; }
.oauth button:hover { border-color: var(--violet-400); background: var(--violet-50); }
.oauth svg { width: 18px; height: 18px; }
.divider { display: flex; align-items: center; gap: 14px; color: var(--ink-mut); font-size: .8rem; margin: 20px 0; }
.divider::before, .divider::after { content: ""; height: 1px; background: var(--line); flex: 1; }
.auth__row { display: flex; align-items: center; justify-content: space-between; font-size: .84rem; margin-top: 4px; }
.auth__row a { color: var(--violet-600); font-weight: 600; }
.checkbox { display: flex; gap: 9px; align-items: flex-start; font-size: .84rem; color: var(--ink-soft); }
.checkbox input { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--violet-600); flex: none; }
.auth__foot { text-align: center; font-size: .9rem; color: var(--ink-soft); margin-top: 22px; }
.auth__foot a { color: var(--violet-600); font-weight: 700; }
.auth__back { display: inline-flex; align-items: center; gap: 7px; font-size: .86rem; color: var(--ink-soft); margin-bottom: 30px; }
.auth__back svg { width: 16px; height: 16px; }
.strength { height: 5px; border-radius: 999px; background: var(--line); margin-top: 8px; overflow: hidden; }
.strength i { display: block; height: 100%; width: 0; border-radius: 999px; transition: width .3s, background .3s; }

/* --------------------------------------------------------------- Legal pages */
.legal { max-width: 800px; margin-inline: auto; }
.legal__meta { color: var(--ink-mut); font-size: .88rem; margin-bottom: 30px; }
.legal h2 { font-size: 1.35rem; margin: 38px 0 12px; }
.legal h3 { font-size: 1.05rem; margin: 24px 0 8px; }
.legal p, .legal li { color: var(--ink-soft); margin-bottom: 12px; }
.legal ul { list-style: disc; padding-left: 22px; }
.legal ul li { margin-bottom: 8px; }
.legal a { color: var(--violet-600); font-weight: 600; }
.callout { background: var(--cream-soft); border: 1px solid var(--line); border-left: 4px solid var(--coral-500); border-radius: 12px; padding: 18px 22px; margin: 24px 0; }
.callout p { margin: 0; color: var(--ink); }

/* --------------------------------------------------------------- Responsive */
@media (max-width: 1024px) {
  .snippet-grid { grid-template-columns: 1fr; }
  .ai-mosaic { grid-template-columns: repeat(2, 1fr); }
  .ai-mosaic .ai-tile:nth-child(n) { grid-column: span 1; }
  .feature-tiles { grid-template-columns: 1fr 1fr; }
  .infra-trio { grid-template-columns: 1fr; }
  .market-split { grid-template-columns: 1fr; }
  .path { flex-direction: column; align-items: stretch; gap: 26px; }
  .path::before { display: none; }
  .path__node { width: 100%; flex-direction: row; text-align: left; gap: 16px; }
  .path__node h3, .path__node p { margin: 0; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 26px 20px; }
  .auth { grid-template-columns: 1fr; }
  .auth__aside { display: none; }

  /* Mobile nav — plain show/hide only, matching the proven pattern */
  .nav__inner { grid-template-columns: auto 1fr auto; }
  .nav__links { display: none; }
  .nav__cta .btn, .nav__cta .nav__login { display: none; }
  .nav__toggle { display: grid; place-items: center; }

  .nav__links {
    display: none;
    flex-direction: column; align-items: stretch; gap: 0;
    position: fixed; top: 90px; right: 14px; width: min(84vw, 320px);
    height: calc(100dvh - 104px); max-height: calc(100dvh - 104px);
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 8px 20px 20px; overflow-y: auto; z-index: 60; box-shadow: var(--shadow-lg);
  }
  .nav__links.is-open { display: flex; }
  .nav__links > a:not(.btn) { padding: 16px 4px; font-size: 1.02rem; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--cream-soft); justify-content: flex-start; }
  .nav__links > a:not(.btn):hover { color: var(--violet-600); }
  .nav__m-only { display: inline-flex; width: 100%; }
  .nav__m-login { margin-top: 18px; }
  .nav__m-demo { margin-top: 10px; }
  .nav__toggle.is-open .ic-open { display: none; }
  .nav__toggle .ic-close { display: none; }
  .nav__toggle.is-open .ic-close { display: block; }

  .nav__scrim { display: none; position: fixed; inset: 0; background: rgba(21,14,36,.55); z-index: 55; }
  .nav__scrim.is-open { display: block; }
}
@media (max-width: 560px) {
  .feature-tiles { grid-template-columns: 1fr; }
  .ai-mosaic { grid-template-columns: 1fr; }
  .stat-badges { gap: 16px; }
  .stat-badge { width: 140px; height: 140px; }
  .footer__top { grid-template-columns: 1fr; }
  .sent-tag { display: none; }
}
