:root {
  --cream: #fff8e9;
  --paper: #fffdf8;
  --mint: #eaf6e7;
  --mint-strong: #cfe9c9;
  --emerald: #155f43;
  --emerald-deep: #0d4432;
  --emerald-soft: #2f7b5e;
  --amber: #f2b84b;
  --amber-soft: #ffe5a7;
  --coral: #d9654c;
  --ink: #18362c;
  --muted: #5b7169;
  --border: rgba(24, 54, 44, .14);
  --white: #fff;
  --shadow-sm: 0 12px 32px rgba(24, 54, 44, .08);
  --shadow-lg: 0 28px 80px rgba(24, 54, 44, .16);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --shell: 1240px;
  --header-height: 84px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 7% 9%, rgba(242, 184, 75, .22), transparent 25rem),
    radial-gradient(circle at 92% 22%, rgba(122, 188, 126, .2), transparent 32rem),
    var(--cream);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: .34;
  background-image: radial-gradient(rgba(21, 95, 67, .16) .8px, transparent .8px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to bottom, #000, transparent 60%);
}

img,
svg {
  display: block;
}

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

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

button,
input {
  font: inherit;
}

button,
a {
  touch-action: manipulation;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.brand {
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", system-ui, sans-serif;
}

h1,
h2 {
  letter-spacing: -.045em;
  line-height: 1.02;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
}

h3 {
  line-height: 1.16;
}

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

.section {
  padding-block: clamp(88px, 10vw, 152px);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: 2000;
  padding: 12px 18px;
  border-radius: 12px;
  color: var(--white);
  background: var(--emerald-deep);
  transform: translateY(-160%);
}

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

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

.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1200;
  height: 4px;
  background: transparent;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--amber), var(--coral));
  transform-origin: left;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  border-color: var(--border);
  background: rgba(255, 248, 233, .88);
  box-shadow: 0 8px 30px rgba(24, 54, 44, .06);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  color: var(--emerald-deep);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -.04em;
}

.brand-mark {
  width: 40px;
  height: 40px;
  color: var(--emerald);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-left: auto;
}

.nav-links a,
.site-footer a:not(.brand) {
  position: relative;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 700;
  transition: color .2s ease;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  content: "";
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.site-footer a:not(.brand):hover {
  color: var(--emerald-deep);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-actions {
  min-width: 0;
  flex: 0 0 auto;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  transition: transform .2s var(--ease), background-color .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.button svg,
.login-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0) scale(.98);
}

.button-primary {
  color: var(--white);
  background: var(--emerald);
  box-shadow: 0 12px 26px rgba(21, 95, 67, .22);
}

.button-primary:hover {
  background: var(--emerald-deep);
  box-shadow: 0 16px 32px rgba(21, 95, 67, .28);
}

.button-ghost {
  border-color: var(--border);
  color: var(--emerald-deep);
  background: rgba(255, 255, 255, .48);
}

.button-ghost:hover {
  border-color: rgba(21, 95, 67, .35);
  background: var(--white);
}

.button-light {
  margin-top: 26px;
  color: var(--emerald-deep);
  background: var(--white);
  box-shadow: none;
}

.button-large {
  min-height: 58px;
  padding-inline: 28px;
  font-size: 1.02rem;
}

.login-short {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - var(--header-height));
  grid-template-columns: minmax(0, .92fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
  padding-block: clamp(44px, 6vw, 88px) 84px;
}

.hero-copy {
  position: relative;
  z-index: 5;
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--emerald-soft);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--amber);
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 26px;
  font-size: clamp(3.35rem, 5vw, 5.35rem);
  font-weight: 800;
}

.hero h1 em {
  position: relative;
  display: inline-block;
  color: var(--emerald);
  font-style: normal;
}

.hero h1 em::after {
  position: absolute;
  right: -.02em;
  bottom: -.06em;
  left: -.02em;
  z-index: -1;
  height: .17em;
  border-radius: 999px;
  content: "";
  background: var(--amber-soft);
  transform: rotate(-1.2deg);
}

.hero-lead {
  max-width: 640px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  line-height: 1.72;
}

.text-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 8px;
  padding-inline: 10px;
  color: var(--emerald-deep);
  font-weight: 800;
}

.text-link span {
  color: var(--coral);
  font-size: 1.25rem;
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translateY(4px);
}

.hero-facts {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 10px;
  padding-right: 26px;
  border-right: 1px solid var(--border);
}

.hero-facts li:last-child {
  padding-right: 0;
  border-right: 0;
}

.hero-facts strong {
  color: var(--emerald);
  font-family: "Rubik", sans-serif;
  font-size: 2.2rem;
  line-height: 1;
}

.hero-facts svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--emerald);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-facts span {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.3;
}

.hero-stage {
  position: relative;
  min-width: 0;
  min-height: clamp(520px, 63vw, 720px);
  margin: 0;
  isolation: isolate;
}

.hero-halo {
  position: absolute;
  top: 50%;
  left: 54%;
  z-index: -2;
  width: min(45vw, 610px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, .95), transparent 28%),
    linear-gradient(145deg, rgba(255, 229, 167, .96), rgba(207, 233, 201, .95));
  box-shadow: inset 0 0 0 18px rgba(255, 255, 255, .16), var(--shadow-lg);
  transform: translate(-50%, -50%);
}

.hero-halo::before,
.hero-halo::after {
  position: absolute;
  border: 2px dashed rgba(21, 95, 67, .16);
  border-radius: 50%;
  content: "";
}

.hero-halo::before {
  inset: -22px;
}

.hero-halo::after {
  inset: 26px;
  border-color: rgba(242, 184, 75, .28);
}

.machine-art {
  position: absolute;
  right: -5%;
  bottom: 7%;
  z-index: 2;
  width: 78%;
  border-radius: 24px;
  filter: drop-shadow(0 30px 28px rgba(24, 54, 44, .22));
  animation: machine-in .75s .15s both var(--ease);
}

.finn-art {
  position: absolute;
  bottom: 3%;
  left: -12%;
  z-index: 3;
  width: 50%;
  filter: drop-shadow(0 26px 20px rgba(24, 54, 44, .2));
  animation: finn-in .8s .3s both var(--ease);
}

.concept-label {
  position: absolute;
  right: 4%;
  bottom: 1%;
  z-index: 5;
  padding: 8px 13px;
  border: 1px solid rgba(24, 54, 44, .12);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, .82);
  font-size: .72rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.finn-bubble {
  position: absolute;
  top: 18%;
  left: 8%;
  z-index: 6;
  padding: 13px 18px;
  border: 1px solid rgba(24, 54, 44, .08);
  border-radius: 18px 18px 18px 4px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  font-family: "Rubik", sans-serif;
  font-size: .9rem;
  font-weight: 700;
  transform: rotate(-3deg);
  animation: bubble-in .55s .85s both var(--ease);
}

.spark {
  position: absolute;
  z-index: 1;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 8px rgba(242, 184, 75, .16);
  animation: spark-in .8s 1 both var(--ease);
}

.spark-one { top: 15%; right: 7%; animation-delay: .55s; }
.spark-two { top: 42%; right: -1%; width: 9px; height: 9px; animation-delay: .75s; }
.spark-three { right: 11%; bottom: 21%; width: 11px; height: 11px; animation-delay: .95s; }

.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  display: flex;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  font-size: .75rem;
  font-weight: 700;
  transform: translateX(-50%);
}

.scroll-cue svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes machine-in {
  from { opacity: 0; transform: translate3d(50px, 24px, 0) scale(.96); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes finn-in {
  from { opacity: 0; transform: translate3d(-50px, 28px, 0) rotate(-4deg); }
  to { opacity: 1; transform: translate3d(0, 0, 0) rotate(0); }
}

@keyframes bubble-in {
  from { opacity: 0; transform: translate3d(-10px, 12px, 0) scale(.9) rotate(-3deg); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1) rotate(-3deg); }
}

@keyframes spark-in {
  from { opacity: 0; transform: scale(.2); }
  to { opacity: 1; transform: scale(1); }
}

.section-heading {
  max-width: 790px;
  margin-bottom: clamp(44px, 7vw, 88px);
}

.section-heading > p:last-child {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading-center {
  margin-inline: auto;
  text-align: center;
}

.journey {
  position: relative;
  overflow: clip;
  border-radius: 64px 64px 0 0;
  background: var(--paper);
}

.journey::before {
  position: absolute;
  top: 8%;
  right: -9rem;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  content: "";
  background: rgba(207, 233, 201, .55);
  filter: blur(2px);
}

.journey-layout {
  display: grid;
  grid-template-columns: minmax(420px, .92fr) minmax(0, 1.08fr);
  align-items: start;
  gap: clamp(48px, 7vw, 110px);
}

.journey-visual {
  position: sticky;
  top: calc(var(--header-height) + 46px);
  min-height: 580px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #f9ebbd, #dcefd7 68%, #fff);
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}

.journey-visual > img {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 82%;
  border-radius: 22px;
  filter: drop-shadow(0 28px 24px rgba(24, 54, 44, .2));
  transform: translate(-50%, -42%);
  transition: transform .55s var(--ease), filter .35s ease;
}

.visual-orbit {
  position: absolute;
  z-index: 0;
  border: 2px dashed rgba(21, 95, 67, .16);
  border-radius: 50%;
}

.orbit-one { inset: 48px; }
.orbit-two { inset: 108px; border-color: rgba(242, 184, 75, .28); }

.tap-lights {
  position: absolute;
  top: 39%;
  left: 50%;
  z-index: 4;
  display: flex;
  gap: 58px;
  transform: translateX(-50%);
}

.tap-lights span {
  width: 15px;
  height: 15px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 8px rgba(242, 184, 75, .2), 0 0 28px rgba(242, 184, 75, .8);
  opacity: .22;
  transform: scale(.7);
  transition: opacity .25s ease, transform .25s var(--ease);
}

.journey-visual[data-active="lines"] .tap-lights span:nth-child(1),
.journey-visual[data-active="lines"] .tap-lights span:nth-child(2),
.journey-visual[data-active="lines"] .tap-lights span:nth-child(3) {
  opacity: 1;
  transform: scale(1);
}

.screen-card {
  position: absolute;
  right: 26px;
  bottom: 28px;
  z-index: 5;
  display: grid;
  width: 178px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 20px;
  color: var(--white);
  background: rgba(13, 68, 50, .92);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .3s ease, transform .3s var(--ease);
}

.screen-card-label,
.screen-card small {
  opacity: .72;
  font-size: .66rem;
}

.screen-card strong {
  margin-block: 2px 4px;
  font-family: "Rubik", sans-serif;
  font-size: 1.65rem;
}

.journey-visual[data-active="stats"] .screen-card,
.journey-visual[data-active="cabinet"] .screen-card {
  opacity: 1;
  transform: translateY(0);
}

.journey-visual[data-active="control"] > img { transform: translate(-50%, -42%) scale(1.04); }
.journey-visual[data-active="stats"] > img { transform: translate(-54%, -42%) scale(.94); filter: drop-shadow(0 28px 24px rgba(24, 54, 44, .16)) saturate(.92); }
.journey-visual[data-active="cabinet"] > img { transform: translate(-59%, -42%) scale(.89); }

.visual-note {
  position: absolute;
  z-index: 6;
  display: grid;
  max-width: 210px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, .93);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(12px) scale(.96);
  transition: opacity .25s ease, transform .35s var(--ease);
}

.visual-note strong {
  color: var(--emerald-deep);
  font-family: "Rubik", sans-serif;
  font-size: .92rem;
}

.visual-note span {
  color: var(--muted);
  font-size: .7rem;
  line-height: 1.35;
}

.visual-note-lines { top: 28px; left: 28px; }
.visual-note-control { top: 28px; right: 28px; }
.visual-note-stats { top: 28px; left: 28px; }
.visual-note-cabinet { top: 28px; right: 28px; }

.journey-visual[data-active="lines"] .visual-note-lines,
.journey-visual[data-active="control"] .visual-note-control,
.journey-visual[data-active="stats"] .visual-note-stats,
.journey-visual[data-active="cabinet"] .visual-note-cabinet {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.journey-steps {
  display: grid;
  gap: 22px;
}

.journey-step {
  position: relative;
  display: grid;
  min-height: 272px;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto 1fr;
  gap: 0 22px;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .74);
  opacity: .58;
  transition: opacity .3s ease, transform .35s var(--ease), border-color .3s ease, box-shadow .3s ease;
}

.journey-step.is-active {
  border-color: rgba(21, 95, 67, .32);
  box-shadow: var(--shadow-sm);
  opacity: 1;
  transform: translateX(-10px);
}

.step-number {
  position: absolute;
  top: 20px;
  right: 24px;
  color: rgba(21, 95, 67, .16);
  font-family: "Rubik", sans-serif;
  font-size: 2.9rem;
  font-weight: 800;
  line-height: 1;
}

.step-icon,
.feature-icon {
  display: grid;
  width: 56px;
  height: 56px;
  grid-row: 1 / span 3;
  place-items: center;
  border-radius: 18px;
  color: var(--emerald);
  background: var(--mint);
}

.step-icon svg,
.feature-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.journey-step h3 {
  max-width: 380px;
  margin: 8px 0 15px;
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
}

.journey-step p {
  max-width: 470px;
  margin-bottom: 0;
  color: var(--muted);
}

.features {
  background: var(--cream);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.feature-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.feature-card h3 {
  max-width: 520px;
  margin: 20px 0 14px;
  font-size: clamp(1.55rem, 3vw, 2.5rem);
}

.feature-card p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
}

.feature-card-large {
  display: grid;
  min-height: 430px;
  grid-column: 1 / -1;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 40px;
  background: linear-gradient(145deg, var(--white), #f6f0d8);
}

.feature-kicker {
  color: var(--emerald-soft);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.tap-demo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.tap-demo > div {
  position: relative;
  display: grid;
  min-height: 238px;
  place-items: center;
  padding: 22px 12px;
  border: 1px solid rgba(21, 95, 67, .13);
  border-radius: 26px;
  background: rgba(255, 255, 255, .78);
}

.tap-demo span {
  position: absolute;
  top: 15px;
  left: 16px;
  color: rgba(21, 95, 67, .4);
  font-family: "Rubik", sans-serif;
  font-size: .72rem;
}

.tap-demo i {
  position: relative;
  width: 20px;
  height: 110px;
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(90deg, #b9c5c0, #fff, #899a94);
  box-shadow: 0 14px 20px rgba(24, 54, 44, .14);
}

.tap-demo i::before {
  position: absolute;
  top: -28px;
  left: 50%;
  width: 40px;
  height: 58px;
  border-radius: 12px 12px 7px 7px;
  content: "";
  background: var(--emerald);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, .14);
  transform: translateX(-50%);
}

.tap-demo i::after {
  position: absolute;
  right: -26px;
  bottom: 6px;
  width: 32px;
  height: 15px;
  border-radius: 0 999px 999px 0;
  content: "";
  background: #ccd4d1;
}

.tap-demo b {
  color: var(--emerald-deep);
  font-size: .82rem;
}

.feature-card-mint {
  background: linear-gradient(145deg, #edf8ea, #d8eed2);
}

.feature-card-gold {
  background: linear-gradient(145deg, #fff5d5, #ffe09a);
}

.feature-card-gold .feature-icon {
  color: #7b5100;
  background: rgba(255, 255, 255, .62);
}

.feature-card-dark {
  display: grid;
  min-height: 500px;
  grid-column: 1 / -1;
  grid-template-columns: 1fr minmax(280px, .7fr);
  align-items: center;
  gap: 40px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(242, 184, 75, .2), transparent 17rem),
    var(--emerald-deep);
}

.feature-card-dark .feature-kicker,
.feature-card-dark p {
  color: rgba(255, 255, 255, .72);
}

.phone-mock {
  position: relative;
  width: min(100%, 310px);
  aspect-ratio: .58;
  justify-self: center;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 42px;
  background: #0b2019;
  box-shadow: 0 34px 50px rgba(0, 0, 0, .3), inset 0 0 0 2px rgba(255, 255, 255, .08);
  transform: rotate(4deg);
}

.phone-top {
  position: absolute;
  top: 19px;
  left: 50%;
  z-index: 3;
  width: 72px;
  height: 20px;
  border-radius: 999px;
  background: #07130f;
  transform: translateX(-50%);
}

.phone-screen {
  height: 100%;
  padding: 56px 18px 22px;
  border-radius: 31px;
  color: var(--ink);
  background: linear-gradient(160deg, #fffdf6, #eaf6e7);
}

.phone-screen > span {
  display: block;
  margin-bottom: 34px;
  color: var(--emerald-deep);
  font-family: "Rubik", sans-serif;
  font-weight: 800;
}

.status-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 10px;
  border-radius: 12px;
  background: rgba(207, 233, 201, .75);
  font-size: .68rem;
}

.status-row i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 4px rgba(21, 95, 67, .12);
}

.metric-row {
  display: grid;
  margin-bottom: 22px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
}

.metric-row small { color: var(--muted); font-size: .65rem; }
.metric-row strong { color: var(--emerald-deep); font-family: "Rubik", sans-serif; font-size: 1.85rem; }

.mini-bars {
  display: flex;
  height: 82px;
  align-items: end;
  gap: 8px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .65);
}

.mini-bars i {
  width: 20%;
  border-radius: 5px 5px 2px 2px;
  background: var(--amber);
}

.mini-bars i:nth-child(1) { height: 30%; }
.mini-bars i:nth-child(2) { height: 48%; }
.mini-bars i:nth-child(3) { height: 42%; }
.mini-bars i:nth-child(4) { height: 75%; }
.mini-bars i:nth-child(5) { height: 90%; background: var(--emerald); }

.steps-section {
  overflow: hidden;
  background: var(--paper);
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list::before {
  position: absolute;
  top: 42px;
  right: 17%;
  left: 17%;
  z-index: 0;
  height: 3px;
  content: "";
  background: repeating-linear-gradient(90deg, var(--amber) 0 12px, transparent 12px 22px);
}

.process-list li {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  padding: 0 24px;
  text-align: center;
}

.process-list li > span {
  display: grid;
  width: 84px;
  height: 84px;
  margin-bottom: 24px;
  place-items: center;
  border: 8px solid var(--paper);
  border-radius: 50%;
  color: var(--white);
  background: var(--emerald);
  box-shadow: 0 0 0 1px rgba(21, 95, 67, .14), var(--shadow-sm);
  font-family: "Rubik", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
}

.process-list h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.faq {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: clamp(50px, 8vw, 120px);
}

.faq .section-heading {
  position: sticky;
  top: calc(var(--header-height) + 40px);
  margin-bottom: 0;
}

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

.faq details {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, .68);
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.faq details[open] {
  border-color: rgba(21, 95, 67, .34);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.faq summary {
  position: relative;
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px;
  cursor: pointer;
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  list-style: none;
}

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

.faq summary span {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.faq summary span::before,
.faq summary span::after {
  position: absolute;
  top: 9px;
  left: 2px;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  content: "";
  background: var(--emerald);
  transition: transform .2s ease;
}

.faq summary span::after { transform: rotate(90deg); }
.faq details[open] summary span::after { transform: rotate(0); }

.faq details p {
  max-width: 720px;
  margin: -4px 24px 22px;
  color: var(--muted);
}

.lead-section {
  position: relative;
  overflow: hidden;
  padding-bottom: clamp(92px, 10vw, 150px);
  background: linear-gradient(145deg, #dff0d9, #fff1c9 66%, #ffe0cf);
}

.lead-section::before {
  position: absolute;
  top: -12rem;
  right: -6rem;
  width: 36rem;
  height: 36rem;
  border: 2px dashed rgba(21, 95, 67, .16);
  border-radius: 50%;
  content: "";
}

.lead-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, .78fr) minmax(520px, 1.22fr);
  align-items: end;
  gap: clamp(32px, 6vw, 90px);
}

.lead-art {
  position: relative;
  min-height: 690px;
}

.lead-art-halo {
  position: absolute;
  bottom: 5%;
  left: 49%;
  width: min(40vw, 500px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, .6);
  box-shadow: inset 0 0 0 22px rgba(255, 255, 255, .18);
  transform: translateX(-50%);
}

.lead-art img {
  position: absolute;
  bottom: -9%;
  left: 50%;
  width: min(100%, 500px);
  filter: drop-shadow(0 30px 26px rgba(24, 54, 44, .22));
  transform: translateX(-50%);
}

.lead-bubble {
  position: absolute;
  top: 8%;
  right: -2%;
  z-index: 3;
  padding: 18px 22px;
  border: 1px solid rgba(24, 54, 44, .08);
  border-radius: 22px 22px 22px 5px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  font-size: .88rem;
  line-height: 1.45;
  transform: rotate(3deg);
}

.lead-bubble strong {
  color: var(--emerald);
  font-family: "Rubik", sans-serif;
  font-size: 1.08rem;
}

.lead-card {
  position: relative;
  z-index: 4;
  padding: clamp(30px, 5vw, 60px);
  border: 1px solid rgba(255, 255, 255, .85);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, .88);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
}

.lead-card h2 {
  max-width: 690px;
  font-size: clamp(2.35rem, 5vw, 4.4rem);
}

.lead-intro {
  max-width: 600px;
  margin-bottom: 34px;
  color: var(--muted);
}

#leadForm {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.field {
  display: grid;
  align-content: start;
}

.field:nth-child(3),
.field-checkbox,
.button-submit,
.prototype-note,
.form-status {
  grid-column: 1 / -1;
}

.field label {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: .84rem;
  font-weight: 800;
}

.field label > span:not(.optional) {
  color: var(--coral);
}

.optional {
  margin-left: 4px;
  color: var(--muted);
  font-size: .67rem;
  font-weight: 600;
}

.field input:not([type="checkbox"]) {
  width: 100%;
  min-height: 54px;
  padding: 13px 16px;
  border: 1px solid rgba(24, 54, 44, .2);
  border-radius: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, .9);
  font-size: 16px;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.field input:not([type="checkbox"])::placeholder {
  color: #82938d;
}

.field input:not([type="checkbox"]):hover {
  border-color: rgba(21, 95, 67, .45);
}

.field input:not([type="checkbox"]):focus {
  border-color: var(--emerald);
  outline: none;
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(21, 95, 67, .12);
}

.field.is-invalid input:not([type="checkbox"]) {
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(217, 101, 76, .1);
}

.field-hint,
.field-error {
  min-height: 19px;
  margin: 5px 0 0;
  font-size: .7rem;
  line-height: 1.45;
}

.field-hint { color: var(--muted); }
.field-error { color: #a6321c; font-weight: 700; }

.field-checkbox {
  position: relative;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 0 11px;
  margin-top: 2px;
}

.field-checkbox input {
  width: 22px;
  height: 22px;
  margin: 2px 0 0;
  accent-color: var(--emerald);
}

.field-checkbox label {
  margin: 0;
  color: var(--muted);
  font-size: .77rem;
  font-weight: 600;
  line-height: 1.5;
}

.field-checkbox a,
.prototype-note a {
  color: var(--emerald-deep);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(21, 95, 67, .35);
  text-underline-offset: 3px;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.field-checkbox .field-error {
  grid-column: 2;
}

.button-submit {
  min-height: 58px;
  width: 100%;
  margin-top: 4px;
  border: 0;
  font-size: 1rem;
}

.button-submit[disabled] {
  cursor: wait;
  opacity: .64;
  transform: none;
}

.prototype-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: .69rem;
}

.prototype-note svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-status {
  display: none;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: .84rem;
  font-weight: 700;
}

.form-status.is-success {
  display: block;
  color: #0d5139;
  background: #dff3e9;
}

.form-status.is-error {
  display: block;
  color: #8c2918;
  background: #fde5df;
}

.guide-dock {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  display: grid;
  width: 350px;
  min-height: 150px;
  grid-template-columns: 1fr 105px;
  align-items: end;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(30px, 30px, 0);
  transition: opacity .3s ease, transform .4s var(--ease);
}

.guide-dock.is-visible {
  pointer-events: auto;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.guide-dock.is-dismissed {
  display: none;
}

.guide-dock img {
  position: relative;
  z-index: 2;
  width: 116px;
  height: 155px;
  justify-self: end;
  object-fit: cover;
  object-position: 50% 16%;
  filter: drop-shadow(0 12px 12px rgba(24, 54, 44, .22));
}

.guide-message {
  position: relative;
  z-index: 3;
  align-self: center;
  margin-right: -8px;
  padding: 15px 17px;
  border: 1px solid var(--border);
  border-radius: 18px 18px 4px 18px;
  background: rgba(255, 253, 248, .95);
  box-shadow: var(--shadow-sm);
  font-size: .74rem;
  font-weight: 700;
  line-height: 1.45;
  backdrop-filter: blur(12px);
}

.guide-close {
  position: absolute;
  top: 8px;
  right: 0;
  z-index: 5;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.guide-close svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.guide-progress {
  position: absolute;
  right: 18px;
  bottom: 0;
  left: 0;
  z-index: 4;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(24, 54, 44, .12);
}

.guide-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--amber);
  transition: width .25s ease;
}

.mobile-cta {
  display: none;
}

.site-footer {
  color: rgba(255, 255, 255, .72);
  background: #092f23;
}

.footer-layout {
  display: grid;
  min-height: 170px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 42px;
}

.footer-brand,
.footer-brand .brand-mark {
  color: var(--white);
}

.site-footer p {
  margin: 0;
  text-align: center;
  font-size: .75rem;
}

.site-footer a:not(.brand) {
  color: rgba(255, 255, 255, .82);
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  font-size: .75rem;
  font-weight: 700;
}

.js .reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity .6s ease, transform .7s var(--ease);
}

.js .reveal.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 1100px) {
  :root { --header-height: 76px; }

  .nav-links { display: none; }
  .hero { grid-template-columns: minmax(0, .9fr) minmax(400px, 1.1fr); }
  .hero-facts { gap: 16px; }
  .hero-facts li { padding-right: 16px; }
  .finn-art { left: -6%; width: 48%; }
  .journey-layout { grid-template-columns: minmax(360px, .86fr) 1.14fr; gap: 46px; }
  .journey-visual { min-height: 530px; }
  .tap-lights { gap: 48px; }
}

@media (max-width: 880px) {
  .shell { width: min(calc(100% - 36px), var(--shell)); }
  .section { padding-block: 86px; }
  .header-cta { display: none; }
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 16px;
    padding-block: 42px 74px;
  }
  .hero-copy { max-width: 700px; }
  .hero h1 { font-size: clamp(3.4rem, 12vw, 5.8rem); }
  .hero-stage { min-height: 610px; }
  .hero-halo { width: min(76vw, 570px); }
  .machine-art { right: 0; width: 74%; }
  .finn-art { left: 3%; width: 42%; }
  .finn-bubble { left: 16%; }
  .scroll-cue { display: none; }

  .journey { border-radius: 42px 42px 0 0; }
  .journey-layout { grid-template-columns: 1fr; }
  .journey-visual {
    position: relative;
    top: auto;
    min-height: 560px;
  }
  .journey-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .journey-step { min-height: 290px; padding: 28px; opacity: 1; }
  .journey-step.is-active { transform: none; }

  .feature-card-large { grid-template-columns: 1fr; }
  .feature-card-dark { grid-template-columns: 1fr 310px; }

  .faq { grid-template-columns: 1fr; gap: 28px; }
  .faq .section-heading { position: static; }

  .lead-layout { grid-template-columns: minmax(240px, .72fr) minmax(420px, 1.28fr); gap: 18px; }
  .lead-art { min-height: 610px; }
  .lead-bubble { right: -18%; }

  .guide-dock { display: none; }
  .mobile-cta {
    position: fixed;
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    left: max(14px, env(safe-area-inset-left));
    z-index: 850;
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 999px;
    color: var(--white);
    background: var(--emerald);
    box-shadow: 0 14px 36px rgba(13, 68, 50, .32);
    font-weight: 800;
    transition: opacity .25s ease, transform .3s var(--ease);
  }
  .mobile-cta.is-hidden {
    pointer-events: none;
    opacity: 0;
    transform: translateY(120%);
  }
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }

  .footer-layout { grid-template-columns: 1fr; gap: 14px; padding-block: 42px 110px; text-align: center; }
  .footer-brand { justify-self: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 680px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .site-header { height: 70px; }
  :root { --header-height: 70px; }
  .brand { gap: 6px; font-size: 1.08rem; }
  .brand-mark { width: 34px; height: 34px; }
  .nav { gap: 10px; }
  .login-button { min-height: 46px; padding-inline: 14px; }
  .login-full { display: none; }
  .login-short { display: inline; }

  .hero { padding-top: 34px; }
  .hero h1 { font-size: clamp(2.05rem, 10.4vw, 3.4rem); letter-spacing: -.055em; }
  .hero-lead { font-size: 1rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button,
  .hero-actions .text-link { width: 100%; justify-content: center; }
  .hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 32px; }
  .hero-facts li { justify-content: center; padding: 0 8px; }
  .hero-facts strong { font-size: 1.8rem; }
  .hero-facts svg { width: 26px; height: 26px; }
  .hero-facts span { font-size: .65rem; }
  .hero-stage { min-height: 450px; }
  .hero-halo { width: min(86vw, 430px); }
  .machine-art { right: 0; bottom: 4%; width: 83%; }
  .finn-art { bottom: 0; left: -4%; width: 47%; }
  .finn-bubble { top: 14%; left: 4%; padding: 10px 13px; font-size: .7rem; }
  .concept-label { right: 0; bottom: -4px; }

  .section-heading { margin-bottom: 42px; }
  h2 { font-size: clamp(2.35rem, 12vw, 3.4rem); }
  .journey { border-radius: 30px 30px 0 0; }
  .journey-visual { min-height: 430px; }
  .journey-visual > img { width: 88%; }
  .orbit-one { inset: 26px; }
  .orbit-two { inset: 72px; }
  .tap-lights { gap: 40px; }
  .screen-card { right: 15px; bottom: 15px; width: 155px; padding: 13px; }
  .screen-card strong { font-size: 1.3rem; }
  .visual-note { top: 15px; right: auto; left: 15px; max-width: 165px; padding: 10px 12px; }
  .journey-steps { grid-template-columns: 1fr; }
  .journey-step { min-height: auto; grid-template-columns: auto 1fr; padding: 26px 22px; }
  .journey-step h3 { padding-right: 40px; }
  .step-icon { width: 50px; height: 50px; }
  .step-number { top: 18px; right: 18px; font-size: 2.2rem; }

  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: auto; border-radius: 26px; }
  .feature-card-large,
  .feature-card-dark { grid-column: auto; }
  .feature-card-large { min-height: 620px; gap: 20px; }
  .tap-demo { gap: 8px; }
  .tap-demo > div { min-height: 210px; padding-inline: 5px; border-radius: 18px; }
  .tap-demo i { height: 92px; }
  .tap-demo b { font-size: .63rem; }
  .feature-card-dark { grid-template-columns: 1fr; }
  .phone-mock { margin-top: 20px; }

  .process-list { grid-template-columns: 1fr; gap: 30px; }
  .process-list::before { top: 42px; bottom: 42px; left: 41px; width: 3px; height: auto; background: repeating-linear-gradient(180deg, var(--amber) 0 12px, transparent 12px 22px); }
  .process-list li { grid-template-columns: 84px 1fr; justify-items: start; align-items: center; gap: 18px; padding: 0; text-align: left; }
  .process-list li > span { margin: 0; }

  .faq summary { padding-inline: 18px; font-size: .93rem; }
  .faq details p { margin-inline: 18px; }

  .lead-layout { grid-template-columns: 1fr; }
  .lead-art { min-height: 410px; order: 2; }
  .lead-art-halo { width: min(90vw, 400px); }
  .lead-art img { bottom: -26%; width: min(88%, 370px); }
  .lead-bubble { top: 10%; right: 6%; }
  .lead-card { order: 1; border-radius: 26px; }
  #leadForm { grid-template-columns: 1fr; }
  .field:nth-child(3),
  .field-checkbox,
  .button-submit,
  .prototype-note,
  .form-status { grid-column: auto; }
}

@media (max-width: 380px) {
  .brand span { font-size: .98rem; }
  .login-button svg { display: none; }
  .hero-facts li { gap: 5px; padding-inline: 4px; }
  .hero-facts span { font-size: .59rem; }
  .hero-stage { min-height: 405px; }
  .journey-visual { min-height: 390px; }
  .tap-lights { display: none; }
}

@media (max-width: 880px) and (max-height: 520px) and (orientation: landscape) {
  .hero {
    gap: 8px;
    padding-top: 26px;
  }

  .hero h1 {
    font-size: clamp(3rem, 7vw, 3.8rem);
  }

  .hero-stage {
    min-height: 500px;
  }

  .mobile-cta {
    display: none;
  }

  body {
    padding-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .js .reveal,
  .js .reveal.is-revealed,
  .journey-step,
  .journey-step.is-active,
  .guide-dock.is-visible {
    opacity: 1;
    transform: none;
  }
}
