:root {
  --ink: #07131f;
  --navy: #113652;
  --navy-2: #0b263c;
  --cyan: #39b9e6;
  --cyan-soft: #a9e8fb;
  --gold: #ffbf35;
  --gold-2: #f6a91f;
  --muted: #395a6d;
  --muted-dark: #a9e8fb;
  --line: rgba(169, 232, 251, .22);
  --paper: #f7fbfd;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(7, 19, 31, .24);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Open Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(rgba(7, 19, 31, .78), rgba(7, 19, 31, .9)),
    url("/assets/images/feliz-bg.png") center top / cover fixed,
    var(--ink);
  color: var(--ink);
  line-height: 1.5;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(17, 54, 82, .94);
  border-bottom: 1px solid rgba(169, 232, 251, .18);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 150px;
  min-height: 50px;
}

.brand img { width: 150px; height: auto; }

.nav { display: flex; align-items: center; gap: clamp(12px, 2vw, 28px); color: var(--cyan-soft); font-size: 15px; font-weight: 700; }
.nav a { padding: 8px 0; border-bottom: 2px solid transparent; }
.nav a:hover, .nav a.active { color: var(--white); border-bottom-color: var(--gold); }
.nav-cta, button {
  border: 0;
  border-radius: 6px;
  background: var(--gold);
  color: var(--navy-2);
  padding: 12px 18px;
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: calc(100svh - 68px);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: clamp(70px, 10vh, 128px) clamp(18px, 5vw, 72px) clamp(32px, 7vh, 76px);
}

.compact-hero { min-height: 72svh; }
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 19, 31, .88), rgba(17, 54, 82, .72) 48%, rgba(7, 19, 31, .18)),
    linear-gradient(0deg, rgba(7, 19, 31, .42), transparent 42%);
}

.hero-content {
  width: min(980px, 100%);
  color: var(--white);
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(169, 232, 251, .18);
  border-radius: 8px;
  background: rgba(17, 54, 82, .88);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(40px, 6vw, 76px);
  line-height: .98;
  letter-spacing: 0;
}
h2 { font-size: clamp(30px, 4vw, 54px); line-height: 1.04; letter-spacing: 0; margin-bottom: 16px; }
h3 { font-size: 20px; line-height: 1.2; letter-spacing: 0; margin-bottom: 10px; }
.hero-copy { max-width: 680px; font-size: clamp(18px, 2vw, 23px); color: var(--cyan-soft); }

.search-panel {
  display: grid;
  grid-template-columns: 1.4fr 1fr .85fr auto;
  gap: 10px;
  width: min(1060px, 100%);
  margin-top: clamp(28px, 5vh, 56px);
  padding: 10px;
  border-radius: 8px;
  background: rgba(7, 19, 31, .38);
  border: 1px solid rgba(169, 232, 251, .18);
  box-shadow: var(--shadow);
}

.search-panel label {
  display: grid;
  gap: 5px;
  padding: 10px 12px;
  border: 1px solid rgba(169, 232, 251, .55);
  border-radius: 6px;
  color: var(--white);
  background: rgba(17, 54, 82, .72);
}
.search-panel span { color: var(--cyan-soft); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
input, select {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  font: inherit;
  font-weight: 700;
}
input::placeholder { color: rgba(255, 255, 255, .68); }
select option { color: var(--ink); }
.search-panel button { min-width: 174px; background: var(--gold); color: var(--navy-2); }

.section { padding: clamp(58px, 8vw, 110px) clamp(18px, 5vw, 72px); }
.section:not(.hero) {
  background: var(--paper);
}
.section.band {
  background: var(--navy);
  color: var(--white);
}
.section-heading { max-width: 760px; margin-bottom: 34px; }
.section-heading p:not(.eyebrow), .feature-list p, .large-text { color: var(--muted); font-size: 18px; }
.band .section-heading p:not(.eyebrow), .band .feature-list p { color: var(--muted-dark); }
.band .feature-list p { border-bottom-color: rgba(169, 232, 251, .2); }

.destination-grid, .partner-types, .pricing-grid, .team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.destination-card, .partner-types article, .pricing-grid article, .team-grid article, .quote-panel, .dashboard, .revenue-card, .values {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(23, 33, 29, .07);
}
.destination-card { overflow: hidden; }
.destination-card img { width: 100%; height: 260px; object-fit: cover; }
.destination-card div:last-child { padding: 20px; }
.card-topline { display: flex; justify-content: space-between; gap: 14px; margin-bottom: 14px; color: var(--muted); font-size: 14px; }
.card-topline strong { color: var(--navy); }

.flow { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.flow div {
  padding: 24px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, .08);
}
.flow span { color: var(--cyan); font-weight: 900; }

.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr); gap: clamp(28px, 5vw, 80px); align-items: center; }
.feature-list { display: grid; gap: 16px; margin-top: 26px; }
.feature-list p { margin: 0; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.quote-panel, .dashboard, .revenue-card, .values { padding: clamp(24px, 4vw, 40px); }
.quote-panel p { font-size: clamp(24px, 3vw, 36px); line-height: 1.15; }
.quote-panel span { color: var(--muted); font-weight: 800; }

.partner-types { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.partner-types article, .pricing-grid article, .team-grid article { padding: 24px; }
.partner-types p, .pricing-grid p, .team-grid p, .timeline p { color: var(--muted); margin-bottom: 0; }
.pricing-grid article:not(.featured) h3, .team-grid h3 { color: var(--navy); }

.dashboard { background: var(--navy-2); color: var(--white); border: 1px solid rgba(169, 232, 251, .2); }
.dash-head, .metric-row { display: flex; justify-content: space-between; gap: 18px; padding-bottom: 14px; margin-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.16); }
.dash-head strong { color: var(--gold); }
.metric-row span { color: rgba(255,255,255,.72); }
.metric-row b { color: var(--white); }
.mini-chart { display: flex; align-items: end; gap: 12px; height: 140px; padding-top: 22px; }
.mini-chart i { flex: 1; border-radius: 5px 5px 0 0; background: linear-gradient(180deg, var(--cyan), var(--gold)); }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.stats div { padding: 28px; border-top: 2px solid var(--gold); background: var(--white); }
.stats strong { display: block; font-size: clamp(34px, 5vw, 58px); line-height: 1; }
.stats span { color: var(--muted); font-weight: 750; }

.civic-map {
  min-height: 430px;
  position: relative;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(57,185,230,.2), rgba(255,191,53,.16)),
    repeating-linear-gradient(32deg, transparent 0 34px, rgba(23,33,29,.08) 35px 36px),
    var(--white);
  border: 1px solid var(--line);
}
.zone {
  position: absolute;
  display: grid;
  place-items: center;
  width: 128px;
  height: 92px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
  font-weight: 850;
}
.zone b { color: var(--muted); font-size: 13px; }
.z1 { left: 12%; top: 15%; border-left: 5px solid var(--gold-2); }
.z2 { right: 13%; top: 25%; border-left: 5px solid var(--cyan); }
.z3 { left: 31%; bottom: 15%; border-left: 5px solid var(--gold); }
.z4 { right: 20%; bottom: 20%; border-left: 5px solid var(--navy); }

.pricing-grid article.featured { background: var(--navy-2); color: var(--white); border-color: var(--navy-2); transform: translateY(-12px); }
.pricing-grid strong { display: block; margin-bottom: 16px; font-size: 34px; color: var(--navy); }
.pricing-grid .featured strong, .pricing-grid .featured p { color: var(--gold); }
.pricing-grid .featured p { color: var(--muted-dark); }

.revenue-card ol { margin: 18px 0 0; padding-left: 20px; color: var(--muted); }
.revenue-card li + li { margin-top: 12px; }
.fund-bars { display: grid; gap: 20px; max-width: 920px; }
.fund-bars div { display: grid; grid-template-columns: 210px 1fr; gap: 18px; align-items: center; }
.fund-bars span { font-weight: 800; }
.fund-bars b {
  position: relative;
  display: grid;
  align-items: center;
  width: 100%;
  min-height: 42px;
  padding: 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, .16);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(169, 232, 251, .18);
}
.fund-bars b::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
}
.fund-bars em {
  position: relative;
  z-index: 1;
  width: var(--w);
  min-width: 54px;
  padding-right: 12px;
  color: var(--navy-2);
  font-style: normal;
  font-weight: 900;
  text-align: right;
}

.values h3, .team-grid span { color: var(--navy); }
.timeline { display: grid; gap: 20px; }
.timeline div { display: grid; grid-template-columns: 120px 1fr; gap: 24px; padding: 22px 0; border-top: 1px solid var(--line); }
.timeline span { font-weight: 900; color: var(--navy); }

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(18px, 5vw, 72px);
  color: rgba(255,255,255,.72);
  background: var(--navy-2);
}
.footer span { color: var(--white); font-weight: 900; }
.footer p { margin: 0; }

@media (max-width: 900px) {
  .site-header { flex-wrap: wrap; }
  .nav { order: 3; width: 100%; justify-content: space-between; overflow-x: auto; }
  .search-panel, .split, .stats, .destination-grid, .flow, .partner-types, .pricing-grid, .team-grid { grid-template-columns: 1fr; }
  .hero, .compact-hero { min-height: auto; }
  .search-panel button { min-height: 54px; }
  .partner-types, .destination-grid { gap: 14px; }
  .pricing-grid article.featured { transform: none; }
  .fund-bars div, .timeline div { grid-template-columns: 1fr; gap: 8px; }
}

@media (max-width: 560px) {
  .site-header { gap: 14px; }
  .nav-cta { padding: 10px 12px; }
  .hero { padding-top: 62px; }
  h1 { font-size: 42px; }
  h2 { font-size: 32px; }
  .destination-card img { height: 210px; }
  .footer { display: grid; }
}
