:root {
  --ink: #0b1026;
  --night: #070918;
  --panel: rgba(20, 24, 58, .62);
  --line: rgba(232, 199, 123, .22);
  --gold: #e8c77b;
  --gold-hi: #fff1c1;
  --parchment: #f5f1e8;
  --mist: #aeb0c8;
  --moon: #9fb4ff;
  --blood: #ef4444;
  --serif: "New York", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--parchment);
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(244, 220, 146, .16), transparent 60%),
    radial-gradient(900px 600px at 10% 10%, rgba(64, 72, 160, .35), transparent 70%),
    linear-gradient(180deg, #0b1026 0%, #070918 55%, #05060f 100%);
  background-attachment: fixed;
  font: 17px/1.6 var(--sans);
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: -1; opacity: .7;
  background-image:
    radial-gradient(1.2px 1.2px at 20px 30px, #fff, transparent),
    radial-gradient(1px 1px at 120px 140px, #ffffffb0, transparent),
    radial-gradient(1.4px 1.4px at 210px 60px, #fff, transparent),
    radial-gradient(1px 1px at 300px 210px, #ffffff90, transparent),
    radial-gradient(1.2px 1.2px at 360px 110px, #fff, transparent);
  background-size: 400px 260px;
}

a { color: var(--gold); text-underline-offset: 3px; }
img { max-width: 100%; display: block; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 760px; }

/* Header */
.site-header { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--parchment); text-decoration: none; font: 700 21px/1 var(--serif); letter-spacing: .02em; }
.brand img { width: 38px; height: 38px; border-radius: 10px; box-shadow: 0 4px 16px #0009; }
.site-nav a { margin-left: 22px; color: var(--mist); text-decoration: none; font-size: 15px; font-weight: 500; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--parchment); }

/* Hero */
.hero { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; padding: 40px 0 72px; }
.hero h1 { font: 700 clamp(44px, 7vw, 76px)/1.02 var(--serif); margin: 18px 0 16px; letter-spacing: -.01em; }
.hero h1 em { font-style: normal; color: var(--gold); }
.lede { font-size: clamp(18px, 2.2vw, 22px); color: #d9d6e6; margin: 0 0 28px; max-width: 34ch; }
.app-icon { width: 96px; height: 96px; border-radius: 22px; box-shadow: 0 12px 40px #000c, 0 0 60px rgba(244, 220, 146, .25); }
.cta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.button {
  display: inline-flex; align-items: center; gap: 10px; padding: 13px 22px; border-radius: 999px;
  font-weight: 650; text-decoration: none; border: 1px solid var(--line);
  background: rgba(255, 255, 255, .06); color: var(--parchment); backdrop-filter: blur(12px);
}
.button.primary { background: linear-gradient(180deg, #f0d48f, #c89a44); color: #1d1405; border-color: #f7e2ad; box-shadow: 0 8px 28px rgba(232, 199, 123, .3); }
.button:hover { filter: brightness(1.08); }
.availability { display: block; margin-top: 16px; font-size: 14px; color: var(--mist); }
.devices { position: relative; min-height: 560px; }
.devices .phone { position: absolute; right: 12%; top: 0; width: 48%; border-radius: 36px; box-shadow: 0 30px 80px #000d; border: 1px solid #ffffff22; }
.devices .phone.second { right: 52%; top: 70px; width: 42%; opacity: .92; transform: rotate(-5deg); }

/* Sections */
section { padding: 56px 0; }
.eyebrow { font-size: 13px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin: 0 0 8px; }
h2 { font: 700 clamp(30px, 4vw, 44px)/1.12 var(--serif); margin: 0 0 16px; }
h3 { font: 700 21px/1.3 var(--serif); margin: 0 0 6px; }
.section-lede { color: #cfcce0; max-width: 60ch; margin: 0 0 32px; font-size: 18px; }

.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature { background: var(--panel); border: 1px solid var(--line); border-radius: 22px; padding: 22px; backdrop-filter: blur(14px); }
.feature p { margin: 0; color: #cfcce0; font-size: 16px; }
.feature .glyph { font-size: 26px; margin-bottom: 8px; display: block; }

.gallery { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(220px, 1fr); gap: 18px; overflow-x: auto; padding-bottom: 12px; scroll-snap-type: x mandatory; }
.gallery figure { margin: 0; scroll-snap-align: start; }
.gallery img { border-radius: 26px; border: 1px solid #ffffff1c; box-shadow: 0 18px 50px #000b; }
.gallery figcaption { margin-top: 10px; font-size: 15px; color: var(--mist); text-align: center; }

.roles { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.role { text-align: center; background: var(--panel); border: 1px solid var(--line); border-radius: 22px; padding: 22px 14px; }
.role img { width: 84px; height: 84px; margin: 0 auto 10px; filter: drop-shadow(0 8px 16px #000a); }
.role p { margin: 0; font-size: 15px; color: #cfcce0; }
.team { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--mist); margin-bottom: 8px !important; }

.steps { counter-reset: step; list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.steps li { counter-increment: step; display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: start; }
.steps li::before { content: counter(step); width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font: 700 18px var(--serif); color: var(--ink); background: linear-gradient(180deg, #f0d48f, #c89a44); }
.steps b { display: block; font-family: var(--serif); font-size: 19px; }
.steps span { color: #cfcce0; }

.band { background: var(--panel); border: 1px solid var(--line); border-radius: 28px; padding: 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.band ul { margin: 0; padding-left: 20px; color: #cfcce0; }
.band li { margin: 6px 0; }

/* Documents (privacy, support) */
.doc h1 { font: 700 clamp(34px, 5vw, 50px)/1.1 var(--serif); margin: 20px 0 8px; }
.doc .updated { color: var(--mist); margin: 0 0 28px; }
.doc h2 { font-size: 28px; margin: 40px 0 10px; }
.doc h3 { margin-top: 26px; }
.doc p, .doc li { color: #d9d6e6; }
.doc .summary { background: var(--panel); border: 1px solid var(--line); border-radius: 20px; padding: 6px 24px; }
details { border-bottom: 1px solid var(--line); padding: 14px 0; }
summary { cursor: pointer; font-weight: 650; font-size: 18px; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; float: right; color: var(--gold); font-weight: 400; }
details[open] summary::after { content: "–"; }
details p { margin: 10px 0 4px; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); margin-top: 40px; padding: 28px 0 56px; color: var(--mist); font-size: 14px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; }
.site-footer a { color: var(--mist); margin-right: 18px; }

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; padding-top: 12px; }
  .devices { min-height: 420px; }
  .features { grid-template-columns: 1fr; }
  .roles { grid-template-columns: repeat(2, 1fr); }
  .band { grid-template-columns: 1fr; padding: 24px; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
