/* ───────────────────────────────────────────────────────────────────────
   Aquarise — shared landing-page + cheat-sheet styles
   Used by all funnel pages (grants, ad-grant, green, …).
   Brand: Plus Jakarta Sans + Inter; navy / blue / cyan.
   ─────────────────────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy:      #0A1628;
  --navy-mid:  #0D1F3C;
  --navy-lt:   #112240;
  --blue:      #0066FF;
  --blue-dark: #0052CC;
  --cyan:      #00D4FF;
  --white:     #FFFFFF;
  --grey-bg:   #F5F7FA;
  --grey-text: #8A9AB5;
  --ink-soft:  #475569;
  --border-lt: #E2E8F0;
  --radius:    14px;
  --transition: 0.22s ease;
  /* per-page accent override if ever needed; defaults to brand blue/cyan */
  --accent:      var(--blue);
  --accent-dark: var(--blue-dark);
  --accent-2:    var(--cyan);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--navy); line-height: 1.6; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; }
a { color: inherit; }

/* ── Minimal header (distraction-free) ─────────────────────────────────── */
header { background: var(--navy); border-bottom: 1px solid rgba(255,255,255,0.06); }
.header-inner { max-width: 1080px; margin: 0 auto; padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { width: 30px; height: 30px; border-radius: 7px; }
.brand span { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 20px; color: var(--white); letter-spacing: -0.5px; }
.header-tag { font-size: 13px; color: var(--grey-text); }
.back { font-size: 13px; color: var(--cyan); text-decoration: none; }

/* ── Hero ──────────────────────────────────────────────────────────────── */
.hero {
  background:
    radial-gradient(1100px 500px at 80% -10%, rgba(0,102,255,0.22), transparent 60%),
    radial-gradient(800px 400px at 0% 110%, rgba(0,212,255,0.12), transparent 60%),
    var(--navy);
  color: var(--white);
  padding: 64px 24px 72px;
}
.hero-inner { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; letter-spacing: 0.3px; color: var(--accent-2); background: rgba(0,212,255,0.10); border: 1px solid rgba(0,212,255,0.22); padding: 6px 12px; border-radius: 999px; margin-bottom: 22px; }
.hero h1 { font-size: clamp(32px, 4.6vw, 50px); margin-bottom: 18px; }
.hero h1 em { color: var(--accent-2); font-style: normal; }
.hero p.sub { font-size: 18px; color: #C7D2E2; max-width: 520px; margin-bottom: 28px; }
.hero ul.ticks { list-style: none; display: grid; gap: 12px; max-width: 480px; }
.hero ul.ticks li { position: relative; padding-left: 34px; font-size: 15.5px; color: #D8E0EC; line-height: 1.55; }
.tick { position: absolute; left: 0; top: 1px; width: 22px; height: 22px; border-radius: 50%; background: rgba(0,212,255,0.15); color: var(--accent-2); display: grid; place-items: center; font-size: 12px; font-weight: 700; }

/* ── Form card ─────────────────────────────────────────────────────────── */
.card { background: var(--white); border-radius: 18px; padding: 32px 30px; box-shadow: 0 30px 70px rgba(0,0,0,0.35); color: var(--navy); }
.card .pill { display: inline-block; font-size: 12px; font-weight: 700; color: var(--accent-dark); background: #E8F0FF; padding: 5px 11px; border-radius: 999px; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.5px; }
.card h2 { font-size: 23px; margin-bottom: 6px; }
.card .card-sub { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 22px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input { width: 100%; padding: 13px 14px; font-family: inherit; font-size: 15px; color: var(--navy); background: var(--grey-bg); border: 1.5px solid var(--border-lt); border-radius: 10px; transition: var(--transition); }
.form-group input::placeholder { color: #9AA7BC; }
.form-group input:focus { outline: none; border-color: var(--accent); background: var(--white); box-shadow: 0 0 0 3px rgba(0,102,255,0.12); }
.optional { color: var(--grey-text); font-weight: 500; }
.hp { position: absolute; left: -9999px; opacity: 0; }
.btn { width: 100%; padding: 15px 20px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 16px; font-weight: 700; color: var(--white); background: linear-gradient(135deg, var(--accent), var(--accent-dark)); border: none; border-radius: 10px; cursor: pointer; transition: var(--transition); margin-top: 6px; box-shadow: 0 10px 24px rgba(0,102,255,0.35); }
.btn:hover { transform: translateY(-1px); box-shadow: 0 14px 30px rgba(0,102,255,0.45); }
.btn:disabled { opacity: 0.7; cursor: wait; transform: none; }
.reassure { font-size: 12.5px; color: var(--grey-text); text-align: center; margin-top: 14px; line-height: 1.5; }

/* select + textarea inside the card (match the input styling) */
.form-group select,
.form-group textarea { width: 100%; padding: 13px 14px; font-family: inherit; font-size: 15px; color: var(--navy); background: var(--grey-bg); border: 1.5px solid var(--border-lt); border-radius: 10px; transition: var(--transition); -webkit-appearance: none; appearance: none; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230066FF' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 90px; line-height: 1.5; }
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--accent); background: var(--white); box-shadow: 0 0 0 3px rgba(0,102,255,0.12); }
.field-note { font-size: 12.5px; color: var(--grey-text); margin-top: 6px; line-height: 1.45; }

/* checkbox group (channels) */
.check-group { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; margin-top: 4px; }
.check-group label { display: flex; gap: 9px; align-items: center; font-size: 14px; font-weight: 500; color: var(--navy); cursor: pointer; }
.check-group input { width: 16px; height: 16px; accent-color: var(--accent); flex: 0 0 auto; }

/* step progress ("Step 2 of 2") */
.step-progress { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.step-progress .dots { display: flex; gap: 6px; }
.step-progress .dot { width: 26px; height: 5px; border-radius: 999px; background: var(--border-lt); }
.step-progress .dot.on { background: linear-gradient(135deg, var(--accent), var(--accent-2)); }
.step-progress .label { font-size: 12px; font-weight: 700; letter-spacing: 0.4px; text-transform: uppercase; color: var(--accent-dark); }

/* trust strip under the hero / above sections */
.trust-strip { background: var(--navy-mid); border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.trust-strip .wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 30px; padding: 0; }
.trust-strip .ti { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #C7D2E2; }
.trust-strip .ti b { color: var(--white); font-weight: 700; }
.trust-strip .ti .tk { color: var(--accent-2); font-weight: 800; }
section.trust-strip { padding: 18px 24px; }

/* testimonial / case slot */
.testimonial { max-width: 760px; margin: 0 auto; background: var(--white); border: 1px solid var(--border-lt); border-left: 3px solid var(--accent); border-radius: var(--radius); padding: 26px 28px; box-shadow: 0 10px 30px rgba(10,22,40,0.05); }
.testimonial p { font-size: 17px; color: var(--navy); line-height: 1.6; margin-bottom: 12px; }
.testimonial .cite { font-size: 13.5px; color: var(--grey-text); font-weight: 600; }

/* success state */
.success { display: none; text-align: center; padding: 8px 4px; }
.success.show { display: block; }
.success .check { width: 60px; height: 60px; margin: 0 auto 18px; border-radius: 50%; background: #E6F9F0; color: #16A34A; display: grid; place-items: center; font-size: 30px; }
.success h2 { font-size: 22px; margin-bottom: 8px; }
.success p { font-size: 15px; color: var(--ink-soft); margin-bottom: 22px; }
.success .btn { display: inline-block; width: auto; padding: 14px 28px; text-decoration: none; }

/* ── Sections ──────────────────────────────────────────────────────────── */
section { padding: 64px 24px; }
.wrap { max-width: 1000px; margin: 0 auto; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-head h2 { font-size: clamp(26px, 3.4vw, 34px); margin-bottom: 12px; }
.section-head p { color: var(--ink-soft); font-size: 17px; }

.inside-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.inside-card { background: var(--grey-bg); border: 1px solid var(--border-lt); border-radius: var(--radius); padding: 24px 22px; }
.inside-card .ico { width: 42px; height: 42px; border-radius: 10px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); display: grid; place-items: center; font-size: 20px; margin-bottom: 14px; }
.inside-card h3 { font-size: 17.5px; margin-bottom: 6px; }
.inside-card p { font-size: 14.5px; color: var(--ink-soft); }

.who { background: var(--grey-bg); }
.who-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.who-item { background: var(--white); border: 1px solid var(--border-lt); border-radius: var(--radius); padding: 22px; font-size: 15px; color: var(--ink-soft); }
.who-item strong { color: var(--navy); display: block; margin-bottom: 4px; font-family: 'Plus Jakarta Sans', sans-serif; }

.cta-band { background: var(--navy); color: var(--white); text-align: center; }
.cta-band h2 { font-size: clamp(26px, 3.4vw, 34px); margin-bottom: 14px; }
.cta-band p { color: #C7D2E2; max-width: 560px; margin: 0 auto 28px; font-size: 17px; }
.cta-band a.btn { display: inline-block; width: auto; padding: 15px 34px; text-decoration: none; }

/* ── Disclaimer / footer ───────────────────────────────────────────────── */
.disclaimer { max-width: 760px; margin: 0 auto; background: #FFFaf0; border: 1px solid #F1E3C0; border-radius: var(--radius); padding: 20px 24px; font-size: 13.5px; color: #7A6A3A; line-height: 1.6; }
.disclaimer strong { color: #5C4F26; }
.updated { font-size: 13px; color: var(--grey-text); margin-top: 6px; }

footer { background: var(--navy); color: var(--grey-text); padding: 36px 24px; text-align: center; font-size: 13px; line-height: 1.7; }
footer a { color: var(--cyan); text-decoration: none; }
footer .brand-f { color: var(--white); font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 16px; }

/* ── Deliverable / cheat-sheet doc pages ───────────────────────────────── */
.doc-hero { background: radial-gradient(900px 380px at 80% -20%, rgba(0,102,255,0.25), transparent 60%), var(--navy); color: var(--white); padding: 48px 24px 40px; }
.doc-hero-inner { max-width: 880px; margin: 0 auto; }
.doc-hero .kicker { color: var(--accent-2); font-weight: 600; font-size: 13px; letter-spacing: 0.4px; text-transform: uppercase; margin-bottom: 12px; }
.doc-hero h1 { font-size: clamp(28px,4vw,40px); margin-bottom: 12px; }
.doc-hero p { color: #C7D2E2; font-size: 17px; max-width: 620px; }
.doc { max-width: 880px; margin: -20px auto 0; padding: 0 24px 64px; background: var(--grey-bg); }
body.doc-page { background: var(--grey-bg); }
.panel { background: var(--white); border: 1px solid var(--border-lt); border-radius: 16px; padding: 32px 32px; margin-bottom: 22px; box-shadow: 0 10px 30px rgba(10,22,40,0.05); }
.panel h2 { font-size: 24px; margin-bottom: 6px; }
.panel h2 .num { color: var(--accent); }
.panel .lede { color: var(--ink-soft); margin-bottom: 20px; font-size: 15.5px; }

.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 12px; border: 1px solid var(--border-lt); }
table { width: 100%; border-collapse: collapse; min-width: 560px; font-size: 14.5px; }
th, td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--border-lt); vertical-align: top; }
thead th { background: var(--navy); color: var(--white); font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 14px; }
tbody tr:last-child td { border-bottom: none; }
tbody th { background: var(--grey-bg); font-weight: 700; color: var(--navy); width: 150px; }
td .big { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 17px; color: var(--accent-dark); display: block; }

.grant-block { border-left: 3px solid var(--accent); padding-left: 18px; margin: 22px 0; }
.grant-block h3 { font-size: 18px; margin-bottom: 6px; }
.grant-block p { font-size: 15px; color: var(--ink-soft); }

ul.clean { list-style: none; display: grid; gap: 10px; margin-top: 8px; }
ul.clean li { position: relative; padding-left: 31px; font-size: 15px; color: var(--ink-soft); line-height: 1.6; }
ul.clean li .b { position: absolute; left: 0; top: 3px; width: 20px; height: 20px; border-radius: 50%; background: #E8F0FF; color: var(--accent-dark); display: grid; place-items: center; font-size: 11px; font-weight: 700; }
.mistakes li .b { background: #FDECEC; color: #C0392B; }

ol.steps { counter-reset: s; list-style: none; display: grid; gap: 14px; margin-top: 8px; }
ol.steps li { position: relative; padding-left: 42px; font-size: 15px; color: var(--ink-soft); line-height: 1.6; }
ol.steps li::before { counter-increment: s; content: counter(s); position: absolute; left: 0; top: 0; width: 28px; height: 28px; border-radius: 8px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; display: grid; place-items: center; font-size: 14px; }
ol.steps li strong { color: var(--navy); }

.checklist { background: var(--grey-bg); border-radius: 12px; padding: 22px 24px; }
.checklist label { position: relative; padding: 9px 0 9px 29px; font-size: 15px; color: var(--navy); cursor: pointer; line-height: 1.5; }
.checklist input { position: absolute; left: 0; top: 12px; width: 17px; height: 17px; accent-color: var(--accent); }

.next { background: var(--navy); color: #fff; border-radius: 16px; padding: 30px 32px; text-align: center; }
.next h2 { font-size: 22px; margin-bottom: 10px; }
.next p { color: #C7D2E2; max-width: 520px; margin: 0 auto 20px; font-size: 15.5px; }
.next a { display: inline-block; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #fff; text-decoration: none; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; padding: 13px 28px; border-radius: 10px; }

/* ── Proof / real results ──────────────────────────────────────────────── */
.proof { background: var(--grey-bg); }
.proof-figure { max-width: 920px; margin: 0 auto; background: var(--white); border: 1px solid var(--border-lt); border-radius: var(--radius); box-shadow: 0 18px 46px rgba(10,22,40,0.10); overflow: hidden; }
.proof-figure img { display: block; width: 100%; height: auto; border-bottom: 1px solid var(--border-lt); }
.proof-figure figcaption { font-size: 12.5px; color: var(--grey-text); text-align: center; padding: 11px 16px; font-weight: 600; letter-spacing: 0.2px; }
.proof-stats { max-width: 920px; margin: 28px auto 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.pstat { background: var(--white); border: 1px solid var(--border-lt); border-radius: 12px; padding: 20px 18px; text-align: center; }
.pstat .pn { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: clamp(26px, 3.2vw, 34px); line-height: 1.1; color: var(--accent-dark); letter-spacing: -0.5px; }
.pstat .pl { display: block; margin-top: 8px; font-size: 13px; color: var(--ink-soft); line-height: 1.45; }
.proof-note { max-width: 720px; margin: 26px auto 0; text-align: center; font-size: 13.5px; color: var(--grey-text); line-height: 1.6; }

/* ── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero { padding: 44px 20px 52px; }
  .inside-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  .header-tag { display: none; }
  .proof-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) { .panel { padding: 24px 20px; } }
@media print { header, .doc-hero, .next, .back { display: none; } body, .doc { background: #fff; } .panel { box-shadow: none; border: 1px solid #ddd; } }

/* Three-across card row. Use this INSTEAD of an inline
   `style="grid-template-columns:repeat(3,1fr)"` — an inline style beats the
   responsive media query below and forces horizontal overflow on phones,
   because grid items will not shrink below their min-content width. */
.inside-grid.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px) { .inside-grid.grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .inside-grid.grid-3 { grid-template-columns: 1fr; } }
