﻿:root {
  --ink-980: #080b0d;
  --ink-950: #0d1115;
  --ink-925: #12171c;
  --ink-900: #171d22;
  --ink-880: #1c2328;
  --stone-820: #232a2f;
  --stone-780: #2b343b;
  --stone-740: #344048;
  --stone-700: #3e4b54;
  --line-soft: rgba(203, 177, 116, 0.16);
  --line-strong: rgba(213, 186, 129, 0.34);
  --text-strong: #f3ede0;
  --text-main: #ddd6c6;
  --text-muted: #a99f8d;
  --gold-300: #f0d8a7;
  --gold-400: #debd7a;
  --gold-500: #ba9250;
  --gold-700: #6b5128;
  --leaf-300: #bde9ab;
  --leaf-400: #87cf74;
  --leaf-500: #4e8f45;
  --sky-300: #b8d3ff;
  --sky-400: #7ea8ef;
  --ember-400: #d27f67;
  --panel-bg: linear-gradient(180deg, rgba(48, 58, 65, 0.82), rgba(18, 24, 29, 0.94));
  --panel-bg-strong: linear-gradient(180deg, rgba(53, 64, 72, 0.92), rgba(20, 26, 31, 0.98));
  --panel-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --panel-edge: inset 0 1px 0 rgba(255, 243, 215, 0.08), inset 0 -1px 0 rgba(0, 0, 0, 0.44);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: clip;
  color: var(--text-main);
  font-family: "Barlow", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% -5%, rgba(186, 146, 80, 0.2), transparent 28%),
    radial-gradient(circle at 90% 0%, rgba(78, 143, 69, 0.18), transparent 24%),
    radial-gradient(circle at 55% 20%, rgba(126, 168, 239, 0.08), transparent 22%),
    linear-gradient(180deg, #0a0e11 0%, #0f1518 20%, #11191d 100%);
  position: relative;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  opacity: 0.32;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 92%);
}

body::after {
  opacity: 0.22;
  background:
    linear-gradient(130deg, transparent 0%, rgba(255, 214, 138, 0.08) 46%, transparent 100%),
    linear-gradient(310deg, transparent 0%, rgba(95, 137, 97, 0.08) 38%, transparent 100%);
}

::selection {
  background: rgba(222, 189, 122, 0.28);
  color: var(--text-strong);
}

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

a:hover {
  color: var(--text-strong);
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

main {
  padding-bottom: 72px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 72px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.section-head h2,
.section-head h3 {
  margin-bottom: 8px;
}

.section-head p {
  margin: 0;
  max-width: 62ch;
  color: var(--text-muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-300);
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, rgba(240, 216, 167, 0), rgba(240, 216, 167, 0.84));
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  color: var(--text-strong);
  font-family: "Cinzel", Georgia, serif;
  line-height: 1.08;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.9rem, 5vw, 5rem);
  letter-spacing: 0.01em;
}

h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
}

h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
}

p {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.68;
}

.small-note {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.lead {
  color: var(--text-main);
  font-size: clamp(1.08rem, 1.5vw, 1.24rem);
  max-width: 58ch;
}

.surface {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: var(--panel-bg);
  box-shadow: var(--panel-edge), var(--panel-shadow);
  backdrop-filter: blur(10px);
}

.surface-strong {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--panel-bg-strong);
  box-shadow: var(--panel-edge), var(--panel-shadow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(197, 170, 112, 0.12);
  background: linear-gradient(180deg, rgba(10, 13, 16, 0.94), rgba(10, 13, 16, 0.76));
  backdrop-filter: blur(12px);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(197, 170, 112, 0.22);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.24);
}

.nav-wrap {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 18px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(227, 197, 137, 0.34);
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 235, 184, 0.88), rgba(255, 235, 184, 0) 34%),
    radial-gradient(circle at 65% 70%, rgba(111, 170, 110, 0.82), rgba(111, 170, 110, 0) 42%),
    linear-gradient(145deg, #2e3a40 0%, #11171c 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 245, 221, 0.16),
    0 0 0 1px rgba(85, 61, 23, 0.36),
    0 16px 28px rgba(0, 0, 0, 0.26);
}

.brand-mark::after {
  content: "N";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #201409;
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-shadow: 0 1px 0 rgba(255, 247, 221, 0.5);
}

.brand-text {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  color: var(--text-strong);
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.35rem;
  letter-spacing: 0.03em;
}

.brand-sub {
  color: var(--gold-400);
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(198, 170, 108, 0.24);
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(25, 31, 37, 0.94);
  color: var(--text-strong);
}

.site-nav {
  justify-self: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.site-nav a {
  padding: 11px 14px;
  border-radius: 999px;
  color: var(--text-muted);
  border: 1px solid transparent;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text-strong);
  border-color: rgba(204, 175, 111, 0.18);
  background: rgba(40, 50, 57, 0.72);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(216, 192, 141, 0.18);
  color: var(--text-strong);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, border-color 180ms ease, filter 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.btn-primary {
  border-color: rgba(218, 190, 129, 0.42);
  background: linear-gradient(180deg, #6d5531 0%, #50391e 100%);
  box-shadow: inset 0 1px 0 rgba(255, 236, 192, 0.2), 0 14px 30px rgba(86, 59, 18, 0.3);
}

.btn-secondary {
  border-color: rgba(135, 207, 116, 0.36);
  background: linear-gradient(180deg, #32513a 0%, #22382a 100%);
  box-shadow: inset 0 1px 0 rgba(225, 255, 218, 0.14), 0 14px 30px rgba(20, 44, 25, 0.26);
}

.btn-ghost {
  border-color: rgba(189, 203, 223, 0.14);
  background: rgba(27, 35, 40, 0.88);
}

.btn.disabled,
.btn[aria-disabled="true"] {
  opacity: 0.56;
  pointer-events: none;
}

.hero {
  padding: 46px 0 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 28px;
  align-items: stretch;
}

.hero-copy {
  padding: 34px;
}

.hero-copy h1 {
  margin-top: 18px;
}

.hero-copy .lead {
  margin-top: 20px;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-meta {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-chip,
.trust-pill,
.plan-badge,
.kicker-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(205, 179, 124, 0.18);
  background: rgba(24, 31, 36, 0.76);
  color: var(--text-main);
  font-size: 0.92rem;
}

.hero-chip::before,
.trust-pill::before,
.kicker-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff6df, var(--gold-400));
  box-shadow: 0 0 12px rgba(222, 189, 122, 0.42);
}

.hero-note {
  margin-top: 18px;
}

.hero-signal-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.signal-card {
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(204, 176, 117, 0.14);
  background: linear-gradient(180deg, rgba(36, 44, 50, 0.92), rgba(18, 24, 29, 0.92));
}

.signal-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text-strong);
  font-size: 1rem;
}

.signal-card span {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.hero-visual {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.window-frame {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(224, 197, 139, 0.28);
  background: linear-gradient(180deg, rgba(32, 40, 46, 0.98), rgba(10, 14, 17, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 244, 211, 0.08), 0 26px 60px rgba(0, 0, 0, 0.34);
}

.window-bar {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(226, 196, 132, 0.14);
  background: linear-gradient(180deg, rgba(43, 51, 58, 0.98), rgba(21, 27, 33, 0.98));
}

.window-title {
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-300);
}

.window-dots {
  display: flex;
  gap: 8px;
}

.window-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 237, 205, 0.18);
  background: rgba(255, 255, 255, 0.12);
}

.window-shot {
  width: 100%;
  aspect-ratio: 1.22;
  object-fit: cover;
  object-position: top center;
}

.hero-shot-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.mini-shot {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(200, 171, 113, 0.16);
  background: linear-gradient(180deg, rgba(36, 44, 50, 0.92), rgba(15, 20, 24, 0.92));
}

.mini-shot img {
  width: 100%;
  aspect-ratio: 1.12;
  object-fit: cover;
}

.mini-shot figcaption {
  padding: 12px 14px 14px;
}

.mini-shot strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text-strong);
  font-size: 0.98rem;
}

.mini-shot span {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.value-grid {
  display: grid;
  gap: 22px;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
  padding: 26px;
}

.showcase--reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.showcase--reverse .showcase-copy {
  order: 2;
}

.showcase--reverse .showcase-visual {
  order: 1;
}

.showcase-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.showcase-copy p {
  color: var(--text-main);
}

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

.showcase-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-main);
  line-height: 1.56;
}

.showcase-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff5d8, var(--leaf-400));
  box-shadow: 0 0 10px rgba(135, 207, 116, 0.34);
}

.showcase-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.showcase-visual {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(209, 183, 126, 0.18);
  background: linear-gradient(180deg, rgba(37, 46, 53, 0.92), rgba(12, 17, 21, 0.96));
}

.showcase-visual img {
  width: 100%;
  aspect-ratio: 1.34;
  object-fit: cover;
  object-position: top center;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.support-card,
.content-card,
.gallery-card,
.step-card,
.plan-card,
.compare-wrap,
.faq-card,
.legal-copy,
.not-found-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: var(--panel-bg);
  box-shadow: var(--panel-edge), var(--panel-shadow);
}

.support-card {
  padding: 22px;
}

.card-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-300);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.support-card p {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.trust-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 22px;
  padding: 30px;
}

.trust-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.trust-copy p {
  color: var(--text-main);
}

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

.trust-list li {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(194, 168, 112, 0.14);
  background: rgba(18, 24, 29, 0.76);
  color: var(--text-main);
}

.trust-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text-strong);
}

.trust-panel {
  padding: 22px;
  border-radius: 20px;
  border: 1px solid rgba(200, 172, 116, 0.16);
  background: linear-gradient(180deg, rgba(35, 43, 49, 0.96), rgba(12, 17, 21, 0.98));
}

.trust-panel p {
  margin-bottom: 18px;
  color: var(--text-muted);
}

.trust-pill-list {
  display: grid;
  gap: 10px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.gallery-card {
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.gallery-card figcaption {
  padding: 14px 16px 16px;
}

.gallery-card strong {
  display: block;
  margin-bottom: 5px;
  color: var(--text-strong);
}

.gallery-card span {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.gallery-card--wide {
  grid-column: span 7;
}

.gallery-card--tall {
  grid-column: span 5;
}

.gallery-card--small {
  grid-column: span 4;
}

.pricing-shell {
  display: grid;
  gap: 24px;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.plan-card {
  padding: 28px;
}

.plan-badge {
  margin-bottom: 18px;
}

.plan-price {
  margin: 14px 0 18px;
  color: var(--text-strong);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.plan-price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-family: "Barlow", "Segoe UI", sans-serif;
}

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

.plan-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text-main);
}

.plan-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff6dc, var(--gold-400));
  box-shadow: 0 0 8px rgba(222, 189, 122, 0.36);
}

.compare-wrap {
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.compare-table th,
.compare-table td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(214, 186, 128, 0.12);
  text-align: left;
}

.compare-table th {
  color: var(--text-strong);
  font-family: "Cinzel", Georgia, serif;
  font-weight: 600;
  background: rgba(21, 27, 32, 0.82);
}

.compare-table td:nth-child(2) {
  color: var(--gold-300);
}

.compare-table td:nth-child(3) {
  color: var(--leaf-300);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.step-card {
  padding: 24px;
}

.step-number {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  border: 1px solid rgba(212, 186, 130, 0.26);
  background: linear-gradient(180deg, rgba(109, 85, 49, 0.44), rgba(37, 29, 18, 0.76));
  color: var(--gold-300);
  font-family: "Cinzel", Georgia, serif;
}

.step-card p {
  margin-top: 10px;
  color: var(--text-muted);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 30px;
}

.cta-band p {
  margin-top: 8px;
  color: var(--text-muted);
}

.page-hero {
  padding: 56px 0 18px;
}

.page-hero-shell {
  padding: 28px 30px;
}

.page-hero p {
  margin-top: 16px;
  max-width: 62ch;
  color: var(--text-muted);
}

.page-grid,
.content-grid {
  display: grid;
  gap: 18px;
}

.page-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.content-card,
.faq-card,
.legal-copy,
.not-found-card {
  padding: 26px;
}

.content-card p,
.content-card li,
.faq-card p,
.legal-copy p,
.legal-copy li {
  color: var(--text-main);
}

.content-card ul,
.content-card ol,
.legal-copy ul,
.legal-copy ol {
  margin: 16px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.inline-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.inline-list div {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(200, 172, 116, 0.12);
  background: rgba(18, 24, 29, 0.72);
}

.inline-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text-strong);
}

.faq-stack {
  display: grid;
  gap: 12px;
}

.faq-stack details {
  border: 1px solid rgba(205, 178, 119, 0.14);
  border-radius: 16px;
  background: rgba(19, 25, 30, 0.82);
  overflow: hidden;
}

.faq-stack summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 20px;
  color: var(--text-strong);
  font-family: "Cinzel", Georgia, serif;
}

.faq-stack summary::-webkit-details-marker {
  display: none;
}

.faq-stack summary::after {
  content: "+";
  float: right;
  color: var(--gold-300);
}

.faq-stack details[open] summary::after {
  content: "-";
}

.faq-stack details p {
  padding: 0 20px 20px;
  color: var(--text-muted);
}

.legal-copy h2,
.legal-copy h3 {
  margin-top: 24px;
}

.legal-copy h2:first-of-type {
  margin-top: 10px;
}

.legal-copy p + p {
  margin-top: 14px;
}

.not-found {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 0;
}

.not-found-card {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.not-found-card p {
  margin-top: 14px;
  color: var(--text-muted);
}

.not-found-card .hero-actions {
  justify-content: center;
}

.site-footer {
  border-top: 1px solid rgba(205, 177, 119, 0.1);
  background: linear-gradient(180deg, rgba(8, 11, 13, 0.2), rgba(8, 11, 13, 0.8));
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 110px;
}

.footer-copy {
  display: grid;
  gap: 6px;
}

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

.footer-links a {
  color: var(--text-muted);
  padding: 10px 12px;
  border-radius: 999px;
}

.footer-links a:hover {
  background: rgba(31, 40, 46, 0.76);
}

.has-motion .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

@media (max-width: 1120px) {
  .hero-grid,
  .showcase,
  .showcase--reverse,
  .trust-shell,
  .page-grid--two {
    grid-template-columns: 1fr;
  }

  .showcase--reverse .showcase-copy,
  .showcase--reverse .showcase-visual {
    order: initial;
  }

  .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-card--wide,
  .gallery-card--tall,
  .gallery-card--small {
    grid-column: span 6;
  }
}

@media (max-width: 960px) {
  .nav-wrap {
    grid-template-columns: auto 1fr auto;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    justify-self: stretch;
    padding-bottom: 10px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero-signal-grid,
  .plan-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .site-header .btn-cta {
    display: none;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 56px 0;
  }

  .hero-copy,
  .hero-visual,
  .trust-shell,
  .content-card,
  .faq-card,
  .legal-copy,
  .plan-card,
  .step-card,
  .page-hero-shell,
  .cta-band,
  .showcase {
    padding: 22px;
  }

  .hero-shot-rail,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card--wide,
  .gallery-card--tall,
  .gallery-card--small {
    grid-column: span 12;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .hero {
    padding-top: 28px;
  }

  .hero-actions,
  .hero-meta,
  .showcase-proof,
  .footer-links {
    gap: 10px;
  }

  .btn {
    width: 100%;
  }

  .compare-table th,
  .compare-table td {
    padding: 13px 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .has-motion .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn,
  .site-header {
    transition: none;
  }
}

