/* Bottles 4 Life — site styles. One family (Manrope), one accent per job:
   red = give / action, blue = the app, gold = warmth. */
@font-face { font-family: 'Manrope'; font-weight: 500; src: url('/assets/Manrope-Medium.ttf') format('truetype'); font-display: swap; }
@font-face { font-family: 'Manrope'; font-weight: 600; src: url('/assets/Manrope-SemiBold.ttf') format('truetype'); font-display: swap; }
@font-face { font-family: 'Manrope'; font-weight: 800; src: url('/assets/Manrope-ExtraBold.ttf') format('truetype'); font-display: swap; }

:root {
  --ink: #0E1720; --ink-2: #33414f; --mut: #5B6B7A; --line: rgba(14,23,32,.10);
  --paper: #FBF8F2; --paper-2: #F3EEE4; --white: #fff;
  --red: #E1262F; --red-d: #b71d25; --blue: #1330C9; --blue-d: #0f259c; --gold: #F2B84B; --gold-d: #b7791f;
  --navy: #0A1119; --mint: #3ED8AE;
  --r: 22px; --r-s: 14px; --max: 1120px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Manrope, -apple-system, "Segoe UI", Roboto, sans-serif; font-weight: 500; color: var(--ink); background: var(--paper); line-height: 1.55; font-size: 17px; -webkit-font-smoothing: antialiased; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; margin: 0 0 .5em; }
h1 { font-size: clamp(2.3rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.35rem); color: var(--ink-2); }
.muted { color: var(--mut); }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 22px; }
.narrow { max-width: 760px; }
section { padding: 72px 0; }
.eyebrow { display: inline-block; font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--red); margin-bottom: 14px; }
.eyebrow.blue { color: var(--blue); } .eyebrow.gold { color: var(--gold-d); }

/* nav */
header.top { position: sticky; top: 0; z-index: 20; background: rgba(251,248,242,.86); backdrop-filter: saturate(160%) blur(12px); border-bottom: 1px solid var(--line); }
header.top .wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; color: var(--ink); font-size: 1.05rem; }
.brand img { width: 36px; height: 36px; flex: none; }
nav.main { display: flex; gap: 26px; align-items: center; }
nav.main a { color: var(--ink-2); font-weight: 600; font-size: .95rem; }
nav.main a:hover, nav.main a.on { color: var(--ink); text-decoration: none; }
nav.main a.give { background: var(--red); color: #fff; padding: 10px 16px; border-radius: 999px; font-weight: 800; }
nav.main a.give:hover { background: var(--red-d); }
.burger { display: none; background: none; border: 1px solid var(--line); border-radius: 10px; width: 42px; height: 42px; cursor: pointer; }
.burger span { display: block; width: 18px; height: 2px; background: var(--ink); margin: 4px auto; border-radius: 2px; }
@media (max-width: 860px) {
  nav.main { display: none; position: absolute; left: 0; right: 0; top: 68px; background: var(--paper); border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; gap: 0; padding: 8px 22px 16px; }
  nav.main.open { display: flex; }
  nav.main a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  nav.main a.give { margin-top: 12px; text-align: center; border: 0; }
  .burger { display: block; }
}

/* buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 52px; padding: 0 22px; border-radius: 16px; font-weight: 800; font-size: 1rem; border: 1px solid transparent; cursor: pointer; transition: transform .08s, background .15s; }
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn.red { background: var(--red); color: #fff; } .btn.red:hover { background: var(--red-d); }
.btn.blue { background: var(--blue); color: #fff; } .btn.blue:hover { background: var(--blue-d); }
.btn.gold { background: var(--gold); color: #2a1c00; } .btn.gold:hover { background: #e2a83a; }
.btn.line { background: transparent; color: var(--ink); border-color: rgba(14,23,32,.22); } .btn.line:hover { background: rgba(14,23,32,.05); }
.btn.dark { background: var(--navy); color: #fff; } .btn.dark:hover { background: #1a2634; }
.btn.store { background: var(--navy); color: #fff; padding: 0 18px; }
.btn.store small { display: block; font-size: .68rem; font-weight: 600; opacity: .8; line-height: 1; margin-bottom: 3px; }
.btn.store b { display: block; font-size: 1.05rem; line-height: 1.05; }
.btn svg { width: 22px; height: 22px; flex: none; }
.btnrow { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

/* hero */
.hero { padding: 84px 0 64px; position: relative; overflow: hidden; }
.hero .wrap { position: relative; }
.hero .art { position: absolute; right: -8%; top: -30%; width: 46vw; max-width: 620px; opacity: .9; pointer-events: none; }
@media (max-width: 900px) { .hero .art { display: none; } }
.hero h1 { max-width: 12ch; }
.hero .lead { max-width: 52ch; }

/* stats */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 14px; }
.stat { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 22px; }
.stat b { display: block; font-size: 2rem; font-weight: 800; letter-spacing: -.03em; color: var(--ink); }
.stat span { color: var(--mut); font-size: .95rem; }

/* cards */
.grid { display: grid; gap: 18px; }
.grid.two { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid.three { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid.four { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 26px; }
.card h3 { margin-top: 10px; }
.card .ico { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; }
.card .ico svg { width: 24px; height: 24px; }
.ico.red { background: rgba(225,38,47,.12); color: var(--red); } .ico.blue { background: rgba(19,48,201,.10); color: var(--blue); } .ico.gold { background: rgba(242,184,75,.22); color: var(--gold-d); } .ico.mint { background: rgba(62,216,174,.18); color: #0a7a5d; }
.card.link { display: block; color: inherit; transition: transform .12s, box-shadow .12s; }
.card.link:hover { text-decoration: none; transform: translateY(-2px); box-shadow: 0 18px 40px rgba(14,23,32,.08); }
.card .more { color: var(--blue); font-weight: 800; margin-top: 10px; display: inline-block; }

/* bands */
.band { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.band.navy { background: var(--navy); color: #F1F5F8; border: 0; }
.band.navy .muted { color: #8A9BAA; } .band.navy h2, .band.navy h3 { color: #fff; }
.band.navy .card { background: #121B26; border-color: rgba(255,255,255,.08); color: #F1F5F8; }
.band.navy .card p { color: #b9c6d1; }
.band.paper2 { background: var(--paper-2); }
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }

/* list */
.checks { list-style: none; padding: 0; margin: 18px 0 0; }
.checks li { position: relative; padding-left: 32px; margin-bottom: 12px; }
.checks li::before { content: ''; position: absolute; left: 0; top: 4px; width: 20px; height: 20px; border-radius: 50%; background: rgba(62,216,174,.22); }
.checks li::after { content: ''; position: absolute; left: 6px; top: 8px; width: 8px; height: 5px; border-left: 2.5px solid #0a7a5d; border-bottom: 2.5px solid #0a7a5d; transform: rotate(-45deg); }

/* tiers */
.tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; }
.tier { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-s); padding: 16px; text-align: center; }
.tier b { display: block; font-size: 1.35rem; font-weight: 800; color: var(--red); }
.tier span { color: var(--mut); font-size: .9rem; }

/* quote */
blockquote { margin: 0; padding: 28px 30px; border-left: 4px solid var(--gold); background: var(--white); border-radius: 0 var(--r) var(--r) 0; font-size: 1.25rem; font-weight: 600; color: var(--ink-2); }
blockquote cite { display: block; font-style: normal; font-size: .95rem; color: var(--mut); margin-top: 10px; font-weight: 600; }

/* footer */
footer { background: var(--navy); color: #b9c6d1; padding: 56px 0 34px; font-size: .95rem; }
footer .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; }
@media (max-width: 800px) { footer .cols { grid-template-columns: 1fr 1fr; } }
footer h4 { color: #fff; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 12px; }
footer a { color: #d9e2ea; display: block; margin-bottom: 8px; }
footer .fine { border-top: 1px solid rgba(255,255,255,.1); margin-top: 34px; padding-top: 22px; font-size: .85rem; color: #8A9BAA; display: flex; flex-wrap: wrap; gap: 8px 22px; justify-content: space-between; }

/* prose pages */
.prose h2 { margin-top: 42px; font-size: 1.5rem; }
.prose h3 { margin-top: 26px; }
.prose ul { padding-left: 22px; }
.prose li { margin-bottom: 6px; }

/* phone frames on app page */
.phones { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; }
.phones img { border-radius: 26px; border: 1px solid var(--line); box-shadow: 0 24px 50px rgba(14,23,32,.14); }
.hero-shot { width: min(340px, 80vw); border-radius: 30px; box-shadow: 0 30px 70px rgba(14,23,32,.22); border: 1px solid var(--line); }

.note { font-size: .9rem; color: var(--mut); }
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; background: var(--white); border: 1px solid var(--line); font-weight: 700; font-size: .9rem; margin: 0 8px 8px 0; }
