:root {
  --ink: #10232d;
  --muted: #5b6e78;
  --water: #007f9f;
  --deep: #063342;
  --foam: #eef8f6;
  --sun: #ffb84d;
  --line: #d7e5e5;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(8, 41, 52, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  background: #f8fbfa;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(215, 229, 229, 0.85);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  background: var(--deep);
  border-radius: 8px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.96rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 2px;
}

nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

nav a:hover {
  color: var(--water);
}

.nav-cta {
  color: var(--deep);
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--foam);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 31, 41, 0.86) 0%, rgba(4, 31, 41, 0.58) 44%, rgba(4, 31, 41, 0.14) 100%),
    linear-gradient(0deg, rgba(4, 31, 41, 0.64) 0%, rgba(4, 31, 41, 0) 48%);
}

.hero-content {
  position: relative;
  width: min(1080px, calc(100% - 36px));
  margin: 0 auto;
  padding: 118px 0 46px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sun);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--water);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  max-width: 720px;
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.hero-copy {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.16rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease, opacity 150ms ease;
  will-change: transform;
}

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

.button:active,
.button.is-submitting {
  transform: translateY(2px) scale(0.98);
}

.button:focus-visible {
  outline: 3px solid rgba(0, 127, 159, 0.28);
  outline-offset: 3px;
}

.button:disabled {
  cursor: wait;
}

.button.is-submitting::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid rgba(8, 41, 54, 0.28);
  border-top-color: #082936;
  border-radius: 50%;
  animation: button-spin 700ms linear infinite;
}

.button.is-sent {
  color: var(--white);
  background: #167145;
  box-shadow: 0 14px 28px rgba(22, 113, 69, 0.28);
  transform: scale(1.03);
}

.button.is-sent::before {
  content: "✓";
  font-weight: 900;
}

.button.needs-attention {
  color: var(--white);
  background: #a44f16;
  transform: translateY(2px) scale(0.98);
}

@keyframes button-spin {
  to {
    transform: rotate(360deg);
  }
}

.button.primary {
  color: #082936;
  background: var(--sun);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.button.utility {
  min-height: 42px;
  color: var(--deep);
  background: var(--foam);
  border: 1px solid var(--line);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 850px;
  margin: 0;
}

.hero-stats div,
.feature-grid article,
.region-groups article,
.trip-type-grid article,
.lead-questions,
.finder-panel,
.finder-card,
.finder-empty,
.review-panel,
.steps article,
.captain-card,
.lead-panel,
.keyword-card,
.video-script,
.signup-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(8, 41, 52, 0.07);
}

.hero-stats div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(10px);
}

.hero-stats dt {
  font-weight: 800;
}

.hero-stats dd {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 84px 0;
}

.split,
.about-band,
.setup-flow,
.trust-band,
.lead-section,
.signup {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.signup-checklist {
  margin-top: 24px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.signup-checklist h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.signup-checklist ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.7;
}

.build-choice {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fbfb;
}

.build-choice legend {
  padding: 0 6px;
  color: var(--deep);
  font-weight: 900;
}

.build-choice label {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.build-choice input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.build-choice strong {
  display: block;
  margin-bottom: 4px;
  color: var(--deep);
}

.build-choice span {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

.feature-grid,
.about-points,
.region-groups,
.trip-type-grid,
.steps,
.profile-grid,
.trust-list {
  display: grid;
  gap: 14px;
}

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

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

.region-groups article {
  padding: 24px;
}

.region-groups article:last-child {
  grid-column: 1 / -1;
}

.region-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.region-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  color: var(--deep);
  font-size: 0.88rem;
  font-weight: 800;
  background: var(--foam);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.trip-types {
  width: 100%;
  max-width: none;
  padding: 84px clamp(18px, 4vw, 56px);
  background: #f4f9f8;
}

.trip-types > * {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.trip-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
  gap: 18px;
  align-items: start;
}

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

.trip-type-grid article,
.lead-questions {
  padding: 22px;
}

.trip-type-grid span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--water);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.lead-questions {
  position: sticky;
  top: 92px;
  background: var(--deep);
}

.lead-questions h3,
.lead-questions li {
  color: var(--white);
}

.lead-questions ul {
  margin: 0;
  padding-left: 20px;
  line-height: 1.8;
}

.finder {
  width: 100%;
  max-width: none;
  padding: 84px clamp(18px, 4vw, 56px);
  background: #ffffff;
}

.finder > * {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.finder-panel {
  padding: 24px;
}

.finder-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

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

.finder-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.finder-summary span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 9px;
  color: var(--deep);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  background: var(--foam);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.finder-card,
.finder-empty {
  padding: 22px;
}

.finder-card {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.finder-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.finder-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--water);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.finder-card > strong {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 8px;
  color: var(--deep);
  font-size: 0.72rem;
  text-transform: uppercase;
  background: var(--foam);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.finder-card[data-status="needed"] > strong {
  color: #7a4a00;
  background: #fff3d8;
  border-color: #ffd88a;
}

.finder-empty {
  grid-column: 1 / -1;
  background: var(--foam);
}

.review-queue {
  width: 100%;
  max-width: none;
  padding: 84px clamp(18px, 4vw, 56px);
  background: #f8fbfa;
}

.review-queue > * {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.review-panel {
  padding: 24px;
  margin-bottom: 18px;
}

.review-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.review-count {
  color: var(--deep);
  font-weight: 800;
}

.review-filters {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.28fr);
  gap: 14px;
  margin-bottom: 18px;
  padding: 16px;
  background: #fbfdfd;
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.review-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
}

.review-table th,
.review-table td {
  padding: 14px 12px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.review-table th {
  color: var(--deep);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.review-table td {
  color: var(--muted);
}

.review-table td strong,
.review-table td span {
  display: block;
}

.review-table td strong {
  color: var(--ink);
  margin-bottom: 4px;
}

.review-table td span {
  font-size: 0.78rem;
}

.review-table a {
  color: var(--water);
  font-weight: 800;
}

.review-table .note-row td {
  padding-top: 0;
  background: #fbfdfd;
}

.review-table .note-row label {
  color: var(--muted);
  font-size: 0.78rem;
}

.review-table .note-row input {
  min-height: 40px;
}

.status-pill {
  display: inline-flex;
  width: fit-content;
  padding: 5px 8px;
  color: var(--deep);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  background: var(--foam);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.status-select {
  min-height: 36px;
  padding: 0 8px;
  color: var(--deep);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--foam);
}

.table-action {
  min-height: 34px;
  padding: 0 10px;
  color: var(--deep);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  background: var(--foam);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.table-action:hover {
  border-color: var(--water);
}

.table-action.danger {
  color: #8a2f20;
  background: #fff0ec;
  border-color: #ffc2b5;
}

.draft-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.85fr);
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(8, 41, 52, 0.07);
}

.saved-drafts-panel {
  margin-top: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(8, 41, 52, 0.07);
}

.draft-output {
  min-height: 260px;
  max-height: 460px;
  overflow: auto;
  padding: 18px;
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.86rem;
  line-height: 1.55;
  white-space: pre-wrap;
  background: #f3f8f8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.draft-actions {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.draft-actions span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

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

.feature-grid article,
.about-points article,
.steps article,
.captain-card {
  padding: 24px;
}

.about-band {
  align-items: center;
}

.about-points {
  gap: 14px;
}

.about-points article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(8, 41, 52, 0.07);
}

.about-points strong {
  display: block;
  margin-bottom: 8px;
  color: var(--deep);
  font-size: 1.02rem;
}

.feature-grid span,
.steps span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 22px;
  color: var(--water);
  font-weight: 800;
  border-radius: 8px;
  background: var(--foam);
}

.trust-band {
  width: 100%;
  max-width: none;
  padding: 84px clamp(18px, 4vw, 56px);
  background: var(--foam);
}

.profile-preview {
  width: 100%;
  max-width: none;
  padding: 84px clamp(18px, 4vw, 56px);
  background: #ffffff;
}

.profile-preview > * {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

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

.captain-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.captain-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.captain-card p {
  margin-bottom: 18px;
}

.captain-card ul {
  margin: auto 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.65;
}

.profile-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.profile-topline strong {
  color: var(--deep);
  padding: 6px 9px;
  background: var(--foam);
  border-radius: 8px;
}

.trust-band > * {
  max-width: 1120px;
}

.trust-list div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.trust-list strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.blitz {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 18px;
}

.blitz > div:first-child {
  grid-row: span 2;
}

.keyword-card,
.video-script,
.lead-panel,
.signup-form {
  padding: clamp(22px, 3vw, 32px);
}

.keyword-card {
  color: var(--white);
  background: var(--deep);
}

.keyword-card span,
.keyword-card p {
  color: rgba(255, 255, 255, 0.78);
}

.keyword-card strong {
  display: block;
  margin: 8px 0;
  color: var(--sun);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  line-height: 1;
}

.video-script ol,
.lead-panel ul {
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.7;
}

.lead-panel.accent {
  color: var(--white);
  background: var(--water);
  border-color: rgba(255, 255, 255, 0.2);
}

.lead-panel.accent h2,
.lead-panel.accent ul {
  color: var(--white);
}

.faq-section {
  background: #ffffff;
}

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

.faq-grid article {
  padding: 22px;
  background: #f3f8f8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-grid h3 {
  margin-bottom: 8px;
}

.faq-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.chat-preview p {
  margin-bottom: 12px;
  padding: 14px;
  background: #f3f8f8;
  border-radius: 8px;
}

.signup-form {
  display: grid;
  gap: 16px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--deep);
  font-size: 0.9rem;
  font-weight: 800;
}

.hidden-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

input,
select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  font: inherit;
  border: 1px solid #cbdcdd;
  border-radius: 8px;
  background: var(--white);
}

input:focus,
select:focus {
  outline: 3px solid rgba(0, 127, 159, 0.18);
  border-color: var(--water);
}

input.field-error,
select.field-error {
  border-color: #a44f16;
  outline: 3px solid rgba(164, 79, 22, 0.18);
}

.checkbox-row {
  grid-template-columns: auto 1fr;
  align-items: start;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.5;
}

.checkbox-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.form-note {
  min-height: 24px;
  margin: 0;
  font-weight: 800;
}

.form-note.pending {
  color: var(--water);
}

.form-note.success {
  color: #167145;
  padding: 12px 14px;
  background: #eaf7ef;
  border: 1px solid rgba(22, 113, 69, 0.24);
  border-radius: 8px;
}

.form-note.warning {
  color: #8a5a00;
}

.form-privacy {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.55;
}

.captain-next-panel {
  display: grid;
  gap: 10px;
  padding: 16px;
  color: var(--deep);
  background: #eef8f5;
  border: 1px solid rgba(22, 113, 69, 0.22);
  border-radius: 8px;
}

.captain-next-panel[hidden] {
  display: none;
}

.captain-next-panel strong {
  font-size: 1.05rem;
}

.captain-next-panel p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.55;
}

.captain-next-panel ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.55;
}

.lead-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 4px;
}

.lead-tools span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.profile-page {
  background: #ffffff;
}

.profile-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 86px 0 58px;
}

.profile-hero h1 {
  color: var(--ink);
  font-size: clamp(2.7rem, 6vw, 5rem);
}

.profile-hero p {
  max-width: 720px;
  font-size: 1.08rem;
}

.profile-summary {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--foam);
}

.profile-summary div {
  display: grid;
  gap: 3px;
}

.profile-summary span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.profile-summary strong {
  color: var(--deep);
}

.profile-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 5vw, 64px);
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 66px 0;
  border-top: 1px solid var(--line);
}

.trip-stack,
.profile-notes {
  display: grid;
  gap: 14px;
}

.trip-card,
.approval-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(8, 41, 52, 0.07);
}

.trip-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--water);
}

.approval-panel {
  background: var(--deep);
}

.approval-panel h2,
.approval-panel p {
  color: var(--white);
}

.approval-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.74);
  background: #061f2a;
}

.site-footer strong {
  color: var(--white);
}

.heatmap-page {
  background: #f8fbfa;
}

.heatmap-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 86px 0 40px;
}

.heatmap-hero h1 {
  color: var(--ink);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
}

.heatmap-hero p {
  max-width: 760px;
  font-size: 1.08rem;
}

.heatmap-scorecard {
  padding: 24px;
  color: var(--white);
  background: var(--deep);
  border-radius: 8px;
}

.heatmap-scorecard span,
.heatmap-scorecard p {
  color: rgba(255, 255, 255, 0.74);
}

.heatmap-scorecard strong {
  display: block;
  margin: 8px 0;
  color: var(--sun);
  font-size: 2.6rem;
  line-height: 1;
}

.heatmap-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
  align-items: stretch;
}

.florida-map {
  position: relative;
  min-height: 680px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(0, 127, 159, 0.10), rgba(255, 184, 77, 0.12)),
    #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.florida-map::before {
  content: "";
  position: absolute;
  inset: 70px 44px 56px 92px;
  background: #dfeeed;
  border: 2px solid rgba(6, 51, 66, 0.18);
  clip-path: polygon(7% 0%, 72% 0%, 83% 9%, 80% 20%, 88% 31%, 84% 49%, 93% 67%, 100% 86%, 92% 100%, 74% 84%, 65% 64%, 54% 47%, 45% 34%, 32% 28%, 20% 22%, 0% 20%);
}

.map-region {
  position: absolute;
  z-index: 1;
  display: grid;
  gap: 4px;
  width: 158px;
  padding: 13px;
  color: var(--white);
  background: #6aa9a8;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(8, 41, 52, 0.16);
}

.map-region strong {
  font-size: 0.9rem;
}

.map-region span {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.map-region.panhandle {
  top: 72px;
  left: 54px;
  background: #7db8b4;
}

.map-region.big-bend {
  top: 170px;
  left: 160px;
  background: #9dcac4;
  color: var(--deep);
}

.map-region.gulf {
  top: 302px;
  left: 180px;
  background: #007f9f;
}

.map-region.keys {
  right: 40px;
  bottom: 48px;
  background: #2f8f83;
}

.map-region.northeast {
  top: 118px;
  right: 38px;
  background: #7db8b4;
}

.map-region.space-coast {
  top: 282px;
  right: 30px;
  background: #7db8b4;
}

.map-region.southeast {
  right: 54px;
  bottom: 198px;
  background: #2f8f83;
}

.market-ranking,
.spend-grid {
  display: grid;
  gap: 14px;
}

.rank-card,
.spend-grid article {
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.rank-card span {
  color: var(--water);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.rank-card h3 {
  margin: 6px 0 8px;
}

.rank-card p {
  color: var(--muted);
  line-height: 1.6;
}

.rank-card strong {
  display: block;
  color: var(--deep);
}

.heat-high {
  border-left: 6px solid #007f9f;
}

.heat-medium {
  border-left: 6px solid #2f8f83;
}

.heat-low {
  border-left: 6px solid #ffb84d;
}

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

.spend-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--water);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}

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

@media (max-width: 900px) {
  .site-header,
  nav,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-stats,
  .split,
  .about-band,
  .region-groups,
  .trip-layout,
  .trip-type-grid,
  .finder-controls,
  .finder-results,
  .review-actions,
  .review-filters,
  .draft-panel,
  .setup-flow,
  .profile-grid,
  .faq-grid,
  .trust-band,
  .blitz,
  .lead-section,
  .signup,
  .profile-hero,
  .profile-detail,
  .heatmap-hero,
  .heatmap-layout,
  .spend-grid {
    grid-template-columns: 1fr;
  }

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

  .draft-actions {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .brand {
    min-width: 0;
  }

  nav a:not(.nav-cta) {
    display: none;
  }

  h1 {
    font-size: 2.75rem;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    width: min(100% - 28px, 1080px);
    padding-bottom: 28px;
  }

  .section {
    width: min(100% - 28px, 1120px);
    padding: 58px 0;
  }

  .hero-stats {
    gap: 8px;
  }
}
