:root {
  color-scheme: light;
  --bg: #f6f7f2;
  --bg-alt: #eef3ea;
  --panel: rgba(255, 255, 255, 0.95);
  --border: rgba(14, 30, 52, 0.16);
  --blue: #2a6cff;
  --green: #6dad5c;
  --gold: #f2c94c;
  --navy: #0e3b7a;
  --red: #ff3b4d;
  --white: #ffffff;
  --text: #0e1b2e;
  --muted: rgba(18, 32, 52, 0.6);
  --glow: rgba(109, 173, 92, 0.2);
  --shadow: 0 24px 48px rgba(15, 30, 52, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  background: var(--bg);
  color: var(--text);
}

button,
input,
select,
textarea {
  font-family: "Space Grotesk", sans-serif;
}

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

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

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

.bg-grid {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(15, 30, 52, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 30, 52, 0.06) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.22;
  pointer-events: none;
  z-index: -2;
}

.bg-glow {
  position: fixed;
  inset: -40% 0 0;
  background: radial-gradient(circle at 25% 20%, rgba(56, 125, 255, 0.18), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(255, 90, 105, 0.16), transparent 60%),
    radial-gradient(circle at 50% 80%, rgba(24, 88, 168, 0.18), transparent 65%);
  pointer-events: none;
  z-index: -3;
}

.compliance-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  background: linear-gradient(120deg, var(--blue), var(--green));
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.compliance-bar span {
  white-space: nowrap;
}

.compliance-bar .muted {
  text-transform: none;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.8);
}

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

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

.brand-logo {
  width: 60px;
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(26, 105, 255, 0.4));
}

.brand-text {
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 13px;
  line-height: 1.1;
}

.brand-name {
  font-size: 20px;
  font-weight: 700;
}

.brand-sub {
  color: var(--muted);
  font-size: 11px;
}

.nav-actions,
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn.primary {
  background: linear-gradient(120deg, var(--blue), var(--green));
  color: #fff;
  box-shadow: 0 12px 30px rgba(109, 173, 92, 0.35);
}

.btn.ghost {
  border-color: rgba(14, 30, 52, 0.2);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.7);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding: 40px 0 20px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(32px, 4vw, 52px);
  margin: 12px 0 16px;
}

.text-gradient {
  background: linear-gradient(120deg, var(--blue), var(--green) 50%, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--muted);
}

.lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
}

.hero-focus {
  max-width: 100%;
  width: 100%;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-shell {
  width: min(600px, 94vw);
  border-radius: 28px;
  padding: 32px;
  background: radial-gradient(circle at 30% 20%, rgba(54, 104, 185, 0.22), transparent 55%),
    radial-gradient(circle at 70% 80%, rgba(109, 173, 92, 0.2), transparent 60%),
    radial-gradient(circle at 40% 90%, rgba(242, 201, 76, 0.18), transparent 55%);
  box-shadow: 0 30px 60px rgba(15, 30, 52, 0.2);
  transform: translateY(28px);
  margin-top: 12px;
}

.hero-image {
  width: 80%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.bullet {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--panel);
}

.bullet h4 {
  margin: 0 0 6px;
}

.bullet p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.hero-cards,
.hero-media {
  width: 100%;
}

.bullet-product {
  border-color: rgba(50, 111, 255, 0.4);
  background: linear-gradient(135deg, rgba(14, 32, 70, 0.9), rgba(18, 28, 44, 0.7));
}

.bullet-revenue {
  border-color: rgba(255, 59, 77, 0.4);
  background: linear-gradient(135deg, rgba(60, 18, 32, 0.9), rgba(24, 18, 28, 0.7));
}

.bullet-raise {
  border-color: rgba(255, 255, 255, 0.25);
  background: linear-gradient(135deg, rgba(26, 34, 54, 0.9), rgba(14, 20, 32, 0.7));
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.microcopy {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
}

.hero-media {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}

.lead-magnet {
  margin-top: 24px;
  padding: 22px;
  border-radius: 20px;
  border: 1px solid rgba(66, 153, 225, 0.35);
  background: linear-gradient(135deg, rgba(10, 18, 32, 0.88), rgba(16, 26, 46, 0.7));
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.35);
}

.lead-magnet h3 {
  margin: 6px 0 10px;
}

.lead-magnet p {
  margin: 0;
  color: var(--muted);
}

.lead-magnet-note {
  margin-top: 10px;
  font-size: 13px;
  color: var(--white);
}

.lead-magnet-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.vsl-card,
.hero-card,
.feature-card,
.engine-card,
.raise-card,
.metric-card,
.split-card,
.how-card {
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.vsl-card {
  padding: 20px;
}

.vsl-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.vsl-logo {
  width: 96px;
  height: 96px;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.vsl-frame {
  margin-top: 16px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(3, 10, 24, 0.6);
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vsl-video {
  width: 100%;
  height: auto;
  display: block;
}

.vsl-video-shell {
  width: 100%;
  position: relative;
}

.vsl-controls {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: flex;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.vsl-audio-toggle,
.vsl-play-toggle {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(8, 12, 20, 0.8);
  color: var(--white);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.vsl-icon {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.vsl-video-shell:hover .vsl-controls,
.vsl-video-shell.is-active .vsl-controls,
.vsl-video-shell.needs-interaction .vsl-controls {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-2px);
}

.hero-card {
  padding: 20px;
}

.engine-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.engine-list span {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.mockup-carousel {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.mockup-viewport {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.25);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  cursor: default;
}

.mockup-track {
  display: flex;
  gap: 0;
  transition: transform 0.35s ease;
  touch-action: pan-y;
}

.mockup-slide {
  flex: 0 0 100%;
  min-width: 100%;
  scroll-snap-align: start;
  height: auto;
  object-fit: contain;
  display: block;
  background: #0b1220;
}

.mockup-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
  z-index: 2;
}

.mockup-tab {
  border-radius: 999px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  pointer-events: auto;
}

.mockup-tab.is-active {
  background: linear-gradient(120deg, var(--blue), var(--red));
  border-color: transparent;
  box-shadow: 0 10px 20px rgba(42, 108, 255, 0.35);
}

.mockup-caption {
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
}

.promo {
  padding: 30px 0 10px;
}

.promo-tabs {
  display: grid;
  gap: 16px;
  justify-items: center;
}

.section {
  padding: 50px 0 10px;
}

.section-header {
  text-align: center;
  margin-bottom: 28px;
}

.section-header h2 {
  margin: 0 0 10px;
}

.section-header p {
  color: var(--muted);
  margin: 0 auto;
  max-width: 720px;
}

.feature-grid,
.engine-grid,
.raise-grid,
.metric-grid,
.split-grid,
.how-steps {
  display: grid;
  gap: 18px;
}

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

.investing-visual {
  margin-top: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 12, 22, 0.55);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  padding: 16px;
}

.investing-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

.investing-image-mobile {
  display: none;
}

.feature-card {
  padding: 20px;
}

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

.engine-card,
.raise-card,
.metric-card,
.split-card,
.how-card {
  padding: 22px;
}

.flywheel-section .section-header {
  margin-bottom: 22px;
}

.flywheel-visual {
  position: relative;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(90, 140, 255, 0.28);
  background: linear-gradient(135deg, rgba(6, 10, 18, 0.78), rgba(10, 16, 28, 0.6));
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

.flywheel-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  margin-bottom: 18px;
}

.flywheel-image-inline {
  display: none;
  margin: 12px 0;
}

.flywheel-visual .engine-grid {
  margin-bottom: 18px;
}

.flywheel-visual .engine-card {
  background: rgba(10, 16, 28, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
}

.flywheel-visual .callout {
  background: rgba(8, 14, 24, 0.8);
  border-color: rgba(255, 255, 255, 0.15);
}

.flywheel-visual .flywheel-callout {
  margin-top: -6px;
  margin-bottom: 18px;
}

.engine-card ul,
.raise-card ul,
.split-card ul {
  padding-left: 18px;
  color: var(--muted);
}

.engine-visual {
  width: 100%;
  height: auto;
  display: block;
  margin: 12px 0 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 12, 20, 0.6);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35);
}

.callout {
  margin-top: 18px;
  padding: 16px;
  border-radius: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  text-align: center;
  color: var(--muted);
}

.veteran-special-banner {
  margin: 18px auto 0;
  width: min(520px, 100%);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(42, 108, 255, 0.7);
  background: linear-gradient(140deg, #1d57d6, var(--blue));
  box-shadow: 0 24px 60px rgba(10, 18, 32, 0.35);
  padding: 8px;
}

.veteran-special-banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

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

.seed-raise .section-header {
  margin-bottom: 26px;
}

.seed-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.seed-card {
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 16, 28, 0.75);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.seed-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.seed-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
  color: var(--muted);
}

.seed-terms ul {
  font-size: 16px;
}

.seed-terms li {
  color: var(--white);
}

.seed-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--blue);
  margin-right: 10px;
}

.seed-note {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-left: 20px;
}

.seed-funds-header p {
  color: var(--muted);
  margin-top: 0;
  margin-bottom: 18px;
}

.seed-funds-body {
  display: grid;
  gap: 18px;
}

.seed-bar-labels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  color: var(--muted);
}

.seed-label-block {
  display: flex;
  align-items: center;
  gap: 8px;
}

.seed-icon {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
}

.seed-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.seed-icon-teal {
  color: #38b2ac;
}

.seed-icon-purple {
  color: #9f7aea;
}

.seed-icon-gold {
  color: #ecc94b;
}

.seed-icon-blue {
  color: #4299e1;
}

.seed-pill {
  display: grid;
  grid-template-columns: 30% 25% 34% 11%;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 10, 18, 0.8);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.08), 0 14px 30px rgba(0, 0, 0, 0.35);
}

.seed-pill-segment {
  padding: 16px 8px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #0c1220;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.seed-teal {
  background: rgba(56, 178, 172, 0.9);
}

.seed-purple {
  background: rgba(159, 122, 234, 0.9);
}

.seed-gold {
  background: rgba(236, 201, 75, 0.9);
}

.seed-blue {
  background: rgba(66, 153, 225, 0.9);
}

.seed-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

.seed-detail {
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 12, 20, 0.65);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.3);
  display: grid;
  gap: 6px;
  color: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.seed-detail-value {
  font-size: 22px;
  font-weight: 700;
}

.seed-detail-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.seed-detail-note {
  font-size: 12px;
  color: var(--muted);
}

.seed-pill-segment.is-active {
  opacity: 1;
  transform: scale(1.02);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.25);
}

.seed-detail.is-active {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.seed-detail.seed-teal.is-active {
  border-color: rgba(56, 178, 172, 0.6);
  box-shadow: 0 20px 40px rgba(56, 178, 172, 0.25);
}

.seed-detail.seed-purple.is-active {
  border-color: rgba(159, 122, 234, 0.6);
  box-shadow: 0 20px 40px rgba(159, 122, 234, 0.25);
}

.seed-detail.seed-gold.is-active {
  border-color: rgba(236, 201, 75, 0.65);
  box-shadow: 0 20px 40px rgba(236, 201, 75, 0.25);
}

.seed-detail.seed-blue.is-active {
  border-color: rgba(66, 153, 225, 0.65);
  box-shadow: 0 20px 40px rgba(66, 153, 225, 0.25);
}

.metric-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.metric-card h4 {
  margin: 0 0 6px;
}

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

.faq-card {
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(120deg, var(--blue), var(--green));
  box-shadow: 0 18px 34px rgba(42, 108, 255, 0.28);
  color: #fff;
}

.faq-card h4 {
  margin-top: 0;
  margin-bottom: 8px;
}

.faq-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.measure {
  display: grid;
  gap: 18px;
}

.measure-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.measure-tab {
  border-radius: 999px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.measure-tab.is-active,
.measure-tab:hover {
  background: linear-gradient(120deg, rgba(42, 108, 255, 0.9), rgba(255, 59, 77, 0.85));
  border-color: transparent;
  box-shadow: 0 12px 26px rgba(42, 108, 255, 0.3);
  transform: translateY(-2px);
}

.measure-panels {
  display: grid;
}

.measure-panel {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.measure-panel.is-active {
  display: grid;
}

.measure-card {
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 12, 20, 0.7);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.35);
}

.measure-card h4 {
  margin-top: 0;
  margin-bottom: 10px;
}

.measure-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.measure-kpi {
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(90, 140, 255, 0.35);
  background: linear-gradient(135deg, rgba(10, 16, 28, 0.85), rgba(16, 24, 40, 0.65));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  display: grid;
  gap: 10px;
}

.measure-kpi-label {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.measure-kpi-value {
  font-size: 22px;
  font-weight: 700;
}

.measure-kpi-note {
  font-size: 13px;
  color: var(--muted);
}

.proof {
  margin-top: 16px;
  text-align: center;
  color: var(--muted);
}

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

.how-steps {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.step-number {
  font-size: 28px;
  font-weight: 700;
  color: var(--blue);
}

.step-card {
  text-align: center;
  display: grid;
  gap: 12px;
  justify-items: center;
}

.step-icon {
  width: clamp(150px, 14vw, 220px);
  height: clamp(150px, 14vw, 220px);
  object-fit: contain;
}

.cta-center {
  margin-top: 26px;
  text-align: center;
}

.footer {
  margin-top: 60px;
  padding: 40px 0 60px;
  display: grid;
  gap: 16px;
  justify-items: center;
  text-align: center;
}

.disclaimer {
  font-size: 12px;
  color: var(--muted);
  max-width: 820px;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 30, 52, 0.22);
  opacity: 0;
  pointer-events: none;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 50;
  transition: opacity 0.2s ease;
}

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

.modal {
  width: min(880px, 94vw);
  max-height: 90vh;
  overflow: hidden;
  border-radius: 20px;
  background: transparent;
  border: none;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  color: #ffffff;
  position: relative;
}

.modal::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, var(--blue), var(--green));
  opacity: 0.9;
  border: 1px solid rgba(14, 30, 52, 0.12);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  pointer-events: none;
  z-index: 0;
}

.modal > * {
  position: relative;
  z-index: 1;
}

.modal-header {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.modal-subtitle {
  color: rgba(255, 255, 255, 0.8);
  margin: 8px 0 0;
}

.modal .eyebrow {
  color: rgba(198, 222, 255, 0.9);
}

.modal-body {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
}

.modal .btn.ghost {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.listing-modal .modal {
  width: min(1100px, 94vw);
  max-height: 92vh;
}

.listing-modal-body {
  display: grid;
  gap: 24px;
}

.listing-gallery {
  display: grid;
  gap: 12px;
  position: relative;
}

.listing-gallery-viewport {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  scroll-padding-inline: clamp(12px, 6vw, 32px);
  scrollbar-width: none;
  min-height: clamp(240px, 45vh, 420px);
}

.listing-gallery-viewport::-webkit-scrollbar {
  display: none;
}

.listing-gallery-track {
  display: flex;
  gap: 16px;
  padding: 0 clamp(12px, 6vw, 32px) 6px;
  width: max-content;
}

.listing-gallery-card {
  flex: 0 0 clamp(280px, 80vw, 520px);
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(140deg, rgba(242, 201, 76, 0.22), rgba(109, 173, 92, 0.24));
  border: 1px solid rgba(109, 173, 92, 0.22);
  box-shadow: 0 22px 40px rgba(15, 30, 52, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.listing-gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 50px rgba(15, 30, 52, 0.22);
}

.listing-gallery-card img {
  width: 100%;
  height: clamp(220px, 40vh, 360px);
  border-radius: 14px;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(14, 30, 52, 0.12);
  background: rgba(255, 255, 255, 0.85);
}

.listing-gallery-empty {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  pointer-events: none;
}

.listing-gallery-counter {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(14, 30, 52, 0.12);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.listing-details-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
}

.listing-details-panel {
  border-radius: 18px;
  border: 1px solid rgba(14, 30, 52, 0.12);
  background: #ffffff;
  box-shadow: 0 18px 34px rgba(15, 30, 52, 0.12);
  padding: 18px;
  display: grid;
  gap: 14px;
  color: var(--text);
}

.listing-details-list {
  display: grid;
  gap: 10px;
}

.listing-details-list span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.listing-details-list strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.listing-amenities {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 6px;
}

.listing-actions-panel {
  align-content: start;
}

.listing-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
}

.listing-price-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.listing-actions {
  display: grid;
  gap: 10px;
}

@media (max-width: 900px) {
  .listing-details-grid {
    grid-template-columns: 1fr;
  }
}

.iframe-shell {
  border-radius: 18px;
  border: 1px solid rgba(14, 30, 52, 0.12);
  background: #ffffff;
  padding: 18px;
  position: relative;
  color: var(--text);
}

.iframe-placeholder {
  position: absolute;
  inset: 18px;
  border-radius: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
  pointer-events: none;
}

.beta-form-frame {
  width: 100%;
  min-height: clamp(560px, 75vh, 840px);
  border: none;
  background: transparent;
  pointer-events: none;
}

.modal-overlay.is-open .beta-form-frame {
  display: block !important;
  pointer-events: auto;
}

.modal-open {
  overflow: hidden;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-actions,
  .footer-actions {
    justify-content: flex-start;
  }
  .brand-logo {
    width: 35px;
  }
  .nav-actions {
    width: 100%;
    flex-direction: column;
  }
  .nav-actions .btn {
    width: 100%;
  }
  .hero-cards {
    grid-template-columns: 1fr;
  }
  .cta-row {
    flex-direction: column;
  }
  .cta-row .btn {
    width: 100%;
  }
  .lead-magnet {
    flex-direction: column;
    align-items: flex-start;
  }
  .lead-magnet-actions {
    width: 100%;
  }
  .lead-magnet-actions .btn {
    width: 100%;
  }
  .flywheel-image {
    display: none;
  }
  .flywheel-image-inline {
    display: block;
  }
  .investing-image {
    display: none;
  }
  .investing-image-mobile {
    display: block;
  }
}

@media (min-width: 980px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
  }
  .hero-cards,
  .hero-media,
  .lead-magnet {
    grid-column: 1 / -1;
  }
  .mockup-carousel {
    max-width: 600px;
    margin-inline: auto;
  }
}

/* Tenant funnel additions */

.hero-bullets {
  margin: 20px 0 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.hero-photo {
  min-height: 0;
  display: grid;
  place-items: center;
  border-radius: 22px;
  border: 1px solid rgba(42, 108, 255, 0.7);
  background: linear-gradient(140deg, #1d57d6, var(--blue));
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.hero-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  transform: none;
}

.placeholder {
  color: rgba(14, 30, 52, 0.45);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
}

.amenity-grid,
.fee-grid,
.contact-grid,
.steps {
  display: grid;
  gap: 16px;
}

.floorplan-carousel {
  display: grid;
  gap: 12px;
}

.video-carousel {
  display: grid;
  gap: 12px;
  position: relative;
}

.floorplan-viewport {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  scroll-padding-inline: clamp(12px, 6vw, 32px);
  scrollbar-width: none;
}

.floorplan-viewport::-webkit-scrollbar {
  display: none;
}

.video-viewport {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  scroll-padding-inline: clamp(12px, 6vw, 32px);
  scrollbar-width: none;
}

.video-viewport::-webkit-scrollbar {
  display: none;
}

.floorplan-track {
  display: flex;
  gap: 16px;
  padding: 0 clamp(12px, 6vw, 32px) 6px;
}

.video-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  width: max-content;
  gap: 16px;
  padding: 0 clamp(12px, 6vw, 32px) 6px;
}

.floorplan-card,
.video-card,
.amenity-card,
.fee-card,
.contact-card,
.step-card {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(14, 30, 52, 0.12);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 18px 34px rgba(15, 30, 52, 0.12);
  backdrop-filter: blur(10px);
}

.contact-card {
  background: linear-gradient(140deg, rgba(242, 201, 76, 0.18), rgba(109, 173, 92, 0.22));
  border-color: rgba(109, 173, 92, 0.22);
}

.floorplan-card {
  flex: 0 0 clamp(280px, 80vw, 520px);
  display: grid;
  gap: 10px;
  background: linear-gradient(140deg, rgba(242, 201, 76, 0.22), rgba(109, 173, 92, 0.24));
  border: 1px solid rgba(109, 173, 92, 0.22);
  box-shadow: 0 22px 40px rgba(15, 30, 52, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.video-card {
  flex: 0 0 clamp(320px, 85vw, 560px);
  padding: 16px;
  display: grid;
  gap: 12px;
  background: linear-gradient(120deg, var(--blue), var(--green));
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 22px 40px rgba(15, 30, 52, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floorplan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 50px rgba(15, 30, 52, 0.22);
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 50px rgba(15, 30, 52, 0.22);
}

.floorplan-card-image {
  width: 100%;
  min-height: 260px;
  border-radius: 14px;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(14, 30, 52, 0.12);
  background: rgba(255, 255, 255, 0.85);
}

.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(14, 30, 52, 0.12);
  background: rgba(255, 255, 255, 0.9);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

.video-cta {
  position: absolute;
  right: 14px;
  bottom: 14px;
  background: rgba(255, 255, 255, 0.9);
}

.video-counter {
  position: absolute;
  right: 18px;
  top: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(14, 30, 52, 0.12);
  font-size: 12px;
  color: var(--muted);
}

@media (pointer: coarse) {
  .floorplan-viewport {
    scroll-snap-type: x proximity;
  }

  .floorplan-card {
    scroll-snap-align: start;
  }

  .video-viewport {
    scroll-snap-type: x proximity;
  }

  .video-card {
    scroll-snap-align: start;
  }
}

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

.amenity-card {
  text-align: center;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease,
    border-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
  appearance: none;
}

.amenity-card:hover {
  transform: translateY(-4px);
  border-color: rgba(42, 108, 255, 0.4);
  background: linear-gradient(120deg, rgba(42, 108, 255, 0.16), rgba(255, 59, 77, 0.14));
  color: #0b1a33;
  box-shadow: 0 22px 44px rgba(26, 105, 255, 0.22);
}

.amenity-card:focus-visible {
  outline: 2px solid rgba(42, 108, 255, 0.6);
  outline-offset: 3px;
}

.amenities-section.is-expanded .amenity-card:not(.is-active) {
  display: none;
}

.amenities-section.is-expanded .amenity-card.is-active {
  grid-column: 1 / -1;
  text-align: left;
  background: linear-gradient(140deg, rgba(242, 201, 76, 0.22), rgba(109, 173, 92, 0.24));
  border-color: rgba(109, 173, 92, 0.22);
  color: #0b1a33;
}

.amenity-detail {
  margin-top: 18px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(109, 173, 92, 0.22);
  background: linear-gradient(140deg, rgba(242, 201, 76, 0.22), rgba(109, 173, 92, 0.24));
  box-shadow: 0 18px 36px rgba(15, 30, 52, 0.12);
  backdrop-filter: blur(12px);
  display: grid;
  gap: 16px;
  overflow: hidden;
}

.amenity-detail[hidden] {
  display: none;
}

.amenity-detail-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 16px;
}

.amenity-detail-actions {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-end;
  justify-self: end;
}

.amenity-switch {
  min-width: 110px;
}

.amenity-detail-description {
  color: var(--muted);
  margin: 8px 0 0;
}

.amenity-gallery {
  position: relative;
  display: grid;
  gap: 12px;
}

.amenity-gallery-viewport {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  scroll-padding-inline: clamp(12px, 6vw, 32px);
  scrollbar-width: none;
}

.amenity-gallery-viewport::-webkit-scrollbar {
  display: none;
}

.amenity-gallery-track {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 16px;
  padding: 0 clamp(12px, 6vw, 32px) 6px;
  width: max-content;
}

.amenity-gallery-card {
  flex: 0 0 clamp(240px, 70vw, 420px);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(14, 30, 52, 0.12);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 30px rgba(15, 30, 52, 0.12);
}

.amenity-gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.amenity-gallery-counter {
  position: absolute;
  right: 18px;
  top: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(14, 30, 52, 0.12);
  font-size: 12px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .amenity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

.requirements-timeline {
  display: grid;
  gap: 18px;
}

.requirements-tabs {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(14, 30, 52, 0.12);
  box-shadow: 0 16px 30px rgba(15, 30, 52, 0.12);
  width: fit-content;
}

.requirements-pill-indicator {
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 6px;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(42, 108, 255, 0.25), rgba(109, 173, 92, 0.3));
  transition: transform 0.3s ease, width 0.3s ease;
  z-index: 0;
}

.requirements-tab {
  position: relative;
  z-index: 1;
  border: none;
  background: transparent;
  color: var(--muted);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.requirements-tab.is-active {
  color: #0b1a33;
  font-weight: 600;
}

.requirements-tab:hover {
  transform: translateY(-1px);
}

.requirements-card {
  border-radius: 22px;
  border: 1px solid rgba(14, 30, 52, 0.12);
  box-shadow: 0 24px 48px rgba(15, 30, 52, 0.14);
  padding: 24px;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  background: rgba(255, 255, 255, 0.85);
}

.requirements-card[data-step="fees"] {
  background: linear-gradient(140deg, rgba(242, 201, 76, 0.22), rgba(109, 173, 92, 0.2));
  border-color: rgba(109, 173, 92, 0.22);
}

.requirements-card[data-step="policies"] {
  background: linear-gradient(140deg, rgba(42, 108, 255, 0.18), rgba(109, 173, 92, 0.2));
  border-color: rgba(42, 108, 255, 0.2);
}

.requirements-card[data-step="requirements"] {
  background: linear-gradient(140deg, rgba(42, 108, 255, 0.22), rgba(29, 87, 214, 0.18));
  border-color: rgba(42, 108, 255, 0.3);
}

.requirements-card-inner {
  transition: opacity 0.2s ease, transform 0.2s ease, height 0.25s ease;
}

.requirements-card-inner.is-switching {
  opacity: 0;
  transform: translateY(8px);
}

.requirements-section h3 {
  margin: 0 0 10px;
}

.requirements-section ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

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

.requirements-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 720px) {
  .requirements-tabs {
    width: 100%;
    justify-content: space-between;
  }
}

.fee-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.contact-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: stretch;
}

.contact-card a {
  color: var(--navy);
}

.contact-map {
  border-radius: 18px;
  border: 1px solid rgba(14, 30, 52, 0.12);
  min-height: 260px;
  background: rgba(255, 255, 255, 0.95);
  overflow: hidden;
  display: block;
  aspect-ratio: 4 / 3;
  box-shadow: 0 18px 32px rgba(15, 30, 52, 0.12);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

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

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(42, 108, 255, 0.12);
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-center {
  text-align: center;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid rgba(14, 30, 52, 0.12);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 36px rgba(15, 30, 52, 0.12);
  display: grid;
  gap: 12px;
  justify-items: center;
}

.availability-panel {
  border-radius: 22px;
  border: 1px solid rgba(109, 173, 92, 0.25);
  background: linear-gradient(140deg, rgba(109, 173, 92, 0.28), rgba(204, 230, 156, 0.2));
  box-shadow: 0 20px 40px rgba(15, 30, 52, 0.12);
  padding: 20px;
  display: grid;
  gap: 16px;
  align-items: start;
}

.availability-controls {
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.availability-controls input[type="search"] {
  border-radius: 999px;
  border: 1px solid rgba(14, 30, 52, 0.2);
  padding: 12px 18px;
  font-size: 14px;
  background: #fff;
  color: var(--text);
}

.availability-status {
  color: var(--muted);
  font-size: 14px;
}

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

.availability-scroll {
  overflow-y: auto;
  padding-right: 6px;
  min-height: 0;
}

.availability-card {
  border-radius: 18px;
  border: 1px solid rgba(14, 30, 52, 0.12);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 34px rgba(15, 30, 52, 0.12);
  overflow: hidden;
  display: grid;
  gap: 12px;
  grid-template-rows: auto 1fr;
}

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

.availability-photo {
  border: none;
  padding: 0;
  background: transparent;
  width: 100%;
  text-align: left;
  cursor: pointer;
  display: block;
}

.availability-placeholder {
  height: 160px;
  display: grid;
  place-items: center;
  color: rgba(14, 30, 52, 0.5);
  background: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.availability-title {
  border: none;
  background: transparent;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.availability-title:hover {
  text-decoration: underline;
}

.availability-card-body {
  padding: 16px;
  display: grid;
  gap: 8px;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid rgba(14, 30, 52, 0.08);
  color: var(--text);
  min-height: 120px;
}

.availability-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
}

.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(120, 170, 88, 0.16);
  border: 1px solid rgba(120, 170, 88, 0.35);
  color: #2f4f2c;
  font-size: 12px;
  font-weight: 600;
  width: fit-content;
}

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

.availability-note {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}

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

  .modal-body {
    overflow: hidden;
    padding: 18px;
  }

  .iframe-shell {
    height: 100%;
  }

  .beta-form-frame {
    height: 100%;
    min-height: 100%;
  }

  .availability-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 8px;
    padding-right: 0;
    scrollbar-width: none;
  }

  .availability-scroll::-webkit-scrollbar {
    display: none;
  }

  .availability-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
  }

  .availability-card {
    min-width: 260px;
    flex: 0 0 auto;
  }
}

@media (max-width: 768px) {
  .nav-actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero-photo {
    min-height: 240px;
  }
}
