/* Oboete marketing site — warm-light theme
   Tokens lifted from marketing/theme/render_themes.py "6-final" (Warm Light + glow)
   and the brand palette in marketing/funnel/redirect.html. */
:root {
  --espresso: #0e0b06;
  --ink: #241d17;
  --sub: #857769;
  --cream: #f5ede3;
  --card: #ffffff;
  --border: #ece4d8;
  --accent: #e8856a;        /* coral */
  --accent-dark: #d96a52;   /* darker coral */
  --accent-soft: rgba(232, 133, 106, 0.12);
  --glow: #ffd9b0;          /* warm highlight */
  --glow-soft: #ffd1a8;
  --maxw: 1080px;
  --radius: 22px;
  --shadow: 0 18px 48px rgba(36, 29, 23, 0.08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, "SF Pro Display", "SF Pro Text", "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: linear-gradient(165deg, #fcfaf6, #f4efe7);
  background-attachment: fixed;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--accent-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ── Top nav ─────────────────────────────────────────── */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; max-width: var(--maxw); margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand .mark { width: 40px; height: 40px; }
.brand .word { font-size: 22px; font-weight: 800; letter-spacing: -0.01em; color: var(--ink); }
.nav-links { display: flex; gap: 26px; font-size: 15px; font-weight: 600; }
.nav-links a { color: var(--sub); }
.nav-links a:hover { color: var(--accent-dark); text-decoration: none; }

/* ── Hero ────────────────────────────────────────────── */
.hero { text-align: center; padding: 56px 24px 40px; max-width: 820px; margin: 0 auto; }
.hero .mark-lg { width: 88px; height: 88px; margin-bottom: 26px; }
.hero h1 {
  font-size: clamp(40px, 7vw, 68px); line-height: 1.03; font-weight: 850;
  letter-spacing: -0.025em; color: var(--espresso);
}
.hero .lede {
  margin: 22px auto 0; max-width: 620px; font-size: clamp(17px, 2.4vw, 21px);
  color: var(--sub); font-weight: 500;
}

/* ── App Store badge ─────────────────────────────────── */
.badges { margin-top: 32px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.appstore-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--espresso); color: var(--cream);
  padding: 14px 22px; border-radius: 14px; font-weight: 600;
  box-shadow: 0 10px 26px rgba(14, 11, 6, 0.18);
  transition: transform .15s ease;
}
.appstore-badge:hover { transform: translateY(-2px); text-decoration: none; color: var(--cream); }
.appstore-badge svg { width: 26px; height: 26px; }
.appstore-badge .b-small { display: block; font-size: 11px; font-weight: 500; opacity: .8; line-height: 1; }
.appstore-badge .b-big { display: block; font-size: 19px; font-weight: 700; line-height: 1.2; }
.badge-note { margin-top: 12px; font-size: 13px; color: var(--sub); }

/* ── Value props ─────────────────────────────────────── */
.props { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 24px 0 8px; }
.prop {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow);
}
.prop .icon {
  width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center;
  justify-content: center; font-size: 24px; background: var(--accent-soft); margin-bottom: 16px;
}
.prop h3 { font-size: 20px; font-weight: 750; letter-spacing: -0.01em; }
.prop p { margin-top: 8px; color: var(--sub); font-size: 15.5px; }

/* ── Section headings ────────────────────────────────── */
.section { padding: 52px 0 12px; }
.section h2 {
  font-size: clamp(26px, 4vw, 36px); font-weight: 820; letter-spacing: -0.02em;
  color: var(--espresso); text-align: center;
}
.section .kicker {
  text-align: center; text-transform: uppercase; letter-spacing: 0.16em;
  font-size: 13px; font-weight: 800; color: var(--accent); margin-bottom: 10px;
}

/* ── Screenshot scroller ─────────────────────────────── */
.shots {
  display: flex; gap: 20px; overflow-x: auto; padding: 30px 24px 34px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.shots::-webkit-scrollbar { height: 8px; }
.shots::-webkit-scrollbar-thumb { background: var(--border); border-radius: 8px; }
.shot { flex: 0 0 auto; scroll-snap-align: center; text-align: center; }
.shot img {
  width: 232px; height: auto; border-radius: 28px; border: 1px solid var(--border);
  box-shadow: var(--shadow); background: var(--card);
}
.shot .cap { margin-top: 12px; font-size: 14px; color: var(--sub); font-weight: 600; }

/* ── Why band ────────────────────────────────────────── */
.why {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 40px 34px; box-shadow: var(--shadow); margin: 40px 0; text-align: center;
}
.why p { font-size: clamp(18px, 2.6vw, 23px); color: var(--ink); max-width: 720px; margin: 0 auto; }
.why .fine { margin-top: 18px; font-size: 15px; color: var(--sub); }

/* ── Footer ──────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border); margin-top: 48px; padding: 34px 24px 60px;
  text-align: center; color: var(--sub); font-size: 14.5px;
}
.footer .flinks { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; margin-bottom: 14px; }
.footer .flinks a { color: var(--sub); font-weight: 600; }
.footer .flinks a:hover { color: var(--accent-dark); }

/* ── Legal / press article pages ─────────────────────── */
.doc { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 46px clamp(24px, 5vw, 56px); margin: 30px auto 60px; max-width: 820px; }
.doc h1 { font-size: clamp(30px, 5vw, 42px); font-weight: 840; letter-spacing: -0.02em;
  color: var(--espresso); margin-bottom: 6px; }
.doc h2 { font-size: 21px; font-weight: 760; letter-spacing: -0.01em; margin: 30px 0 8px; color: var(--ink); }
.doc p { margin: 12px 0; color: #3a2f26; font-size: 16px; }
.doc ul { margin: 10px 0 10px 4px; padding-left: 22px; color: #3a2f26; }
.doc li { margin: 6px 0; font-size: 16px; }
.doc blockquote {
  border-left: 3px solid var(--accent); background: var(--accent-soft);
  padding: 14px 18px; border-radius: 0 12px 12px 0; margin: 18px 0; color: #4a3d31; font-size: 15px;
}
.doc table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 14.5px; }
.doc th, .doc td { border: 1px solid var(--border); padding: 10px 12px; text-align: left; vertical-align: top; }
.doc th { background: var(--accent-soft); font-weight: 700; color: var(--ink); }
.doc hr { border: none; border-top: 1px solid var(--border); margin: 26px 0; }
.doc a { color: var(--accent-dark); font-weight: 600; }

/* ── Press kit specifics ─────────────────────────────── */
.kit-grid { display: grid; grid-template-columns: 220px 1fr; gap: 30px; align-items: start; }
.kit-icon { text-align: center; }
.kit-icon img { width: 180px; height: 180px; border-radius: 40px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.kit-icon .links { margin-top: 14px; font-size: 14px; }
.kit-icon .links a { display: block; margin: 4px 0; }
.dl-btn { display: inline-flex; align-items: center; gap: 10px; background: var(--accent);
  color: #fff; padding: 13px 22px; border-radius: 12px; font-weight: 700; margin-top: 10px;
  box-shadow: 0 10px 24px rgba(232, 133, 106, 0.32); }
.dl-btn:hover { background: var(--accent-dark); color: #fff; text-decoration: none; }

@media (max-width: 720px) {
  .props { grid-template-columns: 1fr; }
  .kit-grid { grid-template-columns: 1fr; }
  .kit-icon img { width: 140px; height: 140px; }
}
