:root {
  --blue: #00359b;
  --blue-dark: #061f50;
  --blue-ink: #0a214a;
  --gold: #e9a802;
  --gold-bright: #f4bd22;
  --cream: #fff9ee;
  --sand: #f3e5c8;
  --paper: #fffdf7;
  --ink: #161616;
  --muted: #625f59;
  --line: rgba(0, 53, 155, .16);
  --shadow: 0 22px 60px rgba(13, 32, 70, .16);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 0%, rgba(233,168,2,.12), transparent 26rem),
    linear-gradient(180deg, #fff 0%, var(--cream) 42%, #fff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input { font: inherit; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
}
.skip-link:focus {
  left: 1rem; top: 1rem; z-index: 9999; padding: .7rem 1rem; background: #fff; border: 2px solid var(--blue);
}

.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,53,155,.09);
}
.nav {
  min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; text-decoration: none; min-width: 210px; }
.brand img { width: 190px; height: 64px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 24px; font-size: .95rem; font-weight: 700; }
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--blue); }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.5rem; }

.btn {
  appearance: none; border: 0; border-radius: 999px; padding: .92rem 1.25rem;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  text-decoration: none; font-weight: 800; cursor: pointer; transition: .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 10px 24px rgba(0,53,155,.22); }
.btn-primary:hover { background: #002d84; }
.btn-gold { background: var(--gold); color: #151515; box-shadow: 0 10px 24px rgba(233,168,2,.20); }
.btn-ghost { border: 1px solid rgba(0,53,155,.22); background: #fff; color: var(--blue); }
.btn-small { padding: .72rem 1rem; font-size: .92rem; }

.hero {
  position: relative; overflow: hidden; padding: 76px 0 54px;
  background:
    linear-gradient(118deg, rgba(0,53,155,.97), rgba(6,31,80,.96) 58%, rgba(5,24,59,.97)),
    radial-gradient(circle at 75% 25%, rgba(233,168,2,.23), transparent 28rem);
  color: #fff;
}
.hero::after {
  content: ""; position: absolute; inset: auto -5% -150px auto; width: 520px; height: 520px; border-radius: 50%;
  background: rgba(233,168,2,.08); border: 1px solid rgba(255,255,255,.1);
}
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.eyebrow { color: var(--gold-bright); font-weight: 900; letter-spacing: .16em; text-transform: uppercase; font-size: .76rem; }
.hero h1, .section-title, .quote-text {
  font-family: Georgia, "Times New Roman", serif;
}
.hero h1 { font-size: clamp(3rem, 6.5vw, 6.6rem); line-height: .9; margin: .55rem 0 1rem; letter-spacing: -.04em; }
.hero h1 span { color: var(--gold-bright); }
.hero-sub { max-width: 690px; font-size: clamp(1.08rem, 2vw, 1.3rem); color: rgba(255,255,255,.88); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 26px; }
.hero-note { color: rgba(255,255,255,.68); font-size: .9rem; max-width: 680px; }

.book-stack { position: relative; display: grid; place-items: center; }
.book-cover {
  width: min(440px, 92%); border-radius: 16px; box-shadow: 0 35px 70px rgba(0,0,0,.36); transform: rotate(1.5deg);
  border: 1px solid rgba(255,255,255,.25);
}
.book-badge {
  position: absolute; right: 0; bottom: 9%; background: var(--gold); color: var(--ink); border-radius: 18px;
  padding: 12px 16px; font-weight: 900; box-shadow: var(--shadow); transform: rotate(-4deg);
}

.support-strip { background: #fff; border-bottom: 1px solid var(--line); }
.support-grid { display: grid; grid-template-columns: 1fr auto auto; gap: 20px; align-items: center; padding: 22px 0; }
.support-copy strong { color: var(--blue); }
.support-count { display: flex; align-items: baseline; gap: 8px; white-space: nowrap; }
.support-count b { font-family: Georgia, serif; font-size: 2rem; color: var(--blue); }
.status-pill { font-size: .75rem; background: #f2f5fb; border: 1px solid var(--line); border-radius: 999px; padding: .35rem .6rem; color: var(--muted); }

.section { padding: 84px 0; }
.section-tight { padding: 58px 0; }
.section-kicker { color: var(--blue); font-size: .78rem; text-transform: uppercase; letter-spacing: .17em; font-weight: 900; }
.section-title { color: var(--blue-ink); font-size: clamp(2.25rem, 4vw, 4.2rem); line-height: 1.02; margin: .55rem 0 1rem; letter-spacing: -.025em; }
.section-intro { color: var(--muted); max-width: 780px; font-size: 1.08rem; }

.story-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 56px; align-items: center; }
.logo-panel {
  background: #fff; border-radius: var(--radius); padding: 30px; border: 1px solid var(--line); box-shadow: var(--shadow);
}
.logo-panel img { width: 100%; }
.quote-card { margin-top: 20px; padding: 24px; border-radius: 18px; background: linear-gradient(140deg,#fff4cb,#fff); border: 1px solid rgba(233,168,2,.25); }
.quote-text { font-size: 1.42rem; margin: 0; color: var(--blue-ink); }

.stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 34px; }
.stat { background: #fff; padding: 22px; border-radius: 18px; border: 1px solid var(--line); }
.stat b { display: block; font-family: Georgia, serif; font-size: 2rem; color: var(--blue); }
.stat span { color: var(--muted); font-size: .9rem; }

.samples { background: linear-gradient(180deg, #fff8e8, #fff); border-top: 1px solid rgba(233,168,2,.18); border-bottom: 1px solid rgba(233,168,2,.18); }
.card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 30px; }
.recipe-card { overflow: hidden; border-radius: 24px; background: #fff; border: 1px solid var(--line); box-shadow: 0 18px 42px rgba(13,32,70,.10); }
.recipe-card img { width: 100%; aspect-ratio: 7 / 9.2; object-fit: cover; object-position: top; }
.recipe-body { padding: 24px; }
.recipe-body h3 { margin: 0 0 .5rem; font-family: Georgia, serif; font-size: 1.7rem; color: var(--blue-ink); }
.recipe-body p { color: var(--muted); }
.recipe-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.category-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 32px; }
.category {
  min-height: 128px; padding: 18px; border-radius: 18px; background: #fff; border: 1px solid var(--line); position: relative; overflow: hidden;
}
.category::after { content: ""; position: absolute; width: 85px; height: 85px; border-radius: 50%; background: rgba(233,168,2,.08); right: -20px; bottom: -20px; }
.category b { display: block; color: var(--blue); font-family: Georgia, serif; font-size: 1.55rem; }
.category span { color: var(--muted); font-size: .86rem; }

.video-section { background: var(--blue-dark); color: #fff; }
.video-section .section-title { color: #fff; }
.video-section .section-intro { color: rgba(255,255,255,.74); }
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.video-card { border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.06); border-radius: 22px; overflow: hidden; }
.video-poster { aspect-ratio: 16/10; position: relative; background-size: cover; background-position: center; }
.video-poster::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,transparent,rgba(0,0,0,.35)); }
.play { position: absolute; z-index: 2; inset: 50% auto auto 50%; transform: translate(-50%,-50%); width: 62px; height: 62px; border-radius: 50%; border: 0; background: var(--gold); color: #111; font-size: 1.25rem; cursor: pointer; }
.video-body { padding: 20px; }
.video-body h3 { margin: 0 0 .5rem; font-family: Georgia, serif; font-size: 1.35rem; }
.video-body p { color: rgba(255,255,255,.7); font-size: .92rem; }

.brand-future { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.future-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.future-item { padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: 18px; }
.future-item b { color: var(--blue); }
.future-item small { display: block; color: var(--muted); margin-top: 4px; }

.publisher { background: linear-gradient(135deg, #fff, #f6f0df); }
.publisher-card { border-radius: 30px; padding: clamp(28px,5vw,58px); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; }
.publisher-points { display: grid; gap: 12px; }
.publisher-point { padding: 16px 18px; border-radius: 16px; background: #f7f8fb; border-left: 4px solid var(--gold); }

.signup {
  padding: 32px; border-radius: 26px; background: linear-gradient(135deg,var(--blue),var(--blue-dark)); color: #fff;
}
.signup h3 { font-family: Georgia, serif; font-size: 2rem; margin: 0 0 .4rem; }
.signup p { color: rgba(255,255,255,.75); }
.signup-form { display: flex; gap: 10px; margin-top: 18px; }
.signup input { flex: 1; min-width: 0; border: 0; border-radius: 999px; padding: .95rem 1.1rem; }
.form-note { font-size: .78rem; color: rgba(255,255,255,.62); margin-top: 10px; }
.form-message { margin-top: 10px; font-weight: 700; }

.wave { margin: 0 auto; width: min(960px, 90%); height: 32px; }
.wave svg { width: 100%; height: 100%; }

.site-footer { background: #071a3c; color: rgba(255,255,255,.72); padding: 50px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .6fr .6fr; gap: 32px; }
.footer-logo { background: #fff; border-radius: 14px; padding: 12px; width: 220px; }
.site-footer h4 { color: #fff; margin: 0 0 .7rem; }
.site-footer a { color: rgba(255,255,255,.78); text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.10); margin-top: 34px; padding-top: 20px; font-size: .84rem; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

.modal { display: none; position: fixed; z-index: 2000; inset: 0; background: rgba(0,0,0,.76); padding: 30px; align-items: center; justify-content: center; }
.modal.open { display: flex; }
.modal-card { width: min(960px,100%); background: #0d0d0d; border-radius: 18px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,.5); position: relative; }
.modal-close { position: absolute; right: 12px; top: 10px; z-index: 3; border: 0; border-radius: 50%; width: 38px; height: 38px; font-size: 1.2rem; cursor: pointer; }
.modal-video { aspect-ratio: 16/9; display: grid; place-items: center; color: #fff; padding: 30px; text-align: center; }
.modal-video iframe { width: 100%; height: 100%; border: 0; }

@media (max-width: 980px) {
  .hero-grid, .story-grid, .brand-future, .publisher-card { grid-template-columns: 1fr; }
  .book-stack { margin-top: 20px; }
  .stat-grid { grid-template-columns: repeat(2,1fr); }
  .category-grid { grid-template-columns: repeat(3,1fr); }
  .video-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr auto; }
  .support-copy { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav-links { position: absolute; left: 20px; right: 20px; top: 74px; display: none; flex-direction: column; align-items: stretch; padding: 18px; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links .btn { width: 100%; }
  .hero { padding-top: 52px; }
  .hero h1 { font-size: clamp(3.1rem, 18vw, 5.4rem); }
  .card-grid, .future-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: repeat(2,1fr); }
  .support-grid { grid-template-columns: 1fr; }
  .support-count { justify-content: center; }
  .support-grid .btn { width: 100%; }
  .signup-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 440px) {
  .container { width: min(100% - 24px, 1180px); }
  .brand img { width: 158px; }
  .category-grid, .stat-grid { grid-template-columns: 1fr; }
}
