/* ===== Design tokens ===== */
:root {
  --brand-cyan: #2cc8ee;
  --brand-blue: #1e6fe0;
  --brand: #2cc8ee;
  --brand-dark: #1560b8;

  --ink: #111827;
  --ink-soft: #4b5563;
  --muted: #6b7280;
  --line: #e5e7eb;

  --bg: #ffffff;
  --bg-alt: #f9fafb;
  --bg-card: #ffffff;

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 2px rgba(17, 24, 39, 0.05);
  --shadow: 0 4px 16px rgba(17, 24, 39, 0.07);
  --shadow-lg: 0 8px 28px rgba(17, 24, 39, 0.1);

  --maxw: 1080px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 86px; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { line-height: 1.2; letter-spacing: -0.025em; font-weight: 700; }
svg { display: block; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 780px; }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 0 0 10px 0; z-index: 200;
}
.skip-link:focus { left: 0; }

.text-accent { color: var(--brand-dark); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font); font-weight: 600; font-size: 15px;
  padding: 11px 20px; border-radius: var(--radius-sm); border: 1px solid transparent;
  cursor: pointer; transition: background .15s ease, border-color .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:active { opacity: .92; }
.btn--sm { padding: 8px 16px; font-size: 14px; }
.btn--lg { padding: 13px 24px; font-size: 16px; }
.btn--block { width: 100%; }

.btn--primary { background: var(--brand-blue); color: #fff; }
.btn--primary:hover { background: var(--brand-dark); }

.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: #cbd5e1; background: var(--bg-alt); }

.btn--light { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.btn--light:hover { background: var(--bg-alt); }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 24px; height: 64px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; }
.brand__mark { border-radius: 8px; }
.brand__name { font-size: 18px; letter-spacing: -0.02em; }

.nav__links { display: flex; gap: 24px; margin-left: auto; }
.nav__links a { font-weight: 500; color: var(--ink-soft); font-size: 15px; transition: color .15s ease; }
.nav__links a:hover { color: var(--ink); }
.nav__actions { display: flex; align-items: center; }

.nav__toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer;
  padding: 8px; margin-left: auto;
}
.nav__toggle span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .25s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

[hidden] { display: none !important; }
.mobile-menu {
  display: flex; flex-direction: column; gap: 4px;
  padding: 12px 24px 22px; border-bottom: 1px solid var(--line); background: #fff;
}
.mobile-menu a { padding: 12px 4px; font-weight: 500; color: var(--ink-soft); border-bottom: 1px solid var(--line); }
.mobile-menu a:last-child { border: 0; margin-top: 10px; }

/* ===== Hero ===== */
.hero { position: relative; padding: 64px 0 72px; background: var(--bg); border-bottom: 1px solid var(--line); }
.hero__glow { display: none; }
.hero__inner {
  position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center;
}
.hero__copy { max-width: 540px; }

.hero__meta {
  font-size: 14px; font-weight: 500; color: var(--muted);
  margin-bottom: 16px; letter-spacing: 0;
}

.hero__copy h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 700; letter-spacing: -0.03em; }
.hero__sub { font-size: clamp(1rem, 1.8vw, 1.125rem); color: var(--ink-soft); margin-top: 16px; max-width: 480px; line-height: 1.65; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero__free-note {
  margin-top: 14px; font-size: 14px; font-weight: 500; color: var(--muted);
  max-width: 420px;
}

.hero__badges { list-style: none; display: flex; flex-wrap: wrap; gap: 16px 20px; margin-top: 20px; }
.hero__badges li { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 500; color: var(--ink-soft); }
.hero__badges li strong { color: var(--ink); font-weight: 600; }
.hero__badges svg { color: var(--brand-blue); flex: none; width: 16px; height: 16px; }

/* ===== Phone mockup ===== */
.hero__visual { display: flex; justify-content: center; align-items: center; }

.phone-scene {
  position: relative; width: 100%; max-width: 360px;
  display: flex; justify-content: center; align-items: center;
  padding: 28px 0 16px;
}

.phone-glow { display: none; }

.phone-preview {
  position: absolute; bottom: 36px; right: -34px; width: 220px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 12px; padding: 16px 16px 18px;
  box-shadow: var(--shadow);
  transform: rotate(2deg); z-index: 0;
  transition: transform .4s ease, box-shadow .4s ease;
}
.phone-preview.is-revealed {
  transform: rotate(1deg) translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.phone-preview__tabs { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 14px; }
.phone-preview__tabs span {
  font-size: 10px; font-weight: 600; padding: 3px 8px; border-radius: 4px;
  background: var(--bg-alt); color: var(--muted);
}
.phone-preview__tabs .is-active { background: var(--brand-blue); color: #fff; }
.phone-preview__line { height: 7px; border-radius: 4px; background: #e8edf2; margin-bottom: 7px; transform: scaleX(0); transform-origin: left center; transition: transform .55s cubic-bezier(.22,1,.36,1); }
.phone-preview__line--short { width: 72%; }
.phone-preview__line--med { width: 88%; margin-bottom: 0; }
.phone-preview.is-revealed .phone-preview__line { transform: scaleX(1); }
.phone-preview.is-revealed .phone-preview__line:nth-of-type(2) { transition-delay: .15s; }
.phone-preview.is-revealed .phone-preview__line:nth-of-type(3) { transition-delay: .3s; }
.phone-preview.is-revealed .phone-preview__line:nth-of-type(4) { transition-delay: .45s; }
.phone-preview__tabs span { transition: background .2s ease, color .2s ease; }
.phone-preview__tabs span.is-active { transform: none; }

.phone {
  position: relative; z-index: 1;
  width: 312px; height: 640px;
  border-radius: 54px;
  background:
    linear-gradient(155deg, rgba(255,255,255,.22) 0%, transparent 28%),
    linear-gradient(165deg, #48484d 0%, #2c2c30 18%, #1c1c20 55%, #121216 100%);
  padding: 10px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.10),
    0 0 0 2px rgba(0,0,0,.55),
    0 2px 4px rgba(0,0,0,.12),
    0 24px 48px rgba(13,27,38,.22),
    0 48px 96px rgba(13,27,38,.18);
}

.phone__btn {
  position: absolute; z-index: 2;
  background: linear-gradient(90deg, #3a3a3e, #525256, #3a3a3e);
  border-radius: 2px;
}
.phone__btn--silent { left: -2px; top: 118px; width: 3px; height: 26px; }
.phone__btn--vol-up { left: -2px; top: 162px; width: 3px; height: 48px; }
.phone__btn--vol-down { left: -2px; top: 220px; width: 3px; height: 48px; }
.phone__btn--power { right: -2px; top: 178px; width: 3px; height: 78px; }

.phone__bezel {
  height: 100%; border-radius: 44px; overflow: hidden;
  background: #000;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}

.phone__screen {
  position: relative; height: 100%;
  display: flex; flex-direction: column;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
  color: #000;
}
.phone__screen h1, .phone__screen h2, .phone__screen h3, .phone__screen h4 {
  font-family: inherit; line-height: inherit; letter-spacing: inherit; font-weight: inherit;
}

.phone__screen-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 120% 50% at 50% -10%, rgba(44,200,238,.14), transparent 55%),
    linear-gradient(180deg, #f0f9fd 0%, #f4f4f8 32%, #efeff4 100%);
}

.phone__glare {
  position: absolute; inset: 0; z-index: 20; pointer-events: none;
  background: linear-gradient(
    125deg,
    rgba(255,255,255,.28) 0%,
    rgba(255,255,255,.06) 22%,
    transparent 42%,
    transparent 100%
  );
}

/* Phone top bar */
.phone-top {
  position: relative; z-index: 5; flex: none;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 8px 16px 6px;
}
.phone-top__island {
  width: 64px; height: 18px;
  background: #000; border-radius: 10px;
}
.phone-top__title {
  font-size: 15px; font-weight: 600; letter-spacing: -.02em; color: #000;
}

/* App body */
.app-body {
  position: relative; z-index: 5;
  flex: 1; display: flex; flex-direction: column; gap: 14px;
  padding: 4px 16px 12px; min-height: 0;
}

.app-hero { padding: 0 2px; }
.app-hero__kind {
  display: block; font-size: 11px; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: var(--brand-cyan); margin-bottom: 5px;
}
.app-hero__title {
  display: block; font-size: 24px; font-weight: 700; letter-spacing: -.032em;
  color: #0d1b26; line-height: 1.12;
}

.app-transcript {
  flex: 1; min-height: 0;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.95);
  border-radius: 18px; padding: 0;
  box-shadow:
    0 0 0 1px rgba(0,0,0,.04),
    0 2px 4px rgba(13,27,38,.03),
    0 12px 32px rgba(13,27,38,.07);
  backdrop-filter: blur(8px);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.app-transcript__toolbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 14px 0; flex: none;
}
.app-transcript__hint {
  font-size: 11px; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; color: #8e8e93;
  display: inline-flex; align-items: center; gap: 6px;
  transition: color .25s ease;
}
.app-transcript__hint.is-live { color: #ff3b30; }
.app-transcript__hint.is-live::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: #ff3b30; flex: none;
  animation: rec-pulse 1.4s ease-out infinite;
}
.app-transcript p {
  font-size: 15px; line-height: 1.52; color: #1c1c1e; margin: 0;
  padding: 10px 14px 16px; letter-spacing: -.012em;
  max-height: 168px; overflow-y: auto; scroll-behavior: smooth;
}
.app-transcript p::-webkit-scrollbar { width: 0; height: 0; }
#mock-transcript-text .mock-word-new {
  animation: word-in .35s ease;
}
@media (prefers-reduced-motion: reduce) {
  #mock-transcript-text::before {
    content: attr(data-full-text);
    white-space: pre-wrap;
  }
  #mock-cursor,
  .app-recording__wave,
  .app-recording__dot { display: none; }
  .phone-preview__line { transform: scaleX(1) !important; }
  .phone-preview { transform: rotate(3deg) translateY(-6px); }
}
@keyframes word-in {
  from { opacity: .35; }
  to { opacity: 1; }
}
.app-cursor {
  display: inline-block; width: 2px; height: 17px; background: var(--brand-cyan);
  margin-left: 1px; vertical-align: text-bottom; border-radius: 1px;
  animation: cursor-blink 1.1s step-end infinite;
}
.app-cursor.is-hidden { opacity: 0; animation: none; }
@keyframes cursor-blink { 0%,100%{opacity:1} 50%{opacity:0} }

.app-transcript__attach {
  width: 28px; height: 28px; border-radius: 8px;
  display: grid; place-items: center;
  background: #f2f2f7; color: #8e8e93;
}

/* Phone demo states */
.phone-scene.is-recording .app-recording__wave { opacity: 1; }
.phone-scene.is-processing .app-dock__stop,
.phone-scene.is-complete .app-dock__stop { opacity: .45; pointer-events: none; }
.phone-scene.is-processing .app-recording__label { color: var(--brand-cyan); }
.phone-scene.is-processing .app-recording__dot { background: var(--brand-cyan); animation: none; box-shadow: none; }
.phone-scene.is-complete .app-dock__recording { opacity: .55; }
.phone-scene.is-complete .app-recording__wave { opacity: 0; }

.app-dock__recording:not(.is-active) .app-recording__dot { background: #c7c7cc; animation: none; box-shadow: none; }
.app-dock__recording:not(.is-active) .app-recording__label { color: #8e8e93; }
.app-dock__recording:not(.is-active) .app-recording__wave { opacity: .25; }

.app-dock__create:disabled {
  opacity: .5; pointer-events: none;
  background: #cbd5e1;
  box-shadow: none;
}
.app-dock__create.is-loading svg { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Dock */
.app-dock {
  position: relative; z-index: 5;
  margin: 0 12px 4px; padding: 12px 12px 10px;
  border-radius: 16px 16px 14px 14px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 9px;
}

.app-dock__recording {
  display: flex; align-items: center; gap: 7px;
  padding: 0 2px 2px;
}
.app-recording__dot {
  width: 7px; height: 7px; border-radius: 50%; background: #ff3b30; flex: none;
  box-shadow: 0 0 0 0 rgba(255,59,48,.5);
  animation: rec-pulse 1.4s ease-out infinite;
}
@keyframes rec-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,59,48,.45); }
  70% { box-shadow: 0 0 0 7px rgba(255,59,48,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,59,48,0); }
}
.app-recording__label { font-size: 12.5px; font-weight: 600; color: #ff3b30; }
.app-recording__time {
  font-size: 12.5px; font-weight: 500; color: #8e8e93;
  font-variant-numeric: tabular-nums;
}
.app-recording__wave {
  flex: 1; display: flex; align-items: center; justify-content: flex-end;
  gap: 2px; height: 20px; min-width: 0;
}
.app-recording__wave i {
  width: 2px; border-radius: 2px; background: rgba(255,59,48,.5);
  animation: rec-wave 1.1s ease-in-out infinite;
}
.app-recording__wave i:nth-child(1){height:30%;animation-delay:0s}
.app-recording__wave i:nth-child(2){height:50%;animation-delay:.06s}
.app-recording__wave i:nth-child(3){height:75%;animation-delay:.12s}
.app-recording__wave i:nth-child(4){height:40%;animation-delay:.18s}
.app-recording__wave i:nth-child(5){height:90%;animation-delay:.24s}
.app-recording__wave i:nth-child(6){height:55%;animation-delay:.3s}
.app-recording__wave i:nth-child(7){height:80%;animation-delay:.36s}
.app-recording__wave i:nth-child(8){height:35%;animation-delay:.42s}
.app-recording__wave i:nth-child(9){height:70%;animation-delay:.48s}
.app-recording__wave i:nth-child(10){height:45%;animation-delay:.54s}
.app-recording__wave i:nth-child(11){height:85%;animation-delay:.6s}
.app-recording__wave i:nth-child(12){height:38%;animation-delay:.66s}
.app-recording__wave i:nth-child(13){height:62%;animation-delay:.72s}
.app-recording__wave i:nth-child(14){height:48%;animation-delay:.78s}
@keyframes rec-wave { 0%,100%{transform:scaleY(.3)} 50%{transform:scaleY(1)} }

.app-dock button {
  font-family: inherit; border: none; cursor: default;
  display: flex; align-items: center; justify-content: center; gap: 7px;
  width: 100%; font-size: 16px; font-weight: 600; letter-spacing: -.018em;
  border-radius: 10px; padding: 14px 18px; color: #fff;
}

.app-dock__stop {
  background: #ff3b30;
  box-shadow: none;
}

.app-dock__create {
  background: var(--brand-blue);
  box-shadow: none;
}
.app-dock__create svg { opacity: .92; flex: none; }

.ios-home {
  position: relative; z-index: 5;
  width: 118px; height: 4px; background: #0d1b26; border-radius: 3px;
  margin: 2px auto 7px; opacity: .16;
}

/* ===== Sections ===== */
.section { padding: 72px 0; }
.section--alt { background: var(--bg-alt); }
.section__head { max-width: 640px; margin: 0 auto 44px; text-align: center; }
.eyebrow { display: block; font-weight: 600; font-size: 13px; letter-spacing: 0; text-transform: none; color: var(--brand-dark); margin-bottom: 10px; }
.section__head h2 { font-size: clamp(1.65rem, 3vw, 2.15rem); font-weight: 700; }
.section__lead { margin-top: 12px; color: var(--ink-soft); font-size: 1.05rem; line-height: 1.65; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step {
  position: relative; background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px 22px;
}
.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 6px;
  background: var(--bg-alt); color: var(--brand-dark);
  font-size: 13px; font-weight: 700; margin-bottom: 14px;
  position: static;
}
.step__icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm); display: grid; place-items: center;
  background: var(--bg-alt); color: var(--brand-dark); margin-bottom: 14px;
}
.step h3 { font-size: 1.125rem; margin-bottom: 6px; font-weight: 600; }
.step p { color: var(--ink-soft); font-size: .95rem; line-height: 1.6; }

/* Features */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 22px;
}
.feature__icon {
  width: 40px; height: 40px; border-radius: var(--radius-sm); display: grid; place-items: center;
  background: var(--bg-alt); color: var(--brand-dark); margin-bottom: 14px;
}
.feature h3 { font-size: 1.05rem; margin-bottom: 6px; font-weight: 600; }
.feature p { color: var(--ink-soft); font-size: .94rem; line-height: 1.6; }

/* Workflows */
.workflows { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.wf {
  position: relative; background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 18px;
}
.wf__icon {
  width: 40px; height: 40px; border-radius: var(--radius-sm); display: grid; place-items: center;
  background: var(--bg-alt); color: var(--brand-dark); margin-bottom: 12px;
}
.wf h3 { font-size: 1rem; margin-bottom: 6px; font-weight: 600; }
.wf p { color: var(--ink-soft); font-size: .9rem; line-height: 1.55; }
.wf--featured { border-color: var(--brand-blue); background: #fff; box-shadow: none; }
.wf--featured .wf__icon { background: rgba(30, 111, 224, 0.08); color: var(--brand-dark); }
.wf--featured p { color: var(--ink-soft); }
.wf__tag {
  position: absolute; top: 14px; right: 14px; background: var(--bg-alt); color: var(--brand-dark);
  font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: 4px; letter-spacing: 0;
}

/* Pricing */
.pricing { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: stretch; }
.price {
  position: relative; background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px 22px; display: flex; flex-direction: column;
}
.price__name { font-size: 1.1rem; color: var(--ink-soft); font-weight: 600; }
.price__amount { display: flex; align-items: baseline; gap: 6px; margin: 12px 0 2px; }
.price__value { font-size: 2rem; font-weight: 700; letter-spacing: -0.02em; }
.price__per { color: var(--muted); font-weight: 500; font-size: .9rem; }
.price__limit { color: var(--ink-soft); font-weight: 600; font-size: .9rem; margin-bottom: 18px; }
.price__list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; flex: 1; }
.price__list li { position: relative; padding-left: 22px; color: var(--ink-soft); font-size: .92rem; line-height: 1.5; }
.price__list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--brand-blue); font-size: 13px; font-weight: 700;
}
.price--featured {
  border-color: var(--brand-blue);
  background: #fff;
}
.price--free {
  border-color: var(--line);
  background: #fff;
}
.section__lead strong { color: var(--ink); font-weight: 600; }
.price__badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--brand-blue); color: #fff; font-size: 11px; font-weight: 600; letter-spacing: 0;
  padding: 4px 12px; border-radius: 4px;
}
.pricing__note { text-align: center; color: var(--muted); font-size: .875rem; margin-top: 22px; max-width: 640px; margin-left: auto; margin-right: auto; line-height: 1.6; }

/* FAQ */
.faq { display: flex; flex-direction: column; gap: 10px; }
.faq__item {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 4px 20px;
}
.faq__item summary {
  cursor: pointer; list-style: none; padding: 16px 28px 16px 0; position: relative;
  font-weight: 600; font-size: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.25rem; font-weight: 500; color: var(--muted); transition: transform .2s ease;
}
.faq__item[open] summary::after { content: "−"; }
.faq__item p { color: var(--ink-soft); padding: 0 0 16px; font-size: .95rem; line-height: 1.6; }

/* CTA */
.cta { padding: 40px 0 80px; }
.cta__card {
  position: relative; overflow: hidden; text-align: center; color: #fff;
  background: var(--ink); border-radius: var(--radius-lg); padding: 56px 28px;
}
.cta__glow { display: none; }
.cta__card > * { position: relative; }
.cta__card h2 { font-size: clamp(1.65rem, 3.5vw, 2.25rem); font-weight: 700; }
.cta__card p { margin-top: 12px; font-size: 1.05rem; color: rgba(255,255,255,.8); max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.cta__card .btn { margin-top: 24px; }
.cta__hint { font-size: .875rem; color: rgba(255,255,255,.55); margin-top: 14px; }

/* Footer */
.site-footer { background: var(--ink); color: #9ca3af; padding: 52px 0 28px; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer__brand .brand__name { color: #fff; }
.footer__brand p { margin-top: 14px; color: #8b9aa6; max-width: 320px; font-size: .96rem; }
.footer__col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer__col a { display: block; color: #9aa8b3; padding: 6px 0; font-weight: 500; font-size: .95rem; transition: color .15s ease; }
.footer__col a:hover { color: #fff; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-top: 26px; color: #74828d; font-size: .88rem; }
.footer__disclaimer { color: #5e6b75; }

/* ===== Legal pages ===== */
.legal { padding: 60px 0 90px; }
.legal h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 8px; }
.legal .legal__updated { color: var(--muted); margin-bottom: 36px; font-size: .95rem; }
.legal h2 { font-size: 1.35rem; margin: 38px 0 12px; }
.legal h3 { font-size: 1.1rem; margin: 24px 0 8px; }
.legal p, .legal li { color: var(--ink-soft); margin-bottom: 12px; }
.legal ul { padding-left: 22px; margin-bottom: 12px; }
.legal a { color: var(--brand-dark); font-weight: 600; }
.legal a:hover { text-decoration: underline; }
.legal .back-link { display: inline-flex; align-items: center; gap: 6px; margin-bottom: 30px; font-weight: 600; color: var(--brand-dark); }
.legal .note { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 20px; color: var(--muted); font-size: .92rem; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .nav__links, .nav__actions { display: none; }
  .nav__toggle { display: flex; }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__copy { max-width: none; text-align: center; margin: 0 auto; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__cta, .hero__badges { justify-content: center; }
  .hero__free-note { margin-left: auto; margin-right: auto; text-align: center; }
  .phone-preview { display: none; }
  .phone-scene { max-width: 320px; margin: 0 auto; }
  .features, .steps { grid-template-columns: repeat(2, 1fr); }
  .workflows { grid-template-columns: repeat(2, 1fr); }
  .pricing { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .features, .steps, .workflows, .pricing { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .phone { width: 284px; height: 584px; border-radius: 50px; padding: 9px; }
  .phone__bezel { border-radius: 42px; }
  .phone-top__island { width: 56px; height: 16px; }
  .phone-top__title { font-size: 14px; }
  .app-hero__title { font-size: 22px; }
  .app-transcript p { font-size: 14px; }
  .app-dock button { font-size: 15px; padding: 13px 16px; }
  .app-dock { margin: 0 10px 4px; padding: 11px 11px 9px; }
  .cta__card { padding: 50px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; transition: none !important; }
}
