:root {
  --bg: #f7f0e3;
  --bg-deep: #102019;
  --card: rgba(255, 250, 241, 0.84);
  --card-strong: #fff8ee;
  --ink: #101616;
  --muted: #526060;
  --line: rgba(16, 32, 25, 0.12);
  --brand: #ff6b2c;
  --brand-dark: #cf4b12;
  --accent: #0c7f62;
  --accent-soft: #dbfff0;
  --shadow: 0 30px 80px rgba(16, 32, 25, 0.14);
  --shadow-soft: 0 16px 45px rgba(16, 32, 25, 0.10);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --maxw: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 4%, rgba(255, 157, 73, 0.32), transparent 30%),
    radial-gradient(circle at 92% 18%, rgba(12, 127, 98, 0.15), transparent 24%),
    linear-gradient(180deg, #fff8ea 0%, var(--bg) 50%, #efe5d4 100%);
  -webkit-font-smoothing: antialiased;
}

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

.page-shell {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.bg-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.75;
  pointer-events: none;
}

.orb-a {
  width: 28rem;
  height: 28rem;
  background: rgba(255, 122, 70, 0.18);
  top: -8rem;
  right: -8rem;
}

.orb-b {
  width: 22rem;
  height: 22rem;
  background: rgba(22, 166, 126, 0.16);
  left: -7rem;
  top: 26rem;
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 32, 25, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 32, 25, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent 85%);
  pointer-events: none;
}

.topbar,
.hero,
.trust-strip,
.section,
.footer {
  width: min(var(--maxw), calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: sticky;
  top: 12px;
  z-index: 30;
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  background: rgba(255, 249, 240, 0.78);
  box-shadow: 0 12px 36px rgba(16, 32, 25, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), #ff9b54);
  color: #fff7f1;
  box-shadow: 0 12px 30px rgba(255, 107, 44, 0.28);
}

.topnav {
  display: inline-flex;
  gap: 22px;
  color: var(--muted);
  font-weight: 600;
}

.topnav a:hover {
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff9f3;
  background: linear-gradient(135deg, var(--brand) 0%, #ff9f59 100%);
  box-shadow: 0 16px 35px rgba(255, 107, 44, 0.28);
  position: relative;
  overflow: hidden;
}

.button-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-115%) skewX(-18deg);
  width: 45%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.32), transparent);
  animation: button-shine 4.8s ease-in-out infinite;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(16, 32, 25, 0.12);
  backdrop-filter: blur(10px);
}

.button-ghost {
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.44);
  border: 1px solid rgba(16, 32, 25, 0.08);
}

.button-large {
  padding: 18px 28px;
  font-size: 1.05rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  padding: 68px 0 34px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #18ae7b;
  box-shadow: 0 0 0 6px rgba(24, 174, 123, 0.12);
  animation: live-pulse 2.4s ease-out infinite;
}

.hero h1,
.section-head h2,
.section-cta h2,
.privacy-box h2,
.price-card h2 {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  line-height: 1.06;
}

.hero h1 {
  font-size: clamp(2.45rem, 4.9vw, 4.7rem);
  max-width: 11.5ch;
  letter-spacing: -0.045em;
}

.hero h1 em {
  display: inline-block;
  color: var(--brand);
  font-style: normal;
  position: relative;
  white-space: nowrap;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 7px;
  border-radius: 100%;
  background: var(--brand);
  opacity: .2;
  transform: rotate(-1deg);
}

.hero-lead {
  margin: 22px 0 0;
  max-width: 62ch;
  font-size: 1.14rem;
  line-height: 1.7;
  color: var(--muted);
}

.hero-lead span {
  color: var(--ink);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-note {
  margin-top: 13px;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 600;
}

.hero-points {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.45;
}

.hero-points li::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), #ffb16c);
  box-shadow: 0 0 0 8px rgba(255, 107, 44, 0.12);
}

.hero-card {
  display: flex;
  justify-content: center;
}

.hero-card::before {
  content: "Голосом · текстом · скриншотом";
  position: absolute;
  z-index: 3;
  top: 8%;
  right: -18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fffaf2;
  border: 1px solid rgba(16, 32, 25, .08);
  box-shadow: var(--shadow-soft);
  color: var(--accent);
  font-weight: 800;
  font-size: .82rem;
  transform: rotate(3deg);
}

.phone {
  width: min(420px, 100%);
  border-radius: 38px;
  padding: 18px;
  background: linear-gradient(180deg, #16251d 0%, #0e1714 100%);
  box-shadow: 0 30px 80px rgba(8, 14, 12, 0.32);
  transform: rotate(1.5deg);
  border: 1px solid rgba(255,255,255,.12);
  position: relative;
}

.phone-top {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d9fbe8;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.phone-avatar {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin-left: 4px;
  background: linear-gradient(135deg, var(--brand), #ffad64);
  color: #fff;
  font-weight: 800;
}

.phone-title {
  display: grid;
  line-height: 1.15;
}

.phone-title small {
  color: #93c5ae;
  font-size: .75rem;
  margin-top: 3px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #63ffba;
  box-shadow: 0 0 0 8px rgba(99, 255, 186, 0.12);
}

.chat {
  background: linear-gradient(180deg, #f3eadf, #efe3d6);
  border-radius: 28px;
  padding: 18px;
  min-height: 520px;
}

.chat-date {
  width: max-content;
  margin: 0 auto 14px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #6f786f;
  background: rgba(255,255,255,.65);
  font-size: .76rem;
  font-weight: 700;
}

.bubble {
  max-width: 88%;
  padding: 14px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
  line-height: 1.5;
  font-size: 0.98rem;
}

.bubble-user {
  margin-left: auto;
  background: linear-gradient(135deg, #ff8d4c, #ffb268);
  color: #fff9f3;
}

.bubble-bot {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(16, 32, 25, 0.08);
}

.bubble-highlight {
  background: linear-gradient(180deg, #e6fff0, #f6fff9);
  border-color: rgba(12, 127, 98, 0.16);
}

.voice-message {
  width: 230px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.play-icon {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  flex: 0 0 31px;
  padding-left: 2px;
  border-radius: 50%;
  color: var(--brand);
  background: #fff;
  font-size: .72rem;
}

.waveform {
  flex: 1;
  height: 28px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.waveform i {
  width: 3px;
  height: 10px;
  border-radius: 4px;
  background: rgba(255,255,255,.92);
}

.waveform i:nth-child(2), .waveform i:nth-child(7) { height: 19px; }
.waveform i:nth-child(3), .waveform i:nth-child(6) { height: 25px; }
.waveform i:nth-child(4) { height: 15px; }
.waveform i:nth-child(5) { height: 22px; }

.voice-message small { opacity: .9; }

.confirm-row {
  display: flex;
  gap: 6px;
  margin-top: 11px;
}

.confirm-row span {
  padding: 7px 10px;
  border-radius: 10px;
  background: #e9f8ef;
  color: #167254;
  font-size: .78rem;
  font-weight: 800;
}

.confirm-row span + span {
  color: #6e756f;
  background: #f0efeb;
}

.chat-safe {
  padding-top: 2px;
  color: #718078;
  text-align: center;
  font-size: .74rem;
  font-weight: 600;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 16px 0 6px;
}

.trust-strip div {
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(16, 32, 25, 0.08);
  box-shadow: 0 18px 40px rgba(16, 32, 25, 0.08);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.section-voice-demo {
  padding-top: 84px;
}

.voice-demo-shell {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 32px;
  align-items: center;
  padding: 42px;
  overflow: hidden;
  border-radius: 38px;
  color: #fff9f1;
  background:
    radial-gradient(circle at 80% 10%, rgba(65, 255, 182, .16), transparent 32%),
    radial-gradient(circle at 5% 90%, rgba(255, 107, 44, .23), transparent 38%),
    #102019;
  box-shadow: 0 36px 90px rgba(16, 32, 25, .24);
}

.voice-demo-shell .eyebrow { color: #7ce4b6; }

.voice-demo-shell h2 {
  max-width: 13ch;
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  line-height: 1.05;
}

.voice-demo-copy > p {
  max-width: 57ch;
  margin: 18px 0 0;
  color: #b9cdc3;
  line-height: 1.7;
}

.voice-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.voice-example {
  appearance: none;
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: #d9e8e0;
  background: rgba(255,255,255,.07);
  font: inherit;
  font-weight: 650;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.voice-example:hover,
.voice-example.is-active {
  transform: translateY(-1px);
  color: #fff;
  border-color: rgba(255, 140, 79, .65);
  background: rgba(255, 107, 44, .2);
}

.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: #ffb17c;
  font-weight: 800;
}

.demo-result {
  padding: 24px;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 28px;
  color: var(--ink);
  background: rgba(255, 250, 242, .96);
  box-shadow: 0 28px 60px rgba(0,0,0,.28);
  transform: rotate(1deg);
}

.demo-result-top,
.demo-intent,
.demo-confirm {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.demo-result-top { color: #6b7771; font-size: .82rem; font-weight: 700; }
.demo-status { color: var(--accent); }
.demo-status i {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 5px;
  border-radius: 50%;
  background: #1caf7e;
}

.demo-transcript {
  margin: 18px 0;
  padding: 18px;
  border-radius: 18px;
  background: #f2eadf;
  font-size: 1.15rem;
  font-weight: 750;
  line-height: 1.4;
}

.demo-intent {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.demo-intent span,
.demo-data span,
.demo-confirm > span { color: var(--muted); font-size: .82rem; }
.demo-intent strong { color: var(--brand-dark); }

.demo-data {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 14px 0 18px;
}

.demo-data > div {
  display: grid;
  gap: 5px;
  padding: 12px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
}

.demo-data strong { font-size: .92rem; }

.demo-confirm {
  padding: 12px 12px 12px 14px;
  border-radius: 16px;
  background: #e8f8ef;
}

.demo-confirm button {
  border: 0;
  border-radius: 12px;
  padding: 10px 13px;
  color: #fff;
  background: var(--accent);
  font: inherit;
  font-weight: 800;
}

.trust-strip span {
  margin-top: 4px;
  color: var(--muted);
}

.section {
  padding: 64px 0 24px;
}

.section-head {
  max-width: 800px;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.pain-grid,
.feature-grid,
.flow-grid,
.screens-grid,
.fit-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pain-card,
.feature-card,
.flow-step,
.quote-card,
.cta-box,
.privacy-box,
.price-card,
.faq-list details {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.pain-card,
.feature-card,
.flow-step,
.screen-card,
.fit-card {
  border-radius: var(--radius-lg);
  padding: 24px;
}

.pain-card span {
  font-size: 2rem;
}

.pain-card h3,
.feature-card h3,
.flow-step h3,
.screen-card h3 {
  margin: 12px 0 10px;
  font-size: 1.18rem;
}

.pain-card p,
.feature-card p,
.flow-step p,
.screen-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 6px;
  background: currentColor;
  opacity: 0.18;
}

.accent-sun { color: #d45a1f; }
.accent-lime { color: #127c62; }
.accent-rose { color: #a44636; }
.accent-cyan { color: #157a8f; }
.accent-violet { color: #5f5bbd; }
.accent-orange { color: #b96a10; }

.step-num {
  display: inline-flex;
  margin-bottom: 10px;
  font-family: "Unbounded", sans-serif;
  color: var(--brand-dark);
}

.family-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: stretch;
}

.family-copy,
.family-side {
  background: rgba(255, 248, 238, 0.78);
  border: 1px solid rgba(16, 32, 25, 0.08);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow);
}

.family-copy h2 {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.7rem, 2.6vw, 2.6rem);
  line-height: 1.15;
}

.family-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.family-list {
  margin: 20px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.family-list li {
  color: var(--ink);
  font-weight: 600;
}

.family-side {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(12, 127, 98, 0.12), rgba(255, 107, 44, 0.08)),
    rgba(255, 248, 238, 0.78);
}

.quote-card {
  border-radius: var(--radius-lg);
  padding: 26px;
}

.quote-card p {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 700;
}

.quote-card span {
  display: inline-block;
  margin-top: 14px;
  color: var(--muted);
}

.privacy-box,
.price-card,
.compare-box,
.quick-box,
.launch-box,
.cta-box {
  border-radius: var(--radius-xl);
  padding: 32px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
}

.privacy-box {
  background:
    linear-gradient(135deg, rgba(12, 127, 98, 0.14), rgba(255, 255, 255, 0.36)),
    rgba(255, 249, 243, 0.88);
}

.quick-box,
.launch-box {
  border-radius: var(--radius-xl);
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 24px;
  background:
    linear-gradient(135deg, rgba(255, 107, 44, 0.10), rgba(12, 127, 98, 0.10)),
    rgba(255, 249, 243, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
}

.quick-box h2,
.launch-box h2 {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.7rem, 2.5vw, 2.6rem);
  line-height: 1.08;
}

.quick-box p,
.launch-box p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.quick-result {
  padding: 24px;
  border-radius: 26px;
  color: #fff8ee;
  background: #102019;
  box-shadow: 0 30px 60px rgba(16, 32, 25, 0.22);
}

.quick-label {
  display: block;
  color: #a4cbb7;
  font-weight: 800;
  margin-bottom: 14px;
}

.quick-result ul,
.launch-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.quick-result li {
  padding: 13px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.launch-points div {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
}

.launch-points strong,
.launch-points span {
  display: block;
}

.launch-points span {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.5;
}

.screen-card,
.fit-card,
.compare-box {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.mini-chat {
  display: grid;
  gap: 10px;
  min-height: 188px;
  padding: 16px;
  border-radius: 24px;
  background: linear-gradient(180deg, #102019, #17251e);
}

.mini-user,
.mini-bot {
  max-width: 88%;
  padding: 12px 14px;
  border-radius: 18px;
  line-height: 1.45;
  font-weight: 600;
}

.mini-user {
  justify-self: end;
  color: #fff8ee;
  background: linear-gradient(135deg, #ff8d4c, #ffb268);
}

.mini-bot {
  justify-self: start;
  color: #173026;
  background: #e9fff2;
}

.compare-box {
  border-radius: var(--radius-xl);
  padding: 32px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  align-items: start;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.compare-grid > div {
  border-radius: 22px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.62);
}

.compare-grid h3,
.fit-card h2 {
  margin: 0 0 14px;
  font-family: "Unbounded", sans-serif;
  line-height: 1.18;
}

.compare-grid ul,
.fit-card ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: var(--muted);
  line-height: 1.55;
}

.fit-good {
  background: linear-gradient(180deg, rgba(12, 127, 98, 0.12), rgba(255, 250, 241, 0.84));
}

.fit-bad {
  background: linear-gradient(180deg, rgba(255, 107, 44, 0.10), rgba(255, 250, 241, 0.84));
}

.fit-grid {
  grid-template-columns: repeat(2, 1fr);
}

.privacy-box h2,
.price-card h2,
.cta-box h2 {
  font-size: clamp(1.7rem, 2.4vw, 2.5rem);
}

.privacy-box p,
.price-card p,
.cta-actions p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.privacy-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  align-content: center;
}

.privacy-list li {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.62);
  font-weight: 700;
}

.privacy-list li::before {
  content: "✓";
  color: var(--accent);
  margin-right: 10px;
}

.price-card {
  background:
    linear-gradient(135deg, rgba(255, 107, 44, 0.12), rgba(12, 127, 98, 0.08)),
    rgba(255, 249, 243, 0.86);
  align-items: center;
}

.price-box {
  padding: 24px;
  border-radius: 26px;
  background: #102019;
  color: #fff8ee;
  box-shadow: 0 30px 60px rgba(16, 32, 25, 0.22);
}

.price-label {
  display: block;
  color: #a4cbb7;
  font-weight: 700;
}

.price-box strong {
  display: block;
  margin: 8px 0 0;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.price-box p {
  color: #cfe1d8;
  margin-bottom: 18px;
}

.section-cta {
  padding-bottom: 8px;
}

.cta-box {
  background:
    linear-gradient(135deg, rgba(255, 107, 44, 0.12), rgba(12, 127, 98, 0.08)),
    rgba(255, 249, 243, 0.86);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.faq-list {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.faq-list details {
  border-radius: var(--radius-md);
  padding: 0 20px;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 0;
  font-weight: 700;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.65;
}

.footer {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 20px;
  padding: 34px 0 96px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.footer p {
  margin: 0;
  color: var(--muted);
}

.footer-links {
  display: inline-flex;
  gap: 14px;
  color: var(--muted);
  font-weight: 700;
  flex-wrap: wrap;
}

.footer-links a:hover {
  color: var(--ink);
}

.footer-button {
  min-width: 220px;
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 20;
  display: none;
  padding: 14px 22px;
  border-radius: 999px;
  color: #fff9f3;
  background: linear-gradient(135deg, var(--brand), #ff9f59);
  box-shadow: 0 18px 40px rgba(255, 107, 44, 0.34);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(24, 174, 123, .34); }
  70% { box-shadow: 0 0 0 9px rgba(24, 174, 123, 0); }
  100% { box-shadow: 0 0 0 0 rgba(24, 174, 123, 0); }
}

@keyframes button-shine {
  0%, 72% { transform: translateX(-115%) skewX(-18deg); }
  100% { transform: translateX(310%) skewX(-18deg); }
}

@media (max-width: 1100px) {
  .hero,
  .cta-box,
  .privacy-box,
  .price-card,
  .compare-box,
  .quick-box,
  .launch-box,
  .family-panel,
  .voice-demo-shell {
    grid-template-columns: 1fr;
  }

  .hero-card {
    order: -1;
  }

  .feature-grid,
  .flow-grid,
  .pain-grid,
  .screens-grid,
  .fit-grid,
  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer {
    grid-template-columns: 1fr;
  }

  .compare-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .topbar {
    top: 8px;
    flex-wrap: nowrap;
    justify-content: space-between;
    border-radius: 18px;
  }

  .topnav {
    display: none;
  }

  .topbar-cta {
    width: auto;
    padding: 10px 13px;
    font-size: .82rem;
  }

  .brand-text { display: none; }

  .feature-grid,
  .flow-grid,
  .pain-grid,
  .screens-grid,
  .fit-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 42px;
  }

  .hero h1 {
    max-width: none;
  }

  .phone {
    transform: none;
  }

  .hero-card::before {
    right: 2px;
    top: -18px;
    font-size: .72rem;
  }

  .chat {
    min-height: auto;
  }

  .footer {
    align-items: stretch;
  }

  .footer-button,
  .hero-actions .button,
  .price-box .button {
    width: 100%;
  }

  .sticky-cta {
    display: inline-flex;
  }

  .voice-demo-shell {
    padding: 26px 20px;
    border-radius: 28px;
  }

  .voice-demo-shell h2 { max-width: none; }

  .demo-result {
    transform: none;
    padding: 18px;
  }

  .demo-data { grid-template-columns: 1fr; }

  .voice-example { width: 100%; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

.legal-page {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 64px;
}

.legal-card {
  margin-top: 28px;
  padding: 34px;
  border-radius: var(--radius-xl);
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
}

.legal-card h1,
.legal-card h2 {
  font-family: "Unbounded", sans-serif;
  line-height: 1.15;
}

.legal-card h1 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.legal-card h2 {
  margin: 28px 0 10px;
  font-size: 1.15rem;
}

.legal-card p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.7;
}

.legal-card a {
  color: var(--brand-dark);
  font-weight: 700;
}
