/* Buoy shared styles. Page-specific rules live in each page's <style> block. */
:root {
  --ink: #102f35;
  --paper: #fff8ec;
  --orange: #ff593d;
  --yellow: #ffd448;
  --aqua: #a7e6da;
  --blue: #b9dff1;
  --line: rgba(16,47,53,.23);
  --shadow: 0 18px 50px rgba(16,47,53,.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}
/* Decorative shapes bleed past the right edge on purpose. Clip them at the
   viewport so phones cannot pan sideways. clip (unlike hidden) keeps sticky
   positioning working; hidden is the fallback for older mobile browsers. */
main { overflow-x: clip; }
@supports not (overflow-x: clip) {
  @media (max-width: 850px) { main { overflow-x: hidden; } }
}
button, a { font: inherit; }
a { color: inherit; }
:focus-visible { outline: 3px solid var(--ink); outline-offset: 4px; }
.wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.topline {
  background: var(--ink);
  color: white;
  font: 500 12px/1.3 "DM Mono", monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 16px;
}
.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}
.nav-note { font-weight: 700; font-size: 15px; }
.nav-note a { text-decoration: none; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { text-decoration: none; font-size: 14px; font-weight: 700; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--orange);
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform .16s ease, box-shadow .16s ease;
}
.button:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.button.dark { background: var(--ink); color: white; box-shadow: 4px 4px 0 var(--orange); }
.eyebrow {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  font: 500 12px/1.3 "DM Mono", monospace;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 20px;
}
.eyebrow::before { content: ""; width: 36px; height: 3px; background: var(--orange); }
h1, h2, h3, p { margin-top: 0; }
.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.micro { font: 500 12px/1.45 "DM Mono", monospace; max-width: 220px; }
.section { padding: clamp(78px, 10vw, 130px) 0; }
.section-head { display: grid; grid-template-columns: .75fr 1.25fr; gap: 44px; align-items: start; margin-bottom: 62px; }
.section-head h2 { font-size: clamp(42px, 5vw, 72px); line-height: .98; letter-spacing: -.045em; margin: 0; text-wrap: balance; }
.section-head p { font-size: 20px; max-width: 600px; margin: 8px 0 0; }
.flow { counter-reset: steps; border-top: 2px solid var(--ink); }
.flow-row {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 90px 1fr 1.1fr;
  gap: 28px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.flow-row::before { content: "0" counter(steps); font: 500 16px/1.3 "DM Mono", monospace; color: var(--orange); }
.flow-row h3 { font-size: clamp(25px, 2.8vw, 36px); line-height: 1.05; margin: 0; letter-spacing: -.025em; }
.flow-row p { margin: 0; font-size: 17px; max-width: 520px; }
.stack { display: grid; gap: 13px; }
.stack-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 15px;
  align-items: center;
  background: white;
  color: var(--ink);
  border-radius: 13px;
  padding: 16px 18px;
  transform: rotate(var(--r, 0deg));
}
.stack-item:nth-child(4n + 1) { --r: .65deg; background: white; }
.stack-item:nth-child(4n + 2) { --r: -1deg; background: var(--aqua); }
.stack-item:nth-child(4n + 3) { --r: .75deg; background: var(--yellow); }
.stack-item:nth-child(4n) { --r: -.55deg; background: var(--blue); }
.stack-icon { width: 52px; height: 52px; border: 2px solid var(--ink); border-radius: 50%; display: grid; place-items: center; font: 700 14px/1 "DM Mono", monospace; }
.stack-item strong { display: block; font-size: 17px; }
.stack-item small { display: block; font: 400 12px/1.4 "DM Mono", monospace; margin-top: 3px; }
.price-kicker { font: 500 12px/1.3 "DM Mono", monospace; text-transform: uppercase; letter-spacing: .06em; }
.price { font-size: clamp(60px, 7vw, 92px); font-weight: 800; letter-spacing: -.065em; line-height: 1; margin: 24px 0 6px; }
.price small { font-size: 17px; letter-spacing: 0; }
.guarantee-kicker { font: 500 11px/1.3 "DM Mono", monospace; text-transform: uppercase; letter-spacing: .07em; }
.guarantee-fair { font: 400 11px/1.5 "DM Mono", monospace; margin: 0; }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 56px; }
.faq-grid h2 { font-size: clamp(42px, 5vw, 70px); letter-spacing: -.045em; line-height: 1; }
details { border-top: 1px solid var(--line); padding: 22px 0; }
details:last-child { border-bottom: 1px solid var(--line); }
summary { cursor: pointer; list-style: none; font-size: 19px; font-weight: 800; padding-right: 34px; position: relative; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 2px; top: -3px; font: 500 28px/1 "DM Mono", monospace; }
details[open] summary::after { content: "–"; }
details p { margin: 15px 45px 0 0; max-width: 680px; }
.prose { max-width: 720px; padding: clamp(48px, 7vw, 90px) 0; }
.prose h1 { font-size: clamp(42px, 6vw, 72px); line-height: .95; letter-spacing: -.05em; margin-bottom: 18px; text-wrap: balance; }
.prose h2 { font-size: clamp(24px, 3vw, 32px); line-height: 1.1; letter-spacing: -.03em; margin: 40px 0 12px; }
.prose p, .prose li { font-size: 18px; line-height: 1.55; }
.prose ul { padding-left: 22px; }
.prose a { text-decoration: underline; }
footer { background: var(--ink); color: white; border-top: 2px solid var(--ink); padding: 42px 0; }
.footer-line { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.footer-line strong { font-size: clamp(30px, 4vw, 54px); letter-spacing: -.04em; line-height: 1; max-width: 720px; }
.footer-line span { font: 500 11px/1.5 "DM Mono", monospace; text-align: right; }
.footer-line a { text-decoration: underline; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
@media (max-width: 850px) {
  .nav { flex-wrap: wrap; padding: 12px 0; row-gap: 10px; }
  .nav-tagline { display: none; }
  .nav-links { flex: 1 1 auto; justify-content: space-between; flex-wrap: wrap; gap: 10px 18px; }
  .nav-links .button { margin-left: auto; }
  .section-head, .faq-grid { grid-template-columns: 1fr; }
  .section-head { gap: 20px; }
  .flow-row { grid-template-columns: 62px 1fr; }
  .flow-row p { grid-column: 2; }
}
@media (max-width: 560px) {
  .wrap { width: min(100% - 28px, 1180px); }
  .topline { font-size: 10px; }
  .nav { min-height: 62px; }
  .nav-note { font-size: 13px; }
  .nav-links a { font-size: 13px; }
  .nav-links .nav-secondary { display: none; }
  .nav .button { min-height: 42px; padding: 0 16px; font-size: 13px; box-shadow: 3px 3px 0 var(--ink); }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .button { width: 100%; }
  .nav .button { width: auto; }
  .section { padding: 72px 0; }
  .flow-row { grid-template-columns: 44px 1fr; gap: 14px; padding: 28px 0; }
  .flow-row p { font-size: 15px; }
  .stack-item { grid-template-columns: 44px 1fr; }
  .stack-icon { width: 44px; height: 44px; }
  .footer-line { align-items: flex-start; flex-direction: column; }
  .footer-line span { text-align: left; }
}
