/* Good Take — goodtakeapp.com
   One stylesheet for the landing page (navy) and the legal pages (cream).
   Palette and voice from BRAND.md: midnight navy, off-white, signature amber,
   coral recording dot. System rounded type to echo the app. */

:root {
  --navy: #07112d;
  --navy-2: #0c1a42;
  --cream: #f4f1ea;
  --amber: #ffc53d;
  --amber-ink: #946200;
  --coral: #ff4539;
  --ink: #1c1b18;
  --radius: 20px;
  --font: ui-rounded, -apple-system, "SF Pro Rounded", "Segoe UI", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }

a { color: inherit; }

.wrap { max-width: 1060px; margin: 0 auto; padding: 0 24px; }

/* ---------- Landing (navy) ---------- */

body.landing {
  background:
    radial-gradient(900px 600px at 85% -10%, rgba(255, 69, 57, 0.10), transparent 60%),
    radial-gradient(1100px 700px at 15% 108%, rgba(255, 197, 61, 0.12), transparent 60%),
    var(--navy);
  color: var(--cream);
}

header.site {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
}

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand .mark { width: 40px; height: 40px; }
.wordmark { font-size: 22px; font-weight: 800; letter-spacing: 0.2px; }
.wordmark em { font-style: normal; color: var(--amber); }

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 12px 22px;
}
.btn-amber { background: var(--amber); color: var(--navy); }
.btn-amber:hover { filter: brightness(1.06); }
.btn-ghost { border: 1.5px solid rgba(244, 241, 234, 0.35); color: var(--cream); }
.btn-ghost:hover { border-color: rgba(244, 241, 234, 0.7); }

/* Hero */

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0 88px;
}

.hero h1 {
  font-size: clamp(38px, 5.6vw, 62px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.hero h1 .zero { color: var(--amber); }

.hero .sub {
  margin-top: 18px;
  font-size: 19px;
  color: rgba(244, 241, 234, 0.75);
  max-width: 34em;
}

.hero .cta { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero .fine { margin-top: 14px; font-size: 13.5px; color: rgba(244, 241, 234, 0.5); }

/* The phone: the app's own onboarding loop playing inside a drawn body. */

.phone-col { display: flex; justify-content: center; }

.phone {
  width: 280px;
  aspect-ratio: 1206 / 2622;
  background: linear-gradient(100deg, #6b6f78, #22242b 30%, #33363e 52%, #1a1c22 72%, #61656e);
  border-radius: 46px;
  padding: 9px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.screen {
  position: relative;
  height: 100%;
  border-radius: 38px;
  overflow: hidden;
  background: linear-gradient(180deg, #101010 0%, #181614 55%, #0c0c0c 100%);
  display: flex;
  flex-direction: column;
  padding: 46px 16px 18px;
}

/* When the real recording plays inside, the screen is only a window. */
.screen.has-video { padding: 0; }
.screen.has-video video { width: 100%; height: 100%; object-fit: cover; }

/* Sections */

section { padding: 72px 0; }

.kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
}
section h2 { font-size: clamp(28px, 3.6vw, 40px); font-weight: 800; margin-top: 10px; letter-spacing: -0.3px; }
section .lede { margin-top: 12px; font-size: 17px; color: rgba(244, 241, 234, 0.7); max-width: 40em; }

.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; margin-top: 40px; }

.card {
  background: rgba(244, 241, 234, 0.05);
  border: 1px solid rgba(244, 241, 234, 0.1);
  border-radius: var(--radius);
  padding: 26px;
}
.card .glyph { font-size: 26px; }
.card h3 { margin-top: 12px; font-size: 18px; }
.card p { margin-top: 8px; font-size: 15px; color: rgba(244, 241, 234, 0.68); }

/* Privacy band: the cream world inside the navy one. */

.privacy-band { background: var(--cream); color: var(--ink); border-radius: 28px; padding: 56px 48px; }
.privacy-band .kicker { color: var(--amber-ink); }
.privacy-band .lede { color: rgba(28, 27, 24, 0.7); }
.privacy-band ul { margin-top: 24px; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px 28px; list-style: none; }
.privacy-band li { padding-left: 30px; position: relative; font-weight: 600; font-size: 15.5px; }
.privacy-band li::before { content: "✓"; position: absolute; left: 0; top: -1px; color: var(--amber-ink); font-weight: 800; font-size: 18px; }

/* Pricing */

.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; margin-top: 40px; max-width: 720px; }
.plan { border-radius: var(--radius); padding: 30px; background: rgba(244, 241, 234, 0.05); border: 1px solid rgba(244, 241, 234, 0.12); }
.plan.pro { border: 1.5px solid var(--amber); background: rgba(255, 197, 61, 0.07); }
.plan h3 { font-size: 20px; display: flex; align-items: center; gap: 10px; }
.save-badge { font-size: 11px; font-weight: 800; letter-spacing: 0.06em; color: var(--navy); background: var(--amber); border-radius: 999px; padding: 3px 10px; }
.plan .price { margin-top: 8px; font-size: 34px; font-weight: 800; }
.plan .price span { font-size: 15px; font-weight: 600; color: rgba(244, 241, 234, 0.6); }
.plan ul { margin: 18px 0 0 18px; font-size: 15px; color: rgba(244, 241, 234, 0.75); display: grid; gap: 8px; }

/* Android waitlist band */

.android-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  border: 1px solid rgba(255, 197, 61, 0.35);
  border-radius: 24px;
  padding: 34px 38px;
  background: rgba(255, 197, 61, 0.06);
}
.android-band h2 { font-size: clamp(22px, 2.8vw, 28px); }
.android-band .lede { font-size: 15.5px; max-width: 36em; }
.android-band .btn { white-space: nowrap; }

/* Footer */

footer.site {
  border-top: 1px solid rgba(244, 241, 234, 0.12);
  margin-top: 40px;
  padding: 36px 0 48px;
  font-size: 14px;
  color: rgba(244, 241, 234, 0.55);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
footer.site nav { display: flex; gap: 22px; }
footer.site a { color: rgba(244, 241, 234, 0.75); text-decoration: none; }
footer.site a:hover { color: var(--cream); }

/* ---------- Legal pages (cream) ---------- */

body.legal { background: var(--cream); color: var(--ink); }
body.legal header.site { border-bottom: 1px solid rgba(28, 27, 24, 0.1); }
body.legal .wordmark em { color: var(--amber-ink); }

.doc { max-width: 720px; margin: 0 auto; padding: 48px 24px 96px; }
.doc h1 { font-size: 36px; font-weight: 800; letter-spacing: -0.3px; }
.doc .updated { margin-top: 8px; font-size: 14px; color: rgba(28, 27, 24, 0.55); }
.doc h2 { font-size: 21px; margin-top: 40px; }
.doc p, .doc li { margin-top: 12px; font-size: 16px; color: rgba(28, 27, 24, 0.85); }
.doc ul { margin-left: 22px; }
.doc .callout {
  margin-top: 24px;
  background: rgba(255, 197, 61, 0.16);
  border-left: 4px solid var(--amber);
  border-radius: 0 12px 12px 0;
  padding: 16px 18px;
  font-weight: 600;
}
.doc a { color: var(--amber-ink); }

@media (max-width: 800px) {
  .hero { grid-template-columns: 1fr; padding: 24px 0 56px; }
  .phone-col { order: -1; }
  .phone { width: 220px; }
  .privacy-band { padding: 40px 26px; }
  section { padding: 52px 0; }
}
