:root {
  --bg: #14111f;
  --bg-soft: #1d182b;
  --surface: #241f31;
  --surface-strong: #2b2538;
  --text: #fffaf0;
  --muted: #c8bed8;
  --lavender: #cdb6f2;
  --lavender-deep: #8d72c3;
  --gold: #dcc46f;
  --gold-deep: #b99835;
  --sage: #8ab18e;
  --coral: #d98278;
  --border: rgba(205, 182, 242, 0.18);
  --shadow: rgba(11, 9, 18, 0.36);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text);
  background: var(--bg);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 10%, rgba(205, 182, 242, 0.16), transparent 34rem),
    radial-gradient(circle at 82% 18%, rgba(220, 196, 111, 0.09), transparent 28rem),
    linear-gradient(180deg, #171321 0%, #110f19 100%);
  color: var(--text);
}

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

p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

.site-shell {
  margin: 0 auto;
  max-width: 1180px;
  padding: 24px;
}

.nav {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(20, 17, 31, 0.72);
  border: 1px solid rgba(205, 182, 242, 0.1);
  border-radius: 22px;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 12px 16px;
  position: sticky;
  top: 18px;
  z-index: 20;
}

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

.brand img {
  display: block;
  height: 42px;
  width: auto;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--gold);
}

.button {
  align-items: center;
  background: var(--gold);
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(220, 196, 111, 0.2);
  color: #1a1600;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  padding: 13px 20px;
}

.button.secondary {
  background: transparent;
  border-color: var(--border);
  box-shadow: none;
  color: var(--muted);
}

.store-badge {
  align-items: center;
  background: rgba(20, 17, 31, 0.78);
  border: 0;
  border-radius: 12px;
  box-shadow:
    0 14px 34px rgba(7, 6, 12, 0.18),
    0 0 0 1px rgba(205, 182, 242, 0.08);
  display: inline-flex;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  transition:
    box-shadow 220ms ease,
    transform 220ms ease;
}

.store-badge:hover {
  box-shadow:
    0 18px 44px rgba(7, 6, 12, 0.28),
    0 0 0 1px rgba(220, 196, 111, 0.16);
  transform: translateY(-3px);
}

.store-badge img {
  display: block;
  height: 58px;
  width: auto;
}

.hero {
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  padding: 28px 0 76px;
}

.hero-centered {
  display: block;
  min-height: 92vh;
  overflow: hidden;
  padding: 76px 0 90px;
  position: relative;
  text-align: center;
}

.hero-centered::before {
  animation: orbBreath 8s ease-in-out infinite;
  background: radial-gradient(
    ellipse,
    rgba(205, 182, 242, 0.16) 0%,
    rgba(220, 196, 111, 0.07) 42%,
    transparent 70%
  );
  border-radius: 999px;
  content: "";
  height: 620px;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 8%;
  transform: translateX(-50%);
  width: min(72vw, 760px);
  z-index: -1;
}

.hero-content {
  animation: fadeInUp 0.9s ease both;
  margin: 0 auto;
  max-width: 780px;
}

.hero-logo {
  align-items: center;
  display: inline-flex;
  margin-bottom: 34px;
}

.hero-logo img {
  animation: gentleFloat 7s ease-in-out infinite;
  display: block;
  filter: drop-shadow(0 18px 44px rgba(205, 182, 242, 0.15));
  height: clamp(64px, 9vw, 104px);
  width: auto;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes orbBreath {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
  }

  50% {
    transform: translateX(-50%) scale(1.04);
  }
}

@keyframes gentleFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes softRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glowSweep {
  0% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(120%);
  }
}

.eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  margin: 0;
}

h1 {
  font-size: clamp(40px, 6vw, 68px);
  line-height: 0.98;
  max-width: 780px;
}

h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
}

h3 {
  font-size: 20px;
  line-height: 1.25;
}

.accent {
  color: var(--lavender);
}

.hero-copy {
  font-size: 19px;
  margin-top: 24px;
  max-width: 640px;
}

.signal-chips {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 26px auto 0;
  max-width: 720px;
}

.signal-chips span {
  align-items: center;
  background: rgba(205, 182, 242, 0.075);
  border: 1px solid rgba(205, 182, 242, 0.18);
  border-radius: 999px;
  color: var(--muted);
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  gap: 7px;
  padding: 10px 13px;
}

.signal-chips span span {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: inherit;
  font-size: 14px;
  padding: 0;
}

.hero-actions {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.flow-shell {
  align-items: center;
  animation: fadeInUp 0.9s ease 0.2s both;
  background:
    radial-gradient(circle at top right, rgba(205, 182, 242, 0.16), transparent 58%),
    linear-gradient(180deg, rgba(36, 31, 49, 0.9), rgba(20, 17, 31, 0.78));
  border: 1px solid var(--border);
  border-radius: 34px;
  box-shadow: 0 28px 90px var(--shadow);
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 0.82fr);
  margin: 70px auto 0;
  max-width: 1040px;
  overflow: hidden;
  padding: 28px;
  position: relative;
  text-align: left;
}

.flow-shell::after {
  animation: glowSweep 9s ease-in-out infinite;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 250, 240, 0.055),
    transparent
  );
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  width: 60%;
}

.flow-copy {
  padding: 12px;
}

.flow-copy h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.flow-copy p {
  font-size: 16px;
  margin-top: 18px;
}

.flow-demo {
  align-items: center;
  display: grid;
  gap: 16px;
  justify-items: center;
}

.flow-steps {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(4, 1fr);
  width: min(100%, 390px);
}

.flow-steps span {
  animation: captionPulse 24s infinite;
  background: rgba(205, 182, 242, 0.08);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  padding: 9px 7px;
  text-align: center;
}

.flow-steps span:nth-child(2) {
  animation-delay: 6s;
}

.flow-steps span:nth-child(3) {
  animation-delay: 12s;
}

.flow-steps span:nth-child(4) {
  animation-delay: 18s;
}

.hero-card {
  background:
    radial-gradient(circle at top right, rgba(205, 182, 242, 0.18), transparent 58%),
    linear-gradient(180deg, rgba(36, 31, 49, 0.96), rgba(25, 21, 36, 0.96));
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: 0 24px 70px var(--shadow);
  overflow: hidden;
  padding: 26px;
}

.demo-reel {
  display: grid;
  gap: 18px;
  justify-items: center;
}

.demo-phone {
  background:
    radial-gradient(circle at 50% 0%, rgba(205, 182, 242, 0.1), transparent 40%),
    #100e18;
  border: 1px solid rgba(205, 182, 242, 0.22);
  border-radius: 34px;
  box-shadow: inset 0 0 0 1px rgba(255, 250, 240, 0.03);
  height: 640px;
  max-width: 370px;
  overflow: hidden;
  padding: 24px;
  position: relative;
  width: min(100%, 370px);
}

.pro-phone {
  height: 660px;
  width: min(100%, 390px);
}

.demo-status {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 13px;
  font-weight: 800;
  justify-content: space-between;
  letter-spacing: 0.08em;
  position: relative;
  text-transform: uppercase;
  z-index: 3;
}

.demo-panel {
  animation: appFlow 24s infinite;
  inset: 70px 24px 24px;
  opacity: 0;
  position: absolute;
  transform: translateX(22px) scale(0.98);
}

.demo-chat {
  animation-delay: 0s;
}

.demo-clarity {
  animation-delay: 6s;
}

.demo-insights {
  animation-delay: 12s;
}

.demo-links {
  animation-delay: 18s;
}

.question-meter {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: space-between;
}

.question-meter strong,
.demo-title h3,
.insight-head h3 {
  color: var(--text);
}

.question-meter p {
  font-size: 13px;
  line-height: 1.45;
  margin-top: 4px;
}

.question-meter > span,
.new-pill,
.session-pill {
  background: rgba(220, 196, 111, 0.1);
  border: 1px solid rgba(220, 196, 111, 0.28);
  border-radius: 999px;
  color: var(--gold);
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 900;
  padding: 8px 10px;
}

.meter-track {
  background: rgba(205, 182, 242, 0.12);
  border-radius: 99px;
  height: 8px;
  margin: 16px 0 18px;
  overflow: hidden;
}

.meter-track i {
  background: var(--gold);
  border-radius: inherit;
  display: block;
  height: 100%;
}

.chat-bubble.wide {
  margin-left: 0;
  max-width: 92%;
}

.user-bubble {
  background: rgba(220, 196, 111, 0.1);
  border-color: rgba(220, 196, 111, 0.22);
  margin-left: auto;
  max-width: 86%;
}

.input-pill {
  background: rgba(255, 250, 240, 0.04);
  border: 1px solid var(--border);
  border-radius: 22px;
  bottom: 0;
  color: rgba(200, 190, 216, 0.68);
  font-size: 14px;
  left: 0;
  padding: 16px;
  position: absolute;
  right: 0;
}

.clarity-screen-card,
.demo-title {
  background:
    radial-gradient(circle at top right, rgba(220, 196, 111, 0.13), transparent 56%),
    rgba(36, 31, 49, 0.86);
  border: 1px solid rgba(220, 196, 111, 0.2);
  border-radius: 24px;
  padding: 18px;
}

.demo-title p,
.review-card p,
.life-card p,
.clarity-screen-card p,
.feedback-card p {
  font-size: 13px;
  line-height: 1.55;
  margin-top: 8px;
}

.arrow-line {
  display: grid;
  gap: 12px;
  grid-template-columns: auto 1fr;
  margin: 8px 0 18px;
}

.arrow-line span {
  color: var(--gold);
  font-size: 28px;
  line-height: 1;
}

.arrow-line p {
  color: var(--text);
  font-size: 17px;
  line-height: 1.5;
  margin: 0;
}

.muted-label {
  color: var(--lavender);
}

.remember-copy {
  color: var(--muted);
  font-style: italic;
}

.brief-copy {
  color: var(--text);
  margin-bottom: 16px;
}

.confidence-card,
.feedback-card {
  background: rgba(16, 14, 24, 0.36);
  border: 1px solid var(--border);
  border-radius: 20px;
  margin-top: 16px;
  padding: 15px;
}

.confidence-card .meter-track {
  margin: 10px 0 10px;
}

.feedback-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.feedback-row {
  align-items: center;
  background: rgba(205, 182, 242, 0.05);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  gap: 12px;
  margin-top: 10px;
  padding: 12px;
}

.feedback-row span {
  align-items: center;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.review-card {
  background: rgba(36, 31, 49, 0.92);
  border: 1px solid var(--border);
  border-radius: 20px;
  margin-top: 14px;
  padding: 16px;
}

.review-card strong {
  color: var(--gold);
}

.gold-button {
  background: var(--gold);
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(220, 196, 111, 0.18);
  color: #1a1600;
  font-weight: 900;
  margin-top: 16px;
  padding: 15px;
  text-align: center;
}

.insight-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}

.playbook-card {
  background:
    radial-gradient(circle at top right, rgba(220, 196, 111, 0.12), transparent 54%),
    rgba(36, 31, 49, 0.8);
  border: 1px solid rgba(220, 196, 111, 0.18);
  border-radius: 22px;
  padding: 16px;
}

.playbook-card h3 {
  font-size: 21px;
  margin-top: 8px;
}

.playbook-card p {
  font-size: 13px;
  line-height: 1.5;
  margin-top: 8px;
}

.stats-row {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
  margin: 14px 0;
}

.stats-row div {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 12px 8px;
  text-align: center;
}

.stats-row strong {
  color: var(--gold);
  display: block;
  font-size: 28px;
}

.stats-row span {
  color: var(--muted);
  display: block;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.filter-row {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  overflow: hidden;
}

.filter-row span {
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 800;
  padding: 9px 13px;
}

.filter-row .active-filter {
  border-color: rgba(220, 196, 111, 0.42);
  color: var(--gold);
}

.bridge-row {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 18px 0;
}

.bridge-row span {
  border: 1px solid rgba(220, 196, 111, 0.26);
  border-radius: 16px;
  color: var(--gold);
  font-weight: 900;
  padding: 10px 12px;
}

.bridge-row .coral-text {
  border-color: rgba(217, 130, 120, 0.3);
  color: var(--coral);
}

.bridge-row i {
  background: var(--muted);
  border-radius: 999px;
  display: block;
  height: 6px;
  opacity: 0.8;
  width: 6px;
}

.view-link {
  color: var(--gold);
  display: block;
  margin-top: 16px;
}

.muted-card {
  opacity: 0.9;
}

.demo-caption {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(4, 1fr);
  width: min(100%, 370px);
}

.demo-caption span {
  animation: captionPulse 24s infinite;
  background: rgba(205, 182, 242, 0.08);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  padding: 10px;
  text-align: center;
}

.demo-caption span:nth-child(2) {
  animation-delay: 6s;
}

.demo-caption span:nth-child(3) {
  animation-delay: 12s;
}

.demo-caption span:nth-child(4) {
  animation-delay: 18s;
}

.phone-card {
  background: #100e18;
  border: 1px solid rgba(205, 182, 242, 0.2);
  border-radius: 34px;
  margin: 0 auto;
  max-width: 360px;
  min-height: 620px;
  overflow: hidden;
  padding: 28px 24px;
  position: relative;
}

.phone-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 46px;
}

.phone-dot {
  background: var(--gold);
  border-radius: 999px;
  height: 12px;
  width: 12px;
}

.chat-bubble {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  color: var(--text);
  margin: 16px 0;
  padding: 18px;
}

.clarity-panel {
  background: rgba(220, 196, 111, 0.1);
  border: 1px solid rgba(220, 196, 111, 0.24);
  border-radius: 22px;
  margin-top: 28px;
  padding: 18px;
}

.preview-screen {
  animation: previewCycle 15s infinite;
  inset: 28px 24px;
  opacity: 0;
  position: absolute;
  transform: translateY(18px) scale(0.98);
}

.preview-chat {
  animation-delay: 0s;
}

.preview-clarity {
  animation-delay: 5s;
}

.preview-insights {
  animation-delay: 10s;
}

.mini-label {
  color: var(--gold);
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.mini-card,
.life-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--text);
  margin-top: 14px;
  padding: 16px;
}

.life-card.small {
  background: rgba(205, 182, 242, 0.07);
}

.view-strip {
  align-items: center;
  background: rgba(16, 14, 24, 0.32);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--gold);
  display: flex;
  font-size: 13px;
  font-weight: 900;
  justify-content: space-between;
  margin-top: 18px;
  padding: 12px 14px;
}

.life-row {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.life-row span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.signal {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.signal span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal i {
  background: var(--gold);
  border-radius: 99px;
  display: block;
  height: 8px;
}

.signal.coral i {
  background: var(--coral);
}

@keyframes previewCycle {
  0%,
  28% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  33%,
  100% {
    opacity: 0;
    transform: translateY(-16px) scale(0.98);
  }
}

@keyframes appFlow {
  0%,
  22% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }

  25%,
  100% {
    opacity: 0;
    transform: translateX(-22px) scale(0.98);
  }
}

@keyframes captionPulse {
  0%,
  22% {
    background: rgba(220, 196, 111, 0.12);
    border-color: rgba(220, 196, 111, 0.28);
    color: var(--gold);
  }

  25%,
  100% {
    background: rgba(205, 182, 242, 0.08);
    border-color: var(--border);
    color: var(--muted);
  }
}

@keyframes exampleRotate {
  0%,
  30% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  35%,
  100% {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
}

.section {
  padding: 74px 0;
}

.section-head {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  margin-bottom: 28px;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.soft-band {
  background:
    radial-gradient(circle at 8% 0%, rgba(205, 182, 242, 0.12), transparent 30rem),
    radial-gradient(circle at 92% 18%, rgba(220, 196, 111, 0.08), transparent 24rem),
    rgba(205, 182, 242, 0.035);
  border: 1px solid rgba(205, 182, 242, 0.1);
  border-radius: 34px;
  margin: 28px 0;
  padding: 58px 28px;
}

.example-section {
  background:
    radial-gradient(circle at 12% 6%, rgba(220, 196, 111, 0.08), transparent 30rem),
    radial-gradient(circle at 88% 14%, rgba(205, 182, 242, 0.13), transparent 26rem);
}

.example-showcase {
  margin: 0 auto;
  max-width: 1040px;
  min-height: 590px;
  position: relative;
}

.insight-board {
  margin: 0 auto;
  max-width: 1040px;
  min-height: 560px;
  position: relative;
}

.example-card {
  background:
    radial-gradient(circle at top right, rgba(205, 182, 242, 0.12), transparent 54%),
    rgba(36, 31, 49, 0.86);
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: 0 22px 70px rgba(7, 6, 12, 0.2);
  display: grid;
  gap: 18px;
  padding: 24px;
}

.rotating-example {
  animation: exampleRotate 36s infinite;
  grid-template-areas:
    "intro questions"
    "intro answer";
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  opacity: 0;
  position: absolute;
  inset: 0;
  transform: translateY(18px) scale(0.985);
}

.rotating-example:nth-child(2) {
  animation-delay: 12s;
}

.rotating-example:nth-child(3) {
  animation-delay: 24s;
}

.simple-example {
  align-items: stretch;
  grid-template-areas:
    "intro answer"
    "questions answer";
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  padding: 22px;
}

.simple-example .example-top {
  justify-content: flex-start;
}

.simple-example .example-top h3 {
  font-size: 20px;
  line-height: 1.32;
}

.simple-example .question-path {
  align-self: end;
}

.simple-example .question-path p {
  background: rgba(205, 182, 242, 0.045);
  border: 1px solid rgba(205, 182, 242, 0.08);
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.45;
  padding: 9px 10px;
}

.simple-example .answer-card {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.simple-example .answer-grid {
  grid-template-columns: 1fr;
}

.example-top {
  align-self: stretch;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  grid-area: intro;
  justify-content: center;
  padding-right: 22px;
}

.example-top h3,
.answer-card h3,
.insight-large h3 {
  font-size: 21px;
  line-height: 1.28;
}

.example-top p {
  margin-top: 12px;
}

.question-path {
  background: rgba(16, 14, 24, 0.28);
  border: 1px solid rgba(205, 182, 242, 0.12);
  border-radius: 20px;
  display: grid;
  gap: 8px;
  grid-area: questions;
  padding: 15px;
}

.question-path span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.question-path p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.45;
  margin: 0;
}

.answer-card {
  background:
    radial-gradient(circle at top left, rgba(220, 196, 111, 0.12), transparent 48%),
    rgba(16, 14, 24, 0.44);
  border: 1px solid rgba(220, 196, 111, 0.18);
  border-radius: 24px;
  grid-area: answer;
  padding: 17px;
}

.answer-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 16px;
}

.answer-block {
  border-top: 1px solid rgba(205, 182, 242, 0.12);
  margin-top: 16px;
  padding-top: 14px;
}

.answer-grid .answer-block {
  background: rgba(255, 250, 240, 0.03);
  border: 1px solid rgba(205, 182, 242, 0.1);
  border-radius: 18px;
  margin-top: 0;
  padding: 14px;
}

.answer-block strong {
  color: var(--gold);
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.answer-block p {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 7px;
}

.insight-story {
  padding-top: 26px;
}

.insight-large {
  margin-top: 0;
  padding: 24px;
}

.insight-large .signal {
  margin-top: 22px;
}

.rotating-insight {
  animation: exampleRotate 36s infinite;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  inset: 0;
  opacity: 0;
  position: absolute;
  transform: translateY(18px) scale(0.985);
}

.rotating-insight:nth-child(2) {
  animation-delay: 12s;
}

.rotating-insight:nth-child(3) {
  animation-delay: 24s;
}

.noticed-list {
  color: var(--muted);
  display: grid;
  gap: 7px;
  margin: 9px 0 0;
  padding-left: 18px;
}

.noticed-list li {
  line-height: 1.55;
}

.card {
  animation: softRise 0.7s ease both;
  background: rgba(36, 31, 49, 0.82);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 16px 50px rgba(7, 6, 12, 0.18);
  padding: 24px;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.grid .card:nth-child(2) {
  animation-delay: 70ms;
}

.grid .card:nth-child(3) {
  animation-delay: 140ms;
}

.grid .card:nth-child(4) {
  animation-delay: 210ms;
}

.card:hover {
  border-color: rgba(220, 196, 111, 0.26);
  box-shadow: 0 22px 62px rgba(7, 6, 12, 0.24);
  transform: translateY(-4px);
}

.quiet-card {
  background: rgba(16, 14, 24, 0.32);
  box-shadow: none;
  min-height: 238px;
}

.card .mark {
  background: rgba(205, 182, 242, 0.1);
  border: 1px solid rgba(205, 182, 242, 0.24);
  border-radius: 16px;
  color: var(--gold);
  display: inline-grid;
  font-size: 17px;
  font-weight: 900;
  height: 38px;
  margin-bottom: 18px;
  place-items: center;
  width: 38px;
}

.steps {
  counter-reset: step;
}

.step {
  counter-increment: step;
  display: grid;
  gap: 14px;
  grid-template-columns: auto 1fr;
}

.step::before {
  align-items: center;
  background: var(--gold);
  border-radius: 999px;
  color: #1a1600;
  content: counter(step);
  display: inline-flex;
  font-weight: 900;
  height: 32px;
  justify-content: center;
  width: 32px;
}

.trust {
  background:
    radial-gradient(circle at top left, rgba(138, 177, 142, 0.12), transparent 45%),
    rgba(36, 31, 49, 0.78);
  border: 1px solid var(--border);
  border-radius: 28px;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  padding: 34px;
}

.list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
}

.list li {
  color: var(--muted);
  line-height: 1.65;
  list-style: none;
  padding-left: 26px;
  position: relative;
}

.list li::before {
  background: var(--gold);
  border-radius: 99px;
  content: "";
  height: 7px;
  left: 0;
  position: absolute;
  top: 10px;
  width: 7px;
}

.final-cta {
  background:
    radial-gradient(circle at center top, rgba(220, 196, 111, 0.14), transparent 38rem),
    linear-gradient(180deg, rgba(36, 31, 49, 0.94), rgba(20, 17, 31, 0.92));
  border: 1px solid var(--border);
  border-radius: 34px;
  box-shadow: 0 24px 70px rgba(7, 6, 12, 0.2);
  margin: 46px 0 56px;
  overflow: hidden;
  padding: 58px 28px;
  position: relative;
  text-align: center;
}

.final-cta::before {
  background: linear-gradient(90deg, transparent, rgba(220, 196, 111, 0.4), transparent);
  content: "";
  height: 1px;
  left: 16%;
  position: absolute;
  right: 16%;
  top: 0;
}

.final-cta p {
  margin: 18px auto 26px;
  max-width: 520px;
}

.download-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.legal-page {
  max-width: 900px;
  padding-bottom: 80px;
}

.legal-page h1 {
  font-size: clamp(42px, 6vw, 68px);
  margin-bottom: 18px;
}

.legal-section {
  border-top: 1px solid var(--border);
  padding: 30px 0;
}

.legal-callout {
  background:
    radial-gradient(circle at top right, rgba(220, 196, 111, 0.08), transparent 58%),
    rgba(205, 182, 242, 0.05);
  border: 1px solid rgba(205, 182, 242, 0.16);
  border-radius: 24px;
  margin: 30px 0;
  padding: 26px;
}

.legal-section h2 {
  font-size: 26px;
  margin-bottom: 12px;
}

.legal-section ul {
  color: var(--muted);
  line-height: 1.75;
  margin: 12px 0 0;
  padding-left: 22px;
}

.footer {
  border-top: 1px solid var(--border);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  padding: 28px 0 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 860px) {
  .site-shell {
    padding: 18px;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 28px;
  }

  .nav-links {
    gap: 12px;
  }

  .hero,
  .section-head,
  .trust,
  .grid.two,
  .grid.three,
  .grid.four,
  .flow-shell {
    grid-template-columns: 1fr;
  }

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

  .example-showcase {
    margin-bottom: 28px;
    min-height: 980px;
  }

  .rotating-example,
  .simple-example {
    grid-template-areas:
      "intro"
      "questions"
      "answer";
    grid-template-columns: 1fr;
  }

  .example-top,
  .simple-example .example-top {
    border-bottom: 1px solid var(--border);
    border-right: 0;
    justify-content: flex-start;
    padding-bottom: 18px;
    padding-right: 0;
  }

  .simple-example {
    gap: 14px;
    padding: 18px;
  }

  .simple-example .example-top h3,
  .answer-card h3,
  .insight-large h3 {
    font-size: 19px;
    line-height: 1.32;
  }

  .simple-example .question-path {
    align-self: stretch;
  }

  .simple-example .question-path p {
    font-size: 13px;
    padding: 8px 10px;
  }

  .insight-board {
    min-height: 980px;
  }

  .rotating-insight {
    grid-template-columns: 1fr;
  }

  .hero-centered {
    min-height: auto;
    padding: 58px 0 62px;
  }

  .hero-logo img {
    height: 58px;
  }

  .flow-shell {
    border-radius: 28px;
    margin-top: 46px;
    padding: 18px;
  }

  .flow-copy {
    padding: 6px;
  }

  .flow-copy h2 {
    font-size: 30px;
  }

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

  .demo-phone,
  .pro-phone {
    height: 620px;
    max-width: 350px;
  }

  .soft-band {
    border-radius: 28px;
    padding: 44px 18px;
  }

  .section {
    padding: 48px 0;
  }

  .phone-card {
    min-height: 520px;
  }
}

@media (max-width: 520px) {
  .example-showcase {
    min-height: 1060px;
  }
}

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

  .example-showcase {
    display: grid;
    gap: 22px;
    min-height: auto;
  }

  .insight-board {
    display: grid;
    gap: 22px;
    min-height: auto;
  }

  .rotating-example {
    animation: none !important;
    opacity: 1;
    position: relative;
    transform: none;
  }

  .rotating-insight {
    animation: none !important;
    opacity: 1;
    position: relative;
    transform: none;
  }
}
