/* ===== Surge FBA — Clean Operator design system ===== */
:root {
  --navy: #00468F; --blue: #0F74AE; --cyan: #36C4F0;
  --ink: #05264D; --body: #4A607A; --muted: #5B7088;
  --ground: #F7FAFD; --card: #FFFFFF; --border: #E3EBF3;
  --tint: #E7F5FD; --profit: #117F3A;
  --font-display: 'Schibsted Grotesk', 'Avenir Next', sans-serif;
  --font-body: 'Schibsted Grotesk', 'Helvetica Neue', sans-serif;
  --font-mono: 'IBM Plex Mono', 'SF Mono', monospace;
  --radius: 12px;
  --shadow: 0 6px 18px rgba(5, 38, 77, 0.07);
  --wrap: 1080px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-body); color: var(--body); background: var(--ground);
  font-size: 17px; line-height: 1.6; -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: var(--font-display); color: var(--ink); line-height: 1.15; }
a { color: var(--blue); }
img { max-width: 100%; display: block; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section.alt { background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.kicker {
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue);
  display: block; margin-bottom: 14px;
}
.h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 700; margin-bottom: 14px; }
.sub { font-size: 18px; max-width: 620px; margin-bottom: 40px; }
.btn {
  display: inline-block; font-family: var(--font-display); font-weight: 600;
  font-size: 16px; text-decoration: none; border-radius: 10px;
  padding: 15px 28px; transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.btn-primary {
  background: var(--navy); color: #fff;
  box-shadow: 0 4px 14px rgba(0, 70, 143, 0.25);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(0, 70, 143, 0.32); }
.btn-ghost { color: var(--navy); border: 1.5px solid var(--border); background: var(--card); }
.cta-note { font-size: 13.5px; color: var(--muted); margin-top: 12px; }

/* nav */
.nav { position: sticky; top: 0; z-index: 10; background: rgba(247, 250, 253, 0.92); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { width: 30px; height: 30px; }
.brand span { font-family: var(--font-display); font-weight: 700; letter-spacing: 0.05em; color: var(--ink); font-size: 17px; }
.brand span b { color: var(--blue); }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { color: var(--body); text-decoration: none; font-size: 15px; font-weight: 500; }
.nav-links a:hover { color: var(--ink); }
.nav .btn { padding: 10px 18px; font-size: 14px; }
.nav-links a.btn-primary { color: #fff; }

/* footer */
.footer { background: var(--card); border-top: 1px solid var(--border); padding: 44px 0; font-size: 14px; color: var(--muted); }
.footer .wrap { display: flex; flex-wrap: wrap; gap: 18px; justify-content: space-between; align-items: center; }
.footer a { color: var(--muted); }
.disclaimer { max-width: 720px; font-size: 12.5px; line-height: 1.55; margin-top: 18px; }

@media (max-width: 720px) {
  .section { padding: 60px 0; }
  .nav-links a:not(.btn) { display: none; }
}

/* hero */
.hero { padding: 96px 0 88px; }
.hero-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(36px, 5.5vw, 56px); font-weight: 700; margin-bottom: 18px; }
.hero-sub { font-size: 19px; max-width: 540px; margin-bottom: 30px; }
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; } .hero { padding: 64px 0; } }

/* deal cards */
.deal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.deal-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px 22px; box-shadow: var(--shadow);
}
.deal-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.deal-meta { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--blue); }
.roi-pill { background: var(--tint); color: var(--navy); font-family: var(--font-mono); font-size: 11px; font-weight: 500; padding: 3px 10px; border-radius: 99px; }
.deal-name { font-size: 16.5px; font-weight: 600; margin-bottom: 14px; }
.deal-figures { display: flex; gap: 22px; }
.deal-figures dt { font-size: 11.5px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.deal-figures dd { font-family: var(--font-mono); font-size: 15px; color: var(--ink); font-weight: 500; }
.deal-figures .profit { color: var(--profit); }
.deal-source { margin-top: 14px; font-size: 12.5px; color: var(--muted); }
.deal-cta { text-align: center; margin-top: 40px; }
@media (max-width: 860px) { .deal-grid { grid-template-columns: 1fr; } }

/* value stack */
.stack-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.stack-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.stack-item .pain { font-style: italic; color: var(--muted); font-size: 14px; margin-bottom: 12px; }
.stack-item h3 { font-size: 18px; margin-bottom: 8px; }
.stack-item p:last-child { font-size: 15px; }
@media (max-width: 860px) { .stack-grid { grid-template-columns: 1fr; } }

/* founder + cap */
.narrow { max-width: 760px; }
.founder-quote { max-width: 720px; position: relative; padding-top: 38px; }
.founder-quote::before { content: "\201C"; font-family: var(--font-display); font-weight: 700; font-size: 72px; line-height: 1; color: var(--cyan); position: absolute; top: -10px; left: -4px; }
.founder-quote p { font-size: 18px; color: var(--ink); margin-bottom: 16px; }
.founder-sign { font-family: var(--font-mono); font-size: 13px; color: var(--muted); }
.cap-panel { margin-top: 32px; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow); }
.seats-bar { height: 10px; background: var(--tint); border-radius: 99px; overflow: hidden; margin-bottom: 12px; }
.seats-fill { height: 100%; background: linear-gradient(90deg, var(--blue), var(--cyan)); border-radius: 99px; }
.seats-line { font-size: 15px; }
.seats-line strong { color: var(--ink); }

/* pricing */
.price-card { background: var(--card); border: 1.5px solid var(--navy); border-radius: var(--radius); padding: 34px 36px; box-shadow: var(--shadow); max-width: 560px; }
.price-figure { font-family: var(--font-display); font-size: 48px; font-weight: 700; color: var(--ink); margin-bottom: 18px; }
.price-figure span { font-size: 18px; color: var(--muted); font-weight: 600; }
.price-list { list-style: none; margin-bottom: 26px; }
.price-list li { padding-left: 28px; position: relative; margin-bottom: 10px; font-size: 15.5px; }
.price-list li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 700; }
.anchor-line { margin-top: 20px; font-size: 14px; color: var(--muted); }
/* faq */
.faq details { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; padding: 0 22px; }
.faq summary { cursor: pointer; font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: 16.5px; padding: 18px 0; list-style: none; position: relative; padding-right: 30px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 2px; top: 14px; font-size: 22px; color: var(--blue); }
.faq details[open] summary::after { content: "–"; }
.faq details p, .faq details ul { padding: 0 0 18px; font-size: 15.5px; }
.faq .notfor { margin-left: 20px; }
.faq .notfor li { margin-bottom: 8px; }

/* subpages */
.page h3 { margin: 28px 0 8px; font-size: 19px; }
.page p, .page ul { margin-bottom: 12px; font-size: 15.5px; }
.page ul { margin-left: 22px; }
.steps { text-align: left; max-width: 460px; margin: 36px auto 24px; padding-left: 22px; }
.steps li { margin-bottom: 12px; }
.steps strong { color: var(--ink); }
