/* Lodestead marketing site. Restrained: generous space, few words, real
   product UI rather than stock illustration. */

:root {
  --bg: #F1EDE7;
  --surface: rgba(255, 255, 255, .58);
  --surface-strong: rgba(255, 255, 255, .82);
  --text: #1D1D1F;
  --text-2: #6E6E73;
  --text-3: #A39B90;
  --line: rgba(29, 27, 24, .10);
  --accent: #3D73E0;
  --today: #D84B4B;
  --shadow: 0 20px 60px rgba(30, 30, 30, .08);
  --r: 24px;
  --body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Inter, system-ui, sans-serif;
}

* { margin: 0; box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--text);
  font-family: var(--body); font-size: 17px; line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; animation: none !important; } }

body::before {
  content: ''; position: fixed; inset: -20%; z-index: -1; pointer-events: none;
  background:
    radial-gradient(38% 40% at 14% 6%,  rgba(95,163,212,.20), transparent 70%),
    radial-gradient(34% 36% at 86% 12%, rgba(222,116,168,.14), transparent 70%),
    radial-gradient(42% 40% at 78% 86%, rgba(79,181,140,.14), transparent 70%);
  filter: blur(16px);
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 22px; }

/* ── nav ── */
.nav {
  position: sticky; top: 12px; z-index: 20; margin: 12px auto 0; max-width: 1080px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 9px 10px 9px 18px; border-radius: 999px;
  background: var(--surface-strong); box-shadow: var(--shadow), inset 0 0 0 1px rgba(255,255,255,.6);
  -webkit-backdrop-filter: blur(18px) saturate(170%); backdrop-filter: blur(18px) saturate(170%);
}
.brand { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 17px; letter-spacing: -.01em; }
.brand img { width: 26px; height: 26px; border-radius: 8px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { padding: 8px 13px; border-radius: 999px; font-size: 15px; font-weight: 500; color: var(--text-2); }
.nav-links a:hover { color: var(--text); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 20px; border-radius: 999px; font-size: 15.5px; font-weight: 600; cursor: pointer;
  transition: transform .12s, box-shadow .2s;
}
.btn.primary { background: var(--accent); color: #fff; box-shadow: 0 6px 18px rgba(61,115,224,.28); }
.btn.primary:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(61,115,224,.34); }
.btn.ghost { box-shadow: inset 0 0 0 1px var(--line); }
.btn.lg { padding: 14px 26px; font-size: 16.5px; }
@media (max-width: 720px) { .nav-links .hide-sm { display: none; } }

/* ── hero ── */
.hero { padding: 84px 0 40px; text-align: center; }
.hero h1 {
  font-size: clamp(42px, 8vw, 76px); line-height: 1.02; letter-spacing: -.035em;
  font-weight: 700; margin-bottom: 18px;
}
.hero p.sub { font-size: clamp(17px, 2.4vw, 21px); color: var(--text-2); max-width: 30ch; margin: 0 auto 28px; }
.hero-cta { display: flex; gap: 11px; justify-content: center; flex-wrap: wrap; }
.hero .price-note { margin-top: 16px; font-size: 14.5px; color: var(--text-3); }

/* ── device composition ── */
.stage { position: relative; margin: 46px auto 0; max-width: 960px; padding: 0 22px; }
.tablet {
  border-radius: 20px; overflow: hidden; background: #fff;
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255,255,255,.7);
  border: 8px solid #FFFFFFCC;
}
.tablet img, .phone img { display: block; width: 100%; height: auto; }
.phone {
  position: absolute; right: 4%; bottom: -8%; width: 27%; min-width: 150px;
  border-radius: 26px; overflow: hidden; background: #fff;
  border: 6px solid #FFFFFFCC;
  box-shadow: 0 24px 50px rgba(30,30,30,.18), inset 0 0 0 1px rgba(255,255,255,.7);
}
@media (max-width: 640px) { .phone { position: static; width: 62%; margin: -14% auto 0; } .stage { text-align: center; } }

/* ── sections ── */
section { padding: 78px 0; }
.eyebrow { font-size: 12.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--text-3); margin-bottom: 12px; }
h2 { font-size: clamp(30px, 5vw, 44px); line-height: 1.08; letter-spacing: -.025em; font-weight: 700; }
section p.lede { font-size: clamp(16px, 2vw, 19px); color: var(--text-2); max-width: 46ch; margin-top: 14px; }
.center { text-align: center; }
.center p.lede { margin-left: auto; margin-right: auto; }

.grid { display: grid; gap: 14px; margin-top: 38px; }
.g5 { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.card {
  background: var(--surface); border-radius: var(--r); padding: 26px 22px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.6), 0 2px 10px rgba(30,30,30,.04);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
}
.card h3 { font-size: 18px; font-weight: 650; letter-spacing: -.01em; margin-bottom: 6px; }
.card p { font-size: 15px; color: var(--text-2); }
.card .ico { width: 34px; height: 34px; margin-bottom: 14px; color: var(--accent); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 28px; } }
.shot { border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow), inset 0 0 0 1px rgba(255,255,255,.7); background: #fff; }
.shot img { display: block; width: 100%; height: auto; }

/* ── pricing ── */
.price-card {
  max-width: 420px; margin: 34px auto 0; text-align: center;
  background: var(--surface-strong); border-radius: 30px; padding: 34px 28px;
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255,255,255,.7);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
}
.price-card .plan { font-size: 14px; font-weight: 650; color: var(--text-2); }
.price-card .amount { font-size: 54px; font-weight: 700; letter-spacing: -.03em; margin: 8px 0 2px; }
.price-card .amount span { font-size: 19px; font-weight: 500; color: var(--text-2); letter-spacing: 0; }
.price-card .alt { font-size: 15px; color: var(--text-2); }
.price-card .alt b { color: var(--text); }
.price-card ul { list-style: none; text-align: left; margin: 24px 0; display: grid; gap: 10px; }
.price-card li { display: flex; gap: 10px; align-items: flex-start; font-size: 15.5px; }
.price-card li svg { flex: none; width: 19px; height: 19px; color: #3E9B74; margin-top: 2px; }
.trial-note { margin-top: 14px; font-size: 14px; color: var(--text-3); }

/* ── install sheet ── */
.scrim { position: fixed; inset: 0; background: rgba(29,27,24,.36); z-index: 40; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.sheet {
  position: fixed; z-index: 41; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: min(430px, calc(100vw - 32px)); max-height: 86vh; overflow-y: auto;
  background: var(--surface-strong); border-radius: 28px; padding: 26px;
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255,255,255,.7);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
}
.sheet h3 { font-size: 21px; font-weight: 700; letter-spacing: -.02em; }
.sheet ol { margin: 18px 0 0 0; padding-left: 0; list-style: none; display: grid; gap: 14px; counter-reset: s; }
.sheet li { display: flex; gap: 13px; font-size: 15.5px; counter-increment: s; }
.sheet li::before {
  content: counter(s); flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--accent); color: #fff; font-size: 13px; font-weight: 700;
  display: grid; place-items: center;
}
.sheet .close { position: absolute; top: 18px; right: 18px; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; box-shadow: inset 0 0 0 1px var(--line); }

/* ── footer ── */
footer { padding: 60px 0 44px; border-top: 1px solid var(--line); margin-top: 40px; }
.foot-links { display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: 14.5px; color: var(--text-2); }
.foot-links a:hover { color: var(--text); }
.foot-legal { margin-top: 22px; font-size: 13px; color: var(--text-3); }

/* ── legal pages ── */
.doc { max-width: 720px; margin: 0 auto; padding: 60px 22px 20px; }
.doc h1 { font-size: clamp(30px, 5vw, 42px); letter-spacing: -.025em; margin-bottom: 8px; }
.doc .updated { color: var(--text-3); font-size: 14.5px; margin-bottom: 34px; }
.doc h2 { font-size: 21px; margin: 34px 0 10px; letter-spacing: -.015em; }
.doc p, .doc li { color: var(--text-2); font-size: 16px; margin-bottom: 12px; }
.doc ul { padding-left: 20px; }
.doc strong { color: var(--text); }
.doc .note { background: var(--surface); border-radius: 16px; padding: 16px 18px; box-shadow: inset 0 0 0 1px rgba(255,255,255,.6); }
