/* PaddleReady marketing site — v2 "Sunrise" design (2026-06).
 * Used by index.html, features.html, about.html, sponsors.html.
 * Policy pages use _styles.css (same tokens, document layout). */

:root {
  --navy:       #03045E;
  --navy-deep:  #020338;
  --navy-mid:   #102A6B;
  --deep-ocean: #0077B6;
  --teal:       #00B4D8;
  --teal-soft:  #48CAE4;
  --light-blue: #CAF0F8;
  --amber:      #FFB703;
  --amber-deep: #E8A500;
  --green:      #2DC653;
  --red:        #E63946;
  --ink:        #13203A;
  --muted:      #4A6B80;
  --bg:         #F4FBFF;
  --surface:    #FFFFFF;
  --border:     #DCEEF7;
  --radius:     18px;
  --shadow:     0 10px 35px rgba(3, 4, 94, 0.09);
  --shadow-lg:  0 28px 70px rgba(2, 3, 56, 0.45);
  --font-head:  'Syne', system-ui, sans-serif;
  --font-body:  'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; height: auto; }
a { color: var(--deep-ocean); }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy); letter-spacing: -0.4px; line-height: 1.15; }

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

/* ── icons (inline svg) ─────────────────────────────────────── */
.i { width: 1em; height: 1em; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; vertical-align: -0.12em; }

/* ── header ─────────────────────────────────────────────────── */
header.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(2, 3, 56, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 180, 216, 0.25);
}
.nav-inner {
  max-width: 1140px; margin: 0 auto; padding: 13px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 800; font-size: 20px; color: #fff; text-decoration: none; letter-spacing: 0.2px; }
.brand img { width: 34px; height: 34px; border-radius: 9px; display: block; }
.brand .accent { color: var(--teal-soft); }
.menu { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.menu a {
  color: #CFE6F2; font-weight: 600; font-size: 14px; text-decoration: none;
  padding: 8px 13px; border-radius: 9px; transition: background 0.15s, color 0.15s;
}
.menu a:hover { background: rgba(0, 180, 216, 0.18); color: #fff; }
.menu a.active { color: var(--teal-soft); }
.menu a.cta { background: var(--amber); color: var(--navy-deep); font-weight: 800; }
.menu a.cta:hover { background: #ffc733; color: var(--navy-deep); }
@media (max-width: 720px) {
  .menu a { padding: 7px 9px; font-size: 13px; }
  .brand { font-size: 18px; }
}

/* ── hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 480px at 78% 112%, rgba(255, 183, 3, 0.32), transparent 62%),
    radial-gradient(900px 460px at 18% -18%, rgba(0, 180, 216, 0.22), transparent 60%),
    linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 46%, #04509E 86%, #0077B6 100%);
  color: #fff;
  overflow: hidden;
}
.hero-inner {
  max-width: 1140px; margin: 0 auto; padding: 76px 24px 110px;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
}
.hero .tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0, 180, 216, 0.16); border: 1px solid rgba(0, 180, 216, 0.45);
  color: var(--light-blue); font-size: 13px; font-weight: 600;
  padding: 7px 14px; border-radius: 999px; margin-bottom: 22px;
}
.hero h1 { color: #fff; font-size: clamp(38px, 5.2vw, 60px); font-weight: 800; margin-bottom: 18px; }
.hero h1 .sun { color: var(--amber); }
.hero .lede { font-size: 18px; line-height: 1.6; color: rgba(255, 255, 255, 0.88); max-width: 34em; margin-bottom: 28px; }
.hero .lede strong { color: #fff; }

.stores { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.store-btn {
  display: inline-flex; align-items: center; gap: 11px;
  background: #fff; color: var(--navy-deep); text-decoration: none;
  padding: 11px 20px; border-radius: 13px; font-weight: 700; font-size: 15px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.25); transition: transform 0.15s;
}
.store-btn:hover { transform: translateY(-2px); }
.store-btn .i { font-size: 25px; }
.store-btn small { display: block; font-size: 11px; font-weight: 600; color: var(--muted); line-height: 1.1; }
.store-btn span { line-height: 1.2; }
.store-btn.amber { background: var(--amber); }
.store-btn.amber small { color: rgba(2, 3, 56, 0.65); }
.hero .disclaim { font-size: 12.5px; color: rgba(202, 240, 248, 0.75); display: flex; gap: 7px; align-items: flex-start; max-width: 36em; }
.hero .disclaim .i { flex: none; margin-top: 3px; }

/* hero wave divider */
.hero .wave { position: absolute; left: 0; right: 0; bottom: -1px; display: block; width: 100%; }

/* ── phone mockup ───────────────────────────────────────────── */
.phone-col { display: flex; justify-content: center; }
.phone {
  width: 320px; border-radius: 42px; padding: 14px;
  background: linear-gradient(160deg, #1b2a55, #0c1233);
  border: 1px solid rgba(0, 180, 216, 0.35);
  box-shadow: var(--shadow-lg);
  animation: float 7s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.screen { border-radius: 30px; overflow: hidden; background: #F4FBFF; }
.ph-head {
  background: linear-gradient(135deg, var(--navy), var(--deep-ocean));
  color: #fff; padding: 16px 18px 14px;
  display: flex; align-items: center; justify-content: space-between;
}
.ph-head b { font-family: var(--font-head); font-size: 16px; }
.ph-head small { font-size: 11px; color: var(--light-blue); }
.ph-badge { padding: 20px 18px 14px; text-align: center; }
.ph-badge .ring {
  width: 124px; height: 124px; margin: 0 auto 10px; border-radius: 50%;
  background: radial-gradient(circle at 50% 38%, #4fdd77, var(--green));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 8px 26px rgba(45, 198, 83, 0.45);
  position: relative;
}
.ph-badge .ring::after {
  content: ""; position: absolute; inset: -7px; border-radius: 50%;
  border: 2.5px solid rgba(45, 198, 83, 0.55);
  animation: pulse 2.6s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(0.94); opacity: 0.9; }
  70%, 100% { transform: scale(1.18); opacity: 0; }
}
.ph-badge .ring b { font-family: var(--font-head); font-size: 25px; letter-spacing: 1.5px; }
.ph-badge .ring span { font-size: 10.5px; font-weight: 600; opacity: 0.95; }
.ph-badge p { font-size: 13px; font-weight: 600; color: var(--ink); }
.ph-note { font-size: 9.5px; line-height: 1.45; color: var(--muted); padding: 0 18px 10px; text-align: center; }
.ph-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; padding: 2px 14px 16px; }
.ph-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 9px 11px; font-size: 10.5px; color: var(--muted); }
.ph-card b { display: flex; align-items: center; gap: 5px; font-size: 10.5px; color: var(--deep-ocean); text-transform: uppercase; letter-spacing: 0.4px; }
.ph-card .v { font-size: 17px; font-weight: 800; color: var(--ink); line-height: 1.3; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding: 56px 24px 96px; gap: 40px; }
  .phone { animation: none; }
}

/* ── legal banner ───────────────────────────────────────────── */
.legal-banner {
  background: #FFF6DE; border-top: 1px solid #F2DEA2; border-bottom: 1px solid #F2DEA2;
  color: #6B5413; font-size: 13px; line-height: 1.55;
  padding: 11px 24px; text-align: center;
}
.legal-banner .i { color: #C99A06; margin-right: 4px; }

/* ── sections ───────────────────────────────────────────────── */
section.block { padding: 84px 0; }
section.block.alt { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
section.block.center { text-align: center; }
.eyebrow {
  display: inline-block; font-size: 12.5px; font-weight: 800; letter-spacing: 1.6px;
  text-transform: uppercase; color: var(--deep-ocean); margin-bottom: 12px;
}
.section-title { font-size: clamp(28px, 3.6vw, 40px); font-weight: 800; margin-bottom: 14px; max-width: 24em; }
.center .section-title { margin-left: auto; margin-right: auto; }
.section-lede { font-size: 17px; color: var(--muted); max-width: 44em; margin-bottom: 40px; }
.center .section-lede { margin-left: auto; margin-right: auto; }

/* feature cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow);
  transition: transform 0.18s, box-shadow 0.18s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(3, 4, 94, 0.13); }
.card .ico {
  width: 48px; height: 48px; border-radius: 13px; margin-bottom: 16px;
  background: linear-gradient(135deg, var(--teal), var(--deep-ocean));
  color: #fff; display: flex; align-items: center; justify-content: center; font-size: 23px;
}
.card h3 { font-size: 18px; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.card p { font-size: 14.5px; line-height: 1.6; color: var(--muted); }
.card p strong { color: var(--ink); }
.pill { font-size: 10.5px; font-weight: 800; letter-spacing: 0.6px; background: var(--amber); color: var(--navy-deep); padding: 2.5px 9px; border-radius: 999px; }
@media (max-width: 980px) { .cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .cards { grid-template-columns: 1fr; } }

/* split rows (art + copy) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split + .split { margin-top: 72px; }
.split .art img { border-radius: var(--radius); box-shadow: var(--shadow); display: block; border: 1px solid var(--border); }
.split h3 { font-size: clamp(23px, 2.6vw, 30px); font-weight: 800; margin-bottom: 12px; }
.split p { font-size: 16px; color: var(--muted); margin-bottom: 12px; }
.split ul { margin: 0 0 12px 20px; color: var(--muted); font-size: 15px; }
.split li { margin-bottom: 7px; }
.split li strong { color: var(--ink); }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 26px; }
  .split.flip .art { order: -1; }
}

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: step; }
.step {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow); counter-increment: step; position: relative;
}
.step::before {
  content: counter(step);
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%; margin-bottom: 14px;
  background: var(--navy); color: var(--amber);
  font-family: var(--font-head); font-weight: 800; font-size: 19px;
}
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--muted); }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }

/* ── pro section ────────────────────────────────────────────── */
section.pro {
  background:
    radial-gradient(900px 420px at 86% -10%, rgba(255, 183, 3, 0.18), transparent 60%),
    linear-gradient(170deg, var(--navy-deep), var(--navy) 60%, var(--navy-mid));
  color: #fff; padding: 84px 0;
}
.pro .eyebrow { color: var(--amber); }
.pro .section-title, .pro h3 { color: #fff; }
.pro .section-lede { color: rgba(255, 255, 255, 0.78); }
.pro-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.pro-list { list-style: none; display: grid; gap: 14px; }
.pro-list li {
  display: flex; gap: 15px; background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(0, 180, 216, 0.3); border-radius: 15px; padding: 17px 18px;
}
.pro-list .i { flex: none; font-size: 23px; color: var(--amber); margin-top: 3px; }
.pro-list b { display: block; font-size: 15.5px; margin-bottom: 3px; }
.pro-list span { font-size: 13.5px; line-height: 1.55; color: rgba(255, 255, 255, 0.75); }
.pro-copy p { font-size: 16px; line-height: 1.6; color: rgba(255, 255, 255, 0.85); margin-bottom: 20px; }
@media (max-width: 900px) { .pro-grid { grid-template-columns: 1fr; } }

/* ── waitlist ───────────────────────────────────────────────── */
section.waitlist { padding: 84px 0; }
.panel {
  background:
    radial-gradient(640px 300px at 88% 116%, rgba(255, 183, 3, 0.35), transparent 62%),
    linear-gradient(135deg, var(--deep-ocean), var(--navy));
  border-radius: 26px; color: #fff; text-align: center;
  padding: 58px 32px; box-shadow: var(--shadow-lg);
}
.panel .eyebrow { color: var(--light-blue); }
.panel h2 { color: #fff; font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 12px; }
.panel > p { font-size: 16px; color: rgba(255, 255, 255, 0.86); max-width: 38em; margin: 0 auto 26px; }
.wl-form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.wl-form input {
  flex: 1 1 280px; max-width: 360px; font-size: 16px; font-family: inherit;
  padding: 14px 18px; border-radius: 13px; border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.96); color: var(--ink);
}
.wl-form input:focus { outline: 3px solid var(--amber); border-color: var(--amber); }
.wl-form button {
  font-size: 16px; font-weight: 800; font-family: inherit; cursor: pointer;
  padding: 14px 28px; border-radius: 13px; border: none;
  background: var(--amber); color: var(--navy-deep); transition: background 0.15s;
}
.wl-form button:hover { background: #ffc733; }
.wl-form button:disabled { opacity: 0.6; cursor: wait; }
.wl-msg { min-height: 22px; margin-top: 12px; font-size: 14px; font-weight: 600; }
.wl-msg.ok { color: #9BE8AE; }
.wl-msg.err { color: #FFB3B8; }
.wl-note { font-size: 12.5px; color: rgba(202, 240, 248, 0.75); margin-top: 10px; }
.wl-note a { color: var(--light-blue); }

/* ── sponsors tiers ─────────────────────────────────────────── */
.tier-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.tier {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow);
}
.tier .ico {
  width: 48px; height: 48px; border-radius: 13px; margin-bottom: 14px;
  background: linear-gradient(135deg, var(--amber), #FF9505);
  color: var(--navy-deep); display: flex; align-items: center; justify-content: center; font-size: 23px;
}
.tier h3 { font-size: 18px; margin-bottom: 8px; }
.tier p { font-size: 14.5px; color: var(--muted); }
@media (max-width: 760px) { .tier-grid { grid-template-columns: 1fr; } }

/* prose + callouts */
.prose { max-width: 760px; }
.prose h3 { font-size: 22px; margin: 30px 0 10px; }
.prose h3:first-child { margin-top: 0; }
.prose p, .prose li { font-size: 15.5px; line-height: 1.7; color: #2c3e50; }
.prose ul { margin: 10px 0 14px 22px; }
.prose li { margin-bottom: 7px; }
.callout { border-radius: 13px; padding: 16px 18px; font-size: 14px; line-height: 1.6; margin: 18px 0; }
.callout.blue { background: #E0F4FB; border: 1px solid var(--teal); color: #04486E; }
.callout.amberbox { background: #FFF6DE; border: 1px solid #F2DEA2; color: #6B5413; }

/* buttons */
.btn-amber {
  display: inline-block; background: var(--amber); color: var(--navy-deep);
  font-weight: 800; font-size: 16px; text-decoration: none;
  padding: 14px 30px; border-radius: 13px; box-shadow: 0 8px 24px rgba(255, 183, 3, 0.35);
  transition: transform 0.15s, background 0.15s;
}
.btn-amber:hover { transform: translateY(-2px); background: #ffc733; }
.btn-ghost {
  display: inline-block; color: var(--deep-ocean); font-weight: 700; font-size: 15px;
  text-decoration: none; padding: 13px 22px; border-radius: 13px; border: 2px solid var(--teal);
}
.btn-ghost:hover { background: rgba(0, 180, 216, 0.1); }

/* full-width art band */
.art-band img { display: block; width: 100%; }

/* ── footer ─────────────────────────────────────────────────── */
footer.site { background: var(--navy-deep); color: rgba(255, 255, 255, 0.78); padding: 56px 0 28px; }
.footer-grid {
  max-width: 1140px; margin: 0 auto; padding: 0 24px 34px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 34px;
}
footer.site .brand { margin-bottom: 12px; }
footer.site .blurb { font-size: 13.5px; line-height: 1.6; color: rgba(255, 255, 255, 0.6); max-width: 30em; }
footer.site h4 { color: #fff; font-size: 14px; margin-bottom: 12px; letter-spacing: 0.4px; }
footer.site .footer-grid a { display: block; color: rgba(202, 240, 248, 0.85); font-size: 14px; text-decoration: none; margin-bottom: 9px; }
footer.site .footer-grid a:hover { color: #fff; text-decoration: underline; }
.colophon {
  max-width: 1140px; margin: 0 auto; padding: 22px 24px 0;
  border-top: 1px solid rgba(0, 180, 216, 0.22);
  font-size: 12px; line-height: 1.6; color: rgba(255, 255, 255, 0.5);
}
.colophon p { margin-bottom: 8px; }
.colophon strong { color: rgba(255, 255, 255, 0.75); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* subpage hero */
.subhero {
  background:
    radial-gradient(800px 380px at 82% 120%, rgba(255, 183, 3, 0.25), transparent 62%),
    linear-gradient(180deg, var(--navy-deep), var(--navy) 70%, #04509E);
  color: #fff; padding: 64px 0 70px; position: relative; overflow: hidden;
}
.subhero h1 { color: #fff; font-size: clamp(30px, 4.4vw, 48px); font-weight: 800; margin: 0 0 14px; max-width: 20em; }
.subhero p { font-size: 17px; line-height: 1.6; color: rgba(255, 255, 255, 0.85); max-width: 44em; }
.subhero .eyebrow { color: var(--teal-soft); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
