:root {
  color-scheme: light dark;
  --brand-peach: #feb5a9;
  --brand-wine: #8e4941;
  --paper: #f7f4ef;
  --paper-strong: #fffdf9;
  --paper-soft: #eee9e2;
  --ink: #191719;
  --ink-soft: #5e585c;
  --ink-muted: #827b80;
  --coral: var(--brand-wine);
  --coral-strong: #713a34;
  --coral-soft: #f9e1dc;
  --rose: var(--brand-peach);
  --line: rgba(25, 23, 25, 0.12);
  --line-strong: rgba(25, 23, 25, 0.2);
  --surface: rgba(255, 253, 249, 0.76);
  --surface-solid: #fffdf9;
  --surface-dark: #181719;
  --button-bg: var(--brand-wine);
  --button-ink: #fff;
  --shadow-sm: 0 10px 26px rgba(63, 42, 37, 0.08);
  --shadow-md: 0 24px 70px rgba(63, 42, 37, 0.12);
  --shadow-lg: 0 42px 120px rgba(63, 42, 37, 0.17);
  --device-edge: rgba(25, 23, 25, 0.46);
  --device-shadow: 0 24px 58px rgba(40, 24, 23, 0.14);
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 42px;
  --radius-xl: 58px;
  --wrap: 1180px;
  --display-font: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

:root[data-theme="dark"] {
  --paper: #100f11;
  --paper-strong: #171619;
  --paper-soft: #201e21;
  --ink: #fff8f5;
  --ink-soft: #cfc5c7;
  --ink-muted: #938a8e;
  --coral: var(--brand-peach);
  --coral-strong: #ffd1c9;
  --coral-soft: #3c2825;
  --rose: var(--brand-wine);
  --line: rgba(255, 248, 245, 0.12);
  --line-strong: rgba(255, 248, 245, 0.2);
  --surface: rgba(27, 25, 28, 0.8);
  --surface-solid: #1d1b1e;
  --surface-dark: #070707;
  --button-bg: var(--brand-peach);
  --button-ink: #351d1a;
  --shadow-sm: 0 12px 30px rgba(0, 0, 0, 0.22);
  --shadow-md: 0 28px 76px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 48px 130px rgba(0, 0, 0, 0.44);
  --device-edge: rgba(255, 248, 245, 0.28);
  --device-shadow: none;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
  scroll-padding-top: calc(108px + env(safe-area-inset-top, 0px));
  background: var(--paper);
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

::selection {
  color: #fff;
  background: var(--coral-strong);
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--coral) 68%, transparent);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 16px;
  z-index: 100;
  padding: 11px 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--surface-dark);
  box-shadow: var(--shadow-sm);
  transform: translateY(-150%);
  transition: transform 180ms var(--ease-out);
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--wrap));
  width: min(
    calc(100% - 40px - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px)),
    var(--wrap)
  );
  margin-inline: auto;
}

.site-header-shell {
  position: sticky;
  top: env(safe-area-inset-top, 0px);
  z-index: 50;
  padding: 14px 0;
  margin-bottom: env(safe-area-inset-top, 0px);
  pointer-events: none;
}

.site-header {
  display: flex;
  align-items: center;
  min-height: 66px;
  gap: 8px;
  padding: 10px 12px 10px 14px;
  border: 1px solid color-mix(in srgb, var(--line) 78%, transparent);
  border-radius: 24px;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  box-shadow: 0 8px 30px rgba(46, 34, 32, 0.06);
  backdrop-filter: blur(22px) saturate(145%);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
  pointer-events: auto;
  transition:
    border-color 180ms ease,
    box-shadow 200ms ease,
    background-color 200ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line-strong);
  background: color-mix(in srgb, var(--surface-solid) 90%, transparent);
  box-shadow: var(--shadow-sm);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  min-width: 0;
}

.brand-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #090909;
  box-shadow: var(--shadow-sm);
}

.brand-copy {
  display: grid;
  line-height: 1.08;
}

.brand-copy strong {
  font-family: var(--display-font);
  font-size: 18px;
  letter-spacing: -0.03em;
}

.brand-copy span {
  margin-top: 4px;
  color: var(--ink-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 1 auto;
  gap: 8px;
  margin-left: auto;
}

.site-nav a {
  padding: 9px 8px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 720;
  white-space: nowrap;
  transition:
    color 160ms ease,
    box-shadow 160ms ease,
    transform 140ms var(--ease-out);
}

.site-nav a[aria-current="page"] {
  color: var(--ink);
  box-shadow: inset 0 -2px var(--coral);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
  gap: 8px;
}

.icon-button,
.language-button {
  display: inline-grid;
  min-width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  cursor: pointer;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    transform 140ms var(--ease-out);
}

.language-button {
  padding-inline: 12px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.theme-icon {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
}

.theme-icon svg {
  grid-area: 1 / 1;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.theme-icon-moon {
  display: block;
}

.theme-icon-sun,
:root[data-theme="dark"] .theme-icon-moon {
  display: none;
}

:root[data-theme="dark"] .theme-icon-sun {
  display: block;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  gap: 9px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 780;
  letter-spacing: -0.01em;
  transition:
    transform 140ms var(--ease-out),
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.primary-button {
  color: var(--button-ink);
  background: var(--button-bg);
  box-shadow: 0 16px 36px color-mix(in srgb, var(--brand-wine) 22%, transparent);
}

.secondary-button {
  border: 1px solid var(--line-strong);
  color: var(--ink);
  background: var(--surface-solid);
}

.secondary-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--button-ink);
  background: var(--button-bg);
  box-shadow: 0 10px 24px color-mix(in srgb, var(--brand-wine) 20%, transparent);
  font-size: 13px;
  font-weight: 780;
  transition:
    color 160ms ease,
    box-shadow 160ms ease,
    transform 140ms var(--ease-out);
}

.mobile-menu-toggle,
.mobile-menu {
  display: none;
}

.button-arrow {
  font-size: 17px;
  line-height: 1;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
  align-items: center;
  min-height: min(860px, calc(100vh - 96px));
  gap: clamp(40px, 7vw, 100px);
  padding-block: clamp(58px, 8vw, 108px) 84px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1,
.section-heading,
.journey-copy h3,
.cta-card h2 {
  margin: 0;
  font-family: var(--display-font);
  font-weight: 820;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(56px, 6.3vw, 92px);
  line-height: 0.95;
}

.signal-text {
  display: inline-block;
  margin-top: 10px;
  color: var(--coral);
}

.hero-lede {
  max-width: 660px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.75vw, 22px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-stage {
  position: relative;
  display: grid;
  min-height: 0;
  overflow: visible;
  padding: 12px 42px 20px;
  place-items: start center;
  isolation: isolate;
}

.hero-stage::before,
.hero-stage::after {
  display: none;
}

.phone-frame {
  position: relative;
  inset: auto;
  width: min(78%, 330px);
  padding: 9px;
  border: 1px solid var(--device-edge);
  border-radius: 52px;
  background: #050505;
  box-shadow: var(--device-shadow);
}

.phone-frame img {
  width: 100%;
  border-radius: 43px;
}

.status-card {
  position: absolute;
  z-index: 4;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  min-width: 240px;
  padding: 15px 17px;
  border: 1px solid var(--line);
  border-radius: 22px;
  color: var(--ink);
  background: color-mix(in srgb, var(--surface-solid) 92%, transparent);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.status-card strong,
.status-card > span:nth-child(2),
.status-card > span:nth-child(2) > span {
  display: block;
}

.status-card strong {
  font-size: 14px;
  line-height: 1.2;
}

.status-card > span:nth-child(2) > span {
  margin-top: 3px;
  color: var(--ink-muted);
  font-size: 12px;
}

.status-card.live {
  right: 0;
  bottom: 14%;
}

.status-symbol {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 13px;
  color: #fff;
  background: var(--coral);
  font-weight: 850;
}

.status-card.live .status-symbol {
  color: var(--button-ink);
  background: var(--button-bg);
}

.tracking-boundaries {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  align-items: center;
  gap: clamp(34px, 5vw, 64px);
  margin-top: clamp(28px, 4vw, 52px);
  padding-block: clamp(30px, 4vw, 46px);
  border-block: 1px solid var(--line);
}

.section-kicker {
  margin: 0 0 16px;
  color: var(--coral-strong);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tracking-boundaries-heading h2 {
  max-width: 520px;
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.05em;
}

.tracking-boundaries-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.tracking-boundaries-list article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.tracking-boundaries-list article > span {
  color: var(--coral-strong);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.tracking-boundaries-list h3,
.tracking-boundaries-list p {
  margin: 0;
}

.tracking-boundaries-list h3 {
  font-family: var(--display-font);
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.tracking-boundaries-list p {
  margin-top: 7px;
  color: var(--ink-soft);
  font-size: 15px;
}

.story-intro {
  max-width: 820px;
  margin: 0 auto;
  padding: 120px 0 100px;
  text-align: center;
}

#story-heading {
  scroll-margin-top: 112px;
}

.section-heading {
  font-size: clamp(43px, 5.6vw, 74px);
  line-height: 1;
}

.section-lede {
  max-width: 720px;
  margin: 23px auto 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 22px);
}

.journey {
  position: relative;
  padding-bottom: 80px;
}

.signal-rail,
.signal-rail-fill {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  border-radius: 999px;
  transform: translateX(-50%);
  transform-origin: top;
}

.signal-rail {
  background: var(--line);
}

.signal-rail-fill {
  background: var(--coral);
  transform: translateX(-50%) scaleY(0);
}

.journey-step {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 96px minmax(0, 1fr);
  grid-template-areas: "copy marker media";
  align-items: center;
  min-height: 820px;
  gap: clamp(24px, 4vw, 64px);
}

.journey-step:nth-of-type(even) {
  grid-template-areas: "media marker copy";
}

.journey-copy {
  grid-area: copy;
  max-width: 475px;
}

.journey-step:nth-of-type(odd) .journey-copy {
  justify-self: end;
  text-align: right;
}

.journey-step:nth-of-type(even) .journey-copy {
  justify-self: start;
}

.step-number {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: var(--coral-strong);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.journey-copy h3 {
  font-size: clamp(38px, 4.4vw, 60px);
  line-height: 1.02;
}

.journey-copy p {
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.6vw, 20px);
}

.journey-copy .step-setup-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  gap: 10px;
  margin-top: 26px;
  padding: 0 20px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink);
  background: var(--surface-solid);
  font-size: 14px;
  font-weight: 760;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    transform 140ms var(--ease-out);
}

.step-marker {
  position: relative;
  z-index: 3;
  display: grid;
  grid-area: marker;
  width: 70px;
  height: 70px;
  place-items: center;
  justify-self: center;
  border: 9px solid var(--paper);
  border-radius: 50%;
  color: #fff;
  background: var(--coral);
  box-shadow: 0 0 0 1px var(--line), var(--shadow-sm);
}

.step-marker svg {
  width: 35px;
  height: 18px;
  overflow: visible;
}

.step-marker path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.7;
}

.journey-media {
  display: grid;
  grid-area: media;
  width: 100%;
  place-items: center;
}

.screenshot-shell {
  position: relative;
  width: min(100%, 390px);
  padding: 9px;
  border: 1px solid var(--device-edge);
  border-radius: 48px;
  background: #030303;
  box-shadow: var(--device-shadow);
}

.screenshot-shell img {
  width: 100%;
  border-radius: 40px;
}

.screenshot-shell.compact {
  width: min(100%, 350px);
}

.automation-card {
  width: min(100%, 470px);
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--surface-solid) 88%, var(--coral-soft));
  box-shadow: var(--shadow-md);
}

.automation-card > p {
  margin: 0 0 20px;
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.automation-flow {
  display: grid;
}

.automation-state {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 16px 2px;
  border-bottom: 1px solid var(--line);
}

.automation-state:first-child {
  padding-top: 2px;
}

.automation-state:last-child {
  padding-bottom: 2px;
  border-bottom: 0;
}

.automation-state-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 15px;
  color: var(--coral-strong);
  background: color-mix(in srgb, var(--brand-peach) 34%, var(--surface-solid));
}

.automation-state > span:nth-child(2),
.automation-state > span:nth-child(2) > span {
  display: block;
}

.automation-state strong {
  font-size: 14px;
}

.automation-state > span:nth-child(2) > span {
  margin-top: 2px;
  color: var(--ink-muted);
  font-size: 12px;
}

.automation-state-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.automation-state-icon.is-live svg {
  stroke-width: 2;
}

.state-check {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--coral) 32%, var(--line));
  border-radius: 50%;
  color: var(--coral-strong);
  background: var(--surface-solid);
}

.state-check svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.state-live {
  width: 10px;
  height: 10px;
  border: 3px solid color-mix(in srgb, var(--coral-soft) 72%, transparent);
  border-radius: 50%;
  background: var(--coral);
  box-sizing: content-box;
}

.feature-section {
  padding: 130px 0 60px;
}

.feature-header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 56px;
  margin-bottom: 52px;
}

.feature-header .section-lede {
  margin: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 18px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--surface-solid) 92%, var(--coral-soft));
  box-shadow: var(--shadow-sm);
}

.feature-card:nth-child(n) {
  grid-column: auto;
  background: color-mix(in srgb, var(--surface-solid) 92%, var(--coral-soft));
}

.feature-index {
  display: block;
  color: var(--coral-strong);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.feature-card h3 {
  max-width: 480px;
  margin: 22px 0 0;
  font-family: var(--display-font);
  font-weight: 800;
  font-size: clamp(27px, 3vw, 40px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.feature-card p {
  max-width: 560px;
  margin: 17px 0 0;
  color: var(--ink-soft);
}

.feature-card.has-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(148px, 34%, 190px);
  grid-template-rows: auto auto 1fr;
  min-height: 520px;
  column-gap: 24px;
}

.feature-card.has-preview > .feature-index,
.feature-card.has-preview > h3,
.feature-card.has-preview > p {
  grid-column: 1;
}

.feature-preview {
  position: relative;
  grid-row: 1 / -1;
  grid-column: 2;
  align-self: end;
  justify-self: end;
  width: 100%;
  margin-bottom: 0;
  padding: 5px;
  border: 1px solid var(--device-edge);
  border-radius: 27px;
  background: #050505;
  box-shadow: var(--device-shadow);
}

.feature-preview img {
  width: 100%;
  border-radius: 22px;
}

.truth-section {
  padding: 100px 0;
}

.truth-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 7vw, 90px);
  padding: clamp(34px, 7vw, 78px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  color: var(--ink);
  background: color-mix(in srgb, var(--surface-solid) 88%, var(--coral-soft));
  box-shadow: var(--shadow-md);
}

.truth-card .section-heading {
  font-size: clamp(40px, 5vw, 66px);
}

.truth-card .section-lede {
  margin-inline: 0;
  color: var(--ink-soft);
}

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

.truth-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface-solid);
}

.truth-list span {
  display: block;
  padding-top: 1px;
  color: var(--coral);
  font-weight: 900;
}

.truth-list strong,
.truth-list small {
  display: block;
}

.truth-list strong {
  font-size: 15px;
}

.truth-list small {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.45;
}

.faq-section {
  padding: 70px 0 120px;
}

.faq-page .faq-section {
  min-height: calc(100vh - 250px);
  padding-top: clamp(92px, 11vw, 150px);
}

.faq-layout {
  display: grid;
  gap: clamp(48px, 7vw, 86px);
}

.faq-page-heading {
  max-width: 760px;
}

.faq-search {
  max-width: 720px;
  margin-top: clamp(34px, 5vw, 50px);
}

.faq-search-control {
  position: relative;
}

.faq-search-control svg {
  position: absolute;
  top: 50%;
  left: 18px;
  width: 21px;
  height: 21px;
  color: var(--ink-muted);
  pointer-events: none;
  transform: translateY(-50%);
}

.faq-search-control circle,
.faq-search-control path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.faq-search-control input {
  width: 100%;
  min-height: 58px;
  padding: 0 48px 0 52px;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  color: var(--ink);
  background: var(--surface-solid);
  box-shadow: var(--shadow-sm);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.faq-search-control input::placeholder {
  color: var(--ink-muted);
  opacity: 1;
}

.faq-search-control input:focus {
  border-color: color-mix(in srgb, var(--coral) 58%, var(--line));
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--coral) 13%, transparent);
}

.faq-search-control input::-webkit-search-cancel-button {
  cursor: pointer;
}

.faq-search-status {
  margin: 10px 0 0;
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 750;
}

.faq-search-status:empty {
  display: none;
}

.faq-search-empty {
  margin: 34px 0 0;
  padding: 22px 0;
  border-block: 1px solid var(--line);
  color: var(--ink-soft);
}

[hidden] {
  display: none !important;
}

.faq-groups {
  display: grid;
}

.faq-group {
  display: grid;
  grid-template-columns: minmax(210px, 0.38fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(34px, 6vw, 88px);
  padding: clamp(42px, 5vw, 64px) 0;
  border-top: 1px solid var(--line);
}

.faq-group h2 {
  position: sticky;
  top: 126px;
  margin: 0;
  color: var(--ink);
  font-family: var(--display-font);
  font-size: clamp(27px, 2.8vw, 38px);
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: 0 8px 22px rgba(48, 34, 31, 0.045);
  transition:
    border-color 180ms ease,
    background-color 180ms ease;
}

.faq-item[open] {
  border-color: color-mix(in srgb, var(--coral) 38%, var(--line));
  background: var(--surface-solid);
}

.faq-item summary {
  position: relative;
  padding: 20px 60px 20px 22px;
  cursor: pointer;
  font-weight: 780;
  list-style: none;
}

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

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 20px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--coral-strong);
  background: var(--coral-soft);
  content: "+";
  transform: translateY(-50%);
  transition: transform 180ms var(--ease-out);
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
  overflow: hidden;
  color: var(--ink-soft);
}

.faq-item.is-animating .faq-answer {
  transition:
    height 240ms var(--ease-out),
    opacity 180ms ease-out;
  will-change: height, opacity;
}

.faq-answer p {
  margin: 0;
  padding: 0 22px 22px;
  line-height: 1.55;
}

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

.cta-card {
  padding: clamp(42px, 8vw, 92px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  color: var(--ink);
  background: color-mix(in srgb, var(--surface-solid) 78%, var(--coral-soft));
  box-shadow: var(--shadow-md);
}

.cta-card::after {
  display: none;
}

.cta-card h2 {
  position: relative;
  z-index: 1;
  max-width: 840px;
  font-size: clamp(48px, 7vw, 86px);
  line-height: 0.96;
}

.cta-card p {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 22px);
}

.cta-card .primary-button {
  position: relative;
  z-index: 1;
  margin-top: 30px;
  color: var(--button-ink);
  background: var(--button-bg);
  box-shadow: 0 16px 36px color-mix(in srgb, var(--brand-wine) 22%, transparent);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  align-items: center;
  gap: 40px;
  padding: 28px 0 50px;
  padding-bottom: calc(50px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: 13px;
}

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

.footer-brand img {
  width: 36px;
  height: 36px;
  padding: 4px;
  border-radius: 12px;
  background: #090909;
}

.footer-copy strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
}

.footer-copy span {
  display: block;
  margin-top: 2px;
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 20px;
}

.footer-links a {
  transition: color 160ms ease;
}

.footer-disclaimer {
  grid-column: 1 / -1;
  width: 100%;
  max-width: none;
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 620ms var(--ease-out),
    transform 620ms var(--ease-out);
}

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

.hero-copy > * {
  animation: hero-enter 720ms var(--ease-out) both;
}

.hero-copy > :nth-child(2) {
  animation-delay: 70ms;
}

.hero-copy > :nth-child(3) {
  animation-delay: 130ms;
}

.hero-copy > :nth-child(4) {
  animation-delay: 190ms;
}

.hero-copy > :nth-child(5),
.hero-copy > :nth-child(6) {
  animation-delay: 240ms;
}

.hero-stage {
  animation: stage-enter 820ms var(--ease-out) 120ms both;
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
}

@keyframes stage-enter {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
  }
}

@media (hover: hover) and (pointer: fine) {
  .site-nav a:hover {
    color: var(--ink);
    box-shadow: inset 0 -2px var(--coral);
  }

  .primary-button:hover,
  .secondary-button:hover,
  .step-setup-button:hover,
  .store-button:hover,
  .icon-button:hover,
  .language-button:hover {
    transform: translateY(-2px);
  }

  .primary-button:hover {
    box-shadow: 0 18px 42px rgba(21, 18, 19, 0.22);
  }

  .secondary-button:hover,
  .step-setup-button:hover {
    border-color: color-mix(in srgb, var(--coral) 48%, var(--line));
    background: color-mix(in srgb, var(--surface-solid) 80%, var(--coral-soft));
  }

  .store-button:hover {
    background: color-mix(in srgb, var(--button-bg) 90%, var(--ink));
    box-shadow: 0 13px 30px color-mix(in srgb, var(--brand-wine) 28%, transparent);
  }

  .faq-item summary:hover {
    color: var(--coral-strong);
  }

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

.store-button:active,
.primary-button:active,
.secondary-button:active,
.step-setup-button:active,
.icon-button:active,
.language-button:active,
.mobile-menu-toggle:active,
.mobile-menu-setting:active,
.mobile-menu-close:active,
.site-nav a:active {
  transform: scale(0.97);
}

@media (max-width: 1040px) {
  .site-nav {
    display: none;
  }

  .site-header {
    justify-content: space-between;
  }

  .hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.8fr);
    gap: 42px;
  }

  .hero-stage {
    min-height: 0;
    padding-inline: 24px;
  }

  .journey-step {
    min-height: 760px;
    gap: 24px;
  }
}

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .feature-card:nth-child(n) {
    grid-column: auto;
  }

  .feature-card {
    height: auto;
  }

  .feature-card.has-preview {
    min-height: 420px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 28px), var(--wrap));
  }

  .brand-copy span {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 62px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-stage {
    width: min(100%, 590px);
    min-height: 0;
    margin-inline: auto;
  }

  .story-intro {
    padding-top: 80px;
  }

  .signal-rail,
  .signal-rail-fill {
    left: 34px;
  }

  .journey-step,
  .journey-step:nth-of-type(even) {
    grid-template-columns: 68px minmax(0, 1fr);
    grid-template-areas:
      "marker copy"
      "marker media";
    min-height: 0;
    align-items: start;
    gap: 26px 18px;
    padding: 74px 0 86px;
  }

  .journey-copy,
  .journey-step:nth-of-type(odd) .journey-copy,
  .journey-step:nth-of-type(even) .journey-copy {
    justify-self: stretch;
    max-width: none;
    text-align: left;
  }

  .step-marker {
    position: sticky;
    top: 96px;
    width: 60px;
    height: 60px;
    border-width: 7px;
  }

  .journey-media {
    justify-items: start;
  }

  .screenshot-shell,
  .screenshot-shell.compact,
  .automation-card {
    width: min(100%, 440px);
  }

  .feature-header,
  .tracking-boundaries,
  .truth-card,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .tracking-boundaries {
    gap: 34px;
  }

  .feature-header {
    gap: 22px;
  }

  .feature-header .section-lede {
    margin: 0;
  }

  .truth-card {
    gap: 38px;
  }

  .faq-layout {
    gap: 42px;
  }

  .faq-group {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 38px 0;
  }

  .faq-group h2 {
    position: static;
    font-size: clamp(27px, 7vw, 34px);
  }
}

@media (max-width: 680px) {
  .site-header-shell {
    padding: 10px 0;
  }

  .site-header {
    min-height: 58px;
    gap: 8px;
    padding: 8px 9px 8px 10px;
    border-radius: 20px;
  }
}

@media (max-width: 1040px) {
  .site-header {
    box-shadow: 0 8px 30px rgba(46, 34, 32, 0.004);
  }

  .site-header.is-scrolled {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.004);
  }

  .has-mobile-menu .site-header .header-actions > .language-button,
  .has-mobile-menu .site-header .header-actions > .icon-button {
    display: none;
  }

  .has-mobile-menu .header-actions {
    gap: 8px;
  }

  .mobile-menu-toggle {
    display: inline-grid;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    padding: 0;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink);
    background: var(--surface);
    cursor: pointer;
    transition:
      border-color 160ms ease,
      background-color 160ms ease,
      transform 140ms var(--ease-out);
  }

  .mobile-menu-toggle > span {
    display: grid;
    width: 17px;
    gap: 4px;
  }

  .mobile-menu-toggle i {
    display: block;
    width: 100%;
    height: 1.5px;
    border-radius: 999px;
    background: currentColor;
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: block;
    overflow-y: auto;
    overscroll-behavior: contain;
    color: var(--ink);
    background: var(--paper);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-100%);
    transition:
      opacity 300ms var(--ease-in-out),
      transform 300ms var(--ease-in-out),
      visibility 0s linear 300ms;
  }

  .mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition:
      opacity 300ms var(--ease-in-out),
      transform 300ms var(--ease-in-out),
      visibility 0s linear 0s;
  }

  .mobile-menu-inner {
    display: flex;
    width: min(calc(100% - 28px), 620px);
    width: min(
      calc(100% - 28px - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px)),
      620px
    );
    min-height: 100%;
    min-height: 100dvh;
    margin-inline: auto;
    padding:
      max(18px, env(safe-area-inset-top))
      0
      max(16px, env(safe-area-inset-bottom));
    flex-direction: column;
  }

  .mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    gap: 18px;
  }

  .mobile-menu-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .mobile-menu-brand img {
    width: 38px;
    height: 38px;
    padding: 4px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #090909;
    box-shadow: var(--shadow-sm);
  }

  .mobile-menu-brand strong {
    font-family: var(--display-font);
    font-size: 18px;
    letter-spacing: -0.03em;
  }

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

  .mobile-menu-section-label {
    margin: 34px 2px 10px;
    color: var(--ink-muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .mobile-menu-navigation {
    display: grid;
    border-top: 1px solid var(--line);
  }

  .mobile-menu-navigation a {
    display: flex;
    min-height: 62px;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--line);
    font-family: var(--display-font);
    font-size: clamp(25px, 7.2vw, 34px);
    font-weight: 760;
    letter-spacing: -0.035em;
    text-align: center;
    transition:
      color 160ms ease,
      transform 140ms var(--ease-out);
  }

  .mobile-menu-navigation a[aria-current="page"] {
    color: var(--coral);
  }

  .mobile-menu-setting svg,
  .mobile-menu-close svg {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
  }

  .mobile-menu-settings {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: max(28px, 5vh);
  }

  .mobile-menu-setting {
    position: relative;
    display: flex;
    min-height: 70px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    color: var(--ink);
    background: var(--surface);
    text-align: left;
    cursor: pointer;
    transition:
      border-color 160ms ease,
      background-color 160ms ease,
      transform 140ms var(--ease-out);
  }

  .mobile-menu-setting:only-child {
    grid-column: 1 / -1;
  }

  .mobile-menu-setting > span {
    display: grid;
    min-width: 0;
  }

  .mobile-menu-setting strong {
    font-size: 13px;
    line-height: 1.25;
  }

  .mobile-menu-setting small {
    margin-top: 3px;
    overflow: hidden;
    color: var(--ink-muted);
    font-size: 12px;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-menu-setting svg {
    width: 17px;
    height: 17px;
    pointer-events: none;
  }

  .mobile-menu-native-select {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    opacity: 0;
    cursor: pointer;
  }

  .mobile-menu-setting:has(.mobile-menu-native-select:focus-visible) {
    outline: 3px solid color-mix(in srgb, var(--coral) 68%, transparent);
    outline-offset: 4px;
  }

  .mobile-menu-close {
    display: inline-flex;
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    margin-top: auto;
    padding: 0;
    align-self: center;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    color: var(--ink);
    background: var(--surface-solid);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition:
      border-color 160ms ease,
      background-color 160ms ease,
      transform 140ms var(--ease-out);
  }
}

@media (max-width: 680px) {
  .brand {
    gap: 8px;
  }

  .brand-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .header-actions {
    gap: 5px;
  }

  .icon-button,
  .language-button {
    min-width: 38px;
    height: 38px;
  }

  .language-button {
    padding-inline: 9px;
  }

  .store-button {
    min-height: 42px;
    padding-inline: 16px;
    font-size: 13px;
  }

  .hero {
    gap: 26px;
    padding-top: 44px;
  }

  .hero h1 {
    font-size: clamp(48px, 14vw, 70px);
  }

  .hero-lede {
    margin-top: 24px;
    font-size: 18px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .hero-stage {
    min-height: 0;
    margin-top: 10px;
    padding: 10px 24px 18px;
  }

  .phone-frame {
    inset: auto;
    width: min(78%, 280px);
    border-radius: 42px;
  }

  .phone-frame img {
    border-radius: 34px;
  }

  .status-card {
    min-width: 200px;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 19px;
  }

  .status-card.live {
    right: 0;
    bottom: 12%;
  }

  .story-intro {
    padding: 80px 0 48px;
  }

  .section-heading {
    font-size: clamp(39px, 12vw, 56px);
  }

  .section-lede {
    font-size: 17px;
  }

  .journey-step,
  .journey-step:nth-of-type(even) {
    grid-template-columns: 42px minmax(0, 1fr);
    grid-template-areas:
      "marker copy"
      "marker media";
    column-gap: 14px;
    row-gap: 26px;
    padding: 58px 0 70px;
  }

  .signal-rail,
  .signal-rail-fill {
    display: block;
    left: 21px;
    width: 2px;
  }

  .step-marker {
    display: grid;
    top: 84px;
    width: 42px;
    height: 42px;
    border-width: 5px;
  }

  .step-marker svg {
    width: 24px;
    height: 12px;
  }

  .journey-copy h3 {
    font-size: clamp(34px, 10.5vw, 49px);
  }

  .journey-copy p {
    font-size: 16px;
  }

  .screenshot-shell,
  .screenshot-shell.compact {
    width: 100%;
    padding: 7px;
    border-radius: 36px;
  }

  .screenshot-shell img {
    border-radius: 30px;
  }

  .automation-card {
    border-radius: 30px;
  }

  .automation-state {
    grid-template-columns: 40px 1fr auto;
    padding: 12px;
  }

  .automation-state-icon {
    width: 40px;
    height: 40px;
  }

  .feature-section {
    padding-top: 90px;
  }

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

  .feature-card:nth-child(n) {
    grid-column: auto;
    height: auto;
    padding: 24px;
    border-radius: 30px;
  }

  .feature-card.has-preview {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: 0;
  }

  .feature-card.has-preview > .feature-index,
  .feature-card.has-preview > h3,
  .feature-card.has-preview > p,
  .feature-preview {
    grid-column: 1;
  }

  .feature-preview {
    grid-row: auto;
    justify-self: end;
    width: min(62%, 190px);
    margin-top: 28px;
    margin-bottom: 0;
  }

  .feature-card h3 {
    font-size: 30px;
  }

  .truth-section {
    padding: 80px 0;
  }

  .truth-card,
  .cta-card {
    border-radius: 36px;
  }

  .truth-list li {
    grid-template-columns: 18px 1fr;
    padding: 15px;
  }

  .faq-section {
    padding-bottom: 90px;
  }

  .faq-page .faq-section {
    padding-top: 112px;
  }

  .faq-layout {
    gap: 34px;
  }

  .faq-group {
    gap: 16px;
    padding: 32px 0;
  }

  .faq-item summary {
    padding-left: 18px;
  }

  .cta-card h2 {
    font-size: clamp(44px, 13vw, 66px);
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  body:not(.has-mobile-menu) .brand-copy {
    display: none;
  }

  .hero-stage {
    min-height: 0;
    padding-inline: 18px;
  }

  .phone-frame {
    width: min(80%, 250px);
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
