:root {
  --charcoal: #15181b;
  --charcoal-2: #1c2024;
  --charcoal-3: #272c31;
  --limestone: #f4f1e9;
  --paper: #fffdf7;
  --orange: #ff6a21;
  --orange-dark: #db4e09;
  --blue: #246bfe;
  --muted: #777b7e;
  --line-dark: rgba(244, 241, 233, 0.18);
  --line-light: rgba(21, 24, 27, 0.16);
  --container: 1280px;
  --header-h: 78px;
  --radius-s: 10px;
  --radius-m: 18px;
  --radius-l: 28px;
  --shadow: 0 28px 70px rgba(9, 11, 13, 0.22);
  --font-sans: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 22px);
  background: var(--charcoal);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--charcoal);
  background: var(--limestone);
  font-family: var(--font-sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.dialog-open { overflow: hidden; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
svg { display: block; }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--charcoal);
  font-weight: 750;
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  min-height: var(--header-h);
  color: var(--limestone);
  border-bottom: 1px solid rgba(244, 241, 233, .08);
  background: rgba(21, 24, 27, .56);
  backdrop-filter: blur(12px) saturate(120%);
  transition: background-color .25s ease, border-color .25s ease, min-height .25s ease;
}

.site-header.is-scrolled {
  background: rgba(21, 24, 27, .86);
  border-color: var(--line-dark);
  backdrop-filter: blur(18px) saturate(135%);
}

.header-inner {
  width: min(calc(100% - 48px), var(--container));
  min-height: var(--header-h);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto minmax(240px, 1fr);
  align-items: center;
  gap: 24px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; width: fit-content; }
.brand-mark { width: 34px; height: 34px; fill: none; stroke: currentColor; stroke-width: 2; }
.brand-mark .brand-mark-accent { fill: var(--orange); stroke: var(--orange); }
.brand-copy { display: grid; gap: 1px; }
.brand-copy strong { font-size: 18px; line-height: 1.1; letter-spacing: -.03em; }
.brand-copy span { color: rgba(244, 241, 233, .58); font-family: var(--font-mono); font-size: 8.5px; letter-spacing: .08em; text-transform: uppercase; }

.desktop-nav { display: flex; align-items: center; justify-content: center; gap: 28px; }
.desktop-nav a { position: relative; min-height: 44px; display: inline-flex; align-items: center; font-size: 14px; font-weight: 620; color: rgba(244, 241, 233, .72); }
.desktop-nav a::after { content: ""; position: absolute; right: 0; bottom: 7px; left: 0; height: 1px; transform: scaleX(0); transform-origin: left; background: var(--orange); transition: transform .2s ease; }
.desktop-nav a:hover { color: var(--limestone); }
.desktop-nav a:hover::after { transform: scaleX(1); }
.header-cta { justify-self: end; }

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 780;
  letter-spacing: -.01em;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button--orange { background: var(--orange); color: #16191b; box-shadow: 0 9px 25px rgba(255, 106, 33, .18); }
.button--orange:hover { background: #ff7a36; box-shadow: 0 12px 30px rgba(255, 106, 33, .29); }
.button--large { min-height: 58px; padding-inline: 27px; font-size: 16px; }
.button svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; }

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

.section-dark { position: relative; color: var(--limestone); background: var(--charcoal); }
.section-light { color: var(--charcoal); background: var(--limestone); }
.coordinate-grid {
  background-image:
    linear-gradient(rgba(244,241,233,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,241,233,.035) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero {
  min-height: 100svh;
  padding: calc(var(--header-h) + 90px) 0 126px;
  overflow: hidden;
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, .98fr);
  align-items: center;
  gap: clamp(48px, 6vw, 100px);
}

.hero-glow { position: absolute; z-index: 0; width: 44vw; aspect-ratio: 1; border-radius: 50%; filter: blur(120px); opacity: .12; pointer-events: none; }
.hero-glow--orange { top: 8%; right: -20%; background: var(--orange); }
.hero-glow--blue { bottom: -35%; left: -20%; background: var(--blue); }

.eyebrow, .section-index {
  margin: 0 0 24px;
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 9px; color: rgba(244,241,233,.65); }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 5px rgba(255,106,33,.12); }

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(58px, 6.5vw, 104px);
  line-height: .91;
  letter-spacing: -.07em;
  font-weight: 760;
}
.hero h1 span { color: var(--orange); }
.hero-lead { max-width: 690px; margin: 34px 0 0; color: rgba(244,241,233,.7); font-size: clamp(17px, 1.4vw, 21px); line-height: 1.65; letter-spacing: -.015em; }
.hero-actions { display: flex; align-items: center; gap: 27px; margin-top: 40px; }
.text-link { min-height: 44px; display: inline-flex; align-items: center; gap: 9px; border-bottom: 1px solid rgba(244,241,233,.3); font-size: 14px; font-weight: 700; }
.text-link:hover { border-color: var(--orange); }
.price-note { margin: 22px 0 0; display: flex; flex-wrap: wrap; align-items: center; gap: 10px; color: rgba(244,241,233,.47); font-family: var(--font-mono); font-size: 10px; letter-spacing: .035em; }
.price-note i { width: 3px; height: 3px; border-radius: 50%; background: var(--orange); }

.hero-visual {
  --rx: 0deg;
  --ry: 0deg;
  --lift: 0px;
  position: relative;
  max-width: 590px;
  justify-self: end;
  transform: perspective(1200px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(var(--lift));
  transform-style: preserve-3d;
  transition: transform .18s ease-out;
}

.device-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 11px -1px;
  padding: 10px 14px;
  border: 1px solid var(--line-dark);
  border-radius: 12px 12px 0 0;
  background: rgba(244,241,233,.06);
  backdrop-filter: blur(16px);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .08em;
}
.device-label strong { color: #7ee2b8; }

.photo-frame { margin: 0; }
.photo-frame--hero {
  position: relative;
  padding: 13px;
  border: 1px solid rgba(244,241,233,.23);
  border-radius: 18px;
  background: rgba(244,241,233,.07);
  box-shadow: 0 38px 100px rgba(0,0,0,.42);
  backdrop-filter: blur(20px);
}

.photo-placeholder {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  background:
    radial-gradient(circle at 50% 46%, rgba(244,241,233,.08) 0 2px, transparent 3px),
    linear-gradient(135deg, #2f353a, #202429 58%, #30353a);
}
.photo-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(244,241,233,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,241,233,.06) 1px, transparent 1px);
  background-size: 38px 38px;
}
.photo-placeholder::after {
  content: "";
  position: absolute;
  inset: 17%;
  border: 1px dashed rgba(244,241,233,.18);
  border-radius: 50%;
  transform: rotate(-8deg);
}
.placeholder-id { position: absolute; z-index: 2; top: 50%; left: 50%; display: grid; width: 80%; transform: translate(-50%, -50%); text-align: center; }
.placeholder-id span { color: var(--orange); font-family: var(--font-mono); font-size: 10px; letter-spacing: .15em; }
.placeholder-id strong { margin-top: 8px; font-family: var(--font-mono); font-size: clamp(13px, 1.4vw, 18px); letter-spacing: -.02em; }
.placeholder-id small { margin-top: 5px; color: rgba(244,241,233,.45); font-size: 10px; }
.photo-crosshair::before, .photo-crosshair::after { content: ""; position: absolute; z-index: 1; top: 50%; left: 50%; background: rgba(244,241,233,.18); }
.photo-crosshair::before { width: 70%; height: 1px; transform: translate(-50%, -50%); }
.photo-crosshair::after { width: 1px; height: 70%; transform: translate(-50%, -50%); }
.corner { position: absolute; z-index: 3; width: 17px; height: 17px; border-color: var(--orange); border-style: solid; }
.corner--tl { top: 13px; left: 13px; border-width: 2px 0 0 2px; }
.corner--tr { top: 13px; right: 13px; border-width: 2px 2px 0 0; }
.corner--bl { bottom: 13px; left: 13px; border-width: 0 0 2px 2px; }
.corner--br { right: 13px; bottom: 13px; border-width: 0 2px 2px 0; }

.context-panel { padding: 19px 18px 16px; border-radius: 0 0 10px 10px; color: var(--limestone); background: #111417; }
.context-kicker { display: flex; justify-content: space-between; align-items: center; color: rgba(244,241,233,.45); font-family: var(--font-mono); font-size: 9px; letter-spacing: .1em; }
.sync-label { display: flex; align-items: center; gap: 6px; color: #7ee2b8; }
.sync-label i { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.context-panel h2 { margin: 9px 0 15px; font-size: 26px; letter-spacing: -.035em; }
.context-grid { margin: 0; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(244,241,233,.13); }
.context-grid div { padding: 11px 8px 2px 0; border-right: 1px solid rgba(244,241,233,.11); }
.context-grid div:nth-child(even) { padding-left: 14px; border-right: 0; }
.context-grid dt { margin-bottom: 3px; color: rgba(244,241,233,.4); font-family: var(--font-mono); font-size: 8px; text-transform: uppercase; }
.context-grid dd { margin: 0; font-size: 11px; font-weight: 650; }
.context-grid .blue { color: #78a2ff; }
.context-grid .orange { color: #ff9761; }
.coordinate-tag { position: absolute; z-index: -1; padding: 8px 10px; border: 1px solid rgba(36,107,254,.46); color: #78a2ff; background: rgba(36,107,254,.09); font-family: var(--font-mono); font-size: 9px; letter-spacing: .08em; }
.coordinate-tag--top { top: 12%; right: -48px; }
.coordinate-tag--side { bottom: 18%; left: -44px; writing-mode: vertical-rl; }

.hero-manifest { position: absolute; z-index: 3; right: 0; bottom: 0; left: 0; border-top: 1px solid var(--line-dark); background: rgba(13,15,17,.72); backdrop-filter: blur(12px); }
.manifest-inner { min-height: 74px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 26px; }
.manifest-inner p { margin: 0; font-size: 14px; font-weight: 720; }
.manifest-inner strong { justify-self: end; color: rgba(244,241,233,.42); font-family: var(--font-mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.manifest-path { display: flex; align-items: center; gap: 9px; color: rgba(244,241,233,.45); font-family: var(--font-mono); font-size: 8px; letter-spacing: .08em; }
.manifest-path i { width: 24px; height: 1px; background: rgba(244,241,233,.2); }

.problem { padding: 138px 0 150px; }
.section-heading { display: grid; grid-template-columns: .65fr 1.65fr; gap: 54px; align-items: start; }
.section-heading h2 { max-width: 950px; margin: 0; font-size: clamp(42px, 5.3vw, 78px); line-height: 1.02; letter-spacing: -.06em; }
.section-index { padding-top: 9px; }
.story-layout { position: relative; margin-top: 100px; display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; min-height: 1250px; }
.story-copy, .story-stage { position: sticky; top: calc(var(--header-h) + 55px); align-self: start; }
.story-copy { max-width: 490px; }
.story-copy > p:not(:last-of-type) { margin: 0; color: #5e6265; font-size: 18px; line-height: 1.75; margin-bottom: 15px; }
.story-copy blockquote { margin: 54px 0 25px; padding-left: 23px; border-left: 3px solid var(--orange); font-size: clamp(25px, 2.3vw, 35px); font-weight: 720; line-height: 1.25; letter-spacing: -.04em; }
.story-resolution { margin: 0; font-weight: 780; }
.story-progress { width: 100%; height: 2px; margin-top: 45px; overflow: hidden; background: rgba(21,24,27,.13); }
.story-progress span { display: block; width: 33.333%; height: 100%; background: var(--orange); transition: transform .65s cubic-bezier(.2,.7,.2,1); transform-origin: left; }
.story-stage {
  height: min(610px, calc(100vh - var(--header-h) - 95px));
  min-height: 510px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-l);
  background:
    linear-gradient(rgba(21,24,27,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21,24,27,.045) 1px, transparent 1px),
    #ebe7dc;
  background-size: 36px 36px;
}
.story-status { position: absolute; z-index: 5; top: 22px; right: 24px; left: 24px; display: flex; justify-content: space-between; color: #85888a; font-family: var(--font-mono); font-size: 9px; letter-spacing: .09em; }
.story-status strong { color: var(--charcoal); }
.chaos-card {
  position: absolute;
  z-index: 2;
  width: 54%;
  margin: 0;
  padding: 9px;
  border: 1px solid rgba(21,24,27,.16);
  border-radius: 13px;
  background: var(--paper);
  box-shadow: 0 24px 50px rgba(35,34,31,.15);
  transition: inset .8s cubic-bezier(.2,.75,.2,1), transform .8s cubic-bezier(.2,.75,.2,1), width .8s ease;
}
.chaos-card--one { top: 18%; left: 15%; transform: rotate(-8deg); }
.chaos-card--two { right: 12%; bottom: 13%; transform: rotate(7deg); }
.photo-placeholder--small { aspect-ratio: 4 / 3; border-radius: 7px; background: linear-gradient(145deg, #3c4247, #262b2f 60%, #3c4146); }
.photo-placeholder--small .placeholder-id strong { font-size: 12px; }
.chaos-card figcaption { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 8px 5px 0; font-family: var(--font-mono); font-size: 9px; }
.chaos-card .metadata { opacity: 0; color: var(--blue); transition: opacity .4s ease .2s; }
.metadata-cloud { position: absolute; z-index: 4; inset: 0; pointer-events: none; }
.metadata-cloud span { position: absolute; padding: 8px 10px; border-radius: 6px; color: #dbe6ff; background: var(--blue); font-family: var(--font-mono); font-size: 8px; letter-spacing: .06em; opacity: 0; transform: scale(.8); transition: opacity .35s ease, transform .35s ease; }
.metadata-cloud span:nth-child(1) { top: 28%; right: 7%; }
.metadata-cloud span:nth-child(2) { bottom: 29%; left: 8%; }
.metadata-cloud span:nth-child(3) { top: 50%; left: 43%; }
.story-triggers { position: absolute; z-index: -1; top: 0; right: 0; bottom: 0; left: 0; display: grid; grid-template-rows: repeat(3, 1fr); pointer-events: none; }

.story-layout[data-state="1"] .metadata-cloud span,
.story-layout[data-state="1"] .chaos-card .metadata,
.story-layout[data-state="2"] .chaos-card .metadata { opacity: 1; }
.story-layout[data-state="1"] .metadata-cloud span { transform: scale(1); }
.story-layout[data-state="1"] .story-progress span { transform: scaleX(2); }
.story-layout[data-state="2"] .story-progress span { transform: scaleX(3); }
.story-layout[data-state="2"] .metadata-cloud span { opacity: 0; }
.story-layout[data-state="2"] .chaos-card { width: 43%; transform: rotate(0); box-shadow: 0 15px 32px rgba(35,34,31,.1); }
.story-layout[data-state="2"] .chaos-card--one { top: 22%; left: 5%; }
.story-layout[data-state="2"] .chaos-card--two { right: 5%; bottom: auto; top: 22%; }

.section-heading--dark h2 { color: var(--limestone); }
.section-heading--dark > div { max-width: 960px; }
.section-lead { max-width: 690px; margin: 28px 0 0; color: rgba(244,241,233,.61); font-size: 18px; line-height: 1.7; }

.workflow { padding: 140px 0 150px; overflow: clip; }
.workflow::before { content: ""; position: absolute; width: 560px; aspect-ratio: 1; top: 22%; left: -330px; border-radius: 50%; background: rgba(36,107,254,.22); filter: blur(130px); pointer-events: none; }
.workflow-layout { margin-top: 100px; display: grid; grid-template-columns: .77fr 1.23fr; align-items: start; gap: clamp(60px, 9vw, 150px); }
.phone-column { position: sticky; top: calc(var(--header-h) + 36px); display: grid; justify-items: center; }
.pilot-badge { position: relative; z-index: 2; margin-bottom: -14px; min-height: 30px; display: inline-flex; align-items: center; gap: 7px; padding: 0 12px; border: 1px solid rgba(244,241,233,.2); border-radius: 999px; color: rgba(244,241,233,.72); background: rgba(36,40,44,.88); backdrop-filter: blur(13px); font-family: var(--font-mono); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.pilot-badge span { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(255,106,33,.13); }
.phone-mockup { position: relative; width: min(100%, 370px); min-height: 650px; overflow: hidden; border: 1px solid rgba(244,241,233,.28); border-radius: 44px; background: #090b0d; box-shadow: 0 48px 100px rgba(0,0,0,.5), inset 0 0 0 8px #252a2e; }
.phone-mockup::before { content: ""; position: absolute; z-index: 5; top: 11px; left: 50%; width: 94px; height: 25px; border-radius: 0 0 15px 15px; transform: translateX(-50%); background: #090b0d; }
.phone-topbar { height: 42px; display: flex; align-items: center; justify-content: space-between; padding: 0 22px; color: rgba(244,241,233,.58); background: #15191c; font-family: var(--font-mono); font-size: 8px; letter-spacing: .08em; }
.phone-appbar { height: 58px; display: grid; grid-template-columns: 26px 1fr 26px; align-items: center; gap: 8px; padding: 0 18px; border-bottom: 1px solid rgba(244,241,233,.12); font-size: 13px; font-weight: 750; }
.phone-appbar svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.phone-appbar span { text-align: center; }
.phone-map-grid { position: relative; min-height: 285px; display: grid; align-content: end; padding: 35px 26px 27px; background:
  linear-gradient(rgba(36,107,254,.13) 1px, transparent 1px),
  linear-gradient(90deg, rgba(36,107,254,.13) 1px, transparent 1px),
  radial-gradient(circle at 50% 20%, rgba(36,107,254,.25), transparent 60%);
  background-size: 34px 34px, 34px 34px, auto;
}
.phone-map-grid::after { content: ""; position: absolute; inset: 28px; border: 1px dashed rgba(36,107,254,.28); border-radius: 50%; }
.phone-compass { position: absolute; z-index: 2; top: 30px; right: 27px; width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid rgba(244,241,233,.17); border-radius: 50%; color: #8aafff; font-family: var(--font-mono); font-size: 9px; }
.phone-compass i { position: absolute; width: 1px; height: 30px; transform: rotate(35deg); background: linear-gradient(var(--orange) 50%, rgba(244,241,233,.24) 50%); }
.phone-step-kicker, .phone-step-title, .phone-map-grid p { position: relative; z-index: 2; }
.phone-step-kicker { color: #8aafff; font-family: var(--font-mono); font-size: 9px; letter-spacing: .09em; }
.phone-step-title { margin-top: 8px; font-size: 23px; letter-spacing: -.04em; }
.phone-map-grid p { margin: 4px 0 0; color: rgba(244,241,233,.48); font-size: 11px; }
.phone-fields { padding: 17px 10px 8px; display: grid; gap: 8px; }
.phone-fields div { min-height: 52px; display: grid; align-content: center; gap: 2px; padding: 9px 12px; border: 1px solid rgba(244,241,233,.12); border-radius: 8px; background: rgba(244,241,233,.04); }
.phone-fields span { color: rgba(244,241,233,.38); font-family: var(--font-mono); font-size: 7px; letter-spacing: .1em; }
.phone-fields strong { font-size: 10px; }
.phone-fields .phone-accent { color: #80e5bd; }
.phone-action { min-height: 48px; margin: 12px 22px 0; display: flex; align-items: center; justify-content: center; gap: 9px; border-radius: 999px; color: var(--charcoal); background: var(--orange); font-size: 12px; font-weight: 800; }
.phone-action svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.phone-homebar { width: 108px; height: 4px; margin: 18px auto 11px; border-radius: 10px; background: rgba(244,241,233,.35); }

.workflow-steps { margin: 0; padding: 0; list-style: none; }
.workflow-step { border-top: 1px solid rgba(244,241,233,.16); }
.workflow-step:last-child { border-bottom: 1px solid rgba(244,241,233,.16); }
.step-select { width: 100%; min-height: 180px; display: grid; grid-template-columns: 54px 1fr 30px; align-items: start; gap: 24px; padding: 34px 8px; border: 0; color: var(--limestone); background: transparent; text-align: left; cursor: pointer; }
.step-number { padding-top: 5px; color: rgba(244,241,233,.32); font-family: var(--font-mono); font-size: 10px; letter-spacing: .09em; transition: color .25s ease; }
.step-body { display: grid; }
.step-body > strong { font-size: clamp(26px, 2.4vw, 36px); line-height: 1.1; letter-spacing: -.045em; transition: color .25s ease; }
.step-body > span { max-width: 590px; margin-top: 12px; color: rgba(244,241,233,.5); font-size: 15px; line-height: 1.6; }
.step-body small { margin-top: 20px; color: rgba(244,241,233,.29); font-family: var(--font-mono); font-size: 8px; letter-spacing: .08em; }
.step-select > svg { width: 25px; margin-top: 4px; fill: none; stroke: rgba(244,241,233,.3); stroke-width: 1.5; transition: transform .25s ease, stroke .25s ease; }
.workflow-step.is-active .step-number, .workflow-step.is-active .step-body > strong { color: var(--orange); }
.workflow-step.is-active .step-select > svg { stroke: var(--orange); transform: translate(3px, -3px); }
.workflow-step.is-active .step-body small { color: #84aaff; }
.step-select:hover .step-body > strong { color: var(--orange); }

.field-control { padding: 140px 0; }
.field-layout { margin-top: 90px; display: grid; grid-template-columns: .94fr 1.06fr; gap: 34px; align-items: start; }
.field-photo-wrap { position: sticky; top: calc(var(--header-h) + 35px); }
.photo-frame--field { overflow: hidden; padding: 12px; border: 1px solid rgba(21,24,27,.16); border-radius: 20px; background: var(--charcoal); box-shadow: 0 28px 65px rgba(22,24,26,.18); }
.photo-frame--field .photo-placeholder { border-radius: 10px 10px 0 0; }
.field-caption { min-height: 82px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px; padding: 14px 16px 4px; color: var(--limestone); background: #101316; }
.field-caption div { display: grid; gap: 5px; }
.field-caption span { color: rgba(244,241,233,.4); font-family: var(--font-mono); font-size: 8px; letter-spacing: .09em; }
.field-caption strong { font-size: 13px; }
.field-caption .field-direction strong { color: #87adff; }
.field-status-card { width: min(88%, 490px); min-height: 76px; margin: -16px auto 0; position: relative; z-index: 3; display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 14px; padding: 11px 16px; border: 1px solid rgba(21,24,27,.15); border-radius: 15px; background: rgba(255,253,247,.9); box-shadow: 0 18px 45px rgba(21,24,27,.16); backdrop-filter: blur(15px); }
.field-status-icon { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: conic-gradient(var(--orange) 77%, #ddd8cc 0); }
.field-status-icon::before { content: ""; width: 27px; height: 27px; border-radius: 50%; background: var(--paper); }
.field-status-card > div { display: grid; gap: 1px; }
.field-status-card small { color: #7a7e80; font-family: var(--font-mono); font-size: 7px; letter-spacing: .09em; }
.field-status-card strong { font-size: 19px; }
.field-status-tail { color: var(--orange-dark); font-size: 10px; font-weight: 720; }

.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.feature-card { position: relative; min-height: 325px; padding: 27px; overflow: hidden; border: 1px solid rgba(21,24,27,.15); border-radius: var(--radius-m); background: var(--paper); transition: transform .25s ease, box-shadow .25s ease; }
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 20px 45px rgba(21,24,27,.09); }
.feature-icon { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid rgba(21,24,27,.14); border-radius: 12px; color: var(--charcoal); background: #ece8dd; }
.feature-icon svg { width: 23px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.feature-no { position: absolute; top: 30px; right: 27px; color: #aaadae; font-family: var(--font-mono); font-size: 9px; }
.feature-card h3 { max-width: 280px; margin: 58px 0 0; font-size: 22px; line-height: 1.12; letter-spacing: -.04em; }
.feature-card p { margin: 17px 0 0; color: #676b6e; font-size: 13px; line-height: 1.65; }
.feature-card--blue { color: var(--limestone); background: var(--blue); border-color: var(--blue); }
.feature-card--blue .feature-icon { color: var(--limestone); background: rgba(244,241,233,.12); border-color: rgba(244,241,233,.25); }
.feature-card--blue .feature-no, .feature-card--blue p { color: rgba(244,241,233,.7); }
.feature-card--orange { background: #ffdac6; border-color: rgba(255,106,33,.4); }
.feature-card--orange .feature-icon { color: #9b3708; background: rgba(255,106,33,.12); border-color: rgba(155,55,8,.25); }
.command-strip { min-height: 104px; margin-top: 32px; display: grid; grid-template-columns: 50px minmax(240px,.7fr) minmax(320px,1fr) auto; align-items: center; gap: 24px; padding: 23px 27px; border: 1px solid rgba(21,24,27,.15); border-radius: 15px; background: #eae6da; }
.command-prompt { color: var(--orange); font-family: var(--font-mono); font-weight: 800; }
.command-strip strong { font-size: 18px; letter-spacing: -.025em; }
.command-strip p { margin: 0; color: #6d7173; font-size: 12px; line-height: 1.55; }
.command-status { display: flex; align-items: center; gap: 8px; color: #267354; font-family: var(--font-mono); font-size: 8px; letter-spacing: .08em; }
.command-status i { width: 7px; height: 7px; border-radius: 50%; background: #3fc28e; box-shadow: 0 0 0 5px rgba(63,194,142,.12); }

.album { padding: 140px 0; overflow: hidden; }
.album::before { content: ""; position: absolute; width: 520px; aspect-ratio: 1; right: -220px; bottom: 15%; border-radius: 50%; background: rgba(255,106,33,.13); filter: blur(130px); pointer-events: none; }
.album-heading { display: grid; grid-template-columns: 1.3fr .7fr; gap: 80px; align-items: end; }
.album-heading h2 { max-width: 830px; margin: 0; font-size: clamp(44px, 5.4vw, 76px); line-height: 1.02; letter-spacing: -.06em; }
.album-heading > p { margin: 0 0 6px; color: rgba(244,241,233,.61); font-size: 17px; line-height: 1.75; }
.album-journey { position: relative; margin-top: 90px; display: grid; grid-template-columns: 1.05fr 66px .9fr 66px .78fr; align-items: center; gap: 14px; }
.album-state { position: relative; }
.state-label { display: block; margin-bottom: 13px; color: rgba(244,241,233,.42); font-family: var(--font-mono); font-size: 8px; letter-spacing: .1em; }
.album-state--source { transform: translateX(20px) rotate(-2deg); transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.album-photo { margin: 0; padding: 9px; border: 1px solid rgba(244,241,233,.2); border-radius: 14px; background: rgba(244,241,233,.07); }
.album-photo .photo-placeholder { border-radius: 7px; }
.album-file { height: 39px; display: flex; align-items: center; justify-content: space-between; padding: 0 11px; border-top: 1px solid rgba(244,241,233,.13); color: rgba(244,241,233,.52); background: #101316; font-family: var(--font-mono); font-size: 8px; }
.album-file strong { color: var(--orange); }
.album-arrow { display: flex; align-items: center; }
.album-arrow span { flex: 1; height: 1px; background: rgba(244,241,233,.17); }
.album-arrow svg { width: 23px; fill: none; stroke: var(--orange); stroke-width: 1.5; }
.caption-card { padding: 12px 12px 15px; border: 1px solid rgba(36,107,254,.48); border-radius: 13px; background: rgba(36,107,254,.13); backdrop-filter: blur(15px); transform: translateY(18px); transition: transform .8s cubic-bezier(.2,.7,.2,1) .08s; }
.caption-preview { aspect-ratio: 3 / 2; border-radius: 7px; background:
  linear-gradient(rgba(244,241,233,.06) 1px, transparent 1px),
  linear-gradient(90deg, rgba(244,241,233,.06) 1px, transparent 1px),
  #2e3439;
  background-size: 28px 28px;
}
.caption-card p { margin: 13px 1px 10px; color: rgba(244,241,233,.78); font-size: 11px; line-height: 1.45; }
.caption-card > div:last-child { display: flex; gap: 9px; color: #82a8ff; font-family: var(--font-mono); font-size: 7px; }
.pdf-page { position: relative; min-height: 370px; padding: 26px 24px 20px; color: var(--charcoal); background: var(--limestone); box-shadow: 0 25px 60px rgba(0,0,0,.28); transform: translateX(-12px) rotate(2deg); transition: transform .8s cubic-bezier(.2,.7,.2,1) .16s; }
.pdf-page::after { content: ""; position: absolute; inset: 11px; border: 1px solid rgba(21,24,27,.16); pointer-events: none; }
.pdf-page > small { position: relative; z-index: 2; font-family: var(--font-mono); font-size: 6px; letter-spacing: .12em; }
.pdf-number { position: absolute; z-index: 2; top: 25px; right: 24px; color: var(--orange); font-family: var(--font-mono); font-size: 12px; }
.pdf-image { position: relative; z-index: 2; aspect-ratio: 3 / 2; margin-top: 23px; background:
  linear-gradient(rgba(21,24,27,.055) 1px, transparent 1px),
  linear-gradient(90deg, rgba(21,24,27,.055) 1px, transparent 1px),
  #d8d5cd;
  background-size: 23px 23px;
}
.pdf-page > p { position: relative; z-index: 2; margin: 13px 0 0; font-size: 9px; line-height: 1.45; }
.pdf-page footer { position: absolute; z-index: 2; right: 24px; bottom: 21px; left: 24px; display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 6px; }
.album.is-active .album-state--source { transform: translateX(0) rotate(-1deg); }
.album.is-active .caption-card { transform: translateY(0); }
.album.is-active .pdf-page { transform: translateX(0) rotate(1deg); }
.album-steps { margin-top: 58px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(244,241,233,.16); border-bottom: 1px solid rgba(244,241,233,.16); }
.album-steps span { min-height: 66px; display: flex; align-items: center; padding: 0 15px; border-right: 1px solid rgba(244,241,233,.16); color: rgba(244,241,233,.55); font-family: var(--font-mono); font-size: 9px; }
.album-steps span:last-child { border-right: 0; color: var(--orange); }
.album-statement { margin-top: 70px; font-size: clamp(35px, 4.1vw, 60px); line-height: 1.05; letter-spacing: -.055em; text-align: center; }
.album-statement em { color: var(--orange); font-style: normal; }

.pricing { padding: 140px 0 150px; }
.benefit-row { margin-top: 80px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.benefit-row div { min-height: 142px; display: grid; align-content: center; gap: 13px; padding: 20px 26px; border-right: 1px solid var(--line-light); }
.benefit-row div:last-child { border-right: 0; }
.benefit-row span { color: var(--orange); font-family: var(--font-mono); font-size: 9px; }
.benefit-row strong { max-width: 220px; font-size: 16px; line-height: 1.35; letter-spacing: -.02em; }
.pricing-card { margin-top: 55px; display: grid; grid-template-columns: 1.15fr .85fr; overflow: hidden; border-radius: var(--radius-l); color: var(--limestone); background: var(--charcoal); box-shadow: var(--shadow); }
.pricing-main { position: relative; padding: 58px 60px 55px; overflow: hidden; }
.pricing-main::before { content: ""; position: absolute; width: 390px; aspect-ratio: 1; left: -160px; bottom: -250px; border-radius: 50%; background: rgba(36,107,254,.32); filter: blur(90px); }
.pricing-main > * { position: relative; z-index: 1; }
.pricing-main h2 { margin: 0; font-size: clamp(42px, 4.8vw, 70px); letter-spacing: -.06em; }
.price-line { margin-top: 30px; display: flex; align-items: flex-end; gap: 17px; }
.price-line > strong { color: var(--orange); font-size: clamp(58px, 7vw, 98px); line-height: .8; letter-spacing: -.075em; }
.price-line span { padding-bottom: 2px; color: rgba(244,241,233,.55); font-size: 12px; line-height: 1.35; }
.storage-price { max-width: 540px; margin: 34px 0 0; color: rgba(244,241,233,.67); font-size: 14px; }
.storage-price span { margin-right: 8px; color: var(--blue); font-size: 20px; }
.pricing-main .button { margin-top: 37px; }
.pricing-main > small { display: block; max-width: 520px; margin-top: 18px; color: rgba(244,241,233,.4); font-size: 10px; line-height: 1.5; }
.pricing-includes { display: flex; flex-direction: column; padding: 58px 50px 48px; border-left: 1px solid rgba(244,241,233,.15); background:
  linear-gradient(rgba(244,241,233,.04) 1px, transparent 1px),
  linear-gradient(90deg, rgba(244,241,233,.04) 1px, transparent 1px),
  #1c2024;
  background-size: 38px 38px;
}
.pricing-includes > span { color: rgba(244,241,233,.43); font-family: var(--font-mono); font-size: 9px; letter-spacing: .1em; }
.pricing-includes ul { margin: 29px 0 34px; padding: 0; list-style: none; }
.pricing-includes li { min-height: 45px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid rgba(244,241,233,.1); font-size: 13px; }
.pricing-includes li::before { content: ""; width: 7px; height: 7px; border: 1px solid var(--orange); border-radius: 2px; }
.pilot-lock { margin-top: auto; display: flex; align-items: center; gap: 14px; padding: 15px; border: 1px solid rgba(36,107,254,.35); border-radius: 12px; background: rgba(36,107,254,.12); }
.pilot-lock svg { width: 25px; fill: none; stroke: #8aafff; stroke-width: 1.4; }
.pilot-lock span { display: grid; }
.pilot-lock strong { font-size: 11px; }
.pilot-lock small { margin-top: 2px; color: rgba(244,241,233,.42); font-size: 8px; }

.faq-final { padding: 140px 0 0; overflow: hidden; }
.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(60px, 9vw, 145px); align-items: start; }
.faq-heading { position: sticky; top: calc(var(--header-h) + 45px); }
.faq-heading h2 { margin: 0; font-size: clamp(48px, 5.2vw, 76px); line-height: .98; letter-spacing: -.06em; }
.faq-heading > p:last-child { max-width: 420px; margin: 27px 0 0; color: rgba(244,241,233,.53); font-size: 15px; line-height: 1.65; }
.faq-list details { border-top: 1px solid rgba(244,241,233,.17); }
.faq-list details:last-child { border-bottom: 1px solid rgba(244,241,233,.17); }
.faq-list summary { min-height: 95px; display: grid; grid-template-columns: 42px 1fr 25px; align-items: center; gap: 19px; cursor: pointer; list-style: none; font-size: 19px; font-weight: 680; letter-spacing: -.025em; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: rgba(244,241,233,.32); font-family: var(--font-mono); font-size: 9px; }
.faq-list summary i { position: relative; width: 22px; height: 22px; }
.faq-list summary i::before, .faq-list summary i::after { content: ""; position: absolute; top: 50%; left: 50%; width: 16px; height: 1px; transform: translate(-50%,-50%); background: var(--orange); transition: transform .2s ease; }
.faq-list summary i::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-list details[open] summary i::after { transform: translate(-50%,-50%) rotate(0); }
.faq-list details[open] summary { color: var(--orange); }
.faq-list details p { max-width: 700px; margin: -8px 0 0 61px; padding: 0 40px 31px 0; color: rgba(244,241,233,.56); font-size: 14px; line-height: 1.7; }
.final-cta { position: relative; margin-top: 130px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; padding: 72px; overflow: hidden; border: 1px solid rgba(244,241,233,.18); border-radius: 28px 28px 0 0; background: rgba(244,241,233,.065); backdrop-filter: blur(20px); }
.final-cta::before { content: ""; position: absolute; width: 500px; aspect-ratio: 1; left: -170px; bottom: -350px; border-radius: 50%; background: rgba(255,106,33,.2); filter: blur(90px); }
.final-cta > div { position: relative; z-index: 1; }
.final-cta h2 { max-width: 700px; margin: 0; font-size: clamp(48px, 5.5vw, 82px); line-height: .94; letter-spacing: -.065em; }
.final-cta-copy { display: grid; align-content: center; justify-items: start; }
.final-cta-copy p { margin: 0; color: rgba(244,241,233,.62); font-size: 16px; line-height: 1.7; }
.final-cta-copy .button { margin-top: 31px; }
.final-cta-copy small { margin-top: 13px; color: rgba(244,241,233,.4); font-size: 10px; }

.early-access { padding: 130px 0; text-align: center; }
.early-access-inner { display: grid; justify-items: center; }
.section-index--light { color: var(--orange); }
.early-access h2 { max-width: 930px; margin: 0; font-size: clamp(46px, 6.5vw, 92px); line-height: .95; letter-spacing: -.065em; }
.early-access p:not(.section-index) { max-width: 650px; margin: 27px 0 35px; color: rgba(244,241,233,.65); font-size: 18px; }

.site-footer { padding: 50px 0; color: var(--limestone); background: #0c0e10; border-top: 1px solid var(--line-dark); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand--footer .brand-copy span { max-width: none; }
.footer-inner > p { margin: 0; color: rgba(244,241,233,.42); font-family: var(--font-mono); font-size: 10px; }
.legal-links { display: flex; gap: 18px; font-size: 12px; }

[data-reveal] { opacity: 1; transform: none; transition: opacity .65s ease, transform .65s cubic-bezier(.2,.7,.2,1); }
[data-reveal].reveal-pending { opacity: 0; transform: translateY(24px); }
[data-reveal].reveal-pending.is-visible { opacity: 1; transform: none; }

.interest-dialog {
  width: min(920px, calc(100% - 32px));
  max-height: min(900px, calc(100dvh - 32px));
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 26px;
  color: var(--charcoal);
  background: var(--limestone);
  box-shadow: 0 45px 120px rgba(0,0,0,.48);
}
.interest-dialog::backdrop { background: rgba(8,10,12,.78); backdrop-filter: blur(9px); }
.dialog-shell { position: relative; display: grid; grid-template-columns: .82fr 1.18fr; }
.dialog-intro { padding: 54px 40px; color: var(--limestone); background: var(--charcoal); }
.dialog-intro h2 { margin: 0; font-size: clamp(32px, 3vw, 46px); line-height: 1.02; letter-spacing: -.05em; }
.dialog-intro > p:last-child { margin: 25px 0 0; color: rgba(244,241,233,.62); line-height: 1.65; }
.dialog-close { position: absolute; z-index: 2; top: 16px; right: 16px; width: 44px; height: 44px; display: grid; place-items: center; padding: 0; border: 1px solid rgba(21,24,27,.15); border-radius: 50%; background: rgba(244,241,233,.82); cursor: pointer; }
.dialog-close:hover { background: #fff; }
.dialog-close svg { width: 21px; fill: none; stroke: var(--charcoal); stroke-width: 1.8; }
.interest-form { padding: 54px 40px 38px; background: var(--paper); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px 14px; }
.field { display: grid; gap: 7px; align-content: start; }
.field--full { grid-column: 1 / -1; }
.field > span { font-size: 12px; font-weight: 750; }
.field b { color: var(--orange); }
.field input { width: 100%; min-height: 48px; padding: 0 14px; border: 1px solid rgba(21,24,27,.22); border-radius: 9px; background: #fff; }
.field input:hover { border-color: rgba(21,24,27,.45); }
.field input[aria-invalid="true"] { border-color: #c33221; }
.field-error { min-height: 15px; color: #b42b1b; font-size: 10px; line-height: 1.3; }
.consent-field { position: relative; margin-top: 18px; display: grid; grid-template-columns: 23px 1fr; gap: 11px; align-items: start; color: #55595c; font-size: 11px; line-height: 1.45; cursor: pointer; }
.consent-field input { position: absolute; opacity: 0; }
.check-box { width: 22px; height: 22px; display: grid; place-items: center; border: 1px solid rgba(21,24,27,.28); border-radius: 6px; background: #fff; }
.check-box svg { width: 15px; fill: none; stroke: white; stroke-width: 2; opacity: 0; }
.consent-field input:checked + .check-box { border-color: var(--blue); background: var(--blue); }
.consent-field input:checked + .check-box svg { opacity: 1; }
.consent-field input:focus-visible + .check-box { outline: 3px solid var(--blue); outline-offset: 3px; }
.field-error--consent { display: block; min-height: 18px; margin: 5px 0 0 34px; }
.form-submit { width: 100%; margin-top: 13px; }
.form-status { min-height: 20px; margin: 13px 0 0; text-align: center; font-size: 12px; font-weight: 650; }
.form-status.is-success { padding: 10px; border-radius: 8px; color: #175e43; background: #e1f4eb; }
.form-legal { margin-top: 10px; font-size: 10px; color: #666; }
.form-legal a { text-decoration: underline; }

@media (max-width: 1120px) {
  .header-inner { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(390px, .82fr); gap: 45px; }
  .manifest-path { display: none; }
  .manifest-inner { grid-template-columns: 1fr 1fr; }
  .story-layout { gap: 48px; }
  .workflow-layout { grid-template-columns: .7fr 1.3fr; gap: 55px; }
  .phone-mockup { width: 330px; min-height: 630px; }
  .field-layout { grid-template-columns: .82fr 1.18fr; }
  .feature-card { min-height: 345px; padding: 23px; }
  .command-strip { grid-template-columns: 44px 1fr 1.2fr; }
  .command-status { grid-column: 2 / -1; }
  .album-journey { grid-template-columns: 1.05fr 45px .9fr 45px .8fr; gap: 8px; }
  .pdf-page { min-height: 320px; }
}

@media (max-width: 820px) {
  :root { --header-h: 70px; }
  .container, .header-inner { width: min(calc(100% - 32px), var(--container)); }
  .header-inner { grid-template-columns: 1fr auto; gap: 12px; }
  .header-cta { display: none; }
  .menu-toggle { width: 46px; height: 46px; display: grid; place-content: center; gap: 7px; padding: 0; border: 1px solid rgba(244,241,233,.22); border-radius: 50%; color: var(--limestone); background: rgba(244,241,233,.06); }
  .menu-toggle span { width: 19px; height: 1px; background: currentColor; transition: transform .2s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-menu { padding: 12px 16px 22px; border-top: 1px solid var(--line-dark); background: rgba(21,24,27,.97); }
  .mobile-menu:not([hidden]) { display: grid; }
  .mobile-menu a { min-height: 48px; display: flex; align-items: center; border-bottom: 1px solid var(--line-dark); font-weight: 700; }
  .mobile-fixed-cta { position: fixed; z-index: 85; right: 12px; bottom: 12px; left: 12px; min-height: 54px; display: block; padding: 0 18px; border: 1px solid rgba(21,24,27,.14); border-radius: 999px; color: var(--charcoal); background: var(--orange); box-shadow: 0 12px 35px rgba(0,0,0,.28); font-weight: 800; }
  .site-footer { padding-bottom: 92px; }

  .hero { padding-top: calc(var(--header-h) + 62px); padding-bottom: 103px; }
  .hero-grid { min-height: 0; grid-template-columns: 1fr; gap: 64px; }
  .hero h1 { font-size: clamp(52px, 12.5vw, 78px); }
  .hero-visual { width: min(100%, 590px); justify-self: center; }
  .manifest-inner { min-height: 64px; grid-template-columns: 1fr; }
  .manifest-inner strong { display: none; }
  .story-layout { margin-top: 64px; display: block; min-height: auto; }
  .story-copy, .story-stage { position: relative; top: auto; }
  .story-stage { height: 570px; margin-top: 52px; }
  .story-triggers { display: none; }
  .story-layout .metadata-cloud span, .story-layout .chaos-card .metadata { opacity: 1; transform: scale(1); }
  .story-layout .chaos-card { width: 45%; transform: none; }
  .story-layout .chaos-card--one { top: 22%; left: 4%; }
  .story-layout .chaos-card--two { top: 22%; right: 4%; bottom: auto; }
  .story-progress { display: none; }
  .section-heading { grid-template-columns: 1fr; gap: 5px; }
  .problem { padding: 100px 0; }
  .workflow, .field-control, .album, .pricing { padding: 105px 0; }
  .workflow-layout { margin-top: 65px; grid-template-columns: 1fr; gap: 70px; }
  .phone-column { position: relative; top: auto; }
  .phone-mockup { width: min(100%, 370px); }
  .step-select { min-height: 150px; grid-template-columns: 42px 1fr 26px; gap: 15px; }
  .field-layout { margin-top: 62px; grid-template-columns: 1fr; gap: 60px; }
  .field-photo-wrap { position: relative; top: auto; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .command-strip { grid-template-columns: 35px 1fr; }
  .command-strip p, .command-status { grid-column: 2; }
  .album-heading { grid-template-columns: 1fr; gap: 27px; }
  .album-heading > p { max-width: 640px; }
  .album-journey { margin-top: 65px; grid-template-columns: 1fr; gap: 20px; }
  .album-state { width: min(100%, 540px); justify-self: center; }
  .album-arrow { width: 1px; height: 45px; justify-self: center; flex-direction: column; }
  .album-arrow span { width: 1px; height: auto; }
  .album-arrow svg { transform: rotate(90deg); flex: 0 0 auto; }
  .pdf-page { min-height: 570px; }
  .album-state--source, .caption-card, .pdf-page { transform: none; }
  .album-steps { grid-template-columns: 1fr 1fr; }
  .album-steps span:nth-child(2) { border-right: 0; }
  .album-steps span:nth-child(-n+2) { border-bottom: 1px solid rgba(244,241,233,.16); }
  .benefit-row { grid-template-columns: 1fr 1fr; }
  .benefit-row div:nth-child(2) { border-right: 0; }
  .benefit-row div:nth-child(-n+2) { border-bottom: 1px solid var(--line-light); }
  .pricing-card { grid-template-columns: 1fr; }
  .pricing-includes { border-top: 1px solid rgba(244,241,233,.15); border-left: 0; }
  .faq-final { padding-top: 105px; }
  .faq-layout { grid-template-columns: 1fr; gap: 60px; }
  .faq-heading { position: relative; top: auto; }
  .final-cta { margin-top: 95px; grid-template-columns: 1fr; gap: 40px; padding: 50px 38px; }
  .dialog-shell { grid-template-columns: 1fr; }
  .dialog-intro { padding: 46px 28px 32px; }
  .interest-form { padding: 32px 28px 30px; }
  .dialog-close { color: var(--limestone); border-color: rgba(244,241,233,.2); background: rgba(244,241,233,.1); }
  .dialog-close svg { stroke: var(--limestone); }
}

@media (max-width: 560px) {
  .brand-copy span { max-width: 150px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 14px; }
  .hero-actions .button { width: 100%; }
  .text-link { align-self: center; }
  .price-note { display: block; line-height: 1.7; }
  .price-note i { display: none; }
  .coordinate-tag { display: none; }
  .photo-frame--hero { padding: 8px; }
  .context-panel { padding-inline: 13px; }
  .story-stage { height: 720px; }
  .story-layout .chaos-card { width: 84%; }
  .story-layout .chaos-card--one { top: 12%; left: 8%; }
  .story-layout .chaos-card--two { top: auto; right: 8%; bottom: 8%; }
  .metadata-cloud span:nth-child(1) { top: 47%; }
  .metadata-cloud span:nth-child(2) { bottom: 43%; }
  .metadata-cloud span:nth-child(3) { top: 51%; left: 14%; }
  .phone-mockup { min-height: 625px; border-radius: 37px; }
  .step-select { min-height: 0; grid-template-columns: 35px 1fr; padding-block: 28px; }
  .step-select > svg { display: none; }
  .step-body > strong { font-size: 25px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 300px; }
  .field-caption { grid-template-columns: 1fr; gap: 10px; padding-bottom: 15px; }
  .field-status-card { width: 94%; grid-template-columns: 38px 1fr; }
  .field-status-tail { grid-column: 2; }
  .command-strip { grid-template-columns: 1fr; }
  .command-strip p, .command-status { grid-column: 1; }
  .album-heading h2 { font-size: 43px; }
  .pdf-page { min-height: 390px; }
  .album-steps { grid-template-columns: 1fr; }
  .album-steps span { border-right: 0; border-bottom: 1px solid rgba(244,241,233,.16); }
  .album-steps span:last-child { border-bottom: 0; }
  .benefit-row { grid-template-columns: 1fr; }
  .benefit-row div { min-height: 110px; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .benefit-row div:last-child { border-bottom: 0; }
  .pricing-main, .pricing-includes { padding: 42px 26px; }
  .price-line { align-items: flex-start; flex-direction: column; }
  .price-line > strong { font-size: 65px; }
  .pricing-main .button { width: 100%; }
  .faq-list summary { min-height: 86px; grid-template-columns: 30px 1fr 22px; gap: 12px; font-size: 16px; }
  .faq-list details p { margin-left: 42px; padding-right: 8px; }
  .final-cta { padding-inline: 24px; border-radius: 22px 22px 0 0; }
  .final-cta-copy .button { width: 100%; }
  .early-access { padding: 100px 0; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .hero-visual { transform: none !important; }
  .metadata-cloud span, .chaos-card .metadata { opacity: 1 !important; transform: none !important; }
  .album-state--source, .caption-card, .pdf-page { transform: none !important; }
}
