:root {
  --ink: #11120f;
  --ink-soft: #171914;
  --paper: #f4f0e6;
  --paper-muted: #c6c0b2;
  --paper-faint: #8f8c81;
  --brass: #dbc06c;
  --brass-bright: #ecd585;
  --brass-ink: #211c0c;
  --green: #a5d783;
  --line: rgba(244, 240, 230, 0.15);
  --line-soft: rgba(244, 240, 230, 0.09);
  --page: min(1184px, calc(100% - 3rem));
  --display: "Fraunces", Iowan Old Style, Palatino, Georgia, serif;
  --ui: "Figtree", Avenir Next, Arial, sans-serif;
  --mono: "DM Mono", SFMono-Regular, Consolas, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  background: var(--ink);
  scroll-behavior: smooth;
}
body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(900px 610px at 84% 3%, rgba(219, 192, 108, 0.12), transparent 70%),
    radial-gradient(700px 460px at 4% 30%, rgba(219, 192, 108, 0.065), transparent 73%), var(--ink);
  color: var(--paper);
  font-family: var(--ui);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
:focus-visible {
  outline: 2px solid var(--brass-bright);
  outline-offset: 4px;
}
.container {
  width: var(--page);
  margin: 0 auto;
}

.page-noise {
  position: fixed;
  z-index: 10;
  inset: 0;
  pointer-events: none;
  opacity: 0.15;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}
.skip-link {
  position: fixed;
  z-index: 20;
  top: -4rem;
  left: 1rem;
  padding: 0.65rem 0.9rem;
  border-radius: 0.4rem;
  background: var(--brass);
  color: var(--brass-ink);
  font-weight: 700;
}
.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  z-index: 8;
  top: 0;
  border-bottom: 1px solid rgba(244, 240, 230, 0.08);
  background: rgba(17, 18, 15, 0.74);
  backdrop-filter: blur(18px);
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  min-height: 76px;
  align-items: center;
}
.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 560;
  letter-spacing: -0.045em;
}
.brand-orbit {
  position: relative;
  width: 1rem;
  height: 1rem;
  border: 1px solid var(--brass);
  border-radius: 50%;
}
.brand-orbit::after {
  position: absolute;
  top: -0.12rem;
  right: 0.03rem;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background: var(--brass);
  content: "";
}
.site-nav {
  display: flex;
  gap: 1.75rem;
  color: var(--paper-muted);
  font-size: 0.86rem;
  font-weight: 500;
}
.site-nav a,
.footer-links a {
  transition: color 160ms var(--ease);
}
.site-nav a:hover,
.footer-links a:hover {
  color: var(--paper);
}
.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.62rem 0.85rem 0.62rem 0.95rem;
  border: 1px solid rgba(219, 192, 108, 0.8);
  border-radius: 999px;
  color: var(--brass-bright);
  font-size: 0.82rem;
  font-weight: 650;
  transition:
    color 180ms var(--ease),
    background 180ms var(--ease),
    border-color 180ms var(--ease);
}
.header-cta:hover {
  border-color: var(--brass);
  background: var(--brass);
  color: var(--brass-ink);
}

.journey {
  --journey-progress: 0;
  --chapter-intent: 1;
  --chapter-relay: 0;
  --chapter-arrival: 0;
  --chapter-local: 0;
  position: relative;
  height: 440svh;
  background: #080906;
}
.journey-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
}
.journey-world {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #080906;
}
.world-plate {
  position: absolute;
  inset: -3%;
  width: 106%;
  height: 106%;
  object-fit: cover;
  object-position: center;
  will-change: transform, opacity;
}
.world-intent {
  opacity: var(--chapter-intent);
  transform: scale(calc(1.03 + var(--journey-progress) * 0.025))
    translate3d(calc(var(--journey-progress) * -1.4%), 0, 0);
}
.world-signal {
  opacity: var(--chapter-relay);
  transform: scale(calc(1.045 + var(--journey-progress) * 0.018))
    translate3d(calc(var(--journey-progress) * -1.2%), 0, 0);
}
.world-arrival {
  opacity: var(--chapter-arrival);
  transform: scale(calc(1.055 + var(--journey-progress) * 0.015))
    translate3d(calc(var(--journey-progress) * -1%), 0, 0);
}
.world-local {
  opacity: var(--chapter-local);
  transform: scale(calc(1.065 + var(--journey-progress) * 0.01))
    translate3d(calc(var(--journey-progress) * -0.8%), 0, 0);
}
.world-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 9, 6, 0.78) 0%, rgba(8, 9, 6, 0.18) 50%, rgba(8, 9, 6, 0.2) 100%),
    linear-gradient(
      180deg,
      rgba(8, 9, 6, 0.2),
      transparent 24%,
      transparent 70%,
      rgba(8, 9, 6, 0.7)
    );
}
.journey-interface {
  position: relative;
  z-index: 2;
  height: 100%;
}
.journey-brandline {
  position: absolute;
  top: clamp(6.5rem, 12vh, 9rem);
  right: 0;
  display: flex;
  width: min(24rem, 36vw);
  align-items: center;
  gap: 0.9rem;
  color: rgba(244, 240, 230, 0.66);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
}
.journey-progress {
  height: 1px;
  flex: 1;
  overflow: hidden;
  background: rgba(244, 240, 230, 0.18);
}
.journey-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--brass);
  transform: scaleX(var(--journey-progress));
  transform-origin: left;
}
.journey-chapters {
  position: absolute;
  inset: 0;
}
.journey-chapter {
  position: absolute;
  top: 50%;
  left: 0;
  width: min(39rem, 58vw);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-43%);
  will-change: opacity;
}
.journey-chapter h1,
.journey-chapter h2 {
  max-width: 9ch;
  margin: 1.1rem 0 0;
  font-family: var(--display);
  font-size: clamp(3.75rem, 6.2vw, 7.25rem);
  font-weight: 450;
  letter-spacing: -0.068em;
  line-height: 0.91;
}
.journey-chapter h2 {
  max-width: 10ch;
  font-size: clamp(3.25rem, 5.4vw, 6.3rem);
}
.chapter-intent {
  opacity: var(--chapter-intent);
  pointer-events: auto;
}
.chapter-relay {
  opacity: var(--chapter-relay);
}
.chapter-arrival {
  right: 0;
  left: auto;
  text-align: right;
  opacity: var(--chapter-arrival);
}
.chapter-arrival h2 {
  max-width: none;
}
.chapter-local {
  right: 0;
  left: auto;
  text-align: right;
  opacity: var(--chapter-local);
}
.chapter-local h2 {
  max-width: none;
}
.journey-actions {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  margin-top: 2rem;
}
.agent-whisper {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.85rem;
  width: min(29rem, 100%);
  align-items: center;
  margin-top: 2rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(219, 192, 108, 0.34);
  border-radius: 0.55rem;
  background: rgba(10, 11, 8, 0.76);
  backdrop-filter: blur(14px);
  font-size: 0.76rem;
}
.agent-whisper span,
.agent-whisper i {
  color: var(--brass);
  font-family: var(--mono);
  font-size: 0.55rem;
  font-style: normal;
  letter-spacing: 0.07em;
}
.agent-whisper strong {
  color: var(--paper);
  font-weight: 500;
}
.arrival-status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.8rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(165, 215, 131, 0.32);
  border-radius: 999px;
  background: rgba(8, 9, 6, 0.66);
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.07em;
}
.arrival-status i,
.local-clock span i {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(165, 215, 131, 0.12);
}
.local-clock {
  display: inline-flex;
  align-items: end;
  gap: 1rem;
  margin-top: 1.45rem;
}
.local-clock time {
  font-family: var(--display);
  font-size: clamp(3.5rem, 7vw, 6.4rem);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.07em;
  line-height: 0.8;
}
.local-clock span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.07em;
}
.journey-scroll {
  position: absolute;
  bottom: 1.8rem;
  left: 0;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0;
  color: rgba(244, 240, 230, 0.62);
  font-family: var(--mono);
  font-size: 0.53rem;
  letter-spacing: 0.09em;
  opacity: calc(1 - min(1, var(--journey-progress) * 7));
}
.journey-scroll span {
  position: relative;
  width: 1px;
  height: 2.1rem;
  overflow: hidden;
  background: rgba(244, 240, 230, 0.22);
}
.journey-scroll span::after {
  position: absolute;
  top: -50%;
  left: 0;
  width: 1px;
  height: 50%;
  background: var(--brass);
  animation: scroll-cue 1.8s ease-in-out infinite;
  content: "";
}
@keyframes scroll-cue {
  to {
    top: 100%;
  }
}
.journey-proof {
  border-top: 1px solid rgba(219, 192, 108, 0.2);
  border-bottom: 1px solid var(--line-soft);
  background: var(--ink);
}
.journey-proof-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 1.4rem;
  min-height: 8rem;
  align-items: center;
  text-align: center;
}
.journey-proof p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
}
.journey-proof span {
  color: var(--brass);
}

.hero {
  padding: clamp(4.25rem, 8vw, 7.4rem) 0 clamp(4.8rem, 8vw, 7.6rem);
}
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(430px, 1.07fr);
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}
.eyebrow,
.section-label {
  margin: 0;
  color: var(--brass);
  font-family: var(--mono);
  font-size: 0.69rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  line-height: 1.45;
  text-transform: uppercase;
}
.eyebrow {
  display: flex;
  max-width: 33rem;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow-dot {
  width: 0.45rem;
  height: 0.45rem;
  flex: none;
  border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 0 0 4px rgba(219, 192, 108, 0.14);
}
.hero h1,
.section-heading h2,
.reliability-copy h2,
.setup-card h2,
.get-layout h2,
.faq-layout h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 450;
  letter-spacing: -0.065em;
  line-height: 0.98;
}
.hero h1 {
  max-width: 8.8ch;
  margin-top: 1.2rem;
  font-size: clamp(3.3rem, 5.15vw, 5.65rem);
}
.hero-lede {
  max-width: 34rem;
  margin: 1.55rem 0 0;
  color: var(--paper-muted);
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  line-height: 1.63;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem;
  margin-top: 2.15rem;
}
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.75rem 1rem 0.75rem 1.2rem;
  border-radius: 0.5rem;
  font-size: 0.92rem;
  font-weight: 700;
  transition:
    background 180ms var(--ease),
    color 180ms var(--ease),
    box-shadow 180ms var(--ease);
}
.button-brass {
  background: var(--brass);
  color: var(--brass-ink);
  box-shadow: inset 0 0 0 1px rgba(32, 27, 8, 0.16);
}
.button-brass:hover {
  background: var(--brass-bright);
  box-shadow: 0 0.65rem 1.4rem rgba(219, 192, 108, 0.16);
}
.button-light {
  background: var(--paper);
  color: var(--ink);
}
.button-light:hover {
  background: var(--brass-bright);
}
.text-link {
  color: var(--paper-muted);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 180ms var(--ease);
}
.text-link:hover {
  color: var(--paper);
}
.hero-notes {
  display: grid;
  gap: 0.55rem;
  margin: 2.8rem 0 0;
  padding: 1.05rem 0 0;
  border-top: 1px solid var(--line);
  color: var(--paper-faint);
  font-size: 0.78rem;
  list-style: none;
}
.hero-notes li {
  display: flex;
  gap: 0.85rem;
  align-items: baseline;
}
.hero-notes span {
  color: var(--brass);
  font-family: var(--mono);
  font-size: 0.68rem;
}

.hero-visual {
  position: relative;
  padding-top: clamp(10rem, 23vw, 17rem);
}
.hero-art {
  position: absolute;
  inset: 0 0 auto;
  height: clamp(19rem, 31vw, 25rem);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(219, 192, 108, 0.2);
  border-radius: 1rem;
  background: #080906;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.28);
}
.hero-art::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 48%, rgba(17, 18, 15, 0.92) 94%);
  content: "";
}
.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
  filter: saturate(0.88) contrast(1.04);
}
.relay-stage {
  position: relative;
  isolation: isolate;
  min-height: 442px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(40, 42, 34, 0.9), rgba(22, 23, 19, 0.94));
  box-shadow:
    0 2rem 5rem rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.relay-stage::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.48;
  background-image:
    linear-gradient(rgba(244, 240, 230, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 240, 230, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}
.stage-topline,
.stage-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.95rem 1.1rem;
  color: var(--paper-faint);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}
.stage-topline {
  border-bottom: 1px solid var(--line-soft);
}
.stage-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--green);
}
.stage-status i,
.footer-ping {
  display: inline-block;
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(165, 215, 131, 0.12);
}
.relay-grid {
  display: grid;
  grid-template-columns: 1fr 4.7rem minmax(160px, 0.78fr);
  min-height: 347px;
  align-items: center;
  padding: 1.6rem;
}
.agent-card {
  align-self: center;
  overflow: hidden;
  border: 1px solid rgba(244, 240, 230, 0.14);
  border-radius: 0.72rem;
  background: rgba(17, 18, 15, 0.76);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.17);
}
.card-topline {
  display: flex;
  min-height: 2.65rem;
  align-items: center;
  gap: 0.48rem;
  padding: 0.6rem 0.65rem;
  border-bottom: 1px solid var(--line-soft);
  color: var(--paper-faint);
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
}
.glyph {
  display: grid;
  width: 1.25rem;
  height: 1.25rem;
  place-items: center;
  border-radius: 0.28rem;
  font-size: 0.68rem;
}
.glyph-agent {
  background: rgba(219, 192, 108, 0.17);
  color: var(--brass);
}
.micro-live {
  margin-left: auto;
  color: var(--green);
  font-size: 0.53rem;
}
.agent-prompt {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.45rem;
  padding: 1rem 0.85rem;
  color: var(--paper);
  font-size: 0.86rem;
  line-height: 1.45;
}
.agent-prompt p,
.agent-result p {
  margin: 0;
}
.prompt-caret {
  color: var(--brass);
  font-family: var(--mono);
}
.agent-result {
  display: flex;
  gap: 0.48rem;
  margin: 0 0.6rem 0.65rem;
  padding: 0.65rem;
  border: 1px solid rgba(165, 215, 131, 0.23);
  border-radius: 0.42rem;
  background: rgba(165, 215, 131, 0.08);
  color: var(--paper-muted);
  font-size: 0.72rem;
  line-height: 1.45;
}
.agent-result strong {
  color: var(--paper);
  font-weight: 600;
}
.result-check {
  color: var(--green);
  font-weight: 700;
}
.relay-path {
  position: relative;
  min-height: 8rem;
  align-self: center;
}
.relay-caption {
  position: absolute;
  top: -1.1rem;
  left: 50%;
  width: max-content;
  color: var(--paper-faint);
  font-family: var(--mono);
  font-size: 0.48rem;
  letter-spacing: 0.04em;
  transform: translateX(-50%);
}
.relay-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  overflow: hidden;
  background: rgba(219, 192, 108, 0.25);
}
.relay-line i {
  position: absolute;
  top: -0.06rem;
  width: 1.5rem;
  height: 0.18rem;
  border-radius: 999px;
  background: var(--brass-bright);
  box-shadow: 0 0 0.9rem var(--brass);
  animation: signal 2.7s var(--ease) infinite;
}
.relay-node {
  position: absolute;
  top: calc(50% - 0.35rem);
  width: 0.7rem;
  height: 0.7rem;
  border: 1px solid var(--brass);
  border-radius: 50%;
  background: var(--ink);
}
.node-a {
  left: -0.33rem;
}
.node-b {
  right: -0.33rem;
}
@keyframes signal {
  from {
    left: -1.6rem;
  }
  55%,
  to {
    left: calc(100% + 0.5rem);
  }
}
.phone-wrap {
  position: relative;
  display: grid;
  justify-items: center;
  align-self: end;
  padding-top: 0.45rem;
}
.phone-glow {
  position: absolute;
  z-index: -1;
  top: 2rem;
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  background: rgba(219, 192, 108, 0.23);
  filter: blur(35px);
}
.phone-shell {
  width: min(14.3rem, 100%);
  padding: 0.43rem;
  border: 1px solid rgba(244, 240, 230, 0.3);
  border-radius: 1.6rem;
  background: #070805;
  box-shadow:
    0 1.35rem 2rem rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px #30332a;
}
.phone-speaker {
  position: absolute;
  z-index: 1;
  top: 0.85rem;
  left: 50%;
  width: 3.8rem;
  height: 0.7rem;
  border-radius: 999px;
  background: #070805;
  transform: translateX(-50%);
}
.phone-screen {
  min-height: 19.1rem;
  padding: 0.85rem 0.8rem;
  overflow: hidden;
  border-radius: 1.25rem;
  background: radial-gradient(120% 70% at 50% 110%, #5a4d1b 0%, #282a20 41%, #161814 77%);
}
.phone-status,
.phone-brand,
.phone-alarm {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
}
.phone-status {
  padding: 0 0.15rem;
  color: var(--paper);
  font-size: 0.5rem;
}
.phone-icons {
  color: var(--paper-muted);
  letter-spacing: 0.1em;
}
.phone-brand {
  justify-content: center;
  gap: 0.26rem;
  margin-top: 1.55rem;
  color: var(--paper-muted);
  font-size: 0.64rem;
}
.tiny-orbit {
  width: 0.52rem;
  height: 0.52rem;
  border: 1px solid var(--brass);
  border-radius: 50%;
}
.phone-message {
  margin-top: 5.2rem;
}
.phone-kicker {
  margin: 0;
  color: var(--brass-bright);
  font-family: var(--mono);
  font-size: 0.47rem;
  letter-spacing: 0.1em;
}
.phone-title {
  margin: 0.55rem 0 0;
  font-family: var(--display);
  font-size: 1.55rem;
  letter-spacing: -0.045em;
  line-height: 1;
}
.phone-subtitle {
  margin: 0.55rem 0 0;
  color: var(--paper-muted);
  font-size: 0.66rem;
  line-height: 1.45;
}
.phone-alarm {
  gap: 0.45rem;
  margin-top: 1.3rem;
  padding: 0.5rem 0.55rem;
  border: 1px solid rgba(165, 215, 131, 0.32);
  border-radius: 0.34rem;
  background: rgba(17, 34, 14, 0.52);
  color: var(--green);
  font-size: 0.44rem;
  letter-spacing: 0.07em;
}
.alarm-light {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0.6rem var(--green);
}
.phone-label {
  display: flex;
  align-items: center;
  gap: 0.37rem;
  margin: 1rem 0 0;
  color: var(--paper-faint);
  font-family: var(--mono);
  font-size: 0.48rem;
  letter-spacing: 0.07em;
}
.phone-label span {
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: var(--green);
}
.stage-footer {
  border-top: 1px solid var(--line-soft);
}
.stage-footer > span {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  color: var(--paper-muted);
}
.stage-footer time {
  color: var(--paper-faint);
}

.proof-strip {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(244, 240, 230, 0.025);
}
.proof-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr auto;
  gap: 1rem;
  min-height: 5.25rem;
  align-items: center;
  color: var(--paper-muted);
  font-size: 0.83rem;
}
.proof-grid p {
  margin: 0;
}
.proof-grid p:first-child {
  color: var(--paper-faint);
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.07em;
}
.proof-grid p:nth-child(3) {
  color: var(--brass-bright);
}
.proof-mark {
  color: var(--brass);
  font-size: 1.1rem;
}

.section {
  padding: clamp(5.5rem, 10vw, 9.5rem) 0;
}
.section-heading {
  max-width: 49rem;
}
.section-heading h2,
.reliability-copy h2,
.setup-card h2,
.get-layout h2,
.faq-layout h2 {
  margin-top: 1rem;
  font-size: clamp(2.5rem, 4vw, 4.25rem);
}
.section-heading > p:not(.section-label),
.get-layout > div > p:not(.section-label) {
  max-width: 40rem;
  margin: 1.25rem 0 0;
  color: var(--paper-muted);
  font-size: 1.05rem;
  line-height: 1.62;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 3.5rem 0 0;
  padding: 1px;
  background: var(--line);
  list-style: none;
}
.step-card {
  min-height: 25.5rem;
  padding: 1.45rem;
  background: var(--ink);
}
.step-count {
  color: var(--brass);
  font-family: var(--mono);
  font-size: 0.65rem;
}
.step-icon {
  position: relative;
  display: grid;
  width: 4.3rem;
  height: 4.3rem;
  place-items: center;
  margin-top: 4.1rem;
  border: 1px solid rgba(219, 192, 108, 0.32);
  border-radius: 50%;
  color: var(--brass);
}
.step-icon::after {
  position: absolute;
  width: 5.3rem;
  height: 5.3rem;
  border: 1px solid rgba(219, 192, 108, 0.1);
  border-radius: 50%;
  content: "";
}
.icon-phone span {
  width: 1.3rem;
  height: 2.15rem;
  border: 1px solid currentColor;
  border-radius: 0.28rem;
}
.icon-phone span::after {
  display: block;
  width: 0.23rem;
  height: 0.23rem;
  margin: 1.7rem auto 0;
  border-radius: 50%;
  background: currentColor;
  content: "";
}
.icon-key span {
  position: relative;
  width: 1.8rem;
  height: 0.7rem;
  border: 1px solid currentColor;
  border-radius: 0.75rem;
}
.icon-key span::before {
  position: absolute;
  top: -0.12rem;
  left: -0.35rem;
  width: 0.75rem;
  height: 0.75rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: var(--ink);
  content: "";
}
.icon-key span::after {
  position: absolute;
  top: 0.6rem;
  right: 0.27rem;
  width: 0.15rem;
  height: 0.42rem;
  background: currentColor;
  box-shadow: 0.38rem 0 0 currentColor;
  content: "";
}
.icon-bell span {
  position: relative;
  width: 1.55rem;
  height: 1.45rem;
  border: 1px solid currentColor;
  border-radius: 0.8rem 0.8rem 0.3rem 0.3rem;
}
.icon-bell span::before {
  position: absolute;
  bottom: -0.52rem;
  left: calc(50% - 0.17rem);
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: currentColor;
  content: "";
}
.icon-bell span::after {
  position: absolute;
  bottom: -0.17rem;
  left: -0.23rem;
  width: 2rem;
  height: 0.11rem;
  background: currentColor;
  content: "";
}
.step-card h3 {
  margin: 4.1rem 0 0;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 450;
  letter-spacing: -0.04em;
}
.step-card p {
  max-width: 19rem;
  margin: 0.85rem 0 0;
  color: var(--paper-muted);
  font-size: 0.91rem;
  line-height: 1.62;
}

.reliability-section {
  border-top: 1px solid var(--line-soft);
  background: rgba(244, 240, 230, 0.022);
}
.reliability-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(350px, 0.8fr);
  gap: clamp(3rem, 8vw, 10rem);
  align-items: center;
}
.reliability-copy > p:not(.section-label) {
  max-width: 35rem;
  margin: 1.35rem 0 0;
  color: var(--paper-muted);
  font-size: 1.04rem;
  line-height: 1.64;
}
.check-list {
  display: grid;
  gap: 1rem;
  margin: 2.1rem 0 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  display: grid;
  grid-template-columns: 1.4rem 1fr;
  gap: 0.75rem;
  max-width: 33rem;
  color: var(--paper-muted);
  font-size: 0.88rem;
  line-height: 1.52;
}
.check-list li > span:first-child {
  display: grid;
  width: 1.25rem;
  height: 1.25rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(165, 215, 131, 0.12);
  color: var(--green);
  font-size: 0.7rem;
}
.offline-card {
  overflow: hidden;
  border: 1px solid rgba(219, 192, 108, 0.33);
  border-radius: 0.95rem;
  background:
    radial-gradient(135% 100% at 50% 100%, rgba(130, 106, 32, 0.3), transparent 58%), #1a1c16;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.2);
}
.offline-header,
.offline-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--line-soft);
  color: var(--paper-faint);
  font-family: var(--mono);
  font-size: 0.59rem;
  letter-spacing: 0.07em;
}
.offline-mode {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--paper-muted);
}
.offline-mode i {
  position: relative;
  width: 0.65rem;
  height: 0.5rem;
  border-bottom: 1px solid var(--paper-faint);
  transform: skewX(-35deg);
}
.offline-mode i::before {
  position: absolute;
  top: -0.1rem;
  left: 0.27rem;
  width: 0.1rem;
  height: 0.75rem;
  background: #1a1c16;
  content: "";
}
.offline-time {
  padding: 2.35rem 1.1rem 0;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(5rem, 10vw, 7.2rem);
  font-weight: 450;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.08em;
  line-height: 0.9;
}
.offline-content {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  padding: 1.75rem 1.1rem;
}
.offline-label {
  margin: 0;
  color: var(--brass);
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
}
.offline-title {
  margin: 0.5rem 0 0;
  font-family: var(--display);
  font-size: 1.6rem;
  letter-spacing: -0.04em;
}
.offline-ready {
  display: flex;
  gap: 0.36rem;
  align-items: center;
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.54rem;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.offline-ready span {
  display: grid;
  width: 0.95rem;
  height: 0.95rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(165, 215, 131, 0.14);
}
.offline-timeline {
  display: flex;
  align-items: center;
  padding: 0 1.1rem;
}
.timeline-dot {
  width: 0.55rem;
  height: 0.55rem;
  flex: none;
  border: 1px solid var(--paper-faint);
  border-radius: 50%;
}
.timeline-dot.done {
  border-color: var(--green);
  background: var(--green);
}
.timeline-dot.active {
  border-color: var(--brass);
  background: var(--brass);
  box-shadow: 0 0 0 4px rgba(219, 192, 108, 0.13);
}
.timeline-line {
  height: 1px;
  flex: 1;
  background: var(--line);
}
.timeline-line.done {
  background: var(--green);
}
.offline-footer {
  margin-top: 1.45rem;
  border-top: 1px solid var(--line-soft);
  border-bottom: 0;
  font-size: 0.54rem;
}

.setup-section {
  padding-top: 0;
}
.setup-card {
  display: grid;
  grid-template-columns: 1fr minmax(270px, 0.72fr);
  gap: 3rem;
  padding: clamp(2rem, 5vw, 4.2rem);
  border: 1px solid rgba(219, 192, 108, 0.4);
  border-radius: 1rem;
  background: linear-gradient(
    112deg,
    rgba(219, 192, 108, 0.15),
    rgba(219, 192, 108, 0.025) 56%,
    rgba(255, 255, 255, 0.02)
  );
}
.setup-card h2 {
  max-width: 10ch;
}
.setup-copy {
  align-self: end;
}
.setup-copy p {
  margin: 0;
  color: var(--paper-muted);
  font-size: 1rem;
  line-height: 1.65;
}
.setup-copy .button {
  margin-top: 1.75rem;
}
.get-section {
  padding-top: 0;
}
.get-layout {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.8fr);
  gap: 4rem;
  align-items: end;
  padding-top: clamp(5.5rem, 10vw, 9.5rem);
  border-top: 1px solid var(--line);
}
.get-layout h2 {
  max-width: 8ch;
}
.store-area {
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  background: var(--ink-soft);
}
.store-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}
.store-button {
  display: flex;
  min-height: 3.7rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.55rem;
  border: 1px solid rgba(244, 240, 230, 0.16);
  border-radius: 0.48rem;
  background: #090a08;
  color: var(--paper);
  transition:
    border-color 180ms var(--ease),
    background 180ms var(--ease);
}
.store-button:hover {
  border-color: rgba(244, 240, 230, 0.44);
  background: #161712;
}
.store-button svg {
  width: 1.25rem;
  height: 1.25rem;
  flex: none;
}
.store-button > span {
  display: grid;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.15;
}
.store-button small {
  color: var(--paper-faint);
  font-family: var(--mono);
  font-size: 0.43rem;
  letter-spacing: 0.055em;
}
.store-button[aria-disabled="true"] {
  cursor: default;
  opacity: 0.7;
}
.store-note {
  min-height: 1.35rem;
  margin: 0.75rem 0 0;
  color: var(--paper-faint);
  font-size: 0.72rem;
  line-height: 1.4;
}
.faq-section {
  padding-top: 0;
}
.faq-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.62fr) 1fr;
  gap: clamp(3rem, 8vw, 10rem);
  padding-top: clamp(5.5rem, 10vw, 9.5rem);
  border-top: 1px solid var(--line);
}
.faq-layout h2 {
  max-width: 7ch;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  display: flex;
  cursor: pointer;
  list-style: none;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  color: var(--paper);
  font-size: 1rem;
  font-weight: 600;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  position: relative;
  width: 1rem;
  height: 1rem;
  flex: none;
  margin-top: 0.18rem;
}
.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 0.46rem;
  left: 0.1rem;
  width: 0.8rem;
  height: 1px;
  background: var(--brass);
  content: "";
}
.faq-list summary span::after {
  transform: rotate(90deg);
  transition: transform 180ms var(--ease);
}
.faq-list details[open] summary span::after {
  transform: rotate(0);
}
.faq-list details p {
  max-width: 43rem;
  margin: -0.25rem 2rem 1.35rem 0;
  color: var(--paper-muted);
  font-size: 0.9rem;
  line-height: 1.62;
}

.site-footer {
  margin-top: clamp(5.5rem, 10vw, 9.5rem);
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem 3rem;
  min-height: 9rem;
  align-items: center;
  padding: 2rem 0;
}
.footer-brand {
  font-size: 1.15rem;
}
.footer-inner > p {
  margin: 0;
  color: var(--paper-faint);
  font-size: 0.78rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 1.2rem;
  color: var(--paper-muted);
  font-size: 0.75rem;
}
.footer-meta {
  grid-column: 1 / -1;
  font-family: var(--mono);
  font-size: 0.6rem !important;
  letter-spacing: 0.05em;
}
[data-reveal] {
  opacity: 0;
  transition: opacity 600ms var(--ease);
}
.is-visible {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .journey {
    height: 100svh;
  }
  .world-intent {
    opacity: 1;
    transform: scale(1.03);
  }
  .world-signal,
  .world-arrival,
  .world-local {
    display: none;
  }
  .chapter-intent {
    opacity: 1;
  }
  .chapter-relay,
  .chapter-arrival,
  .chapter-local,
  .journey-brandline,
  .journey-scroll {
    display: none;
  }
  .relay-line i {
    left: 45%;
    animation: none;
  }
  .journey-scroll span::after {
    animation: none;
  }
  [data-reveal] {
    opacity: 1;
    transition: none;
  }
}
@media (max-width: 920px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }
  .site-nav {
    display: none;
  }
  .hero-layout,
  .reliability-grid,
  .get-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    max-width: 45rem;
  }
  .hero-visual {
    width: min(100%, 38rem);
  }
  .relay-stage {
    width: 100%;
  }
  .reliability-grid {
    gap: 3.5rem;
  }
  .offline-card {
    width: min(100%, 35rem);
  }
  .get-layout {
    gap: 2rem;
  }
  .get-layout h2,
  .faq-layout h2 {
    max-width: none;
  }
  .faq-layout {
    gap: 2.5rem;
  }
  .footer-inner {
    grid-template-columns: auto 1fr;
  }
  .footer-links {
    justify-content: start;
    grid-column: 1 / -1;
    grid-row: 2;
  }
  .footer-meta {
    grid-row: 3;
  }
}
@media (max-width: 640px) {
  :root {
    --page: min(100% - 2rem, 1184px);
  }
  .site-header {
    position: absolute;
    width: 100%;
    background: linear-gradient(to bottom, rgba(8, 9, 6, 0.88), transparent);
    backdrop-filter: none;
  }
  .header-inner {
    min-height: 64px;
  }
  .header-cta {
    padding: 0.53rem 0.75rem 0.53rem 0.85rem;
    font-size: 0.75rem;
  }
  .brand {
    font-size: 1.2rem;
  }
  .journey {
    height: 420svh;
  }
  .journey-sticky {
    min-height: 0;
  }
  .world-plate {
    inset: -2%;
    width: 104%;
    height: 104%;
    object-position: center;
  }
  .world-intent,
  .world-signal {
    object-position: 45% center;
  }
  .world-arrival {
    object-position: 60% center;
  }
  .world-local {
    object-position: 58% center;
  }
  .world-vignette {
    background:
      linear-gradient(
        180deg,
        rgba(8, 9, 6, 0.22),
        rgba(8, 9, 6, 0.18) 46%,
        rgba(8, 9, 6, 0.82) 100%
      ),
      linear-gradient(90deg, rgba(8, 9, 6, 0.32), transparent 65%);
  }
  .journey-brandline {
    top: 5.3rem;
    width: 45%;
  }
  .journey-chapter,
  .chapter-arrival,
  .chapter-local {
    top: auto;
    right: auto;
    bottom: 6rem;
    left: 0;
    width: 100%;
    text-align: left;
    transform: none;
  }
  .journey-chapter h1,
  .journey-chapter h2 {
    max-width: 10ch;
    font-size: clamp(3.2rem, 14vw, 4.25rem);
    line-height: 0.92;
  }
  .journey-actions {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .agent-whisper {
    grid-template-columns: auto 1fr;
  }
  .agent-whisper i {
    display: none;
  }
  .local-clock {
    align-items: center;
  }
  .local-clock time {
    font-size: 4.4rem;
  }
  .journey-scroll {
    bottom: 1.2rem;
  }
  .journey-proof-inner {
    grid-template-columns: 1fr;
    gap: 0.6rem;
    padding: 2.2rem 0;
  }
  .journey-proof span {
    transform: rotate(90deg);
  }
  .hero {
    padding-top: 3.4rem;
  }
  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }
  .hero-actions {
    gap: 1.1rem;
  }
  .hero-notes {
    margin-top: 2.2rem;
  }
  .hero-visual {
    padding-top: 11rem;
  }
  .hero-art {
    height: 16rem;
    border-radius: 0.75rem;
  }
  .hero-art img {
    object-position: 61% center;
  }
  .relay-stage {
    min-height: 0;
    border-radius: 0.75rem;
  }
  .relay-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    min-height: 0;
    padding: 1rem;
  }
  .agent-card {
    max-width: none;
  }
  .relay-path {
    min-height: 2.5rem;
    transform: rotate(90deg);
  }
  .relay-caption {
    transform: translateX(-50%) rotate(-90deg);
  }
  .phone-wrap {
    align-self: center;
    padding-top: 0;
  }
  .phone-shell {
    width: 13.3rem;
  }
  .phone-screen {
    min-height: 17.8rem;
  }
  .phone-message {
    margin-top: 4.2rem;
  }
  .proof-grid {
    grid-template-columns: 1fr auto;
    gap: 0.3rem 1rem;
    min-height: 0;
    padding: 1.15rem 0;
  }
  .proof-grid p:first-child {
    grid-column: 1 / -1;
    margin-bottom: 0.4rem;
  }
  .proof-grid p:nth-child(3) {
    grid-column: 1;
  }
  .proof-mark {
    grid-column: 2;
    grid-row: 2 / span 2;
  }
  .section-heading h2,
  .reliability-copy h2,
  .setup-card h2,
  .get-layout h2,
  .faq-layout h2 {
    font-size: clamp(2.45rem, 12vw, 3.5rem);
  }
  .steps-grid {
    grid-template-columns: 1fr;
    margin-top: 2.4rem;
  }
  .step-card {
    min-height: 0;
    padding: 1.25rem;
  }
  .step-icon {
    margin-top: 2.6rem;
  }
  .step-card h3 {
    margin-top: 2.8rem;
  }
  .reliability-grid {
    gap: 2.8rem;
  }
  .offline-time {
    font-size: clamp(4.75rem, 21vw, 6.5rem);
  }
  .offline-content {
    display: block;
  }
  .offline-ready {
    margin-top: 1rem;
  }
  .setup-card {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    padding: 1.5rem;
  }
  .setup-card h2 {
    max-width: 12ch;
  }
  .store-buttons {
    grid-template-columns: 1fr;
  }
  .faq-list summary {
    font-size: 0.94rem;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .footer-links {
    grid-column: auto;
    grid-row: auto;
    justify-content: start;
  }
  .footer-meta {
    grid-row: auto;
  }
}

/* Generic product-led presentation */
:root {
  --ink: #f5f6f3;
  --ink-soft: #ffffff;
  --paper: #191c18;
  --paper-muted: #565d55;
  --paper-faint: #747b73;
  --brass: #8a6a32;
  --brass-bright: #a98443;
  --brass-ink: #ffffff;
  --green: #527b4a;
  --line: rgba(25, 28, 24, 0.14);
  --line-soft: rgba(25, 28, 24, 0.08);
  --display: "Manrope", Arial, sans-serif;
  --ui: "Manrope", Arial, sans-serif;
  color-scheme: light;
}
body {
  background:
    radial-gradient(900px 620px at 80% 0%, rgba(117, 136, 183, 0.13), transparent 70%),
    radial-gradient(720px 480px at 8% 28%, rgba(169, 132, 67, 0.09), transparent 72%), var(--ink);
}
.page-noise {
  opacity: 0.035;
  mix-blend-mode: multiply;
}
.site-header {
  border-color: var(--line-soft);
  background: rgba(245, 246, 243, 0.8);
}
.brand-orbit {
  border-color: var(--brass);
}
.site-nav {
  color: var(--paper-muted);
}
.site-nav a:hover,
.footer-links a:hover {
  color: var(--paper);
}
.header-cta {
  border-color: rgba(25, 28, 24, 0.28);
  color: var(--paper);
}
.header-cta:hover {
  border-color: var(--paper);
  background: var(--paper);
  color: white;
}
.journey {
  height: 390svh;
  background: #f7f8f6;
}
.journey-sticky {
  background: #f7f8f6;
}
.journey-world {
  background: linear-gradient(180deg, #f8f9f7 0%, #f1f3f0 100%);
}
.ambient-grid {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image: radial-gradient(circle, rgba(30, 35, 30, 0.17) 0.7px, transparent 0.8px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}
.ambient-orb {
  position: absolute;
  width: 44rem;
  height: 44rem;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
}
.ambient-orb-a {
  top: -22rem;
  left: -12rem;
  background: rgba(205, 181, 132, 0.24);
}
.ambient-orb-b {
  right: -18rem;
  bottom: -25rem;
  background: rgba(139, 154, 190, 0.22);
}
.journey-chapter,
.chapter-arrival,
.chapter-local {
  top: 14%;
  right: 0;
  left: 0;
  width: 100%;
  max-width: none;
  text-align: center;
  transform: none;
  filter: blur(var(--chapter-blur, 0));
}
.journey-chapter h1,
.journey-chapter h2 {
  max-width: 16ch;
  margin: 0.75rem auto 0;
  font-size: clamp(3.2rem, 5.1vw, 5.7rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.98;
}
.journey-chapter h2 {
  max-width: 18ch;
  font-size: clamp(2.85rem, 4.6vw, 5.15rem);
}
.journey-chapter .eyebrow,
.journey-chapter .section-label {
  justify-content: center;
  color: var(--brass);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}
.journey-actions {
  justify-content: center;
  margin-top: 1.5rem;
}
.button {
  border-radius: 0.55rem;
}
.button-brass {
  background: var(--paper);
  color: white;
  box-shadow: 0 8px 24px rgba(25, 28, 24, 0.12);
}
.button-brass:hover {
  background: #30352f;
}
.text-link {
  color: var(--paper-muted);
}
.product-stage {
  position: absolute;
  right: 50%;
  bottom: 3.5%;
  display: grid;
  width: min(980px, calc(100% - 3rem));
  height: min(44vh, 360px);
  grid-template-columns: 1.25fr 0.55fr 0.62fr;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(26, 30, 25, 0.14);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.78);
  box-shadow:
    0 24px 70px rgba(39, 45, 38, 0.13),
    inset 0 1px 0 white;
  transform: translateX(50%);
  backdrop-filter: blur(20px);
}
.agent-console {
  height: 100%;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}
.console-bar {
  display: flex;
  height: 42px;
  align-items: center;
  gap: 0.35rem;
  padding: 0 0.85rem;
  border-bottom: 1px solid var(--line-soft);
}
.console-bar > span {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #c7cbc5;
}
.console-bar i {
  margin-left: auto;
  color: var(--paper-faint);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-style: normal;
  letter-spacing: 0.06em;
}
.session-list {
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
}
.session {
  display: grid;
  grid-template-columns: 2rem 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem;
  border: 1px solid var(--line-soft);
  border-radius: 0.65rem;
  background: white;
  box-shadow: 0 4px 14px rgba(25, 28, 24, 0.035);
}
.session-icon {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 0.45rem;
  background: #f1f2ef;
  color: var(--paper-muted);
  font-family: var(--mono);
  font-size: 0.72rem;
}
.session div {
  display: grid;
  gap: 0.18rem;
}
.session strong {
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 650;
}
.session small {
  color: var(--paper-faint);
  font-size: 0.7rem;
}
.session-state {
  width: 0.55rem;
  height: 0.55rem;
  border: 1px solid var(--brass);
  border-radius: 50%;
  animation: session-pulse 1.8s ease-in-out infinite;
}
.session-c {
  border-color: rgba(82, 123, 74, 0.28);
  background: rgba(82, 123, 74, 0.045);
}
.session-c .session-state {
  display: grid;
  width: 1.25rem;
  height: 1.25rem;
  place-items: center;
  border: 0;
  background: rgba(82, 123, 74, 0.12);
  color: var(--green);
  font-size: 0.72rem;
  font-style: normal;
  animation: none;
}
.console-event {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  margin: 0 1rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(138, 106, 50, 0.24);
  border-radius: 0.6rem;
  background: rgba(169, 132, 67, 0.07);
  opacity: clamp(0, calc((var(--journey-progress) - 0.18) * 7), 1);
}
.console-event span {
  display: grid;
  width: 1.25rem;
  height: 1.25rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(138, 106, 50, 0.12);
  color: var(--brass);
  font-size: 0.72rem;
  font-weight: 700;
}
.console-event p {
  margin: 0;
  color: var(--paper);
  font-size: 0.75rem;
  font-weight: 600;
}
.console-event small {
  margin-left: auto;
  color: var(--paper-faint);
  font-family: var(--mono);
  font-size: 0.6rem;
}
.signal-field {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.signal-track {
  position: absolute;
  top: 50%;
  left: 8%;
  width: 84%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(138, 106, 50, 0.35), transparent);
  transform: scaleX(clamp(0, calc((var(--journey-progress) - 0.2) * 2.2), 1));
  transform-origin: left;
}
.signal-pulse {
  position: absolute;
  top: calc(50% - 0.3rem);
  left: calc(5% + clamp(0, calc((var(--journey-progress) - 0.2) * 1.55), 1) * 85%);
  width: 0.6rem;
  height: 0.6rem;
  border: 1px solid var(--brass);
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 0 6px rgba(169, 132, 67, 0.09);
}
.pulse-b {
  width: 0.3rem;
  height: 0.3rem;
  margin: 0.15rem 0 0 -2rem;
  opacity: 0.55;
}
.signal-field small {
  position: absolute;
  top: calc(50% + 1.15rem);
  width: 100%;
  color: var(--paper-faint);
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.08em;
  text-align: center;
}
.destination-phone {
  justify-self: center;
  width: 8.5rem;
  padding: 0.38rem;
  border: 1px solid rgba(25, 28, 24, 0.55);
  border-radius: 1.45rem;
  background: #20231f;
  box-shadow: 0 18px 35px rgba(25, 28, 24, 0.2);
  opacity: clamp(0.25, calc((var(--journey-progress) - 0.28) * 4), 1);
  transform: translateY(calc((1 - clamp(0, calc((var(--journey-progress) - 0.28) * 4), 1)) * 12px));
}
.destination-screen {
  min-height: 15.5rem;
  padding: 0.75rem;
  border-radius: 1.1rem;
  background: linear-gradient(160deg, #f5f6f1, #e2e7df);
  color: var(--paper);
}
.destination-status {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 0.55rem;
}
.destination-status i {
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--green);
}
.destination-mark {
  display: grid;
  place-items: center;
  margin-top: 2rem;
}
.destination-mark span {
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid rgba(138, 106, 50, 0.45);
  border-radius: 50%;
  box-shadow: 0 0 0 9px rgba(169, 132, 67, 0.07);
}
.destination-message {
  margin-top: 2.4rem;
}
.destination-message small {
  color: var(--brass);
  font-family: var(--mono);
  font-size: 0.48rem;
  letter-spacing: 0.08em;
}
.destination-message strong {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.85rem;
}
.destination-message p {
  margin: 0.28rem 0 0;
  color: var(--paper-muted);
  font-size: 0.64rem;
}
.destination-ready {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  margin-top: 1.15rem;
  padding-top: 0.55rem;
  border-top: 1px solid var(--line);
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.48rem;
  letter-spacing: 0.04em;
}
.destination-ready i {
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--green);
}
.agent-whisper,
.arrival-status,
.local-clock {
  display: none;
}
.journey-scroll {
  color: var(--paper-faint);
}
.journey-scroll span {
  background: var(--line);
}
.journey-proof {
  border-color: var(--line-soft);
  background: white;
}
.get-layout,
.faq-layout {
  border-color: var(--line);
}
.store-area {
  background: white;
}
.store-button {
  border-color: var(--line);
  background: #20231f;
  color: white;
}
.site-footer {
  border-color: var(--line);
}
@keyframes session-pulse {
  50% {
    background: rgba(138, 106, 50, 0.18);
    box-shadow: 0 0 0 4px rgba(138, 106, 50, 0.07);
  }
}

@media (max-width: 640px) {
  .site-header {
    background: rgba(247, 248, 246, 0.9);
  }
  .journey {
    height: 360svh;
  }
  .journey-chapter,
  .chapter-arrival,
  .chapter-local {
    top: 14%;
    bottom: auto;
    text-align: center;
  }
  .journey-chapter h1,
  .journey-chapter h2 {
    max-width: 11ch;
    font-size: clamp(2.7rem, 12vw, 3.5rem);
    line-height: 0.98;
  }
  .journey-chapter .eyebrow,
  .journey-chapter .section-label {
    justify-content: center;
    font-size: 0.68rem;
  }
  .journey-actions {
    justify-content: center;
  }
  .product-stage {
    bottom: 5%;
    width: calc(100% - 2rem);
    height: 44vh;
    min-height: 330px;
    grid-template-columns: 1fr 3.5rem 7.3rem;
  }
  .console-bar {
    height: 36px;
    padding: 0 0.6rem;
  }
  .console-bar i {
    display: none;
  }
  .session-list {
    gap: 0.45rem;
    padding: 0.65rem;
  }
  .session {
    grid-template-columns: 1.65rem 1fr auto;
    gap: 0.45rem;
    padding: 0.55rem;
  }
  .session-icon {
    width: 1.65rem;
    height: 1.65rem;
  }
  .session strong {
    font-size: 0.68rem;
  }
  .session small {
    font-size: 0.58rem;
  }
  .console-event {
    margin: 0 0.65rem;
    padding: 0.55rem;
  }
  .console-event p {
    font-size: 0.62rem;
  }
  .console-event small {
    display: none;
  }
  .signal-field small {
    display: none;
  }
  .destination-phone {
    width: 6.4rem;
  }
  .destination-screen {
    min-height: 13rem;
    padding: 0.55rem;
  }
  .destination-message {
    margin-top: 1.8rem;
  }
  .destination-message strong {
    font-size: 0.68rem;
  }
  .destination-message p {
    font-size: 0.54rem;
  }
  .journey-scroll {
    display: none;
  }
}

/* Illustrated journey with product data in the foreground */
.site-header {
  border-color: rgba(244, 240, 230, 0.1);
  background: rgba(15, 16, 13, 0.82);
  color: #f4f0e6;
}
.site-nav {
  color: #bbb8ae;
}
.site-nav a:hover {
  color: #f4f0e6;
}
.header-cta {
  border-color: rgba(219, 192, 108, 0.65);
  color: #e7ce7e;
}
.header-cta:hover {
  border-color: #dbc06c;
  background: #dbc06c;
  color: #211c0c;
}
.journey {
  height: 390svh;
  background: #11120f;
}
.journey-sticky,
.journey-world {
  background: #11120f;
}
.world-plate {
  display: block;
  filter: brightness(1.13) saturate(0.82);
}
.ambient-orb {
  display: none;
}
.ambient-grid {
  z-index: 1;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(244, 240, 230, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 240, 230, 0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}
.journey-world::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(17, 18, 15, 0.18),
      rgba(17, 18, 15, 0.05) 46%,
      rgba(17, 18, 15, 0.72)
    ),
    linear-gradient(90deg, rgba(17, 18, 15, 0.3), transparent 54%);
  content: "";
  pointer-events: none;
}
.journey-chapter,
.chapter-arrival,
.chapter-local {
  z-index: 4;
  top: 13%;
  right: auto;
  left: 0;
  width: min(42rem, 62vw);
  color: #f4f0e6;
  text-align: left;
}
.journey-chapter h1,
.journey-chapter h2 {
  max-width: 11ch;
  margin: 0.7rem 0 0;
  color: #f4f0e6;
  font-size: clamp(3.3rem, 5vw, 5.6rem);
  font-weight: 600;
  line-height: 0.96;
}
.journey-chapter h2 {
  max-width: none;
  font-size: clamp(2.7rem, 4.2vw, 4.7rem);
}
.journey-chapter .eyebrow,
.journey-chapter .section-label {
  justify-content: flex-start;
  color: #dbc06c;
  font-size: 0.76rem;
}
.journey-actions {
  justify-content: flex-start;
}
.journey .button-brass {
  background: #dbc06c;
  color: #211c0c;
}
.journey .button-brass:hover {
  background: #ecd585;
}
.journey .text-link {
  color: #d0cdc2;
}
.product-stage {
  z-index: 3;
  right: clamp(1.5rem, 5vw, 5rem);
  bottom: 4.5%;
  width: min(850px, 64vw);
  height: min(45vh, 350px);
  grid-template-columns: 1.2fr 0.5fr 0.58fr;
  border-color: rgba(244, 240, 230, 0.18);
  background: rgba(15, 16, 13, 0.72);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  color: #f4f0e6;
  transform: none;
  backdrop-filter: blur(22px);
}
.agent-console {
  border-color: rgba(244, 240, 230, 0.12);
  background: rgba(17, 18, 15, 0.76);
}
.console-bar {
  border-color: rgba(244, 240, 230, 0.1);
}
.console-bar > span {
  background: #6b6d65;
}
.console-bar i {
  color: #aaa79d;
}
.session {
  border-color: rgba(244, 240, 230, 0.1);
  background: rgba(34, 36, 30, 0.9);
  box-shadow: none;
}
.session-icon {
  background: rgba(244, 240, 230, 0.08);
  color: #d7d2c6;
}
.session strong {
  color: #f4f0e6;
}
.session small {
  color: #aaa79d;
}
.session-c {
  border-color: rgba(165, 215, 131, 0.28);
  background: rgba(165, 215, 131, 0.07);
}
.session-c .session-state {
  background: rgba(165, 215, 131, 0.13);
  color: #a5d783;
}
.console-event {
  border-color: rgba(219, 192, 108, 0.34);
  background: rgba(219, 192, 108, 0.1);
}
.console-event p {
  color: #f4f0e6;
}
.console-event small {
  color: #aaa79d;
}
.signal-track {
  background: linear-gradient(90deg, transparent, rgba(219, 192, 108, 0.62), transparent);
}
.signal-pulse {
  border-color: #dbc06c;
  background: #171914;
  box-shadow:
    0 0 0 6px rgba(219, 192, 108, 0.11),
    0 0 22px rgba(219, 192, 108, 0.25);
}
.signal-field small {
  color: #aaa79d;
}
.destination-phone {
  border-color: rgba(244, 240, 230, 0.52);
  background: #070805;
}
.destination-screen {
  background: linear-gradient(160deg, #2d3028, #171914);
  color: #f4f0e6;
}
.destination-message strong {
  color: #f4f0e6;
}
.destination-message p {
  color: #bdb9ae;
}
.destination-ready {
  border-color: rgba(244, 240, 230, 0.12);
  color: #a5d783;
}
.journey-scroll {
  color: #aaa79d;
}
.journey-scroll span {
  background: rgba(244, 240, 230, 0.2);
}

@media (max-width: 640px) {
  .site-header {
    background: rgba(15, 16, 13, 0.88);
  }
  .journey-chapter,
  .chapter-arrival,
  .chapter-local {
    top: 12%;
    left: 0;
    width: 100%;
    text-align: left;
  }
  .journey-chapter h1,
  .journey-chapter h2 {
    max-width: 10ch;
    margin-left: 0;
    font-size: clamp(2.8rem, 12vw, 3.6rem);
  }
  .journey-chapter .eyebrow,
  .journey-chapter .section-label {
    justify-content: flex-start;
  }
  .journey-actions {
    justify-content: flex-start;
  }
  .product-stage {
    right: 1rem;
    bottom: 4%;
    width: calc(100% - 2rem);
    height: 43vh;
    min-height: 325px;
    grid-template-columns: 1fr 3.25rem 6.6rem;
  }
  .world-plate {
    filter: brightness(1.2) saturate(0.78);
  }
}

@media (prefers-reduced-motion: reduce) {
  .journey {
    height: 100svh;
    --journey-progress: 0.72;
  }
  .chapter-intent {
    display: block;
    opacity: 1;
    filter: none;
  }
  .chapter-relay,
  .chapter-arrival,
  .chapter-local {
    display: none;
  }
  .product-stage {
    opacity: 1;
  }
  .console-event,
  .destination-phone {
    opacity: 1;
    transform: none;
  }
  .signal-track {
    transform: scaleX(1);
  }
  .signal-pulse {
    left: 82%;
  }
}

/* Brand typography and independent scene interpolation */
:root {
  --display: "Bricolage Grotesque", "Inter", Arial, sans-serif;
  --ui: "Inter", Arial, sans-serif;
}
.journey {
  --scene-intent: 1;
  --scene-relay: 0;
  --scene-arrival: 0;
  --scene-local: 0;
}
.world-intent {
  opacity: var(--scene-intent);
}
.world-signal {
  opacity: var(--scene-relay);
}
.world-arrival {
  opacity: var(--scene-arrival);
}
.world-local {
  opacity: var(--scene-local);
}
.brand {
  font-family: var(--display);
  font-weight: 650;
  letter-spacing: -0.045em;
}
.journey-chapter h1,
.journey-chapter h2 {
  font-family: var(--display);
  font-weight: 620;
  letter-spacing: -0.055em;
}
.journey-chapter h1 {
  font-size: clamp(3.65rem, 5.5vw, 6.2rem);
}
.journey-chapter h2 {
  font-size: clamp(3rem, 4.65vw, 5.15rem);
}
.journey-chapter .eyebrow,
.journey-chapter .section-label {
  font-size: 0.8rem;
  line-height: 1.5;
}
.session strong {
  font-size: 0.88rem;
}
.session small {
  font-size: 0.76rem;
}
.console-bar i {
  font-size: 0.66rem;
}
.console-event p {
  font-size: 0.8rem;
}
.signal-field small {
  font-size: 0.62rem;
}
.destination-message small,
.destination-ready {
  font-size: 0.54rem;
}
.destination-message strong {
  font-size: 0.92rem;
}
.destination-message p {
  font-size: 0.7rem;
}

@media (max-width: 640px) {
  .journey-chapter h1 {
    font-size: clamp(3rem, 13vw, 4rem);
  }
  .journey-chapter h2 {
    font-size: clamp(2.7rem, 11vw, 3.5rem);
  }
  .journey-chapter .eyebrow,
  .journey-chapter .section-label {
    font-size: 0.72rem;
  }
  .session strong {
    font-size: 0.74rem;
  }
  .session small {
    font-size: 0.64rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .world-intent {
    opacity: 1;
  }
  .world-signal,
  .world-arrival,
  .world-local {
    display: none;
  }
}

/* Keep the four-state story responsive without over-pinning the page. */
.journey {
  height: 310svh;
}
@media (max-width: 640px) {
  .journey {
    height: 290svh;
  }
}

/* Final chrome and handoff-state alignment */
:root {
  --ink: #11120f;
  --ink-soft: #171914;
  --paper: #f4f0e6;
  --paper-muted: #c6c0b2;
  --paper-faint: #8f8c81;
  --brass: #dbc06c;
  --brass-bright: #ecd585;
  --brass-ink: #211c0c;
  --green: #a5d783;
  --line: rgba(244, 240, 230, 0.15);
  --line-soft: rgba(244, 240, 230, 0.09);
  color-scheme: dark;
}
body {
  background:
    radial-gradient(900px 610px at 84% 3%, rgba(219, 192, 108, 0.1), transparent 70%), #11120f;
  color: var(--paper);
}
.page-noise {
  opacity: 0.12;
  mix-blend-mode: soft-light;
}
.site-header {
  z-index: 12;
  border-bottom-color: transparent;
  background: #11120f;
  box-shadow: none;
  backdrop-filter: none;
}
.journey-proof,
.store-area {
  border-color: var(--line);
  background: var(--ink);
}
.store-button {
  border-color: var(--line);
  background: #090a08;
  color: var(--paper);
}
.destination-ready {
  position: relative;
  min-height: 1.2rem;
  padding-top: 0;
  border-top: 0;
}
.destination-ready > span {
  position: absolute;
  inset: 0;
  display: flex;
  gap: 0.4rem;
  align-items: center;
}
.destination-ready .mode-notify {
  opacity: clamp(0, calc((0.84 - var(--journey-progress)) * 8), 1);
}
.destination-ready .mode-alarm {
  opacity: clamp(0, calc((var(--journey-progress) - 0.72) * 8), 1);
}
.brand {
  letter-spacing: -0.02em;
}
.journey-chapter h1,
.journey-chapter h2 {
  letter-spacing: -0.025em;
  line-height: 0.98;
}
.section-heading h2,
.reliability-copy h2,
.setup-card h2,
.get-layout h2,
.faq-layout h2 {
  letter-spacing: -0.03em;
  line-height: 1.04;
}
.offline-time,
.local-clock time {
  letter-spacing: 0.01em;
}
.destination-message strong,
.session strong,
.step-card h3 {
  letter-spacing: -0.015em;
}
.step-visual {
  display: grid;
  min-height: 10.5rem;
  align-items: center;
  margin-top: 2.35rem;
  color: var(--brass);
}
.step-visual svg {
  width: 100%;
  height: auto;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.step-visual .visual-frame,
.step-visual .visual-device,
.step-visual .visual-agent,
.step-visual .visual-message,
.step-visual .visual-notify,
.step-visual .visual-alarm {
  fill: rgba(244, 240, 230, 0.025);
  stroke: rgba(219, 192, 108, 0.58);
}
.step-visual .visual-muted {
  stroke: rgba(244, 240, 230, 0.24);
}
.step-visual .visual-code {
  stroke: rgba(219, 192, 108, 0.66);
}
.step-visual .visual-route {
  stroke: rgba(219, 192, 108, 0.52);
}
.step-visual .visual-pulse {
  fill: var(--brass);
  stroke: rgba(219, 192, 108, 0.28);
  stroke-width: 8;
}
.step-visual .visual-success {
  fill: rgba(165, 215, 131, 0.16);
  stroke: var(--green);
}
.step-visual .visual-check {
  stroke: var(--green);
  stroke-width: 1.8;
}
.step-visual .visual-key {
  fill: rgba(219, 192, 108, 0.1);
}
.step-visual .visual-ghost {
  stroke: rgba(244, 240, 230, 0.12);
  stroke-dasharray: 3 4;
}
.step-card h3 {
  margin-top: 1.8rem;
}

@media (prefers-reduced-motion: reduce) {
  .destination-ready .mode-notify {
    opacity: 1;
  }
  .destination-ready .mode-alarm {
    display: none;
  }
}
