:root {
:  --bg: #07080b;
:  --bg2: #0b0d12;
:  --card: rgba(255, 255, 255, 0.06);
:  --card2: rgba(255, 255, 255, 0.08);
:  --glass-1: rgba(255, 255, 255, 0.05);
:  --glass-2: rgba(0, 0, 0, 0.28);
:  --stroke-1: rgba(255, 255, 255, 0.12);
:  --stroke-2: rgba(255, 255, 255, 0.18);
:  --stroke: var(--stroke-1);
:  --stroke2: var(--stroke-2);
:  --text: rgba(255, 255, 255, 0.88);
:  --muted: rgba(255, 255, 255, 0.68);
:  --dim: rgba(255, 255, 255, 0.52);
:  --brand: rgba(220, 199, 141, 0.95);
:  --brand2: rgba(135, 204, 255, 0.9);
:  --good: rgba(120, 230, 170, 0.9);
:  --warn: rgba(255, 210, 120, 0.9);
:  --hot: rgba(255, 140, 140, 0.9);
:  --shadow: 0 18px 70px rgba(0, 0, 0, 0.55);
:  --shadow-soft: 0 10px 34px rgba(0, 0, 0, 0.45);
:  --r12: 12px;
:  --r16: 16px;
:  --r20: 20px;
:  --r24: 24px;
:  --space: 24px;
:  --container-gutter: clamp(20px, 4vw, 48px);
:  --container-max-standard: 1160px;
:  --container-max-reading: 880px;
:  --container-max-wide: 1440px;
:}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, Helvetica, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
  background: radial-gradient(1200px 800px at 30% 10%, rgba(135, 204, 255, 0.1), transparent 60%),
      radial-gradient(900px 600px at 70% 20%, rgba(220, 199, 141, 0.1), transparent 55%),
      linear-gradient(180deg, var(--bg), var(--bg2));
  color: var(--text);
  min-height: 100vh;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

img,
picture,
svg,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  --container-max-width: var(--container-max-standard);
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-inline: var(--container-gutter);
}

.container--reading {
  --container-max-width: var(--container-max-reading);
}

.container--wide {
  --container-max-width: var(--container-max-wide);
}

.site-main {
  display: flex;
  flex-direction: column;
  gap: var(--space);
}

.section {
  padding: clamp(32px, 6vw, 64px) 0;
  position: relative;
}

.section-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 32px);
  color: rgba(255, 255, 255, 0.94);
  letter-spacing: -0.01em;
}

.section-title p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.6;
  max-width: 70ch;
}

.hero {
  padding: clamp(36px, 6vw, 72px) 0 clamp(32px, 4vw, 48px);
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.96);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 28px;
  align-items: start;
}

.hero-visual {
  border-radius: var(--r24);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.hero-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 700px at 25% 20%, rgba(220, 199, 141, 0.18), transparent 60%),
    radial-gradient(900px 600px at 80% 30%, rgba(135, 204, 255, 0.15), transparent 55%),
    linear-gradient(180deg, rgba(7, 8, 11, 0.5), rgba(7, 8, 11, 0.85));
  pointer-events: none;
  z-index: 1;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(180deg, rgba(7, 8, 11, 0.25), rgba(7, 8, 11, 0.88)),
    url("/assets/images/backgrounds/hero/hero-ancient-future-v3-2400.png");
  background-size: cover;
  background-position: center;
  filter: saturate(1.06) contrast(1.02);
  transform: scale(1.01);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 8, 11, 0.15), rgba(7, 8, 11, 0.9));
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  margin: 14px 0 10px;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}

.hero-content p {
  max-width: 68ch;
  line-height: 1.7;
}

.hero-steps {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.hero-steps .pill {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  padding: 6px 10px;
}

.hero .subhead {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  max-width: 60ch;
}

.hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 18px 0 10px;
}

.trust-hero {
  padding: clamp(40px, 6vw, 68px) 0;
  background: linear-gradient(180deg, rgba(7, 8, 11, 0.95), rgba(7, 8, 11, 0.92));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-hero-inner {
  display: grid;
  gap: 32px;
  align-items: flex-start;
}

.trust-hero-copy h1 {
  margin: 8px 0 10px;
  font-size: clamp(36px, 3.8vw, 56px);
  line-height: 1.1;
}

.trust-hero-tagline {
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  margin-top: 14px;
}

.trust-hero-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.trust-pill {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r20);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 180px;
}

.trust-pill h3 {
  margin: 0;
  font-size: 17px;
}

.trust-pill p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.trust-pill-icon {
  width: 40px;
  height: 40px;
}

.trust-layout-inner {
  display: grid;
  gap: 32px;
  align-items: start;
}

.trust-layout-inner > .trust-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.trust-block {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r24);
  padding: clamp(24px, 3vw, 32px);
}

.trust-block .section-title h2 {
  margin-bottom: 8px;
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -0.01em;
}

.trust-block .section-title p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  line-height: 1.6;
}

.guardrail-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.guardrail-title {
  margin: 0 0 6px;
  font-weight: 600;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
}

.guardrail-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.label-grid {
  margin-top: 16px;
  display: grid;
  gap: 16px;
}

.label-title {
  margin: 0 0 6px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

.label-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.label-chips span {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 6px 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

.label-note {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

.label-note a {
  color: var(--brand);
  text-decoration: none;
}

.policy-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.trust-card {
  display: block;
  padding: 20px;
  border-radius: var(--r20);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  color: inherit;
  text-decoration: none;
  min-height: 150px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.trust-card:hover,
.trust-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(135, 204, 255, 0.45);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
}

.trust-card-title {
  margin: 0 0 6px;
  font-weight: 600;
}

.trust-index {
  display: none;
}

.trust-index-title {
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.trust-index-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trust-index-list a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.trust-index-list a:hover,
.trust-index-list a:focus-visible {
  color: rgba(255, 255, 255, 0.92);
}

@media (min-width: 900px) {
  .trust-hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .trust-layout-inner {
    grid-template-columns: minmax(0, 1fr) 220px;
  }

  .trust-index {
    display: block;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--r20);
    background: rgba(255, 255, 255, 0.01);
    position: sticky;
    top: 24px;
    align-self: flex-start;
  }
}

.kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.22);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spark,
.chip {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand2);
  box-shadow: 0 0 16px rgba(135, 204, 255, 0.45);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  white-space: nowrap;
}

.pill b {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-size: 13px;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.25s ease, background 0.25s ease;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  will-change: transform;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.05) 50%, transparent 80%);
  transform: translateX(-105%);
  opacity: 0;
  transition: transform 0.7s ease, opacity 0.4s ease;
  pointer-events: none;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn:hover::after,
.btn:focus-visible::after {
  opacity: 1;
  transform: translateX(0);
}

.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(135, 204, 255, 0.45);
}

.btn-block {
  width: 100%;
  margin-top: 10px;
}

.btn-primary {
  border-color: rgba(220, 199, 141, 0.45);
  background: linear-gradient(180deg, rgba(220, 199, 141, 0.18), rgba(255, 255, 255, 0.05));
  color: rgba(255, 255, 255, 0.92);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
}

.btn .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 18px rgba(220, 199, 141, 0.45);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.74);
}

.chip--status {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 600;
}

.chip--status[data-status="Speculative"] {
  color: var(--warn);
}

.chip--status[data-status="Disputed"] {
  color: rgba(255, 255, 255, 0.92);
}

.chip--status[data-status="Supported"] {
  color: var(--good);
}

.chip--type {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.25);
}

.meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.meta-row img {
  width: 18px;
  height: 18px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.card-grid .card {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.card-grid .card:hover,
.card-grid .card:focus-within {
  transform: translateY(-8px) translateZ(0);
  border-color: rgba(220, 199, 141, 0.3);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.55);
}

.card-grid .card a {
  text-decoration: none;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb span {
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

a:focus-visible,
button:focus-visible,
.chip:focus-visible {
  outline: 2px solid var(--brand2);
  outline-offset: 3px;
}

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r24);
  box-shadow: var(--shadow);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease, box-shadow 0.35s ease;
  will-change: transform, box-shadow;
}

.card:hover,
.card:focus-within {
  transform: translateY(-6px) translateZ(0);
  border-color: rgba(220, 199, 141, 0.28);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
}

.card-body {
  padding: 18px;
  position: relative;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.tile {
  border-radius: var(--r20);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  padding: 16px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  min-height: 150px;
}

.tile::before,
.site-card::before,
.band::before,
.frame::before {
  content: "";
  position: absolute;
  inset: -30px;
  background: radial-gradient(520px 420px at 20% 10%, rgba(135, 204, 255, 0.12), transparent 60%);
  pointer-events: none;
  opacity: 0.6;
}

.tile > *,
.site-card > *,
.band > *,
.frame > * {
  position: relative;
  z-index: 1;
}

.tile h3 {
  margin: 0 0 6px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: -0.01em;
}

.tile p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}

.tile .hint {
  margin-top: 10px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.18);
}

.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: center;
}

.frame {
  border-radius: var(--r24);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.frame .cap {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.32);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.bullets {
  display: grid;
  gap: 10px;
}

.bullet {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
}

.bullet b {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.90);
  margin-bottom: 2px;
}

.bullet span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.5;
}

.site-card {
  border-radius: var(--r20);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.site-card .thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--r16);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.25);
}

.site-card .thumb picture {
  display: block;
  width: 100%;
  height: 100%;
}

.site-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.site-card .thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 8, 11, 0.05), rgba(7, 8, 11, 0.85));
  z-index: 1;
  pointer-events: none;
}

.site-card .topline {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.site-card .body {
  padding: 14px;
  display: grid;
  gap: 8px;
}

.site-card .summary {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.site-card .summary p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

.site-card .primitives {
  margin-top: 6px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
}

.site-card .primitive {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: var(--r16);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.site-card .primitive img {
  width: 20px;
  height: 20px;
}

.site-card .primitive .label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.site-card .primitive strong {
  display: block;
  font-size: 14px;
  color: var(--text);
}

.site-card .locked-note,
.site-card .draft-note {
  margin: 0;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

.site-card .locked-note {
  margin-top: 4px;
}

.site-card .body h4 {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
}

.meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.tag,
.badge {
  font-size: 11px;
  padding: 6px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.18);
  color: rgba(255, 255, 255, 0.72);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.04);
}

.site-card p {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.55;
}

.site-card .link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.84);
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.site-card .link:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.band {
  border-radius: var(--r24);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.04)),
    url("/assets/images/backgrounds/sections/bg-contour-subtle-01.png");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.band::before {
  inset: -40px;
  background: radial-gradient(900px 500px at 25% 30%, rgba(220, 199, 141, 0.16), transparent 60%);
}

.band-inner {
  position: relative;
  z-index: 1;
  padding: 22px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  align-items: center;
}

.band h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.band p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.mini-form {
  display: grid;
  gap: 10px;
}

.mini-form .row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.mini-form input,
.mini-form button {
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--stroke-1);
  background: var(--glass-2);
  color: rgba(255, 255, 255, 0.92);
}

.mini-form button {
  border-color: rgba(220, 199, 141, 0.45);
  background: linear-gradient(180deg, rgba(220, 199, 141, 0.2), rgba(255, 255, 255, 0.05));
  cursor: pointer;
}

.product-proof {
  margin-top: 12px;
  border-radius: var(--r24);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.35);
}

.product-proof picture {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.product-proof img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Utility modules shared across pages */
.panel {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r20);
  padding: 20px;
  box-shadow: var(--shadow-soft);
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.links a {
  text-decoration: none;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
}

.filter-btn {
  padding: 8px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

.filter-btn.selected {
  border-color: var(--brand);
  background: rgba(220, 199, 141, 0.18);
  color: rgba(255, 255, 255, 0.92);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.claim-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r20);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.claim-card img {
  height: 140px;
  object-fit: cover;
  width: 100%;
}

.claim-content {
  padding: 14px;
}

.claim-content h3 {
  margin: 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.92);
}

.claim-content p {
  margin: 8px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.claim-meta {
  margin: 8px 0 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.claim-chip {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.85);
}

.claim-chip.status {
  border-color: rgba(220, 199, 141, 0.6);
  color: var(--brand);
}

.claim-chip.date {
  color: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.14);
}

.claim-draft {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.claim-card .btn {
  margin-top: 8px;
  text-align: center;
  font-size: 13px;
  border-top: 1px solid var(--stroke-1);
  background: var(--glass-1);
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;
}

.cta-row {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.steps,
.doc-grid,
.expeditions-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 24px;
}

.step,
.doc-cell,
.expedition-card,
.standard {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r20);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.step h3,
.standard h3 {
  margin: 0;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.92);
}

.doc-cell {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.policy-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.policy {
  text-align: center;
}

.policy-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  opacity: 0.9;
}

.terms-text,
.text-block {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.65;
}

.participation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.participation-card {
  border-radius: var(--r20);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-soft);
}

.participation-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.participation-card p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.5;
}

.principles-strip {
  border-radius: var(--r24);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    url("/assets/images/backgrounds/sections/bg-contour-subtle-01.png");
  background-size: cover;
  margin-top: 20px;
}

.principles-links {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.principle-link {
  padding: 10px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text);
}

.principle-link:hover {
  border-color: rgba(220, 199, 141, 0.5);
  background: rgba(220, 199, 141, 0.08);
}

.hero-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.hero-card {
  background: var(--glass-1);
  border: 1px solid var(--stroke-1);
  border-radius: var(--r20);
  padding: 20px;
  box-shadow: var(--shadow-soft);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.mini {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
}

.pilllink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.22);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  text-decoration: none;
}

.pilllink:hover {
  border-color: rgba(220, 199, 141, 0.6);
  background: rgba(255, 255, 255, 0.06);
}

.log-wrap {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r20);
  padding: 20px;
  margin-top: 16px;
}

.log-head {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.search {
  display: flex;
  gap: 10px;
  align-items: center;
}

.log {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.log .entry {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r18);
  background: rgba(255, 255, 255, 0.02);
  display: grid;
  gap: 6px;
}

.log .entry .when {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.58);
}

.callout {
  margin-top: 18px;
  padding: 16px;
  border-radius: var(--r16);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.callout-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.86);
}

.standards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.toc,
.toc-nav {
  margin-top: 18px;
}

.toc-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 12px;
  background: rgba(0, 0, 0, 0.25);
}

.tiny {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.4;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  cursor: pointer;
}

.chip[aria-pressed="true"],
.chip:hover {
  border-color: rgba(220, 199, 141, 0.6);
  background: rgba(255, 255, 255, 0.08);
}

.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 18px 0;
}

.layout {
  display: grid;
  grid-template-columns: minmax(260px, 320px) 1fr;
  gap: 24px;
  margin-top: 24px;
}

.map-card {
  border-radius: var(--r24);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.map-surface {
  min-height: 320px;
  background: linear-gradient(135deg, rgba(220, 199, 141, 0.15), rgba(135, 204, 255, 0.08)),
    url("/assets/images/backgrounds/sections/bg-nodefield-subtle-01.png");
  background-size: cover;
  background-position: center;
}

.map-hud {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  pointer-events: none;
}

.hud-left {
  background: rgba(0, 0, 0, 0.4);
  padding: 10px 14px;
  border-radius: 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
}

.hud-pill {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hud-search {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.gate {
  margin-top: 16px;
  border-radius: var(--r20);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.45);
  padding: 16px;
}

.gate-card {
  display: grid;
  gap: 8px;
}

.inline-cta {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tile {
  border-radius: var(--r20);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-soft);
}

.below {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.micro {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.form {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.field {
  display: grid;
  gap: 6px;
}

label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

input[type="email"],
input[type="text"] {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.28);
  color: rgba(255, 255, 255, 0.92);
  outline: none;
}

input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

input:focus {
  border-color: rgba(135, 204, 255, 0.4);
  box-shadow: 0 0 0 4px rgba(135, 204, 255, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(220, 199, 141, 0.45);
  background: linear-gradient(180deg, rgba(220, 199, 141, 0.2), rgba(255, 255, 255, 0.05));
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  transition: transform 0.16s ease, border-color 0.16s ease, filter 0.16s ease;
}

.submit:hover {
  transform: translateY(-1px);
  border-color: rgba(220, 199, 141, 0.62);
}

.submit:active {
  transform: translateY(0);
  filter: brightness(0.98);
}

.submit small {
  opacity: 0.85;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 11px;
}

.trust-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 14px;
}

.trust {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 10px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
}

.trust img {
  width: 18px;
  height: 18px;
  opacity: 0.95;
  margin-top: 2px;
}

.trust b {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.88);
}

.trust span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.45;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  max-width: 360px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  display: none;
}

.toast strong {
  display: block;
  font-size: 13px;
  margin-bottom: 2px;
}

.toast span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.68);
}

.bg-stone {
  background-image:
    radial-gradient(900px 650px at 20% 20%, rgba(220, 199, 141, 0.1), transparent 60%),
    linear-gradient(180deg, rgba(7, 8, 11, 0), rgba(7, 8, 11, 0.25)),
    url("/assets/images/backgrounds/sections/bg-contour-subtle-01.png");
  background-size: cover;
  background-position: center;
}

.bg-node {
  background-image:
    radial-gradient(900px 650px at 75% 20%, rgba(135, 204, 255, 0.1), transparent 60%),
    linear-gradient(180deg, rgba(7, 8, 11, 0), rgba(7, 8, 11, 0.35)),
    url("/assets/images/backgrounds/sections/bg-nodefield-subtle-01.png");
  background-size: cover;
  background-position: center;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(7, 8, 11, 0.78), rgba(7, 8, 11, 0.42));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 34px;
  height: 34px;
}

.brand .name {
  display: flex;
  flex-direction: column;
}

.brand strong {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.brand span {
  font-size: 12px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 0;
}

.nav-links a {
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
  color: rgba(255, 255, 255, 0.78);
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.nav-links a:hover::after,
.nav-links a.is-active::after,
.nav-links a:focus-visible::after {
  opacity: 1;
}

.nav-links a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(135, 204, 255, 0.35);
}

.nav-links a[aria-current="page"] {
  border-color: rgba(220, 199, 141, 0.45);
}

.nav.is-scrolled {
  background: rgba(7, 8, 11, 0.95);
  border-bottom-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
}

.cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.25s ease, background 0.25s ease;
  will-change: transform;
}

.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02) 60%, transparent 90%);
  transform: translateX(-110%);
  opacity: 0;
  transition: transform 0.7s ease, opacity 0.4s ease;
  pointer-events: none;
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-2px);
}

.cta:hover::after,
.cta:focus-visible::after {
  opacity: 1;
  transform: translateX(0);
}

.cta:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(220, 199, 141, 0.35);
}

.cta.primary {
  border-color: rgba(220, 199, 141, 0.45);
  background: linear-gradient(180deg, rgba(220, 199, 141, 0.18), rgba(255, 255, 255, 0.05));
}

.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.hamburger svg {
  opacity: 0.9;
}

.nav[data-open="true"] .nav-links {
  display: flex;
}

footer {
  padding: 40px 0 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(900px 500px at 50% 0%, rgba(135, 204, 255, 0.08), transparent 60%),
    linear-gradient(180deg, rgba(7, 8, 11, 0.1), rgba(7, 8, 11, 0.7));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}

.footer-brand {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-brand img {
  width: 34px;
  height: 34px;
  opacity: 0.95;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.footer-trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
}

.footer-trust-icons {
  display: flex;
  gap: 8px;
}

.footer-trust-icons img {
  width: 20px;
  height: 20px;
  filter: brightness(2) saturate(0.3);
}

.footer-trust strong {
  font-size: 15px;
  letter-spacing: 0.05em;
}

.footer-trust ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.footer-trust li a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-trust li a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer-links a {
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.72);
}

.footer-links a:hover {
  border-color: rgba(255, 255, 255, 0.20);
  background: rgba(255, 255, 255, 0.06);
}

.footer-note {
  margin-top: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.56);
}

.muted {
  color: rgba(255, 255, 255, 0.6);
}

.badge-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  padding: 6px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.badge-status .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--good);
  box-shadow: 0 0 16px rgba(120, 230, 170, 0.22);
}

@media (max-width: 1024px) {
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    padding: 12px 0;
    background: rgba(7, 8, 11, 0.9);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hamburger {
    display: inline-flex;
  }

  .nav[data-open="true"] .nav-links {
    display: flex;
  }
}
.frequency-toggle-card {
  border-radius: var(--r24);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.02);
  padding: 20px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.35);
}

.frequency-toggle {
  display: inline-flex;
  gap: 8px;
}

.frequency-toggle button {
  border-radius: var(--r16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: var(--text);
  padding: 10px 18px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.frequency-toggle button.is-active {
  border-color: var(--brand);
  background: rgba(220, 199, 141, 0.14);
}

.frequency-toggle button:focus-visible {
  outline: 2px solid var(--brand2);
  outline-offset: 3px;
}

.frequency-state {
  font-size: 13px;
  color: var(--muted);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.tier-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--r24);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
  transition: transform 0.2s ease, border-color 0.2s ease;
  box-shadow: var(--shadow-soft);
}

.tier-card:focus-within,
.tier-card:hover {
  transform: translateY(-4px);
  border-color: rgba(135, 204, 255, 0.55);
}

.tier-card h3 {
  margin: 0;
  font-size: 20px;
}

.tier-job {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.66);
}

.tier-price {
  font-weight: 600;
  color: var(--brand);
  font-size: 15px;
  margin: 0;
}

.tier-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.6;
}

.tier-bullets li::before {
  content: "\2022";
  color: var(--brand2);
  margin-right: 8px;
}

.tier-card .cta {
  margin-top: auto;
  align-self: flex-start;
}

.guardrail-grid {
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
}

.guardrail-grid p {
  margin: 0;
  font-size: 15px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.faq-grid article {
  border-radius: var(--r20);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow-soft);
}

.faq-grid h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.faq-grid p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.map-preview {
  padding: clamp(32px, 6vw, 64px) 0 clamp(40px, 7vw, 64px);
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(7, 8, 11, 0.95), rgba(11, 13, 18, 0.98));
}

.map-preview-grid {
  display: grid;
  gap: 24px;
  align-items: end;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.map-preview-media {
  position: relative;
  border-radius: var(--r24);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-soft);
  background: var(--card);
}

.map-preview-trigger {
  display: block;
  width: 100%;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.map-preview-trigger:focus-visible {
  outline: none;
}

.map-preview-trigger .map-preview-image {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.35s ease;
}

.map-preview-trigger:hover .map-preview-image,
.map-preview-trigger:focus-visible .map-preview-image {
  transform: scale(1.02);
}

.map-preview-overlay {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.75);
  color: var(--text);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.map-preview-caption {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.map-preview-info {
  border-radius: var(--r20);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow-soft);
}

.map-preview-info h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3vw, 32px);
}

.map-preview-info p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.6;
}

.map-preview-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.map-preview-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.map-preview-list li::before {
  content: "•";
  color: var(--brand2);
  font-size: 0.85em;
}

.map-preview-info .btn.primary {
  margin-top: 18px;
}

.sample-sites {
  margin-top: 40px;
}

.sample-sites-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.sample-sites-header h3 {
  margin: 0;
  font-size: 18px;
}

.sample-sites-header p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.sample-sites-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
}

.sample-site-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--r20);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  background: var(--card);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.sample-site-card:hover,
.sample-site-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(220, 199, 141, 0.4);
}

.sample-site-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}

.sample-site-card picture {
  display: block;
  width: 100%;
}

.sample-site-card span {
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.preview-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 120;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  background: rgba(5, 8, 12, 0.85);
}

.preview-modal.is-open {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.preview-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.preview-modal-content {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  border-radius: var(--r24);
  background: var(--bg2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.preview-modal-content img {
  border-radius: var(--r20);
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.preview-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.preview-modal-header h2 {
  margin: 0;
  font-size: 20px;
}

.preview-modal-close {
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  cursor: pointer;
  padding: 6px 10px;
}

.preview-modal-close:focus-visible {
  outline: 2px solid var(--brand2);
  outline-offset: 2px;
}

.map-preview-modal-image {
  width: 100%;
  border-radius: var(--r20);
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .map-preview-grid {
    grid-template-columns: 1fr;
  }

  .map-preview-info {
    padding: 22px;
  }
}

@media (max-width: 640px) {
  .sample-sites-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn,
  .btn::after,
  .cta,
  .cta::after,
  .card,
  .card-grid .card,
  .nav,
  .nav-links a,
  .nav-links a::after {
    transition: none !important;
  }

  .card:hover,
  .card:focus-within,
  .card-grid .card:hover,
  .card-grid .card:focus-within,
  .btn:hover,
  .btn:focus-visible,
  .cta:hover,
  .cta:focus-visible,
  .nav-links a:hover,
  .nav-links a:focus-visible,
  .nav-links a.is-active {
    transform: none !important;
    box-shadow: none !important;
  }
}

