:root {
  color-scheme: dark;
  --bg: #070a10;
  --panel: rgba(18, 25, 36, 0.78);
  --panel-strong: rgba(22, 31, 45, 0.94);
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.23);
  --text: #f7f9fc;
  --muted: #aab4c3;
  --dim: #788397;
  --blue: #54b5ff;
  --blue-soft: rgba(84, 181, 255, 0.16);
  --violet: #a18aff;
  --mint: #42d899;
  --orange: #ff8a3d;
  --orange-soft: rgba(255, 138, 61, 0.16);
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.42);
  --focus: 0 0 0 3px rgba(84, 181, 255, 0.35);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 83% 8%, rgba(84, 181, 255, 0.18), transparent 30rem),
    radial-gradient(circle at 12% 22%, rgba(161, 138, 255, 0.15), transparent 28rem),
    radial-gradient(circle at 55% 80%, rgba(66, 216, 153, 0.08), transparent 30rem),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.024) 0 1px, transparent 1px 74px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 74px),
    var(--bg);
  font-family: "Avenir Next", "SF Pro Display", ui-rounded, system-ui, sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(110deg, transparent 0 42%, rgba(255, 255, 255, 0.045) 42.2%, transparent 43%),
    radial-gradient(circle at center, transparent 0, rgba(0, 0, 0, 0.34) 78%);
}

a { color: inherit; text-underline-offset: 0.18em; }

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

button { font: inherit; }

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  height: 3px;
  pointer-events: none;
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left;
  background: linear-gradient(90deg, var(--blue), var(--violet), var(--mint));
  box-shadow: 0 0 18px rgba(84, 181, 255, 0.72);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: max(16px, env(safe-area-inset-left));
  z-index: 40;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--blue);
  color: #07111e;
  font-weight: 800;
  transition: top 0.2s ease;
}

.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 10, 16, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav,
.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

.nav {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
}

.brand img { width: 34px; height: 34px; border-radius: 9px; }

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
}

.nav-links a,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: none;
  touch-action: manipulation;
  transition: color 0.16s ease, background 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.button {
  gap: 8px;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.button:hover { border-color: var(--line-strong); transform: translateY(-2px); }

.button.primary {
  border-color: rgba(84, 181, 255, 0.76);
  background: linear-gradient(135deg, #8ed8ff, #3989e8);
  color: #07111e;
  box-shadow: 0 14px 38px rgba(84, 181, 255, 0.2);
}

.button-arrow { color: currentColor; font-size: 1.08em; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
  gap: clamp(32px, 6vw, 74px);
  align-items: start;
  padding: clamp(62px, 9vw, 104px) 0 58px;
}

.hero > * { min-width: 0; }

.hero-copy-block {
  max-width: 690px;
}

.eyebrow,
.section-index,
.visual-label,
.tour-live-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid rgba(84, 181, 255, 0.38);
  border-radius: 999px;
  background: var(--blue-soft);
  color: #b9e5ff;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 720px;
  font-size: clamp(3.4rem, 8vw, 7rem);
  letter-spacing: -0.065em;
  background: linear-gradient(180deg, #ffffff 10%, #dbe7f7 52%, #8f9dad 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.accent-word {
  background: linear-gradient(110deg, #f4f8ff, #83d4ff 45%, #b9a5ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.65;
  text-wrap: pretty;
}

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

.hero-note,
.cta-note {
  margin: 18px 0 0;
  color: var(--dim);
  font-size: 0.9rem;
}

.hero-note span { color: var(--blue); }

.product-visual {
  position: relative;
  display: grid;
  grid-template-columns: 82px minmax(190px, 1fr);
  gap: 18px;
  align-items: start;
  margin: 0;
  isolation: isolate;
}

.product-visual::before,
.product-visual::after {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  content: "";
}

.product-visual::before {
  top: 8%;
  right: 2%;
  width: 270px;
  height: 270px;
  background: radial-gradient(circle, rgba(84, 181, 255, 0.2), transparent 68%);
  filter: blur(7px);
}

.product-visual::after {
  right: 14px;
  bottom: 84px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.025);
  transform: rotate(15deg);
}

.visual-orbit {
  position: absolute;
  inset: 4% 8% 7% 12%;
  z-index: -1;
  border: 1px solid rgba(84, 181, 255, 0.2);
  border-radius: 50%;
  transform: rotate(-18deg);
  animation: orbit-breathe 8s ease-in-out infinite;
}

.app-icon-stack {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 10px;
  padding-top: 42px;
}

.app-icon {
  width: 82px;
  height: 82px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 21px;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.42), 0 0 0 8px rgba(84, 181, 255, 0.07);
  animation: icon-float 5s ease-in-out infinite;
}

.icon-tag {
  color: var(--blue);
  font-size: 0.61rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-align: center;
  writing-mode: vertical-rl;
}

.clipboard-stage {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line-strong);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(29, 41, 59, 0.86), rgba(7, 11, 18, 0.94));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: rotate(2.5deg);
}

.clipboard-stage::before {
  position: absolute;
  top: -1px;
  right: 18%;
  left: 18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  content: "";
}

.clipboard-window {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  background: rgba(3, 7, 12, 0.78);
}

.window-topline,
.clip-list-row,
.search-bar,
.window-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.window-topline {
  padding: 13px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #eaf4ff;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.window-topline span:last-child { color: var(--mint); font-size: 0.58rem; }

.search-bar {
  gap: 10px;
  margin: 12px;
  padding: 10px 11px;
  border: 1px solid rgba(84, 181, 255, 0.28);
  border-radius: 9px;
  background: rgba(84, 181, 255, 0.07);
  color: var(--dim);
  font-size: 0.76rem;
}

.search-icon { color: var(--blue); font-size: 1.1rem; line-height: 1; }

.search-bar kbd {
  padding: 3px 5px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 5px;
  color: var(--muted);
  font-size: 0.58rem;
}

.clip-list { padding: 0 12px 10px; }

.clip-list-row {
  gap: 10px;
  padding: 12px 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.74rem;
}

.clip-list-row strong { display: block; color: var(--text); font-size: 0.78rem; }
.clip-list-row small { display: block; margin-top: 3px; color: var(--dim); }

.clip-mark {
  display: grid;
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #07111e;
  font-size: 0.8rem;
  font-weight: 900;
}

.clip-list-row.is-active { background: linear-gradient(90deg, rgba(84, 181, 255, 0.11), transparent); }
.clip-list-row.is-active .clip-mark { box-shadow: 0 0 0 5px rgba(84, 181, 255, 0.09); }

.window-footer {
  gap: 8px;
  padding: 10px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--dim);
  font-size: 0.63rem;
}

.footer-signal { display: inline-flex; align-items: center; gap: 6px; color: var(--mint); }
.footer-signal i { width: 6px; height: 6px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 12px var(--mint); }

.capture-toast {
  position: absolute;
  right: -14px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border: 1px solid rgba(66, 216, 153, 0.4);
  border-radius: 10px;
  background: rgba(13, 31, 28, 0.92);
  color: #d8ffed;
  font-size: 0.68rem;
  font-weight: 800;
  box-shadow: 0 15px 32px rgba(0, 0, 0, 0.35);
  animation: toast-float 4.2s ease-in-out infinite;
}

.capture-toast::before { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 12px var(--mint); content: ""; }

.phone-caption {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  color: var(--dim);
  font-size: 0.78rem;
  line-height: 1.45;
  text-align: center;
}

.phone-stage {
  position: relative;
  grid-column: 2;
  min-height: 560px;
  isolation: isolate;
}

/* The hero uses the same focused media-player treatment as Detective Cam. */
.clipflow-demo-video-card {
  position: relative;
  z-index: 2;
  width: min(370px, 100%);
  margin: 24px auto 0;
  padding: 12px;
  border: 1px solid rgba(204, 223, 242, 0.24);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(26, 39, 53, 0.96), rgba(7, 10, 15, 0.98));
  box-shadow: 0 34px 86px rgba(0, 0, 0, 0.54), 0 0 0 1px rgba(255, 255, 255, 0.04);
  transform: rotate(2deg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clipflow-demo-video-card:hover {
  transform: translateY(-5px) rotate(1deg);
  box-shadow: 0 40px 92px rgba(0, 0, 0, 0.62), 0 0 38px rgba(84, 181, 255, 0.14);
}

.clipflow-demo-video-toolbar,
.clipflow-demo-video-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  color: #a9bacb;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.clipflow-demo-video-toolbar > span:last-child,
.clipflow-demo-video-footer > span:last-child { text-align: right; }

.clipflow-demo-video-toolbar { min-height: 30px; padding: 1px 4px 10px; }
.clipflow-demo-video-status,
.clipflow-demo-video-footer span:first-child { color: #c7ffe0; }
.clipflow-demo-video-status i,
.clipflow-demo-video-footer span:first-child i {
  display: inline-flex;
  vertical-align: middle;
  width: 6px;
  height: 6px;
  margin: 0 5px 1px 0;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 12px rgba(67, 216, 138, 0.72);
}

.clipflow-demo-video-screen {
  position: relative;
  overflow: hidden;
  aspect-ratio: 443 / 960;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: #090d14;
  isolation: isolate;
}

.clipflow-demo-video-screen::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(118deg, rgba(255, 255, 255, 0.12), transparent 24%, transparent 74%, rgba(84, 181, 255, 0.035));
  mix-blend-mode: screen;
  content: "";
}

.clipflow-demo-video {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: #090d14;
  object-fit: cover;
}

.clipflow-demo-video-footer { min-height: 31px; padding: 10px 4px 1px; font-size: 0.58rem; }

.phone-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(150, 201, 255, 0.34);
  border-radius: 28px;
  background: #0e1728;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), 0 0 0 8px rgba(84, 181, 255, 0.05);
}

.phone-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 18%, transparent 74%, rgba(84, 181, 255, 0.1));
  content: "";
}

.phone-card img {
  display: block;
  width: 100%;
  height: auto;
}

.phone-card--home {
  top: 0;
  right: 3%;
  z-index: 2;
  width: min(280px, 74%);
  transform: rotate(4deg);
  animation: screen-drift 7s ease-in-out infinite;
}

.phone-card--onboarding {
  top: 76px;
  left: 0;
  z-index: 1;
  width: min(210px, 57%);
  opacity: 0.86;
  transform: rotate(-8deg);
  animation: screen-drift-secondary 8s ease-in-out infinite;
}

.phone-card-label {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(5, 9, 16, 0.78);
  color: #d8edff;
  font-size: 0.55rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.screenshot-signal {
  position: absolute;
  right: 0;
  bottom: 24px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 11px;
  border: 1px solid rgba(66, 216, 153, 0.3);
  border-radius: 999px;
  background: rgba(13, 31, 28, 0.82);
  color: #bff6d9;
  font-size: 0.64rem;
  font-weight: 800;
  box-shadow: 0 15px 32px rgba(0, 0, 0, 0.3);
}

.screenshot-signal i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 12px var(--mint);
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 76px 0 30px;
  border-top: 1px solid var(--line);
}

.section-header h2,
.secondary-benefits h2,
.privacy-panel h2,
.final-cta h2 {
  max-width: 650px;
  font-size: clamp(2.35rem, 5vw, 4.7rem);
  letter-spacing: -0.055em;
}

.section-lede,
.privacy-panel > p,
.final-cta-copy > p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.section-index { margin-bottom: 15px; padding: 0; border: 0; background: none; color: var(--blue); letter-spacing: 0.16em; }

.flow-tour {
  display: grid;
  grid-template-columns: minmax(210px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(24px, 6vw, 70px);
  align-items: center;
  padding: 20px 0 88px;
}

.flow-tour-copy h3 { max-width: 430px; font-size: clamp(1.9rem, 4vw, 3.25rem); letter-spacing: -0.045em; }
.flow-tour-copy p:not(.section-index):not(.tour-rail-note) { max-width: 380px; margin: 18px 0 0; color: var(--muted); line-height: 1.7; }
.tour-live-chip { margin: 0 0 18px; border-color: rgba(66, 216, 153, 0.36); background: rgba(66, 216, 153, 0.1); color: #9ff0c8; font-size: 0.63rem; }

.tour-rail { display: flex; align-items: center; width: min(240px, 100%); margin-top: 28px; }
.tour-rail-dot { width: 9px; height: 9px; border: 1px solid var(--dim); border-radius: 50%; background: var(--bg); transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease; }
.tour-rail-dot.is-active { border-color: var(--blue); background: var(--blue); box-shadow: 0 0 0 6px rgba(84, 181, 255, 0.12); }
.tour-rail-line { height: 1px; flex: 1; background: linear-gradient(90deg, var(--blue), rgba(255, 255, 255, 0.18)); }
.tour-rail-note { margin: 13px 0 0; color: var(--dim); font-size: 0.78rem; }

.flow-tour-card {
  min-width: 0;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(29, 41, 59, 0.72), rgba(7, 11, 18, 0.94));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.tour-card-topline,
.tour-tabs,
.mini-window-topline,
.mini-status,
.result-row,
.shortcut-row { display: flex; align-items: center; }
.tour-card-topline { justify-content: space-between; gap: 12px; color: var(--dim); font-size: 0.62rem; font-weight: 850; letter-spacing: 0.12em; }
.tour-card-brand { color: #d9e7f5; }
.tour-card-mode { color: var(--blue); }

.tour-tabs { gap: 8px; margin: 24px 0 18px; }
.tour-tab { display: inline-flex; align-items: center; gap: 8px; padding: 9px 12px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255, 255, 255, 0.035); color: var(--muted); cursor: pointer; font-size: 0.82rem; font-weight: 800; transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease, transform 0.18s ease; }
.tour-tab:hover { transform: translateY(-2px); border-color: var(--line-strong); }
.tour-tab.is-active { border-color: rgba(84, 181, 255, 0.55); background: var(--blue-soft); color: var(--text); }
.tour-tab-icon { width: 8px; height: 8px; border-radius: 3px; background: var(--blue); box-shadow: 0 0 10px rgba(84, 181, 255, 0.75); }
.tour-tab-find .tour-tab-icon { background: var(--violet); box-shadow: 0 0 10px rgba(161, 138, 255, 0.75); }
.tour-tab-expand .tour-tab-icon { background: var(--mint); box-shadow: 0 0 10px rgba(66, 216, 153, 0.75); }

.tour-panel-wrap { min-height: 275px; }
.tour-panel { animation: panel-in 0.35s ease both; }
.tour-panel[hidden] { display: none; }

.real-shot {
  position: relative;
  display: flex;
  min-height: 330px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 18px 24px;
  border: 1px solid rgba(150, 201, 255, 0.24);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 20%, rgba(84, 181, 255, 0.14), transparent 45%),
    rgba(3, 7, 12, 0.76);
}

.real-shot::before {
  position: absolute;
  top: 0;
  right: 10%;
  left: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  content: "";
}

.real-shot::after {
  position: absolute;
  inset: 12% 20%;
  pointer-events: none;
  border: 1px solid rgba(84, 181, 255, 0.12);
  border-radius: 50%;
  transform: rotate(-18deg);
  content: "";
}

.real-shot img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(240px, 64%);
  max-height: 410px;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5), 0 0 0 7px rgba(84, 181, 255, 0.05);
  animation: real-screen-breathe 6s ease-in-out infinite;
}

.real-shot--onboarding img { box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5), 0 0 0 7px rgba(66, 216, 153, 0.05); }

.shot-callout {
  position: absolute;
  z-index: 2;
  padding: 7px 9px;
  border: 1px solid rgba(84, 181, 255, 0.48);
  border-radius: 999px;
  background: rgba(6, 17, 29, 0.9);
  color: #c7ebff;
  font-size: 0.59rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
  animation: callout-pulse 4.6s ease-in-out infinite;
}

.shot-callout--paste { right: 6%; bottom: 25%; }
.shot-callout--search { top: 27%; right: 5%; border-color: rgba(161, 138, 255, 0.48); color: #e3dcff; animation-delay: 0.8s; }
.shot-callout--keyboard { right: 5%; bottom: 22%; border-color: rgba(66, 216, 153, 0.46); color: #c9f8df; }

.shot-caption {
  position: absolute;
  right: 18px;
  bottom: 15px;
  left: 18px;
  z-index: 2;
  color: #bac6d5;
  font-size: 0.68rem;
  line-height: 1.4;
  text-align: center;
}

.real-shot--store img { max-height: 410px; }
.real-shot--ocr img { box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5), 0 0 0 7px rgba(66, 216, 153, 0.07); }

.demo-section { padding: 10px 0 86px; }
.demo-section-header { display: flex; align-items: end; justify-content: space-between; gap: 24px; padding: 76px 0 30px; border-top: 1px solid var(--line); }
.demo-section-header h2 { max-width: 620px; font-size: clamp(2.35rem, 5vw, 4.7rem); letter-spacing: -0.055em; }
.demo-section-header > p { max-width: 390px; margin: 0; color: var(--muted); line-height: 1.65; }
.demo-grid { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); gap: 18px; align-items: center; }
.demo-grid--previews-only { grid-template-columns: 1fr; }
.demo-grid--previews-only .app-store-previews { max-width: 980px; margin: 0 auto; width: 100%; }
.video-showcase-stage { position: relative; display: flex; min-height: 740px; flex-direction: column; align-items: center; justify-content: center; padding: 28px 0 14px; isolation: isolate; }
.video-showcase-stage::before { position: absolute; bottom: 88px; left: 50%; width: 230px; height: 54px; border-radius: 50%; background: rgba(0, 0, 0, 0.72); content: ""; filter: blur(20px); opacity: 0.8; pointer-events: none; transform: translateX(-50%); z-index: 0; }
.video-ambient-glow { position: absolute; top: 15%; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(84, 181, 255, 0.28), rgba(161, 138, 255, 0.16), transparent 70%); filter: blur(40px); pointer-events: none; z-index: 0; animation: video-ambient-breathe 7s ease-in-out infinite; }
.video-phone-frame { position: relative; z-index: 2; width: min(318px, 90%); border: 1px solid rgba(255, 255, 255, 0.58); border-radius: 52px; padding: 12px; background: linear-gradient(145deg, #f4f5f7 0%, #9298a2 12%, #2d333d 29%, #080b11 52%, #69717c 78%, #e9edf2 100%); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), inset 0 -2px 0 rgba(0, 0, 0, 0.5), 0 0 0 4px rgba(8, 13, 22, 0.92), 0 28px 72px -12px rgba(0, 0, 0, 0.86), 0 0 70px rgba(84, 181, 255, 0.22); isolation: isolate; transition: transform 0.35s ease, box-shadow 0.35s ease; transform-style: preserve-3d; }
.video-phone-frame::before, .video-phone-frame::after { position: absolute; border-radius: inherit; content: ""; pointer-events: none; }
.video-phone-frame::before { inset: 4px; border: 1px solid rgba(255, 255, 255, 0.34); box-shadow: inset 0 0 0 1px rgba(5, 9, 16, 0.6), inset 0 18px 24px rgba(255, 255, 255, 0.06); z-index: 1; }
.video-phone-frame::after { inset: 9px; border: 1px solid rgba(0, 0, 0, 0.62); z-index: 1; }
.video-phone-frame:hover { transform: translateY(-6px) rotateY(-1deg) rotateX(0.5deg); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), inset 0 -2px 0 rgba(0, 0, 0, 0.52), 0 0 0 4px rgba(19, 32, 48, 0.96), 0 36px 90px -10px rgba(0, 0, 0, 0.9), 0 0 84px rgba(84, 181, 255, 0.3); }
.video-phone-controls { position: absolute; top: 0; bottom: 0; width: 7px; z-index: 5; pointer-events: none; }
.video-phone-controls--left { left: -5px; }
.video-phone-controls--right { right: -5px; }
.video-phone-button { position: absolute; display: block; width: 5px; border: 1px solid rgba(255, 255, 255, 0.38); border-radius: 4px 0 0 4px; background: linear-gradient(90deg, #8f98a3, #27303b 58%, #080b10); box-shadow: 1px 0 2px rgba(0, 0, 0, 0.65); }
.video-phone-controls--right .video-phone-button { border-radius: 0 4px 4px 0; box-shadow: -1px 0 2px rgba(0, 0, 0, 0.65); }
.video-phone-button--action { top: 96px; height: 25px; }
.video-phone-button--volume-up { top: 143px; height: 43px; }
.video-phone-button--volume-down { top: 195px; height: 43px; }
.video-phone-button--lock { top: 150px; height: 74px; }
.video-dynamic-island { position: absolute; top: 22px; left: 50%; width: 92px; height: 25px; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 22px; background: #020305; box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.08), 0 1px 5px rgba(0, 0, 0, 0.7); transform: translateX(-50%); z-index: 10; }
.video-screen-container { position: relative; width: 100%; border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 40px; overflow: hidden; clip-path: inset(0 round 40px); -webkit-mask-image: -webkit-radial-gradient(white, black); background: #000; box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(0, 0, 0, 0.52), 0 12px 22px rgba(0, 0, 0, 0.28); z-index: 2; }
.video-screen-container video { display: block; width: 100%; aspect-ratio: 11 / 24; border-radius: inherit; object-fit: cover; object-position: center; image-rendering: auto; filter: saturate(1.015) contrast(1.005); }
.video-glare-overlay { position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(116deg, rgba(255, 255, 255, 0.1) 0%, transparent 18%, transparent 54%, rgba(84, 181, 255, 0.07) 100%), radial-gradient(circle at 50% -5%, rgba(255, 255, 255, 0.08), transparent 32%); mix-blend-mode: screen; opacity: 0.42; pointer-events: none; z-index: 4; }
.video-phone-chin { position: absolute; right: 0; bottom: 14px; left: 0; display: flex; justify-content: center; z-index: 10; pointer-events: none; }
.video-home-bar { width: 96px; height: 4px; border-radius: 2px; background: rgba(255, 255, 255, 0.78); box-shadow: 0 0 8px rgba(255, 255, 255, 0.18); }
.video-floating-badge { position: absolute; z-index: 5; display: flex; align-items: center; gap: 7px; padding: 7px 13px; border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 999px; background: rgba(14, 20, 32, 0.88); box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); color: #eaf4ff; font-size: 0.72rem; font-weight: 750; pointer-events: none; }
.video-badge--top { top: 8px; left: -6px; animation: badge-float 4s ease-in-out infinite; }
.video-badge--bottom { right: -8px; bottom: 50px; animation: badge-float 4s ease-in-out infinite 2s; }
.video-pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 10px var(--mint); animation: dot-pulse 2s infinite; }
.video-badge-icon { color: var(--blue); font-size: 0.85rem; }
.video-stage-caption { max-width: 320px; margin-top: 16px; color: var(--muted); font-size: 0.82rem; line-height: 1.45; text-align: center; }
.video-stage-caption strong { color: var(--text); }
.app-store-previews { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; align-items: end; }
.store-preview { margin: 0; padding: 10px 10px 12px; overflow: hidden; border: 1px solid rgba(150, 201, 255, 0.24); border-radius: 18px; background: linear-gradient(180deg, rgba(19, 31, 49, 0.9), rgba(7, 12, 21, 0.94)); box-shadow: 0 24px 50px rgba(0, 0, 0, 0.36); transition: transform 0.25s ease, border-color 0.25s ease; }
.store-preview:hover { border-color: rgba(84, 181, 255, 0.62); transform: translateY(-8px); }
.store-preview:nth-child(2) { transform: translateY(-28px); }
.store-preview:nth-child(2):hover { transform: translateY(-36px); }
.store-preview:nth-child(3) { transform: translateY(-10px); }
.store-preview:nth-child(3):hover { transform: translateY(-18px); }
.store-preview img { display: block; width: 100%; height: auto; aspect-ratio: 415 / 900; object-fit: contain; border-radius: 11px; }
.store-preview figcaption { display: flex; gap: 7px; margin-top: 10px; color: #c7d7e8; font-size: 0.64rem; font-weight: 800; line-height: 1.35; }
.store-preview figcaption span { color: var(--blue); font-variant-numeric: tabular-nums; }

.mini-window { overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 16px; background: rgba(3, 7, 12, 0.76); }
.mini-window-topline { justify-content: space-between; padding: 13px 15px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); color: #eaf4ff; font-size: 0.67rem; font-weight: 850; letter-spacing: 0.12em; }
.mini-window-topline span:last-child { color: var(--mint); font-size: 0.59rem; }
.mini-capture { display: grid; grid-template-columns: 40px minmax(0, 1fr) auto; gap: 12px; align-items: center; padding: 20px 18px; }
.mini-clip-icon { display: grid; width: 40px; height: 40px; place-items: center; border-radius: 12px; background: linear-gradient(135deg, var(--blue), var(--violet)); color: #07111e; font-size: 1.15rem; font-weight: 900; }
.mini-capture strong { display: block; font-size: 0.92rem; }
.mini-capture p { margin: 5px 0 0; color: var(--muted); font-size: 0.78rem; line-height: 1.45; }
.mini-check { display: grid; width: 27px; height: 27px; place-items: center; border: 1px solid rgba(66, 216, 153, 0.42); border-radius: 50%; color: var(--mint); }
.mini-status { gap: 7px; padding: 11px 18px; border-top: 1px solid rgba(255, 255, 255, 0.09); color: var(--dim); font-size: 0.72rem; }
.mini-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 12px var(--mint); }

.search-scene { padding: 22px 18px; }
.search-scene-bar { display: flex; align-items: center; gap: 9px; padding: 11px 12px; border: 1px solid rgba(161, 138, 255, 0.42); border-radius: 10px; background: rgba(161, 138, 255, 0.09); color: #ded7ff; font-size: 0.82rem; }
.search-scene-bar span:first-child { color: var(--violet); font-size: 1.15rem; }
.result-row { gap: 11px; padding: 14px 4px; border-bottom: 1px solid rgba(255, 255, 255, 0.09); }
.result-row:last-child { border-bottom: 0; }
.result-index { color: var(--violet); font-size: 0.64rem; font-weight: 850; }
.result-row strong { display: block; font-size: 0.83rem; }
.result-row small { display: block; margin-top: 4px; color: var(--dim); font-size: 0.7rem; }

.shortcut-scene { padding: 20px 18px; }
.shortcut-intro { margin: 0 0 16px; color: var(--muted); line-height: 1.55; }
.shortcut-row { justify-content: space-between; gap: 15px; padding: 14px 12px; border: 1px solid rgba(66, 216, 153, 0.2); border-radius: 11px; background: rgba(66, 216, 153, 0.055); }
.shortcut-row span { color: #d6ffea; font-size: 0.82rem; font-weight: 800; }
.shortcut-row kbd { padding: 5px 8px; border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 6px; color: var(--mint); font-size: 0.7rem; }

.feature-section { padding: 30px 0 88px; }
.feature-section-header { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 30px; }
.feature-section-header h2 { max-width: 570px; font-size: clamp(2.3rem, 5vw, 4.6rem); letter-spacing: -0.055em; }
.feature-section-header p { max-width: 370px; margin: 0; color: var(--muted); line-height: 1.65; }
.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feature-card { min-height: 240px; padding: 28px 24px 30px; border-right: 1px solid var(--line); background: linear-gradient(180deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0)); transition: background 0.25s ease, transform 0.25s ease; }
.feature-card:last-child { border-right: 0; }
.feature-card:hover { background: linear-gradient(180deg, rgba(84, 181, 255, 0.09), rgba(255, 255, 255, 0)); transform: translateY(-4px); }
.feature-icon { display: grid; width: 46px; height: 46px; place-items: center; margin-bottom: 24px; border: 1px solid rgba(84, 181, 255, 0.3); border-radius: 14px; background: var(--blue-soft); color: var(--blue); font-size: 1.2rem; }
.feature-card:nth-child(2) .feature-icon { border-color: rgba(161, 138, 255, 0.3); background: rgba(161, 138, 255, 0.1); color: var(--violet); }
.feature-card:nth-child(3) .feature-icon { border-color: rgba(66, 216, 153, 0.3); background: rgba(66, 216, 153, 0.1); color: var(--mint); }
.feature-card h3 { font-size: 1.34rem; }
.feature-card p { margin: 13px 0 0; color: var(--muted); line-height: 1.65; }

.setup-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; margin-top: 28px; background: var(--line); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.setup-panel { padding: 28px 24px 32px; background: rgba(11, 16, 25, 0.9); }
.setup-panel h3 { font-size: 1.5rem; }
.setup-panel > p { margin: 12px 0 0; color: var(--muted); line-height: 1.6; }
.step-list { display: grid; gap: 15px; margin: 24px 0 0; padding: 0; list-style: none; counter-reset: setup-step; }
.step-list li { position: relative; display: grid; grid-template-columns: 30px minmax(0, 1fr); gap: 12px; color: var(--muted); line-height: 1.6; counter-increment: setup-step; }
.step-list li::before { display: grid; width: 30px; height: 30px; place-items: center; border: 1px solid rgba(84, 181, 255, 0.32); border-radius: 50%; background: var(--blue-soft); color: var(--blue); content: counter(setup-step); font-size: 0.77rem; font-weight: 850; }
.step-list strong { color: var(--text); }
.permission-note { margin: 23px 0 0; padding: 14px; border-left: 2px solid var(--mint); background: rgba(66, 216, 153, 0.06); color: #bff6d9; font-size: 0.89rem; line-height: 1.55; }

.privacy-panel { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: 50px; align-items: start; padding: 78px 0; border-top: 1px solid var(--line); }
.privacy-panel > p { max-width: 470px; }
.privacy-points { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.privacy-points li { display: grid; grid-template-columns: 24px minmax(0, 1fr); gap: 12px; padding: 16px 0; border-bottom: 1px solid var(--line); color: var(--muted); line-height: 1.55; }
.privacy-points li::before { color: var(--mint); content: "✓"; font-weight: 850; }
.privacy-points strong { color: var(--text); }
.privacy-link { display: inline-block; margin-top: 20px; color: var(--blue); font-weight: 800; }

.troubleshooting { padding: 0 0 84px; }
.troubleshooting-header { display: flex; align-items: end; justify-content: space-between; gap: 24px; padding: 68px 0 28px; border-top: 1px solid var(--line); }
.troubleshooting-header h2 { font-size: clamp(2.3rem, 5vw, 4.4rem); letter-spacing: -0.055em; }
.troubleshooting-header p { max-width: 360px; margin: 0; color: var(--muted); line-height: 1.6; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 21px 0; color: var(--text); cursor: pointer; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { color: var(--blue); content: "+"; font-size: 1.5rem; font-weight: 400; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { max-width: 760px; margin: -4px 42px 22px 0; color: var(--muted); line-height: 1.7; }

.final-cta { display: grid; grid-template-columns: 160px minmax(0, 1fr); gap: 34px; align-items: center; margin-bottom: 78px; padding: 36px; border: 1px solid var(--line-strong); border-radius: 24px; background: linear-gradient(135deg, rgba(84, 181, 255, 0.12), rgba(161, 138, 255, 0.08) 48%, rgba(255, 255, 255, 0.03)); box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.09); }
.final-cta-art { display: grid; justify-items: center; gap: 13px; color: var(--blue); font-size: 0.62rem; font-weight: 850; letter-spacing: 0.14em; text-align: center; }
.final-cta-art img { width: 104px; height: 104px; border: 1px solid rgba(255, 255, 255, 0.25); border-radius: 27px; box-shadow: 0 18px 38px rgba(0, 0, 0, 0.36); animation: icon-float 5s ease-in-out infinite reverse; }
.final-cta-copy h2 { margin-bottom: 14px; }
.final-cta-copy > p { max-width: 570px; }
.final-cta-copy .hero-actions { margin-top: 22px; }

.footer { padding: 24px 0 42px; border-top: 1px solid var(--line); color: var(--dim); font-size: 0.82rem; }
.footer .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; }
.footer-links { display: inline-flex; gap: 12px; }
.footer a { color: var(--muted); }
.footer a:hover { color: var(--text); }

[data-reveal] { opacity: 1; transform: none; }
.has-motion [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 0.75s ease, transform 0.75s ease; }
.has-motion [data-reveal].is-visible { opacity: 1; transform: none; }
.has-motion [data-reveal-delay="1"] { transition-delay: 0.09s; }
.has-motion [data-reveal-delay="2"] { transition-delay: 0.18s; }
.has-motion [data-reveal-delay="3"] { transition-delay: 0.27s; }

@keyframes orbit-breathe { 0%, 100% { transform: rotate(-18deg) scale(0.98); opacity: 0.65; } 50% { transform: rotate(-12deg) scale(1.04); opacity: 1; } }
@keyframes icon-float { 0%, 100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-10px) rotate(2deg); } }
@keyframes toast-float { 0%, 100% { transform: translate3d(0, 0, 0); } 50% { transform: translate3d(0, -7px, 0); } }
@keyframes panel-in { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: none; } }
@keyframes screen-drift { 0%, 100% { transform: translate3d(0, 0, 0) rotate(4deg); } 50% { transform: translate3d(0, -10px, 0) rotate(6deg); } }
@keyframes screen-drift-secondary { 0%, 100% { transform: translate3d(0, 0, 0) rotate(-8deg); } 50% { transform: translate3d(0, 10px, 0) rotate(-6deg); } }
@keyframes real-screen-breathe { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
@keyframes callout-pulse { 0%, 100% { transform: translateY(0); opacity: 0.86; } 50% { transform: translateY(-4px); opacity: 1; } }
@keyframes live-pulse { 0%, 100% { opacity: 0.55; transform: scale(0.85); } 50% { opacity: 1; transform: scale(1); } }
@keyframes badge-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes dot-pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.3); opacity: 0.7; } }
@keyframes video-ambient-breathe { 0%, 100% { opacity: 0.8; transform: scale(0.96); } 50% { opacity: 1; transform: scale(1.04); } }

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; }
  .product-visual { max-width: 620px; margin: 0 auto; }
  .phone-stage { grid-column: 2; }
  .section-header, .feature-section-header, .troubleshooting-header, .demo-section-header { align-items: start; flex-direction: column; }
  .flow-tour, .privacy-panel { grid-template-columns: 1fr; }
  .flow-tour { gap: 34px; }
  .privacy-panel { gap: 28px; }
  .demo-grid { grid-template-columns: 1fr; }
  .demo-player-screen { min-height: 500px; }
}

@media (max-width: 700px) {
  .nav { min-height: 62px; }
  .nav-links a:not([aria-current="page"]), .nav-links .button { display: none; }
  .hero { padding-top: 50px; }
  h1 { font-size: clamp(3.1rem, 16vw, 5.2rem); }
  .product-visual { grid-template-columns: 64px minmax(0, 1fr); gap: 12px; }
  .app-icon { width: 64px; height: 64px; border-radius: 17px; }
  .app-icon-stack { padding-top: 32px; }
  .clipboard-stage { padding: 13px; border-radius: 20px; }
  .phone-stage { min-height: 448px; }
  .phone-card--home { width: min(220px, 78%); }
  .phone-card--onboarding { top: 58px; width: min(157px, 56%); }
  .phone-card-label { right: 7px; bottom: 7px; padding: 5px 6px; font-size: 0.46rem; }
  .screenshot-signal { right: -2px; bottom: 9px; padding: 7px 8px; font-size: 0.55rem; }
  .capture-toast { right: -6px; bottom: 18px; }
  .phone-caption { font-size: 0.72rem; }
  .real-shot { min-height: 300px; padding: 16px 14px; }
  .real-shot img { width: min(205px, 72%); max-height: 360px; }
  .shot-callout { padding: 6px 7px; font-size: 0.51rem; }
  .shot-caption { right: 10px; bottom: 10px; left: 10px; font-size: 0.59rem; }
  .demo-section { padding-bottom: 58px; }
  .demo-section-header { gap: 17px; }
  .video-showcase-stage { min-height: 680px; padding-top: 22px; }
  .video-phone-frame { width: min(318px, 84vw); }
  .video-floating-badge { font-size: 0.65rem; }
  .video-badge--top { left: 2px; }
  .video-badge--bottom { right: 2px; }
  .demo-player { padding: 12px; border-radius: 20px; }
  .demo-player-topline { font-size: 0.56rem; }
  .demo-player-status { font-size: 0.5rem; }
  .demo-player-screen { min-height: 420px; border-radius: 14px; }
  .demo-player-screen video { width: min(100%, 275px); max-height: 400px; border-radius: 19px; }
  .demo-live-badge { right: 9px; bottom: 9px; padding: 6px 7px; font-size: 0.5rem; }
  .app-store-previews { grid-template-columns: repeat(3, minmax(132px, 1fr)); gap: 9px; overflow-x: auto; padding: 8px 2px 8px 0; }
  .store-preview { padding: 8px 8px 10px; border-radius: 15px; }
  .store-preview:nth-child(2), .store-preview:nth-child(3) { transform: none; }
  .store-preview:hover, .store-preview:nth-child(2):hover, .store-preview:nth-child(3):hover { transform: translateY(-4px); }
  .store-preview figcaption { font-size: 0.57rem; }
  .feature-grid, .setup-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .feature-card:last-child { border-bottom: 0; }
  .final-cta { grid-template-columns: 1fr; gap: 24px; margin-bottom: 54px; padding: 25px; }
  .final-cta-art { justify-items: start; grid-template-columns: auto 1fr; text-align: left; }
  .final-cta-art img { width: 74px; height: 74px; border-radius: 19px; }
  .final-cta-copy .hero-actions, .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .footer .wrap { align-items: start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .has-motion [data-reveal] { opacity: 1; transform: none; }
}
