﻿@font-face {
  font-family: "Bricolage Grotesque";
  src: url("assets/fonts/bricolage-grotesque-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bricolage Grotesque";
  src: url("assets/fonts/bricolage-grotesque-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bricolage Grotesque";
  src: url("assets/fonts/bricolage-grotesque-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Sans";
  src: url("assets/fonts/instrument-sans-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Sans";
  src: url("assets/fonts/instrument-sans-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Sans";
  src: url("assets/fonts/instrument-sans-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Sans";
  src: url("assets/fonts/instrument-sans-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("assets/fonts/space-grotesk-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --paper: #fbf8f2;
  --surface: #ffffff;
  --ink: #1a1712;
  --muted: #8a8175;
  --line: #efe8db;
  --coral: #ec5b33;
  --indigo: #5b5bd6;
  --display: "Bricolage Grotesque", system-ui, "Segoe UI", Arial, sans-serif;
  --body: "Instrument Sans", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --mono: "Space Grotesk", ui-monospace, "SFMono-Regular", Consolas, monospace;
  --shadow-soft: 0 20px 60px color-mix(in srgb, var(--ink) 10%, transparent);
  --shadow-small: 0 8px 24px color-mix(in srgb, var(--ink) 7%, transparent);
  --page: min(1184px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--indigo);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--surface);
  text-decoration: none;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 78%, transparent);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: var(--page);
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand img {
  width: 38px;
  height: 38px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  position: relative;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.nav-links a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.button {
  min-height: 48px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-small);
}

.button.primary {
  border-color: var(--coral);
  background: var(--coral);
  color: var(--surface);
}

.button.secondary {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--surface);
}

.button svg {
  width: 18px;
  height: 18px;
}

.hero {
  width: var(--page);
  min-height: calc(100svh - 76px);
  margin: 0 auto;
  padding: 72px 0 88px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.8fr);
  align-items: center;
  gap: clamp(48px, 8vw, 112px);
}

.eyebrow,
.section-kicker,
.meta-label {
  margin: 0 0 16px;
  color: var(--coral);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section-head h2,
.story-copy h2,
.privacy-copy h2,
.cta-panel h2,
.page-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(58px, 7.2vw, 104px);
}

.hero-lead {
  max-width: 600px;
  margin: 28px 0 0;
  color: color-mix(in srgb, var(--ink) 76%, var(--muted));
  font-size: clamp(20px, 2.1vw, 25px);
  line-height: 1.45;
  text-wrap: pretty;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-visual {
  position: relative;
  min-height: 690px;
  display: grid;
  place-items: center;
}

.hero-orbit {
  position: absolute;
  width: min(530px, 100%);
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.hero-orbit::before,
.hero-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.hero-orbit::before {
  inset: 11%;
  border: 1px solid var(--line);
}

.hero-orbit::after {
  top: 50%;
  left: -7px;
  width: 14px;
  height: 14px;
  background: var(--coral);
  box-shadow: 0 0 0 8px color-mix(in srgb, var(--coral) 16%, transparent);
}

.phone {
  position: relative;
  z-index: 1;
  width: min(335px, 76vw);
  aspect-ratio: 9 / 19.45;
  padding: 10px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 46px;
  background: var(--ink);
  box-shadow: var(--shadow-soft);
  transform: rotate(2deg);
}

.phone::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  z-index: 3;
  width: 92px;
  height: 24px;
  border-radius: 999px;
  background: var(--ink);
  transform: translateX(-50%);
}

.phone img {
  width: 100%;
  height: 100%;
  border-radius: 36px;
  object-fit: cover;
}

.now-chip {
  position: absolute;
  right: 0;
  bottom: 120px;
  z-index: 2;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: var(--shadow-small);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
}

.now-chip::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-right: 9px;
  display: inline-block;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--coral) 14%, transparent);
}

.principles {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.principles-grid {
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.principle {
  min-height: 220px;
  padding: 48px;
  border-right: 1px solid var(--line);
}

.principle:first-child {
  border-left: 1px solid var(--line);
}

.principle span {
  color: var(--coral);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.1em;
}

.principle h2 {
  margin: 28px 0 10px;
  font-family: var(--display);
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.principle p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.section {
  padding: 120px 0;
}

.section-inner {
  width: var(--page);
  margin: 0 auto;
}

.section-head {
  max-width: 850px;
  margin-bottom: 64px;
}

.section-head h2,
.story-copy h2,
.privacy-copy h2,
.cta-panel h2 {
  font-size: clamp(46px, 5.4vw, 78px);
}

.section-head p,
.story-copy > p,
.privacy-copy > p {
  max-width: 670px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
  text-wrap: pretty;
}

.timeline-demo {
  position: relative;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 24px;
}

.timeline-demo::before {
  content: "";
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 98px;
  width: 1px;
  background: var(--line);
}

.time-labels,
.agenda {
  display: grid;
  gap: 16px;
}

.time-label {
  min-height: 142px;
  padding-top: 18px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 14px;
}

.agenda-card {
  position: relative;
  min-height: 142px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  gap: 8px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow-small);
}

.agenda-card::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 0;
  width: 4px;
  border-radius: 0 999px 999px 0;
  background: var(--indigo);
}

.agenda-card.current::before {
  background: var(--coral);
}

.agenda-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 25px;
  letter-spacing: -0.025em;
}

.agenda-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.agenda-meta {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
}

.story {
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(56px, 9vw, 132px);
}

.story.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
}

.story.reverse .story-visual {
  order: 2;
}

.story-visual {
  position: relative;
  min-height: 680px;
  display: grid;
  place-items: center;
}

.story-visual::before {
  content: "";
  position: absolute;
  inset: 10% 0;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.story-phone {
  position: relative;
  width: min(320px, 75vw);
  height: 650px;
  padding: 8px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 44px;
  background: var(--ink);
}

.story-phone img {
  width: 100%;
  height: 100%;
  border-radius: 36px;
  object-fit: cover;
}

.story-phone.editor img {
  object-position: 50% 8%;
}

.feature-list {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  border-bottom: 1px solid var(--line);
}

.feature-list li:first-child {
  border-top: 1px solid var(--line);
}

.feature-list strong {
  display: block;
  margin-bottom: 3px;
  font-size: 17px;
}

.feature-list span {
  color: var(--muted);
  font-size: 15px;
}

.feature-index {
  color: var(--coral);
  font-family: var(--mono);
  font-size: 13px;
}

.scan-strip {
  margin-top: 56px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow-small);
}

.scan-strip img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: left center;
}

.privacy {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.privacy-inner {
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 72px;
}

.privacy-list {
  display: grid;
  gap: 12px;
}

.privacy-item {
  min-height: 96px;
  padding: 20px 22px;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
}

.privacy-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--surface);
  color: var(--indigo);
}

.privacy-icon svg {
  width: 22px;
  height: 22px;
}

.privacy-item strong {
  display: block;
}

.privacy-item span {
  color: var(--muted);
  font-size: 14px;
}

.cta {
  padding: 120px 0;
}

.cta-panel {
  width: var(--page);
  min-height: 500px;
  margin: 0 auto;
  padding: clamp(40px, 8vw, 96px);
  display: grid;
  align-content: center;
  justify-items: start;
  border: 1px solid var(--ink);
  border-radius: 22px;
  background: var(--ink);
  color: var(--surface);
  box-shadow: var(--shadow-soft);
}

.cta-panel p {
  max-width: 620px;
  margin: 24px 0 34px;
  color: color-mix(in srgb, var(--surface) 74%, var(--muted));
  font-size: 20px;
}

.site-footer {
  border-top: 1px solid var(--line);
}

.footer-grid {
  width: var(--page);
  margin: 0 auto;
  padding: 56px 0 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
}

.footer-note {
  max-width: 380px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 12px 48px;
  align-content: start;
}

.footer-links a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--ink);
}

.footer-bottom {
  width: var(--page);
  margin: 0 auto;
  padding: 24px 0 32px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
}


.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

