:root {
  --bg: #071126;
  --surface: #0e1c35;
  --surface-soft: #132643;
  --surface-glass: rgba(15, 30, 56, 0.72);
  --ink: #eef5ff;
  --muted: #a8bedf;
  --line: rgba(173, 200, 239, 0.22);
  --line-strong: rgba(191, 221, 255, 0.35);
  --brand: #2db36b;
  --brand-dark: #1f8550;
  --accent: #f4be49;
  --danger: #f77a7a;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 20px 50px rgba(2, 8, 20, 0.55);
  --shadow-soft: 0 14px 30px rgba(4, 12, 26, 0.36);
  --body-font: 'Space Grotesk', system-ui, sans-serif;
  --display-font: 'Archivo', 'Space Grotesk', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body-font);
  color: var(--ink);
  background:
    radial-gradient(1200px 700px at 10% -10%, rgba(57, 132, 255, 0.25), transparent 58%),
    radial-gradient(1000px 760px at 105% 0%, rgba(45, 179, 107, 0.2), transparent 54%),
    radial-gradient(900px 500px at 50% 120%, rgba(244, 190, 73, 0.15), transparent 70%),
    var(--bg);
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--display-font);
  margin: 0;
  line-height: 1.12;
  letter-spacing: -0.015em;
}

p {
  color: var(--muted);
}

a {
  color: inherit;
}

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 5.2rem 0;
}

.section-tight {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.urgency-banner {
  padding-top: 0.7rem;
  padding-bottom: 1.4rem;
}

.referral-banner {
  padding-top: 0.2rem;
  padding-bottom: 1.4rem;
}

.urgency-banner-inner {
  border-radius: var(--radius);
  border: 1px solid rgba(244, 190, 73, 0.55);
  background: linear-gradient(135deg, rgba(95, 68, 17, 0.48), rgba(54, 37, 9, 0.5));
  padding: 0.8rem 0.95rem;
  box-shadow: 0 12px 26px rgba(42, 29, 8, 0.36);
}

.urgency-banner-inner p {
  margin: 0;
  color: #ffecc0;
  font-weight: 700;
}

.referral-banner-inner {
  border-radius: var(--radius);
  border: 1px solid rgba(45, 179, 107, 0.72);
  background:
    radial-gradient(1200px 380px at 0% 0%, rgba(45, 179, 107, 0.2), transparent 58%),
    linear-gradient(140deg, rgba(13, 58, 41, 0.9), rgba(10, 42, 31, 0.92));
  box-shadow: 0 16px 34px rgba(8, 40, 28, 0.4);
  padding: 0.92rem 1rem;
}

.referral-banner-inner p {
  margin: 0;
  color: #ddffec;
  font-weight: 700;
  font-size: 1rem;
}

.referral-banner-inner p + p {
  margin-top: 0.42rem;
  color: #c7fce0;
  font-size: 0.95rem;
  font-weight: 600;
}

.section-heading {
  margin-bottom: 1.6rem;
  max-width: 760px;
}

.section-heading h2 {
  margin-top: 0.35rem;
  font-size: clamp(1.8rem, 5vw, 3rem);
}

.section-heading p {
  margin: 0.55rem 0 0;
  font-size: 1.03rem;
}

.eyebrow {
  margin: 0;
  color: #9bc8ff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.78rem;
}

.brand-kicker {
  margin: 0;
  color: var(--brand);
  font-size: 0.76rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 700;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 80;
  background: transparent;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #6dafff, #2db36b, #f4be49);
  box-shadow: 0 0 16px rgba(109, 175, 255, 0.7);
}

.cursor-ring,
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 95;
  opacity: 0;
  transform: translate(-50%, -50%);
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(184, 220, 255, 0.65);
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: #deefff;
  box-shadow: 0 0 14px rgba(222, 239, 255, 0.8);
}

.cursor-active .cursor-ring,
.cursor-active .cursor-dot {
  opacity: 1;
}

.cursor-hover .cursor-ring {
  width: 54px;
  height: 54px;
  border-color: rgba(243, 200, 93, 0.75);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(6, 17, 36, 0.72);
  border-bottom: 1px solid rgba(153, 194, 247, 0.14);
  backdrop-filter: blur(14px);
}

.topbar .container {
  width: min(1720px, 96vw);
}

.topbar-inner {
  min-height: 78px;
  display: grid;
  align-items: center;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
}

.brand-lockup {
  display: grid;
  gap: 0.16rem;
  text-decoration: none;
}

.brand-title {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: clamp(0.98rem, 1.6vw, 1.1rem);
  color: #f5fbff;
}

.main-nav {
  display: flex;
  gap: 0.35rem;
  justify-content: center;
  flex-wrap: nowrap;
  min-width: 0;
  overflow: hidden;
}

.main-nav a {
  color: #bdd5f4;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.5rem 0.58rem;
  white-space: nowrap;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: #fff;
  background: rgba(119, 182, 255, 0.18);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.48rem;
  flex-wrap: nowrap;
  flex-shrink: 0;
}

.topbar-actions .button {
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  border: 1px solid rgba(176, 207, 242, 0.42);
  background: rgba(18, 37, 68, 0.85);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: #d9ecff;
  border-radius: 3px;
}

.mobile-nav {
  border-top: 1px solid rgba(176, 207, 242, 0.2);
  background: rgba(6, 15, 31, 0.96);
  display: grid;
  gap: 0.3rem;
  padding: 0.5rem min(4vw, 24px) 0.8rem;
}

.mobile-nav[hidden] {
  display: none !important;
}

.mobile-nav a {
  text-decoration: none;
  color: #d7e9ff;
  padding: 0.62rem 0.7rem;
  border-radius: 10px;
}

.mobile-nav a:hover {
  background: rgba(91, 165, 255, 0.2);
}

.hero {
  position: relative;
  overflow: clip;
  min-height: 88vh;
}

.hero-canvas-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-canvas.glow {
  mix-blend-mode: screen;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.2rem;
  align-items: center;
  min-height: calc(88vh - 78px);
  padding-top: 2.6rem;
  padding-bottom: 2.8rem;
}

.hero-copy,
.hero-panel,
.spot-layout,
.notice-card,
.feature-card,
.pricing-card,
.quote-card,
.zip-card,
.faq-list details,
.table-wrap,
.metric-card,
.example-card {
  background: linear-gradient(160deg, rgba(19, 40, 73, 0.92), rgba(10, 24, 48, 0.95));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.hero-copy {
  padding: clamp(1.2rem, 2vw, 1.8rem);
}

.hero-copy h1 {
  margin-top: 0.28rem;
  font-size: clamp(2.05rem, 5vw, 3.9rem);
  color: #f8fbff;
}

.hero-copy p {
  margin-top: 0.9rem;
  font-size: 1.08rem;
}

.hero-cta-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
}

.hero-proof-row {
  margin-top: 1rem;
  display: flex;
  gap: 0.62rem;
  flex-wrap: wrap;
}

.hero-proof-row span {
  font-size: 0.82rem;
  color: #deebfc;
  padding: 0.34rem 0.56rem;
  border-radius: 999px;
  border: 1px solid rgba(190, 217, 255, 0.32);
  background: rgba(16, 34, 65, 0.72);
}

.hero-panel {
  padding: 1.2rem;
  border-top: 3px solid rgba(45, 179, 107, 0.8);
}

.hero-panel h2 {
  font-size: 1.5rem;
  color: #f2f8ff;
}

.hero-panel ul {
  margin: 0.9rem 0 0;
  padding-left: 1.1rem;
  color: #d9eaff;
}

.hero-panel li {
  margin-bottom: 0.45rem;
}

.feature-grid {
  display: grid;
  gap: 0.85rem;
}

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

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

.feature-card,
.quote-card {
  padding: 1rem;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.feature-card h3 {
  font-size: 1.06rem;
}

.feature-card p,
.quote-card p {
  margin: 0.55rem 0 0;
  color: #c3d7f0;
}

.feature-card:hover,
.quote-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: 0 16px 36px rgba(6, 16, 34, 0.6);
}

.quote-card span {
  display: block;
  margin-top: 0.8rem;
  color: #9cc4ef;
  font-size: 0.82rem;
  font-weight: 700;
}

.local-visual-section {
  background: linear-gradient(180deg, rgba(6, 18, 38, 0), rgba(24, 66, 89, 0.2), rgba(6, 18, 38, 0));
}

.bonus-stack-section {
  background:
    radial-gradient(1200px 540px at 10% 0%, rgba(244, 190, 73, 0.2), transparent 62%),
    radial-gradient(1000px 520px at 90% 100%, rgba(45, 179, 107, 0.18), transparent 65%);
  border-top: 1px solid rgba(244, 190, 73, 0.24);
  border-bottom: 1px solid rgba(45, 179, 107, 0.22);
}

.bonus-highlight {
  margin: 0 0 1rem;
  border: 1px solid rgba(244, 190, 73, 0.6);
  border-radius: 14px;
  background: linear-gradient(140deg, rgba(102, 75, 18, 0.36), rgba(56, 40, 10, 0.36));
  padding: 0.72rem 0.84rem;
}

.bonus-highlight p {
  margin: 0;
  color: #ffe9bf;
  font-weight: 700;
}

.bonus-stack-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.bonus-item {
  background: linear-gradient(160deg, rgba(23, 47, 84, 0.94), rgba(12, 28, 53, 0.95));
  border: 1px solid rgba(187, 214, 249, 0.25);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 0.9rem;
}

.bonus-item h3 {
  font-size: 1.02rem;
  color: #f5fbff;
}

.bonus-item p {
  margin: 0.45rem 0 0;
  color: #c7dcf6;
}

.bonus-value {
  display: inline-flex;
  margin-top: 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(244, 190, 73, 0.48);
  background: rgba(244, 190, 73, 0.15);
  color: #ffe9b9 !important;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 0.18rem 0.5rem;
}

.local-visual-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 1.08fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
}

.local-visual-copy h2 {
  margin-top: 0.25rem;
  color: #f8fbff;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.local-visual-copy p {
  color: #d4e5fb;
  font-size: 1.03rem;
}

.impact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.impact-list span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(190, 217, 255, 0.3);
  background: rgba(16, 34, 65, 0.72);
  color: #deebfc;
  font-size: 0.84rem;
  font-weight: 800;
  padding: 0.38rem 0.62rem;
}

.local-visual {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(202, 224, 255, 0.28);
  box-shadow: var(--shadow-soft);
  background: rgba(11, 24, 48, 0.8);
}

.local-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.owner-section {
  background: linear-gradient(180deg, rgba(6, 18, 38, 0), rgba(20, 48, 84, 0.22), rgba(6, 18, 38, 0));
}

.owner-story {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
}

.owner-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(202, 224, 255, 0.28);
  box-shadow: var(--shadow-soft);
  background: rgba(11, 24, 48, 0.8);
}

.owner-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.owner-copy h2 {
  margin-top: 0.25rem;
  color: #f8fbff;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  max-width: 980px;
}

.owner-copy p {
  color: #d4e5fb;
  font-size: 1.02rem;
  max-width: 980px;
}

.owner-copy blockquote {
  margin: 1rem 0;
  padding: 0.82rem 1rem;
  border-left: 4px solid var(--accent);
  border-radius: 0 10px 10px 0;
  background: rgba(245, 195, 83, 0.12);
  color: #fff4d4;
  font-size: 1.08rem;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0.66rem 1.14rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease, background-color 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(140deg, var(--brand), #1ea05d);
  color: #f8fffc;
  box-shadow: 0 10px 22px rgba(27, 116, 72, 0.42);
}

.button-primary:hover {
  filter: brightness(1.05);
}

.button-ghost {
  color: #e3f1ff;
  background: rgba(129, 172, 230, 0.14);
  border: 1px solid rgba(189, 216, 252, 0.35);
}

.spot-layout {
  padding: 1rem;
}

.builder-toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 320px);
  gap: 0.55rem;
  margin-bottom: 0.85rem;
}

.admin-appearance-toolbar {
  grid-template-columns: repeat(2, minmax(0, 220px));
}

.builder-toolbar label {
  display: grid;
  gap: 0.25rem;
  font-size: 0.8rem;
  color: #c9dcf4;
  font-weight: 600;
}

.builder-toolbar select {
  width: 100%;
  border: 1px solid rgba(196, 223, 255, 0.35);
  border-radius: 9px;
  padding: 0.45rem 0.5rem;
  font: inherit;
  background: rgba(9, 20, 39, 0.82);
  color: #f6fbff;
}

.stats-strip {
  display: flex;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
  color: #d1e5ff;
}

.data-notice {
  margin: 0 0 0.8rem;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  border: 1px solid rgba(94, 210, 146, 0.4);
  background: rgba(37, 121, 79, 0.24);
  color: #ccffe6;
  font-size: 0.84rem;
}

.data-notice.warning {
  border-color: rgba(235, 197, 120, 0.58);
  background: rgba(107, 81, 18, 0.4);
  color: #ffe8b9;
}

.card-sides {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.card-side {
  border: 1px solid rgba(156, 193, 244, 0.3);
  border-radius: 12px;
  background: rgba(9, 21, 42, 0.88);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.side-band {
  position: relative;
  padding: 0;
  overflow: hidden;
  background-color: #102545;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-bottom: 1px solid rgba(167, 197, 238, 0.18);
}

.side-header {
  aspect-ratio: 1448 / 333;
  background-image: url('/assets/kansasthrives-card-header.png');
}

.side-footer {
  aspect-ratio: 1448 / 140;
  background-image: url('/assets/kansasthrives-card-footer.png');
  border-top: 1px solid rgba(167, 197, 238, 0.18);
  border-bottom: 0;
}

.spot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
}

.side-grid {
  padding: 0.55rem;
  aspect-ratio: 1448 / 613;
}

.spot {
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.56rem;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.16), transparent 62%),
    rgba(16, 35, 61, 0.96);
  cursor: pointer;
  min-height: 0;
  display: grid;
  gap: 0.2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, filter 0.2s ease;
}

.spot.available {
  border-color: rgba(118, 216, 162, 0.72);
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(183, 253, 216, 0.3), transparent 60%),
    linear-gradient(140deg, rgba(18, 57, 41, 0.94), rgba(14, 43, 35, 0.95));
}

.spot.available:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(18, 79, 54, 0.45), 0 0 0 1px rgba(164, 245, 200, 0.45);
}

.spot.available:active {
  transform: translateY(0);
  filter: brightness(1.06);
}

.spot:focus-visible {
  outline: 3px solid rgba(242, 204, 105, 0.88);
  outline-offset: 3px;
}

.spot.held {
  border-color: rgba(234, 204, 136, 0.65);
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 233, 164, 0.25), transparent 58%),
    linear-gradient(160deg, rgba(65, 52, 20, 0.96), rgba(48, 38, 14, 0.96));
}

.spot.sold {
  border-color: rgba(225, 138, 138, 0.62);
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 178, 178, 0.2), transparent 62%),
    linear-gradient(140deg, rgba(59, 25, 32, 0.95), rgba(44, 16, 20, 0.95));
}

.spot:disabled {
  cursor: not-allowed;
  opacity: 0.9;
}

.spot-code {
  font-weight: 800;
  color: #f2f9ff;
}

.spot-side {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9fb8d8;
  font-weight: 700;
}

.spot-name {
  font-size: 0.92rem;
  color: #d8e9ff;
}

.spot-price,
.spot-status,
.spot-hold {
  font-size: 0.79rem;
  color: #c6daf4;
}

.spot-status {
  justify-self: start;
  border: 1px solid rgba(214, 232, 255, 0.22);
  border-radius: 999px;
  padding: 0.12rem 0.42rem;
  background: rgba(5, 13, 27, 0.32);
  color: #f5fbff;
  font-weight: 800;
}

.spot.available .spot-status {
  color: #d8ffe9;
  border-color: rgba(139, 237, 182, 0.42);
}

.spot.held .spot-status {
  color: #ffeab8;
  border-color: rgba(245, 207, 123, 0.44);
}

.spot.sold .spot-status {
  color: #ffd3d3;
  border-color: rgba(239, 152, 152, 0.44);
}

.mini-note {
  margin: 0.7rem 0 0;
  color: #afc7e5;
  font-size: 0.82rem;
}

.example-card {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.postcard-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.sample-card-section {
  padding-top: 5.4rem;
  padding-bottom: 5.4rem;
}

.sample-card-shell {
  width: min(1720px, 98vw);
  margin: 0 auto;
}

.sample-card-section .section-heading {
  max-width: 980px;
}

.sample-card-section .postcard-preview-grid {
  gap: 1.1rem;
}

.sample-card-section .postcard-preview-card img {
  width: 100%;
  height: auto;
}

.postcard-preview-card {
  position: relative;
}

.postcard-preview-card figcaption {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 0.26rem 0.58rem;
  background: rgba(8, 20, 39, 0.82);
  color: #f8fbff;
  font-size: 0.78rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.example-card img {
  display: block;
  width: 100%;
  height: auto;
}

.faq-list {
  display: grid;
  gap: 0.5rem;
}

.faq-list details {
  padding: 0.6rem 0.72rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: #f1f7ff;
}

.faq-list summary::marker {
  color: #8fc5ff;
}

.faq-list p {
  margin: 0.55rem 0 0;
  color: #c8dbf4;
}

.faq-list details[open] {
  border-color: rgba(145, 194, 255, 0.55);
}

.map-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0.8rem;
}

#zipMap {
  height: 430px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.zip-panel {
  display: grid;
  gap: 0.6rem;
}

.zip-card {
  border-left: 4px solid var(--brand);
  padding: 0.8rem;
}

.zip-card h4 {
  margin-bottom: 0.25rem;
}

.zip-card p {
  margin: 0.18rem 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.pricing-card {
  padding: 1rem;
}

.pricing-card.featured {
  border-color: rgba(244, 190, 73, 0.55);
  box-shadow: 0 18px 40px rgba(88, 65, 16, 0.36);
}

.pricing-card h3 {
  font-size: 1.35rem;
}

.pricing-card .price {
  margin: 0.5rem 0;
  font-size: 2rem;
  font-weight: 800;
  color: #f8fcff;
}

.pricing-card ul {
  margin: 0 0 0.9rem;
  padding-left: 1rem;
  color: #d6e7ff;
}

.pricing-card li {
  margin-bottom: 0.45rem;
}

.pill {
  margin: 0 0 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(244, 190, 73, 0.19);
  border: 1px solid rgba(244, 190, 73, 0.38);
  color: #ffe9bd;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.final-cta {
  padding: 5.6rem 0;
  background: linear-gradient(140deg, rgba(40, 114, 77, 0.95), rgba(18, 77, 56, 0.95));
  border-top: 1px solid rgba(166, 241, 199, 0.25);
}

.final-cta-inner {
  text-align: center;
}

.final-cta-inner h2 {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  color: #f8fff8;
}

.final-cta-inner p {
  max-width: 700px;
  margin: 0.7rem auto 0;
  color: rgba(237, 255, 245, 0.86);
}

.final-cta .hero-cta-row {
  justify-content: center;
}

.site-footer {
  background: rgba(3, 9, 20, 0.95);
  border-top: 1px solid rgba(136, 168, 205, 0.22);
  padding: 2.8rem 0 1.4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.footer-grid h3 {
  margin-top: 0.3rem;
  font-size: 1.2rem;
}

.footer-grid h4 {
  margin-bottom: 0.6rem;
  color: #eaf5ff;
  font-size: 0.95rem;
}

.footer-grid p {
  margin: 0.5rem 0 0;
  color: #a8c0dc;
}

.footer-grid a {
  display: block;
  text-decoration: none;
  color: #c5dbf7;
  margin-bottom: 0.45rem;
}

.footer-grid a:hover {
  color: #f5fbff;
}

.footer-bottom {
  border-top: 1px solid rgba(137, 167, 203, 0.2);
  margin-top: 1.4rem;
  padding-top: 0.9rem;
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  color: #9ab2cf;
  font-size: 0.84rem;
}

.footer-bottom-legal {
  justify-content: center;
  text-align: center;
  margin-top: 0.8rem;
  padding-top: 0.8rem;
}

.footer-bottom-legal p {
  width: 100%;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

.trust-strip {
  justify-content: center;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(4px);
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

.reserve-modal {
  border: 0;
  border-radius: 14px;
  width: min(640px, 92vw);
  padding: 0;
  background: #0d1d37;
  color: #eef5ff;
}

.reserve-modal::backdrop {
  background: rgba(9, 18, 33, 0.7);
}

.modal-shell {
  padding: 1rem;
  display: grid;
  gap: 0.62rem;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.modal-shell label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.9rem;
  color: #cfe0f6;
}

.modal-shell input,
.modal-shell textarea {
  width: 100%;
  border: 1px solid rgba(173, 204, 245, 0.42);
  border-radius: 8px;
  padding: 0.58rem 0.62rem;
  font: inherit;
  background: rgba(8, 18, 35, 0.88);
  color: #f4f8ff;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
}

.icon-close {
  border: 1px solid var(--line);
  border-radius: 999px;
  width: 32px;
  height: 32px;
  background: #132745;
  color: #f4f8ff;
  cursor: pointer;
}

.error-text {
  margin: 0;
  color: #ff9f9f;
  font-size: 0.9rem;
}

.simple-page {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 1.2rem 0;
}

.notice-card {
  padding: 1.15rem;
  width: min(720px, 94vw);
}

.notice-card h1 {
  font-size: clamp(1.4rem, 4vw, 2rem);
}

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

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.metric-card {
  padding: 0.75rem;
}

.metric-card p {
  margin: 0 0 0.35rem;
  color: #9eb9d8;
  font-size: 0.79rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.metric-card h4 {
  margin: 0;
  font-size: 1.3rem;
  color: #f4f9ff;
}

.admin-table-heading {
  margin-top: 0.4rem;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 0.65rem 0.5rem;
  border-bottom: 1px solid rgba(141, 173, 208, 0.25);
  text-align: left;
  font-size: 0.86rem;
  white-space: nowrap;
  color: #d7e9ff;
}

th {
  background: rgba(28, 52, 87, 0.88);
  color: #f4f9ff;
}

.status-pill {
  border-radius: 999px;
  padding: 0.22rem 0.5rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.status-available {
  background: rgba(50, 145, 95, 0.38);
  color: #d4ffe9;
}

.status-held {
  background: rgba(148, 108, 21, 0.42);
  color: #ffe9b4;
}

.status-sold {
  background: rgba(145, 55, 55, 0.42);
  color: #ffd1d1;
}

.admin-actions-top {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.admin-login-form {
  display: grid;
  gap: 0.7rem;
}

.admin-login-form input,
.admin-login-form textarea,
.admin-login-form select {
  width: 100%;
  border: 1px solid rgba(173, 204, 245, 0.4);
  border-radius: 8px;
  padding: 0.58rem 0.62rem;
  background: rgba(8, 18, 35, 0.88);
  color: #f4f8ff;
  font: inherit;
}

.prose-page {
  width: min(900px, 94vw);
  margin: 2.4rem auto;
  padding: 1.4rem;
}

.prose-page h1 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  margin-bottom: 0.4rem;
}

.prose-page h2 {
  font-size: 1.28rem;
  margin-top: 1.1rem;
}

.prose-page p,
.prose-page li {
  color: #c6daf2;
}

.prose-page ul {
  padding-left: 1.05rem;
}

.prose-page .mini-links {
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 0.4rem;
  }

  .topbar-actions .button {
    padding-inline: 0.86rem;
  }

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

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

@media (max-width: 1380px) {
  .topbar .container {
    width: min(1500px, 97vw);
  }

  .brand-title {
    font-size: 0.98rem;
  }

  .main-nav a {
    font-size: 0.84rem;
    padding: 0.46rem 0.46rem;
  }

  .topbar-actions {
    gap: 0.38rem;
  }

  .topbar-actions .button {
    padding-inline: 0.92rem;
  }
}

@media (max-width: 1700px) {
  .main-nav a {
    font-size: 0.82rem;
    padding: 0.44rem 0.42rem;
  }

  .topbar-actions {
    gap: 0.34rem;
  }

  .topbar-actions .button {
    padding-inline: 0.78rem;
  }

  .topbar-actions .top-action-secondary {
    display: none;
  }
}

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

  .main-nav,
  .topbar-actions .button:not(.admin-link) {
    display: none;
  }

  .topbar-actions .button.page-cta {
    display: inline-flex;
    width: auto;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 2rem;
  }

  .feature-grid-3,
  .pricing-grid,
  .bonus-stack-grid,
  .map-grid,
  .metric-grid,
  .local-visual-grid,
  .postcard-preview-grid,
  .owner-story {
    grid-template-columns: 1fr;
  }

  .card-sides {
    grid-template-columns: 1fr;
  }

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

  .side-grid {
    aspect-ratio: auto;
  }

  .spot {
    min-height: 108px;
  }

  .builder-toolbar {
    grid-template-columns: 1fr;
  }

  #zipMap {
    height: 360px;
  }
}

@media (max-width: 680px) {
  .hero-copy h1 {
    font-size: clamp(1.68rem, 8.5vw, 2.6rem);
  }

  .topbar-inner {
    min-height: 70px;
  }

  .brand-title {
    font-size: 0.92rem;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .modal-actions {
    flex-direction: column-reverse;
  }

  .button {
    width: 100%;
  }

  .hero-cta-row .button {
    width: auto;
  }
}

@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
  .cursor-ring,
  .cursor-dot {
    display: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}
