/* ============================================================
   Helpers Table — shared design system
   Extracted from the original landing page. Source of truth.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --paper: #FCFBF7;
  --paper-warm: #F5EFE3;
  --blue: #3E89B8;
  --blue-deep: #245F84;
  --blue-wash: #E5F0F6;
  --amber: #E29A35;
  --amber-deep: #C97F1E;
  --amber-soft: #F7E4C2;
  --ink: #1B2730;
  --ink-soft: #586973;
  --line: #E5DECF;
  --line-blue: #C9DFEC;
}

html { scroll-behavior: smooth; }
body {
  background: var(--paper); color: var(--ink);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px; line-height: 1.6; -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .display { font-family: 'Hanken Grotesk', sans-serif; }

.wrap { max-width: 900px; margin: 0 auto; padding: 0 28px; }

a { color: var(--blue-deep); }

/* skip link for accessibility */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--blue); color: #fff; padding: 10px 18px;
  border-radius: 0 0 10px 0; font-weight: 700; text-decoration: none;
}
.skip-link:focus { left: 0; }

/* NAV (header only — scoped so it doesn't leak onto the footer <nav>) */
body > nav {
  background: rgba(252,251,247,0.88); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line); padding: 15px 0;
  position: sticky; top: 0; z-index: 100;
}
.nav-inner { max-width: 900px; margin: 0 auto; padding: 0 28px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.nav-logo {
  font-family: 'Hanken Grotesk', sans-serif; font-weight: 900; font-size: 21px;
  color: var(--ink); letter-spacing: -0.02em; display: flex; align-items: center; gap: 9px;
  text-decoration: none;
}
.nav-logo .mark { width: 26px; height: 26px; flex-shrink: 0; }

.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-size: 15px; font-weight: 600; color: var(--ink-soft); text-decoration: none;
  letter-spacing: -0.01em; transition: color 0.18s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--blue-deep); }

.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-cta {
  background: var(--blue); color: white; font-weight: 700; font-size: 14px;
  padding: 11px 22px; border-radius: 100px; text-decoration: none;
  transition: background 0.2s, transform 0.15s; white-space: nowrap;
}
.nav-cta:hover { background: var(--blue-deep); transform: translateY(-1px); }

/* hamburger */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 42px; height: 42px; border-radius: 10px; padding: 9px;
  align-items: center; justify-content: center;
}
.nav-toggle:hover { background: var(--paper-warm); }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; position: relative; transition: 0.2s; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ''; position: absolute; left: 0; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.2s;
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 8px 0; display: none;
    box-shadow: 0 14px 30px rgba(27,39,48,0.08);
  }
  .nav-menu.open { display: flex; }
  .nav-links { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 28px; font-size: 16px; }
  .nav-links a:hover { background: var(--paper-warm); }
  .nav-right { padding: 12px 28px 6px; }
  .nav-cta { width: 100%; text-align: center; padding: 14px 22px; font-size: 15px; }
}
@media (min-width: 761px) {
  .nav-menu { display: flex !important; align-items: center; gap: 26px; }
}

/* HERO (homepage) */
.hero {
  text-align: center; padding: 90px 28px 78px; position: relative; overflow: hidden;
  background: radial-gradient(ellipse 90% 55% at 50% -10%, var(--blue-wash) 0%, transparent 62%), var(--paper);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue-deep); background: white; border: 1px solid var(--line-blue);
  padding: 7px 16px; border-radius: 100px; margin-bottom: 28px;
}
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); }
.hero h1 {
  font-size: clamp(42px, 7.5vw, 82px); line-height: 0.98; font-weight: 900;
  letter-spacing: -0.035em; max-width: 860px; margin: 0 auto 24px; text-wrap: balance;
}
.hero h1 em { font-style: normal; color: var(--blue); }
.hero-sub {
  font-size: clamp(17px, 2.2vw, 21px); color: var(--ink-soft);
  max-width: 580px; margin: 0 auto 40px; line-height: 1.6;
}
.btn-primary {
  display: inline-block; background: var(--blue); color: white; font-weight: 700; font-size: 17px;
  font-family: 'Plus Jakarta Sans', sans-serif; padding: 18px 46px; border-radius: 100px;
  text-decoration: none; border: none; cursor: pointer; box-shadow: 0 6px 24px rgba(62,137,184,0.32);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary:hover { background: var(--blue-deep); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(62,137,184,0.4); }
.btn-secondary {
  display: inline-block; background: transparent; color: var(--blue-deep); font-weight: 700; font-size: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif; padding: 16px 38px; border-radius: 100px;
  text-decoration: none; border: 2px solid var(--line-blue); cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.btn-secondary:hover { border-color: var(--blue); background: var(--blue-wash); transform: translateY(-2px); }
.hero-note {
  margin-top: 18px; font-size: 13.5px; color: var(--ink-soft);
  display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
}

.table-edge { height: 0; border: none; border-top: 2px solid var(--line); position: relative; max-width: 900px; margin: 0 auto; }
.table-edge::before { content: ''; position: absolute; left: 50%; top: -1px; transform: translateX(-50%); width: 64px; border-top: 2px solid var(--amber); }

section { padding: 80px 0; }
.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--blue-deep); margin-bottom: 14px; display: flex; align-items: center; gap: 10px;
}
.eyebrow::before { content:''; width: 24px; height: 2px; background: var(--amber); }
.eyebrow.center { justify-content: center; }
h2 { font-size: clamp(30px, 4.8vw, 50px); line-height: 1.16; font-weight: 900; letter-spacing: -0.03em; margin-bottom: 22px; text-wrap: balance; }
h2 em { font-style: normal; color: var(--blue); }
p { color: #3A4750; margin-bottom: 18px; }
strong { color: var(--ink); font-weight: 700; }

/* RECOGNITION */
.recognition { background: var(--paper); }
.recognition .big {
  font-family: 'Hanken Grotesk', sans-serif; font-weight: 800; letter-spacing: -0.02em;
  font-size: clamp(22px, 3.2vw, 30px); line-height: 1.35; color: var(--ink); max-width: 720px;
}
.recognition .big span { color: var(--blue); }

/* PROBLEM */
.problem { background: var(--paper-warm); }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 42px; }
@media (max-width: 600px) { .problem-grid { grid-template-columns: 1fr; } }
.pcard { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 26px; }
.pcard .ic { width: 42px; height: 42px; border-radius: 10px; background: var(--blue-wash); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; font-size: 20px; }
.pcard h3 { font-size: 18px; font-weight: 800; margin-bottom: 6px; letter-spacing: -0.01em; }
.pcard p { font-size: 15px; margin: 0; color: var(--ink-soft); }

/* ROWING */
.rowing { background: var(--blue-deep); color: var(--paper); text-align: center; }
.rowing .eyebrow { color: var(--amber-soft); justify-content: center; }
.rowing .eyebrow::before { background: var(--amber); }
.rowing h2 { color: white; max-width: 760px; margin: 0 auto 24px; }
.rowing h2 em { font-style: normal; color: var(--amber); }
.rowing p { color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto 18px; font-size: 18px; }
.boat-art { margin: 40px auto 8px; max-width: 460px; width: 100%; }

/* SOLUTION */
.solution { background: var(--paper); }
.quote {
  font-family: 'Hanken Grotesk', sans-serif; font-weight: 800; font-size: clamp(22px, 3.2vw, 30px);
  line-height: 1.3; letter-spacing: -0.02em; color: var(--ink);
  padding: 8px 0 8px 28px; border-left: 4px solid var(--amber); margin: 34px 0;
}

/* HOW */
.how { background: var(--paper-warm); }
.settings { margin-top: 44px; display: flex; flex-direction: column; gap: 4px; }
.setting { display: flex; gap: 22px; align-items: flex-start; padding: 26px 0; border-bottom: 1px solid var(--line); }
.setting:last-child { border-bottom: none; }
.seat {
  flex-shrink: 0; width: 50px; height: 50px; border-radius: 50%;
  border: 2px solid var(--amber); color: var(--amber-deep);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Hanken Grotesk', sans-serif; font-weight: 900; font-size: 20px;
  background: var(--amber-soft);
}
.setting h3 { font-size: 20px; font-weight: 800; margin-bottom: 5px; letter-spacing: -0.01em; }
.setting p { font-size: 15px; margin: 0; color: var(--ink-soft); }

/* TIME */
.time { background: var(--paper); }
.time-box { background: var(--blue-wash); border: 1px solid var(--line-blue); border-radius: 18px; padding: 38px; display: grid; grid-template-columns: auto 1fr; gap: 26px; align-items: center; }
@media (max-width: 600px) { .time-box { grid-template-columns: 1fr; padding: 28px; gap: 16px; } }
.time-clock { font-size: 50px; line-height: 1; }
.time-box h3 { font-size: 23px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.01em; }
.time-box p { font-size: 15.5px; margin: 0; color: var(--ink-soft); }

/* WHO */
.who { background: var(--paper-warm); }
.who-list { margin-top: 38px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 600px) { .who-list { grid-template-columns: 1fr; } }
.who-item { display: flex; align-items: center; gap: 13px; background: var(--paper); border: 1px solid var(--line); border-radius: 10px; padding: 15px 18px; font-size: 15px; font-weight: 500; }
.who-item .chk { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--blue); color: white; font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; }

/* FORM */
.cta { background: var(--paper); }
.form-card { background: var(--paper); border: 1px solid var(--line-blue); border-radius: 22px; padding: 50px 46px; max-width: 600px; margin: 0 auto; box-shadow: 0 18px 50px rgba(36,95,132,0.1); }
@media (max-width: 600px) { .form-card { padding: 34px 24px; } }
.form-card h2 { text-align: center; font-size: clamp(28px, 4.8vw, 40px); margin-bottom: 10px; }
.form-card .sub { text-align: center; color: var(--ink-soft); font-size: 15px; margin-bottom: 22px; }
.stack { list-style: none; margin: 0 0 28px; padding: 22px 24px; background: var(--paper-warm); border-radius: 12px; }
.stack li { font-size: 14.5px; color: var(--ink); padding: 6px 0 6px 28px; position: relative; }
.stack li::before { content: '✓'; position: absolute; left: 0; top: 6px; color: var(--blue-deep); font-weight: 700; }
.fg { margin-bottom: 16px; }
.fg label { display: block; font-size: 12.5px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 7px; }
.fg input, .fg textarea { width: 100%; background: white; border: 1px solid var(--line); border-radius: 10px; color: var(--ink); font-family: 'Plus Jakarta Sans', sans-serif; font-size: 16px; padding: 13px 15px; outline: none; transition: border-color 0.2s, box-shadow 0.2s; }
.fg input::placeholder, .fg textarea::placeholder { color: #A7B4BC; }
.fg input:focus, .fg textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(62,137,184,0.14); }
.fg textarea { min-height: 100px; resize: vertical; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 540px) { .frow { grid-template-columns: 1fr; } }
.form-submit { width: 100%; margin-top: 6px; }
.form-note { text-align: center; font-size: 13px; color: var(--ink-soft); margin-top: 14px; }
.success { display: none; text-align: center; padding: 30px 10px; font-family: 'Hanken Grotesk', sans-serif; font-size: 24px; font-weight: 800; color: var(--blue-deep); }

footer { background: var(--ink); color: rgba(255,255,255,0.9); text-align: center; padding: 38px 28px; font-size: 14px; }
.footer-logo { font-family: 'Hanken Grotesk', sans-serif; font-weight: 900; font-size: 19px; color: white; margin-bottom: 8px; }
footer .verse { color: var(--amber-soft); margin-top: 6px; font-weight: 500; }
footer .foot-nav { margin: 14px 0 4px; display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
footer .foot-nav a { color: rgba(255,255,255,0.95); text-decoration: none; font-size: 13.5px; font-weight: 600; }
footer .foot-nav a:hover { color: #fff; }

/* ============================================================
   Interior page components (About, How It Works, FAQ, Contact)
   ============================================================ */

/* page hero — lighter than homepage hero */
.page-hero {
  text-align: center; padding: 76px 28px 64px; position: relative; overflow: hidden;
  background: radial-gradient(ellipse 90% 60% at 50% -20%, var(--blue-wash) 0%, transparent 60%), var(--paper);
}
.page-hero .hero-eyebrow { margin-bottom: 22px; }
.page-hero h1 {
  font-size: clamp(38px, 6vw, 64px); line-height: 1.1; font-weight: 900;
  letter-spacing: -0.035em; max-width: 760px; margin: 0 auto 20px; text-wrap: balance;
}
.page-hero h1 em { font-style: normal; color: var(--blue); }
.page-hero .lead {
  font-size: clamp(17px, 2.1vw, 20px); color: var(--ink-soft);
  max-width: 600px; margin: 0 auto; line-height: 1.6;
}

/* generic prose block */
.prose { max-width: 720px; }
.prose h2 { margin-top: 8px; }
.prose h3 { font-size: 21px; font-weight: 800; letter-spacing: -0.01em; margin: 34px 0 8px; }
.prose p { font-size: 17px; }

/* value cards row */
.value-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin-top: 42px; }
@media (max-width: 760px) { .value-grid { grid-template-columns: 1fr; } }
.vcard { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 28px 26px; }
.vcard .ic { width: 44px; height: 44px; border-radius: 11px; background: var(--amber-soft); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; font-size: 21px; }
.vcard h3 { font-size: 18px; font-weight: 800; margin-bottom: 6px; letter-spacing: -0.01em; }
.vcard p { font-size: 15px; margin: 0; color: var(--ink-soft); }

/* timeline / agenda for How It Works */
.agenda { margin-top: 40px; display: flex; flex-direction: column; gap: 14px; }
.agenda-row { display: grid; grid-template-columns: 120px 1fr; gap: 22px; align-items: start; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 22px 26px; }
@media (max-width: 600px) { .agenda-row { grid-template-columns: 1fr; gap: 6px; } }
.agenda-time { font-family: 'Hanken Grotesk', sans-serif; font-weight: 900; font-size: 17px; color: var(--amber-deep); letter-spacing: -0.01em; }
.agenda-row h3 { font-size: 18px; font-weight: 800; margin-bottom: 4px; letter-spacing: -0.01em; }
.agenda-row p { font-size: 15px; margin: 0; color: var(--ink-soft); }

/* FAQ accordion */
.faq-list { margin-top: 40px; max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer; text-align: left;
  font-family: 'Hanken Grotesk', sans-serif; font-weight: 800; font-size: 19px; color: var(--ink);
  letter-spacing: -0.01em; padding: 24px 44px 24px 0; position: relative; line-height: 1.3;
}
.faq-q::after {
  content: '+'; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-size: 26px; font-weight: 700; color: var(--blue); transition: transform 0.2s;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.faq-q[aria-expanded="true"]::after { content: '–'; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.28s ease; }
.faq-a-inner { padding: 0 0 24px; }
.faq-a p { font-size: 16px; margin: 0 0 12px; color: var(--ink-soft); }
.faq-a p:last-child { margin-bottom: 0; }

/* contact layout */
.contact { background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 44px; align-items: start; }
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }
.contact-aside h2 { font-size: clamp(28px, 4vw, 40px); }
.contact-aside p { font-size: 16px; }
.contact-points { list-style: none; margin: 26px 0 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.contact-points li { display: flex; gap: 14px; align-items: flex-start; }
.contact-points .ic { flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px; background: var(--blue-wash); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.contact-points h3 { font-size: 16px; font-weight: 800; margin-bottom: 2px; letter-spacing: -0.01em; }
.contact-points p { font-size: 14.5px; margin: 0; color: var(--ink-soft); }
.contact-points a { color: var(--blue-deep); font-weight: 600; text-decoration: none; }
.contact-points a:hover { text-decoration: underline; }

/* mini CTA band */
.cta-band { background: var(--paper-warm); text-align: center; }
.cta-band h2 { max-width: 640px; margin: 0 auto 14px; }
.cta-band p { max-width: 560px; margin: 0 auto 30px; color: var(--ink-soft); font-size: 17px; }
