@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;600&family=Hanken+Grotesk:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* VAPOR GLASS (docs/BRAND-V4.md) — the interface is atmosphere: a luminous
   color field with frosted-glass panels floating above it. */

:root {
  --sky: #BFD3E6;
  --lilac: #D8CFE8;
  --mist: #EAF0EE;
  --ink: #2A2E33;
  --ink-2: #5A6470;
  --ink-3: #6B7682;
  --iris: #5B6CB8;
  --iris-deep: #46559C;
  --display: 'Outfit', sans-serif;
  --body: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  font: 16.5px/1.65 var(--body);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  background:
    radial-gradient(110% 70% at 82% -8%, var(--sky) 0%, rgba(191,211,230,0) 58%),
    radial-gradient(95% 70% at -10% 22%, var(--lilac) 0%, rgba(216,207,232,0) 55%),
    radial-gradient(120% 90% at 50% 112%, var(--mist) 0%, rgba(234,240,238,0) 62%),
    linear-gradient(178deg, #F2F4F8 0%, #ECEAF3 48%, #EDF2EF 100%);
  background-attachment: fixed;
}

/* Drifting light orbs behind the glass. */
body::before, body::after {
  content: "";
  position: fixed;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}
body::before { width: 520px; height: 520px; top: -140px; left: -120px; background: rgba(216,207,232,.85); }
body::after  { width: 620px; height: 620px; top: 18%;   right: -200px; background: rgba(191,211,230,.8); }

main {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 40px auto 48px;
  padding: 44px 40px 52px;
  background: linear-gradient(165deg, rgba(255,255,255,.74) 0%, rgba(255,255,255,.56) 100%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 24px;
  box-shadow:
    0 30px 30px -22px rgba(42,46,51,.16),
    0 6px 14px rgba(42,46,51,.05),
    inset 0 1px 0 rgba(255,255,255,.95),
    inset 0 0 0 1px rgba(255,255,255,.28);
}

.wordmark {
  font-family: var(--display);
  font-weight: 300;
  font-size: 24px;
  letter-spacing: 0.085em;
  color: var(--ink);
  text-decoration: none;
}

.wordmark span { color: var(--iris); font-weight: 200; }

h1 {
  font-family: var(--display);
  font-weight: 300;
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: 0.005em;
  margin: 40px 0 8px;
}

/* Section heads read like the app's section labels: an iris tick + airy caps. */
h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 44px 0 10px;
}

h2::before {
  content: "";
  width: 14px;
  height: 1px;
  background: var(--iris);
  opacity: 0.65;
  flex: none;
}

p, li { color: var(--ink-2); }

strong { color: var(--ink); font-weight: 600; }

a { color: var(--iris); text-decoration-color: rgba(91,108,184,.35); }
a:hover { color: var(--iris-deep); }

.updated {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 36px;
}

/* Inner glass well — a panel floating inside the page glass. */
.callout {
  background: linear-gradient(165deg, rgba(255,255,255,.85), rgba(255,255,255,.55));
  border: 1px solid rgba(255,255,255,.95);
  border-radius: 18px;
  padding: 18px 22px;
  margin: 28px 0;
  box-shadow: inset 0 1px 0 #fff, 0 10px 18px -10px rgba(42,46,51,.25);
}

.callout p { margin: 0; }

footer {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 40px 56px;
  font-size: 14px;
  color: var(--ink-3);
}

footer a { color: var(--ink-3); }
footer a:hover { color: var(--iris-deep); }

nav { display: flex; justify-content: space-between; align-items: baseline; }
nav .links a {
  margin-left: 18px;
  font-family: var(--display);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  text-decoration: none;
}
nav .links a:hover { color: var(--iris-deep); }

.hero { margin: 72px 0 56px; }
.hero h1 { font-size: 52px; margin-bottom: 16px; }
.hero p { font-size: 19px; max-width: 520px; }
.tagline {
  font-family: var(--display);
  font-weight: 300;
  font-size: 21px;
  color: var(--iris-deep);
}

/* ---- Marketing page (the web2app funnel) ---- */

main.marketing { max-width: 880px; }

.store-badge { display: inline-block; margin-top: 26px; }
.store-badge img { display: block; height: 54px; }
.fineprint {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 14px;
}

/* Screenshots float on the field like the app's own glass. */
.shots {
  display: flex;
  gap: 26px;
  justify-content: center;
  align-items: flex-start;
  margin: 44px 0 8px;
}
.shot {
  width: 30%;
  max-width: 240px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 30px 40px -24px rgba(42,46,51,.35), 0 6px 14px rgba(42,46,51,.08), inset 0 1px 0 rgba(255,255,255,.95);
}
.shot-main { margin-top: -14px; }

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 12px 34px;
  margin-top: 6px;
}
.feature p { font-size: 14.5px; line-height: 1.6; margin-top: 6px; }
.f-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--iris-deep);
  margin-top: 22px;
}

.honesty {
  margin-top: 44px;
  padding: 22px 26px;
  border-radius: 18px;
  background: linear-gradient(165deg, rgba(255,255,255,.85), rgba(255,255,255,.55));
  border: 1px solid rgba(255,255,255,.95);
  box-shadow: inset 0 1px 0 #fff, 0 10px 18px -10px rgba(42,46,51,.25);
}
.honesty-line {
  font-family: var(--display);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.24em;
  color: var(--ink);
  margin: 0 0 6px;
}
.honesty p:last-child { margin: 0; font-size: 14px; }

.cta-final { text-align: center; margin: 44px 0 8px; }

@media (max-width: 640px) {
  main { margin: 16px 14px 32px; padding: 32px 22px 40px; }
  footer { padding-left: 24px; padding-right: 24px; }
  .hero { margin: 48px 0 40px; }
  .hero h1 { font-size: 38px; }
  h1 { font-size: 32px; }
  .shots { gap: 12px; }
  .shot { border-radius: 16px; }
  .shot-main { margin-top: 0; }
}
