/* Global styles - VennerAnbefaler.no */

:root {
  --bg: oklch(97% 0.018 85);
  --bg-alt: oklch(94.5% 0.022 80);
  --card: oklch(99% 0.008 85);
  --ink: oklch(23% 0.03 145);
  --ink-2: oklch(20% 0.035 145);
  --muted: oklch(46% 0.02 95);
  --muted-2: oklch(35% 0.02 95);
  --green: oklch(33% 0.07 150);
  --green-dark: oklch(18% 0.045 150);
  --terra: oklch(63% 0.14 40);
  --terra-soft: oklch(92% 0.035 45);
  --terra-ink: oklch(45% 0.11 40);
  --border: oklch(88% 0.02 85);
  --line: oklch(85% 0.02 85);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Karla', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

h1, h2, h3 { font-family: 'Lora', Georgia, serif; }

a { color: inherit; }

/* ---------- Topbar + hamburger (global, same on all pages) ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 80;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.topbar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 70;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--ink);
  text-decoration: none;
}
.brand-mark { width: 30px; height: 30px; display: block; flex-shrink: 0; }
.brand-dot { color: var(--terra); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  color: var(--muted-2);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.btn-primary,
.nav-links a.btn-primary:hover { color: oklch(97% 0.01 90); }

.hamburger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  font-size: 18px;
  color: var(--ink);
  cursor: pointer;
}

.site-menu {
  position: fixed;
  top: 75px;
  right: 0;
  height: auto;
  width: max-content;
  max-width: 82vw;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  padding: 8px 0;
  background: var(--bg);
  border-left: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  border-bottom-left-radius: 16px;
  border-top-left-radius: 16px;
  box-shadow: none;
  transform: translateX(100%);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  z-index: 60;
}
.site-menu.is-open {
  transform: translateX(0);
  box-shadow: -14px 14px 44px rgba(60, 50, 30, 0.18);
}
.site-menu a {
  padding: 13px 24px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.site-menu a:first-child:hover { border-top-left-radius: 16px; }
.site-menu a:last-child { border-bottom: none; }
.site-menu a:last-child:hover { border-bottom-left-radius: 16px; }
.site-menu a { transition: background 0.15s ease, color 0.15s ease; }
.site-menu a:hover { background: var(--terra-soft); color: var(--terra-ink); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  text-decoration: none;
  font-family: 'Karla', sans-serif;
  font-weight: 700;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary { background: var(--green); color: oklch(97% 0.01 90); }
.btn-terra { background: var(--terra); color: oklch(98% 0.01 85); }
.btn-outline { background: transparent; border: 1.5px solid var(--green); color: var(--green); }
.btn-outline:hover { background: var(--green); color: oklch(97% 0.01 90); }
.btn-sm { font-size: 15px; padding: 10px 20px; border-radius: 100px; }
.btn-lg { font-size: 17px; padding: 15px 32px; border-radius: 100px; }
.btn-block { display: block; width: 100%; font-size: 16px; padding: 13px; border-radius: 10px; text-align: center; }

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  color: var(--terra-ink);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.badge {
  display: inline-block;
  background: var(--terra-soft);
  color: var(--terra-ink);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

/* ---------- Hero ---------- */
.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 32px 96px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.hero h1 {
  font-weight: 700;
  font-size: 52px;
  line-height: 1.12;
  margin: 0 0 24px;
  text-wrap: pretty;
  color: var(--ink-2);
}
.lead {
  font-size: 19px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 40px;
  max-width: 46ch;
  text-wrap: pretty;
}
.hero-cta { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; margin-bottom: 16px; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  color: var(--green);
}
.btn-ghost:hover { color: var(--terra); }
.hero-note { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--muted); }
.hero-note i { color: var(--green); font-size: 12px; }

.hero-cats { margin-top: 28px; }
.hero-cats-lead {
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}
.hero-cats-row { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.hero-cat {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 13px;
}
.hero-cat i { color: var(--terra); font-size: 12px; }

.form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  max-width: 440px;
  color: var(--ink);
}
.form-title { font-weight: 700; font-size: 15px; margin-bottom: 16px; color: var(--ink); }
.field {
  width: 100%;
  font-family: 'Karla', sans-serif;
  font-size: 15px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  margin-bottom: 10px;
  background: var(--bg);
  color: var(--ink);
}
.field:last-of-type { margin-bottom: 10px; }
.field-label {
  display: block;
  font-weight: 600;
  font-size: 13px;
  color: var(--muted-2);
  margin: 4px 0 6px;
}
select.field {
  appearance: none;
  -webkit-appearance: none;
  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 d='M1 1l5 5 5-5' fill='none' stroke='%238a8378' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.form-card .btn-block { margin-top: 6px; }
.form-subhead { margin: 22px 0 12px; font-weight: 700; font-size: 14px; color: var(--ink); }
.radio-group { display: grid; gap: 10px; margin-bottom: 10px; }
.radio-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  font-size: 15px;
  line-height: 1.3;
  cursor: pointer;
}
.radio-chip input {
  accent-color: var(--green);
  width: 16px;
  height: 16px;
  margin: 0;
  flex-shrink: 0;
}
.radio-chip:has(input:checked) { border-color: var(--terra); background: var(--terra-soft); }
.form-note { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 13px; color: oklch(45% 0.02 90); margin-top: 12px; text-align: center; }
.form-note i { color: var(--green); font-size: 12px; }
.thanks { padding: 12px 4px; }
.thanks-title { font-family: 'Lora', serif; font-weight: 600; font-size: 19px; margin-bottom: 8px; color: var(--green); }
.thanks-body { font-size: 15px; line-height: 1.5; color: var(--muted); }

.placeholder-img {
  background: repeating-linear-gradient(135deg, oklch(90% 0.03 45), oklch(90% 0.03 45) 12px, oklch(93% 0.025 45) 12px, oklch(93% 0.025 45) 24px);
  border-radius: 24px;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid oklch(85% 0.03 45);
}
.placeholder-cap {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 13px;
  color: oklch(40% 0.05 40);
  background: color-mix(in oklch, var(--card) 85%, transparent);
  padding: 8px 16px;
  border-radius: 8px;
}
.hero-media {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid oklch(85% 0.03 45);
  aspect-ratio: 4 / 3;
  box-shadow: 0 20px 50px oklch(40% 0.05 60 / 0.14);
}
.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Sections ---------- */
.section { max-width: 1180px; margin: 0 auto; padding: 88px 32px; }
.section-alt { background: var(--bg-alt); }
.section-alt .section { }
.section-head { max-width: 620px; margin: 0 0 48px; }
.section h2 { font-weight: 700; font-size: 36px; line-height: 1.2; margin: 0; text-wrap: pretty; }

.split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: start; }
.split h2 { margin: 0 0 20px; }
.split p { font-size: 17px; line-height: 1.65; color: var(--muted); margin: 0; text-wrap: pretty; }

.trust-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.trust-list li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: 16px;
  color: var(--muted-2);
  line-height: 1.5;
}
.trust-list li i { color: var(--terra); font-size: 13px; }

.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cat {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 17px;
}
.cat i { color: var(--terra); font-size: 20px; width: 26px; text-align: center; flex-shrink: 0; }

/* ---------- Network selector ---------- */
.net-rings {
  position: relative;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.net-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid var(--line);
  background: var(--card);
  transition: all 0.2s ease;
}
.net-ring[data-net="naromrade"] { width: 248px; height: 248px; }
.net-ring[data-net="borettslag"] { width: 186px; height: 186px; }
.net-ring[data-net="venner"] { width: 126px; height: 126px; }
.net-ring[data-net="kunvenner"] { width: 66px; height: 66px; }
.net-ring.is-active { border-color: var(--terra); background: var(--terra-soft); }

.net-chips { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.net-chip {
  font-family: 'Karla', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 9px 16px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--muted-2);
  cursor: pointer;
  white-space: nowrap;
}
.net-chip.is-active { border-color: var(--terra); background: var(--terra); color: oklch(98% 0.01 85); }
.net-desc {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 24px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted-2);
  text-align: center;
  text-wrap: pretty;
}

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-bottom: 36px; }
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: oklch(97% 0.01 90);
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.step-title { font-weight: 700; font-size: 17px; margin-bottom: 8px; text-wrap: pretty; }
.step-desc { font-size: 15px; line-height: 1.55; color: var(--muted); text-wrap: pretty; }

.callout {
  background: var(--terra-soft);
  border-radius: 16px;
  padding: 20px 24px;
  font-size: 15px;
  line-height: 1.6;
  color: oklch(38% 0.09 42);
  text-wrap: pretty;
}

/* ---------- Rating dimensions ---------- */
.dims { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 28px; }
.dim-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
}
.dim-title { font-family: 'Lora', serif; font-weight: 600; font-size: 19px; margin-bottom: 10px; }
.dim-desc { font-size: 15px; line-height: 1.55; color: var(--muted); text-wrap: pretty; }
.notes-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.note-rule {
  border-left: 3px solid var(--terra);
  padding: 4px 0 4px 20px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted-2);
  text-wrap: pretty;
}

/* ---------- Pricing ---------- */
.price-list { display: grid; gap: 16px; }
.price-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg-alt);
  border-radius: 16px;
  padding: 22px 26px;
}
.price-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--green);
  color: oklch(97% 0.01 90);
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.price-title { font-weight: 700; font-size: 16px; margin-bottom: 4px; }
.price-desc { font-size: 15px; line-height: 1.5; color: var(--muted); text-wrap: pretty; }

/* ---------- Final CTA ---------- */
.cta {
  background: var(--green-dark);
  color: oklch(96% 0.01 90);
}
.cta-inner { max-width: 780px; margin: 0 auto; padding: 96px 32px; text-align: center; }
.cta h2 { font-weight: 700; font-size: 38px; line-height: 1.2; margin: 0 0 20px; text-wrap: pretty; }
.cta p { font-size: 18px; line-height: 1.6; color: oklch(80% 0.02 90); margin: 0 0 36px; text-wrap: pretty; }
.cta .fineprint { font-size: 13px; color: oklch(65% 0.02 90); max-width: 46ch; margin: 24px auto 0; text-wrap: pretty; }

/* ---------- Footer (global, same on all pages) ---------- */
.footer { background: var(--bg-alt); border-top: 1px solid var(--border); }
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 32px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-brand { font-family: 'Lora', serif; font-weight: 600; font-size: 16px; }
.footer-tag { font-size: 13px; color: var(--muted); margin-top: 6px; }
.footer-co { font-size: 13px; color: var(--muted); line-height: 1.6; text-align: right; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 600; }
.footer-links a:hover { color: var(--ink); }

/* ---------- Error toast (showError) ---------- */
.error-host {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: min(440px, calc(100vw - 32px));
}
.error-toast {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: oklch(30% 0.12 25);
  color: oklch(97% 0.02 40);
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 10px 30px oklch(20% 0.05 25 / 0.35);
  font-size: 15px;
  line-height: 1.4;
  animation: toast-in 0.25s ease;
}
.error-toast.is-leaving { opacity: 0; transform: translateY(8px); transition: all 0.3s ease; }
.error-toast span { flex: 1; }
.error-toast-close {
  background: none;
  border: none;
  color: inherit;
  font-size: 16px;
  cursor: pointer;
  opacity: 0.8;
  line-height: 1;
  padding: 0;
}
.error-toast-close:hover { opacity: 1; }
@keyframes toast-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- Success modal (showSuccess) ---------- */
.success-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(40, 33, 20, 0.42);
  animation: overlay-in 0.2s ease;
}
.success-overlay.is-leaving { opacity: 0; transition: opacity 0.25s ease; }
.success-modal {
  background: var(--card);
  border-radius: 20px;
  padding: 40px 36px 32px;
  width: min(440px, 100%);
  text-align: center;
  box-shadow: 0 24px 60px rgba(40, 33, 20, 0.28);
  animation: modal-in 0.25s ease;
}
.success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: oklch(92% 0.04 155);
  color: var(--green);
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.success-title {
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: 24px;
  color: var(--ink);
  margin: 0 0 12px;
  text-wrap: pretty;
}
.success-body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 28px;
  text-wrap: pretty;
}
.success-ok {
  min-width: 140px;
  font-family: 'Karla', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 22px;
  cursor: pointer;
  transition: background 0.15s ease;
}
.success-ok:hover { background: oklch(90% 0.02 85); }
@keyframes overlay-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes modal-in { from { opacity: 0; transform: translateY(14px) scale(0.97); } to { opacity: 1; transform: translateY(0) scale(1); } }

/* ---------- Page head (subpages) ---------- */
.page-head { border-bottom: 1px solid var(--border); }
.page-head .wrap { padding-top: 64px; padding-bottom: 48px; }
.page-head h1 { font-size: 44px; line-height: 1.12; margin: 0 0 16px; color: var(--ink-2); }
.page-head p { font-size: 18px; line-height: 1.6; color: var(--muted); margin: 0; max-width: 60ch; text-wrap: pretty; }

.jump-nav { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.jump-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 9px 16px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--muted-2);
  white-space: nowrap;
}
.jump-nav a:hover { border-color: var(--terra); color: var(--ink); }

/* ---------- FAQ accordion ---------- */
.faq { display: grid; gap: 12px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: 14px; }
.faq-item > summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-family: 'Karla', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-ico { color: var(--terra); font-size: 14px; transition: transform 0.2s ease; flex-shrink: 0; }
.faq-item[open] .faq-ico { transform: rotate(180deg); }
.faq-body { padding: 0 24px 22px; font-size: 15px; line-height: 1.6; color: var(--muted); text-wrap: pretty; }
.faq-body a { color: var(--green); }

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  color: var(--green);
}
.link-more:hover { color: var(--terra); }

.legal { max-width: 760px; }
.legal h2 { font-size: 24px; line-height: 1.25; margin: 40px 0 14px; }
.legal h2:first-of-type { margin-top: 0; }
.legal p { font-size: 16px; line-height: 1.7; color: var(--muted); margin: 0 0 16px; text-wrap: pretty; }
.legal ul { margin: 0 0 16px; padding-left: 22px; }
.legal li { font-size: 16px; line-height: 1.7; color: var(--muted); margin-bottom: 8px; text-wrap: pretty; }
.legal a { color: var(--green); }
.legal .updated { font-size: 14px; color: oklch(55% 0.02 90); margin: 0 0 32px; }
.link-more-btn { display: inline-flex; align-items: center; gap: 8px; margin-top: 28px; text-decoration: none; }

/* ---------- Trygghet / safety band ---------- */
.trust-band { background: oklch(88% 0.035 74); }
.safe-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.safe-card {
  background: var(--card);
  border: 1px solid oklch(84% 0.03 74);
  border-radius: 18px;
  padding: 28px;
}
.safe-ico {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--terra-soft);
  color: var(--terra);
  font-size: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.safe-title { font-family: 'Lora', serif; font-weight: 600; font-size: 19px; margin-bottom: 10px; text-wrap: pretty; }
.safe-desc { font-size: 15px; line-height: 1.55; color: var(--muted); text-wrap: pretty; }

/* ---------- Image band ---------- */
.image-band {
  position: relative;
  margin: 0;
  width: 100%;
  max-height: 420px;
  overflow: hidden;
}
.image-band img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-band figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 40px 32px 24px;
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: 20px;
  color: oklch(99% 0.01 90);
  text-wrap: pretty;
  background: linear-gradient(to top, oklch(20% 0.03 80 / 0.62), transparent);
}
.image-band figcaption span { display: block; max-width: 1180px; margin: 0 auto; }

/* ---------- Closing CTA ---------- */
.closing { background: var(--bg); }
.closing-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 32px;
  text-align: center;
}
.closing-inner h2 { font-size: 34px; line-height: 1.2; margin: 0 0 14px; text-wrap: pretty; }
.closing-inner p { font-size: 18px; line-height: 1.6; color: var(--muted); margin: 0 0 28px; text-wrap: pretty; }

/* ---------- Signup section ---------- */
.signup { background: var(--green-dark); color: oklch(96% 0.01 90); }
.signup-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 88px 32px;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 64px;
  align-items: start;
}
.signup-copy .eyebrow-light { color: oklch(74% 0.1 45); }
.signup-copy h2 { font-size: 36px; line-height: 1.2; margin: 0 0 20px; color: oklch(97% 0.01 90); text-wrap: pretty; }
.signup-copy p { font-size: 17px; line-height: 1.65; color: oklch(82% 0.02 90); margin: 0 0 28px; max-width: 46ch; text-wrap: pretty; }
.signup-points { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 12px; }
.signup-points li { display: flex; gap: 12px; align-items: baseline; font-size: 16px; color: oklch(88% 0.02 90); text-wrap: pretty; }
.signup-points li i { color: oklch(74% 0.12 45); font-size: 14px; flex-shrink: 0; }
.signup-fine { font-size: 13px; color: oklch(66% 0.02 90); max-width: 46ch; line-height: 1.6; text-wrap: pretty; }
.signup .form-card { max-width: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding: 48px 32px 72px; }
  .hero h1 { font-size: 40px; }
  .page-head h1 { font-size: 32px; }
  .signup-inner { grid-template-columns: 1fr; gap: 40px; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .dims { grid-template-columns: 1fr; }
  .notes-2 { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .safe-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .hamburger { display: inline-flex; align-items: center; justify-content: center; }
}
@media (max-width: 560px) {
  .wrap, .hero, .section, .cta-inner, .topbar-inner, .footer-inner { padding-left: 20px; padding-right: 20px; }
  .steps { grid-template-columns: 1fr; }
  .footer-co { text-align: left; }
  .footer-inner { flex-direction: column; }
}
