/* =========================================================================
   The Landing Net, marketing site
   Brand: deep green #032E25, white, warm gold accent
   ========================================================================= */

/* ---------- Tokens ---------- */
:root {
  --green-900: #021B15;
  --green-850: #02241D;
  --green-800: #032E25;   /* brand green */
  --green-700: #06392E;
  --green-600: #0B4B3B;

  --white: #ffffff;
  --text: rgba(255, 255, 255, 0.78);
  --text-dim: rgba(255, 255, 255, 0.56);

  --gold: #e9b872;
  --gold-strong: #f4cd8a;
  --mint: #6fd3ae;

  --line: rgba(255, 255, 255, 0.13);
  --line-soft: rgba(255, 255, 255, 0.08);
  --card: rgba(255, 255, 255, 0.035);
  --card-hover: rgba(255, 255, 255, 0.06);

  --serif: "Playfair Display", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --wrap: 1140px;
  --gutter: clamp(20px, 5vw, 40px);
  --radius: 18px;
  --radius-sm: 12px;

  --shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.55);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  background: var(--green-800);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--white);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 6.2vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); line-height: 1.25; }
h4 { font-size: 1.05rem; line-height: 1.35; }
p { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }
strong { color: var(--white); font-weight: 600; }

::selection { background: var(--gold); color: var(--green-900); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--gold); color: var(--green-900);
  padding: 12px 20px; font-weight: 600; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: 820px; }

section { position: relative; }
.section { padding: clamp(72px, 10vw, 128px) 0; }
.section--tight { padding: clamp(56px, 7vw, 88px) 0; }
.section--deep { background: var(--green-900); }
.section--raised { background: var(--green-700); }

.section-head { max-width: 700px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--text-dim); font-size: 1.08rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: var(--gold); opacity: 0.6;
}
.section-head--center .eyebrow::after {
  content: ""; width: 26px; height: 1px; background: var(--gold); opacity: 0.6;
}

.lede { font-size: clamp(1.05rem, 1.8vw, 1.25rem); color: var(--text); line-height: 1.65; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-size: 0.95rem; font-weight: 600;
  letter-spacing: 0.01em;
  padding: 15px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
              border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--gold); color: var(--green-900);
  box-shadow: 0 12px 30px -12px rgba(233, 184, 114, 0.7);
}
.btn--primary:hover { background: var(--gold-strong); box-shadow: 0 18px 38px -12px rgba(233, 184, 114, 0.85); }

.btn--ghost { background: transparent; color: var(--white); border-color: var(--line); }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.07); border-color: rgba(255, 255, 255, 0.28); }

.btn--light { background: var(--white); color: var(--green-800); }
.btn--light:hover { background: #f2f7f5; }

.btn--sm { padding: 11px 20px; font-size: 0.87rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.section-head--center .btn-row { justify-content: center; }

.arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Text link ---------- */
.tlink {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold); text-decoration: none;
  font-weight: 600; font-size: 0.93rem;
  border-bottom: 1px solid rgba(233, 184, 114, 0.35);
  padding-bottom: 2px;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.tlink:hover { color: var(--gold-strong); border-color: var(--gold-strong); }
.tlink .arrow { transition: transform 0.25s var(--ease); }
.tlink:hover .arrow { transform: translateX(4px); }

/* =========================================================================
   Header
   ========================================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-stuck {
  background: rgba(3, 46, 37, 0.86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line-soft);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 82px;
}
.brand { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.brand img { height: 42px; width: auto; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  text-decoration: none; color: var(--text);
  font-size: 0.93rem; font-weight: 500;
  padding: 9px 15px; border-radius: 999px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav a:hover { color: var(--white); background: rgba(255, 255, 255, 0.06); }
.nav a[aria-current="page"] { color: var(--white); background: rgba(255, 255, 255, 0.08); }
/* The in-nav CTA is for the mobile drawer only, desktop uses .header-cta */
.nav .btn { display: none; }

.header-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent; border: 1px solid var(--line);
  border-radius: 12px; cursor: pointer;
  align-items: center; justify-content: center;
  color: var(--white);
}
.nav-toggle span {
  display: block; width: 18px; height: 1.5px; background: currentColor;
  position: relative; transition: background 0.2s var(--ease);
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 1.5px;
  background: currentColor; transition: transform 0.28s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .header-cta .btn { display: none; }
  .nav {
    position: fixed; inset: 82px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--green-900);
    border-bottom: 1px solid var(--line-soft);
    padding: 18px var(--gutter) 28px;
    transform: translateY(-12px);
    opacity: 0; pointer-events: none;
    transition: opacity 0.28s var(--ease), transform 0.28s var(--ease);
    max-height: calc(100vh - 82px); overflow-y: auto;
  }
  .nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav a { padding: 14px 12px; font-size: 1.05rem; border-radius: var(--radius-sm); }
  .nav .btn { display: inline-flex; margin-top: 14px; }
  body.nav-open { overflow: hidden; }
}

/* =========================================================================
   Hero
   ========================================================================= */
.hero {
  position: relative;
  padding: clamp(72px, 11vw, 132px) 0 clamp(72px, 10vw, 120px);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; inset: -40% -20% auto -20%; height: 120%;
  background:
    radial-gradient(60% 50% at 22% 12%, rgba(111, 211, 174, 0.13), transparent 70%),
    radial-gradient(50% 45% at 82% 25%, rgba(233, 184, 114, 0.10), transparent 70%);
  z-index: -2; pointer-events: none;
}
.hero-ripples {
  position: absolute; left: 50%; bottom: -30%; transform: translateX(-50%);
  width: min(1400px, 150vw); z-index: -1; opacity: 0.5; pointer-events: none;
}
.hero-ripples circle { fill: none; stroke: rgba(255, 255, 255, 0.12); }

.hero-grid {
  display: grid; grid-template-columns: 1.22fr 0.78fr;
  gap: clamp(40px, 5vw, 68px); align-items: center;
}
@media (max-width: 940px) { .hero-grid { grid-template-columns: 1fr; } }

/* The four rotator lines differ a lot in length. Capping the measure forces
   them all to wrap, so the box locked to the tallest doesn't leave a crater
   under the short ones. Whatever spread is left is split top and bottom by
   centring each line in the box. */
.hero h1 { font-size: clamp(2.35rem, 4.4vw, 3.5rem); margin-bottom: 24px; }
.hero-rotator { display: block; position: relative; max-width: 15ch; }
@media (max-width: 940px) { .hero-rotator { max-width: none; } }

.hero-rotator .line { display: block; }

/* No-JS fallback: the first line simply sits there. */
.js .hero-rotator .line {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  opacity: 0;
  transition: opacity 0.55s var(--ease);
}
.js .hero-rotator .line.is-active { opacity: 1; }

.hero-sub {
  font-size: clamp(1.05rem, 1.9vw, 1.28rem);
  color: var(--text); max-width: 46ch; margin-bottom: 34px;
}
.hero .btn-row { margin-bottom: 30px; }

.hero-note {
  display: flex; flex-wrap: wrap; gap: 8px 22px;
  font-size: 0.88rem; color: var(--text-dim);
}
.hero-note span { display: inline-flex; align-items: center; gap: 8px; }
.hero-note svg { color: var(--mint); flex-shrink: 0; }

/* Hero visual, stylised browser window showing a fishery site.
   Column layout so the price chip sits below the mockup instead of on top of
   it; overlapping the 3D-rotated corner looked like a mistake at every size. */
.hero-visual { display: flex; flex-direction: column; gap: 20px; }
.browser {
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: perspective(1400px) rotateY(-7deg) rotateX(3deg);
  transition: transform 0.6s var(--ease);
}
.browser:hover { transform: perspective(1400px) rotateY(-3deg) rotateX(1deg); }
.browser-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 14px; border-bottom: 1px solid var(--line-soft);
  background: rgba(0, 0, 0, 0.18);
}
.browser-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255, 255, 255, 0.22); }
.browser-url {
  margin-left: 8px; flex: 1;
  font-size: 0.72rem; color: var(--text-dim);
  background: rgba(0, 0, 0, 0.25);
  border-radius: 999px; padding: 5px 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.browser-body { padding: 22px; display: grid; gap: 14px; }
.bb-hero {
  height: 116px; border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(3, 46, 37, 0.15), rgba(3, 46, 37, 0.75)),
    linear-gradient(135deg, #0d6b52, #0a4a3b 55%, #08302a);
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end; padding: 14px;
}
.bb-hero::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 44%;
  background: repeating-linear-gradient(180deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 7px);
}
.bb-hero span {
  font-family: var(--serif); color: #fff; font-size: 1.05rem; font-weight: 600;
  position: relative; z-index: 1;
}
.bb-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.bb-card {
  background: rgba(255, 255, 255, 0.055); border: 1px solid var(--line-soft);
  border-radius: 9px; padding: 11px; display: grid; gap: 7px;
}
.bb-card i {
  display: block; height: 5px; border-radius: 3px;
  background: rgba(255, 255, 255, 0.28);
}
.bb-card i:nth-child(2) { width: 78%; background: rgba(255, 255, 255, 0.14); }
.bb-card i:nth-child(3) { width: 55%; background: rgba(255, 255, 255, 0.14); }
.bb-card--gold i:first-child { background: var(--gold); width: 60%; }
.bb-lines { display: grid; gap: 8px; }
.bb-lines i { display: block; height: 6px; border-radius: 3px; background: rgba(255, 255, 255, 0.1); }
.bb-lines i:nth-child(1) { width: 92%; }
.bb-lines i:nth-child(2) { width: 74%; }
.bb-lines i:nth-child(3) { width: 84%; }

/* Price chip, sat below the mockup on its own line. */
.hero-badge {
  align-self: flex-end;
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px 12px;
  background: rgba(233, 184, 114, 0.09);
  border: 1px solid rgba(233, 184, 114, 0.34);
  border-radius: 999px; padding: 11px 22px;
}
.hero-badge b {
  font-family: var(--serif); font-size: 1.35rem; color: var(--gold);
  line-height: 1.1; white-space: nowrap;
}
.hero-badge small {
  font-size: 0.8rem; color: var(--text); letter-spacing: 0.01em;
}
@media (max-width: 940px) {
  .browser { transform: none; }
  .browser:hover { transform: none; }
  .hero-badge { align-self: flex-start; }
}
@media (max-width: 420px) {
  .hero-badge { padding: 10px 18px; }
  .hero-badge b { font-size: 1.2rem; }
  .hero-badge small { font-size: 0.75rem; }
}

/* =========================================================================
   Marquee / trust strip
   ========================================================================= */
.strip {
  border-block: 1px solid var(--line-soft);
  background: var(--green-850);
  padding: 20px 0;
  overflow: hidden;
}
.strip-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 12px clamp(20px, 4vw, 44px);
  font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-dim); font-weight: 500;
}
.strip-inner span { display: inline-flex; align-items: center; gap: 9px; }
.strip-inner svg { color: var(--gold); opacity: 0.9; }

/* =========================================================================
   Cards & grids
   ========================================================================= */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 940px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 32px);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.card:hover { background: var(--card-hover); border-color: rgba(255, 255, 255, 0.22); transform: translateY(-3px); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--text-dim); font-size: 0.97rem; margin-bottom: 0; }

.card-icon {
  width: 48px; height: 48px; border-radius: 13px;
  display: grid; place-items: center;
  background: rgba(233, 184, 114, 0.12);
  border: 1px solid rgba(233, 184, 114, 0.28);
  color: var(--gold);
  margin-bottom: 20px;
}
.card-icon--mint { background: rgba(111, 211, 174, 0.12); border-color: rgba(111, 211, 174, 0.28); color: var(--mint); }

.card-num {
  font-family: var(--serif); font-size: 2.4rem; line-height: 1;
  color: rgba(255, 255, 255, 0.16); margin-bottom: 16px; display: block;
}

/* Pain-point cards */
.pain { border-color: rgba(255, 255, 255, 0.09); }
.pain h3 { font-family: var(--sans); font-size: 1.02rem; font-weight: 600; letter-spacing: 0; }
.pain p { font-size: 0.94rem; }
.pain .quote {
  font-family: var(--serif); font-size: 1.22rem; color: var(--white);
  line-height: 1.35; margin-bottom: 14px; display: block;
}
.pain .quote::before { content: "\201C"; color: var(--gold); }
.pain .quote::after { content: "\201D"; color: var(--gold); }

/* =========================================================================
   Feature list (ticks)
   ========================================================================= */
.ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
/* Deliberately NOT display:grid, these list items contain inline <b> and
   text, which grid would each promote to separate items, wrecking the wrap.
   Absolute-positioned tick + padding keeps the content as normal inline flow. */
.ticks li {
  position: relative; padding-left: 33px;
  font-size: 0.97rem; color: var(--text);
}
.ticks li::before {
  content: "";
  position: absolute; left: 0; top: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(111, 211, 174, 0.14);
  border: 1px solid rgba(111, 211, 174, 0.35);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236fd3ae' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 11px;
}
.ticks--2 { grid-template-columns: repeat(2, 1fr); gap: 13px 32px; }
@media (max-width: 700px) { .ticks--2 { grid-template-columns: 1fr; } }
.ticks b { color: var(--white); font-weight: 600; }

/* =========================================================================
   Split (text + panel)
   ========================================================================= */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 76px); align-items: center;
}
.split--wide-left { grid-template-columns: 1.1fr 0.9fr; }
@media (max-width: 900px) {
  .split, .split--wide-left { grid-template-columns: 1fr; }
  .split--reverse > *:first-child { order: 2; }
}

.panel {
  background: var(--green-900);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 3.5vw, 40px);
  box-shadow: var(--shadow);
}

/* Sitemap visual, the pages every fishery site gets */
.sitemap { display: grid; gap: 10px; }
.sitemap-item {
  display: grid; grid-template-columns: 38px 1fr auto; gap: 14px; align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.sitemap-item:hover { background: rgba(255, 255, 255, 0.075); border-color: var(--line); }
.sitemap-item .ico {
  width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.06); color: var(--gold);
}
.sitemap-item b { display: block; color: var(--white); font-size: 0.95rem; font-weight: 600; }
.sitemap-item small { display: block; color: var(--text-dim); font-size: 0.82rem; line-height: 1.45; }
.tag {
  font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600;
  color: var(--mint); background: rgba(111, 211, 174, 0.12);
  border: 1px solid rgba(111, 211, 174, 0.28);
  padding: 4px 9px; border-radius: 999px; white-space: nowrap;
}
@media (max-width: 480px) { .sitemap-item { grid-template-columns: 38px 1fr; } .sitemap-item .tag { display: none; } }

/* =========================================================================
   Pricing
   ========================================================================= */
.price-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 24px; align-items: stretch; }
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; } }

.price-card {
  position: relative;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow);
}
.price-flag {
  position: absolute; top: -13px; left: clamp(28px, 4vw, 44px);
  background: var(--gold); color: var(--green-900);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px;
}
.price-figures {
  display: flex; flex-wrap: wrap; align-items: flex-end; gap: 10px 30px;
  padding-bottom: 26px; margin-bottom: 26px;
  border-bottom: 1px solid var(--line);
}
.figure { display: grid; gap: 2px; }
.figure .amt {
  font-family: var(--serif); font-size: clamp(2.6rem, 5vw, 3.4rem);
  color: var(--white); line-height: 1; font-weight: 600;
}
/* Sits the £ inside the cap height of the numerals rather than floating above them. */
.figure .amt sup { font-size: 0.5em; top: -0.34em; position: relative; color: var(--gold); }
.figure .from {
  font-family: var(--sans); font-style: normal;
  font-size: 0.22em; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-dim);
  display: block; margin-bottom: 6px;
}
.figure .amt small { font-family: var(--sans); font-size: 0.28em; color: var(--text-dim); font-weight: 500; letter-spacing: 0.02em; }
.figure .lbl { font-size: 0.78rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--text-dim); }
.figure-plus {
  font-family: var(--serif); font-size: 2rem; color: rgba(255, 255, 255, 0.3);
  align-self: center; line-height: 1;
}
/* Stack the two figures on narrow screens so the "+" sits between them
   rather than drifting off beside the first one. */
@media (max-width: 620px) {
  .price-figures { flex-direction: column; align-items: flex-start; gap: 16px; }
  .figure-plus { align-self: flex-start; font-size: 1.5rem; }
}

.price-aside {
  background: var(--green-900);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(26px, 3.5vw, 36px);
  display: flex; flex-direction: column; gap: 18px;
}
.price-aside h3 { font-size: 1.25rem; margin-bottom: 0; }
.price-aside ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.price-aside li { font-size: 0.93rem; color: var(--text-dim); display: grid; grid-template-columns: 16px 1fr; gap: 12px; }
.price-aside li::before { content: ", "; color: var(--gold); }
.price-aside .btn { margin-top: auto; }

.addon {
  display: grid; grid-template-columns: 52px 1fr; gap: 20px;
  padding: 26px 0; border-bottom: 1px solid var(--line-soft);
}
.addon:last-child { border-bottom: 0; }
.addon .card-icon { margin-bottom: 0; width: 52px; height: 52px; }
.addon h3 { margin-bottom: 8px; }
.addon p { color: var(--text-dim); font-size: 0.97rem; }
.addon .ticks { margin-top: 14px; }
@media (max-width: 560px) { .addon { grid-template-columns: 1fr; gap: 16px; } }

/* =========================================================================
   Example site showcase
   ========================================================================= */
.showcase { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
@media (max-width: 940px) { .showcase { grid-template-columns: 1fr; } }

.showcase-frame {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--green-900);
  box-shadow: var(--shadow);
}
.showcase-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 14px; border-bottom: 1px solid var(--line-soft);
  background: rgba(0, 0, 0, 0.28);
}
.showcase-viewport { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: #0e3a45; }
.showcase-viewport iframe {
  position: absolute; top: 0; left: 0;
  width: 200%; height: 200%;
  transform: scale(.5); transform-origin: top left;
  border: 0; pointer-events: none;
}
.showcase-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 26px;
  background: linear-gradient(180deg, transparent 55%, rgba(2, 27, 21, .88) 100%);
  opacity: 0; transition: opacity .3s var(--ease);
}
.showcase-frame:hover .showcase-overlay, .showcase-frame:focus-within .showcase-overlay { opacity: 1; }
@media (hover: none) { .showcase-overlay { opacity: 1; } }

.page-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.page-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .87rem; font-weight: 500; text-decoration: none;
  color: var(--text);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px; padding: 9px 16px;
  transition: background .22s var(--ease), border-color .22s var(--ease), color .22s var(--ease);
}
.page-chip:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.3); color: var(--white); }
.page-chip .tag { padding: 2px 7px; font-size: .58rem; }

/* =========================================================================
   Stats, the case for a modern website
   ========================================================================= */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 940px) { .stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .stats { grid-template-columns: 1fr; } }

.stat {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 2.6vw, 30px);
  display: flex; flex-direction: column; gap: 10px;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.stat:hover { background: var(--card-hover); border-color: rgba(255, 255, 255, 0.22); transform: translateY(-3px); }
.stat .num {
  font-family: var(--serif); font-weight: 600; line-height: 1;
  font-size: clamp(2.2rem, 4vw, 2.9rem);
  color: var(--gold);
  letter-spacing: -0.02em;
}
.stat .num small { font-size: 0.42em; color: var(--text-dim); font-family: var(--sans); font-weight: 500; }
.stat p { font-size: 0.95rem; color: var(--text); margin: 0; }
.stat cite {
  margin-top: auto; padding-top: 6px;
  font-style: normal; font-size: 0.73rem; color: var(--text-dim);
  letter-spacing: 0.03em;
}
.stat .trend {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--mint); background: rgba(111, 211, 174, 0.12);
  border: 1px solid rgba(111, 211, 174, 0.3);
  padding: 3px 9px; border-radius: 999px; align-self: flex-start;
}

/* Inline stat callouts used in prose */
.stat-lines { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.stat-lines li {
  display: grid; grid-template-columns: minmax(72px, auto) 1fr;
  gap: 20px; align-items: baseline;
  padding-bottom: 18px; border-bottom: 1px solid var(--line-soft);
}
.stat-lines li:last-child { border-bottom: 0; padding-bottom: 0; }
.stat-lines b {
  font-family: var(--serif); font-size: clamp(1.6rem, 2.6vw, 2rem);
  color: var(--white); font-weight: 600; line-height: 1; white-space: nowrap;
}
.stat-lines span { font-size: 0.95rem; color: var(--text-dim); }
.stat-lines cite {
  display: block; margin-top: 5px; font-style: normal;
  font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold); opacity: 0.75;
}
@media (max-width: 480px) {
  .stat-lines li { grid-template-columns: 1fr; gap: 6px; }
}

.sources {
  margin-top: clamp(32px, 4vw, 48px);
  font-size: 0.78rem; color: var(--text-dim); line-height: 1.7;
}
.sources a { color: var(--text-dim); text-decoration: underline; text-underline-offset: 2px; }
.sources a:hover { color: var(--gold); }

/* =========================================================================
   Process steps
   ========================================================================= */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.steps::before {
  content: ""; position: absolute; top: 26px; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 12%, var(--line) 88%, transparent);
}
.step { padding: 0 16px; text-align: center; position: relative; }
.step .dot {
  width: 52px; height: 52px; margin: 0 auto 22px;
  border-radius: 50%; display: grid; place-items: center;
  background: var(--green-800); border: 1px solid rgba(233, 184, 114, 0.4);
  color: var(--gold); font-family: var(--serif); font-size: 1.15rem; font-weight: 600;
  position: relative; z-index: 1;
}
.section--deep .step .dot { background: var(--green-900); }
.step h3 { font-size: 1.08rem; margin-bottom: 8px; }
.step p { font-size: 0.92rem; color: var(--text-dim); }
@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr; gap: 30px; }
  .steps::before { display: none; }
  .step { text-align: left; padding: 0; display: grid; grid-template-columns: 52px 1fr; gap: 20px; }
  .step .dot { margin: 0; }
  .step > div { grid-column: 2; }
}

/* =========================================================================
   FAQ
   ========================================================================= */
.faq { display: grid; gap: 0; border-top: 1px solid var(--line-soft); }
.faq details {
  border-bottom: 1px solid var(--line-soft);
}
.faq summary {
  list-style: none; cursor: pointer;
  padding: 24px 44px 24px 0; position: relative;
  font-family: var(--serif); font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  color: var(--white); font-weight: 500; line-height: 1.35;
  transition: color 0.2s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--gold); }
.faq summary::after {
  content: ""; position: absolute; right: 6px; top: 50%; width: 14px; height: 14px;
  margin-top: -7px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e9b872' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform 0.3s var(--ease);
}
.faq details[open] summary::after { transform: rotate(135deg); }
.faq .answer { padding: 0 44px 26px 0; color: var(--text-dim); font-size: 0.98rem; max-width: 74ch; }

/* =========================================================================
   CTA band
   ========================================================================= */
.cta-band {
  position: relative; overflow: hidden;
  background: var(--green-900);
  padding: clamp(64px, 9vw, 108px) 0;
  text-align: center;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(50% 70% at 50% 0%, rgba(233, 184, 114, 0.13), transparent 70%),
    radial-gradient(40% 60% at 20% 100%, rgba(111, 211, 174, 0.10), transparent 70%);
  pointer-events: none;
}
.cta-band .wrap { position: relative; }
.cta-band h2 { margin-bottom: 18px; }
.cta-band p { color: var(--text-dim); max-width: 55ch; margin-inline: auto; margin-bottom: 32px; font-size: 1.06rem; }

/* =========================================================================
   Forms
   ========================================================================= */
.form { display: grid; gap: 18px; }
.field { display: grid; gap: 8px; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--white); letter-spacing: 0.02em; }
.field label .opt { color: var(--text-dim); font-weight: 400; letter-spacing: 0; }
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--sans); font-size: 0.97rem; color: var(--white);
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 16px;
  padding-right: 42px;
}
.field select option { background: var(--green-900); color: var(--white); }
.field textarea { min-height: 96px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255, 255, 255, 0.34); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--gold); background: rgba(0, 0, 0, 0.32);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: 0.82rem; color: var(--text-dim); }
.honeypot { position: absolute !important; left: -9999px !important; opacity: 0; height: 0; }

.contact-list { display: grid; gap: 22px; margin: 0; padding: 0; list-style: none; }
.contact-list li { display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start; }
.contact-list .ico {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.06); border: 1px solid var(--line-soft); color: var(--gold);
}
.contact-list b { display: block; color: var(--white); font-size: 0.9rem; }
.contact-list a { color: var(--text); text-decoration: none; border-bottom: 1px solid var(--line); }
.contact-list a:hover { color: var(--white); border-color: var(--gold); }
.contact-list small { color: var(--text-dim); font-size: 0.86rem; }

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer {
  background: var(--green-900);
  border-top: 1px solid var(--line-soft);
  padding: clamp(56px, 7vw, 80px) 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  padding-bottom: 44px;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand img { height: 78px; width: auto; margin-bottom: 20px; }
.footer-brand p { color: var(--text-dim); font-size: 0.93rem; max-width: 34ch; }

.footer-col h4 {
  font-family: var(--sans); font-size: 0.74rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text-dim); font-weight: 600; margin-bottom: 18px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer-col a { color: var(--text); text-decoration: none; font-size: 0.93rem; transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--gold); }

.socials { display: flex; gap: 10px; margin-top: 8px; }
.socials a {
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  border: 1px solid var(--line); color: var(--text);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.socials a:hover { color: var(--green-900); background: var(--gold); border-color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--line-soft); padding-top: 26px;
  display: flex; flex-wrap: wrap; gap: 12px 26px;
  justify-content: space-between; align-items: center;
  font-size: 0.84rem; color: var(--text-dim);
}
.footer-bottom a { color: var(--text-dim); text-decoration: none; }
.footer-bottom a:hover { color: var(--white); }

/* =========================================================================
   Page hero (inner pages)
   ========================================================================= */
.page-hero {
  padding: clamp(56px, 8vw, 100px) 0 clamp(40px, 5vw, 64px);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: -60% -20% auto -20%; height: 160%;
  background: radial-gradient(50% 50% at 30% 20%, rgba(111, 211, 174, 0.10), transparent 70%),
              radial-gradient(45% 50% at 85% 10%, rgba(233, 184, 114, 0.09), transparent 70%);
  pointer-events: none;
}
.page-hero .wrap { position: relative; }
.page-hero h1 { font-size: clamp(2.3rem, 5.2vw, 3.7rem); }
.page-hero .lede { max-width: 60ch; }

/* ---------- Scroll reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(22px); }
.js .reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; }
}

/* ---------- Utilities ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-s { margin-top: 18px; }
.mt-m { margin-top: 32px; }
.mt-l { margin-top: 52px; }
.muted { color: var(--text-dim); }
.gold { color: var(--gold); }
.divider { height: 1px; background: var(--line-soft); border: 0; margin: 0; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
