:root {
  --navy: #061826;
  --blue: #0077b6;
  --aqua: #00b4d8;
  --gold: #d8a657;
  --sand: #f4e7d0;
  --white: #ffffff;
  --charcoal: #1e252b;
  --muted: #59646d;
  --radius: 24px;
  --shadow: 0 20px 60px rgba(6, 24, 38, 0.16);
  --container: 1180px;
}

/* Base */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--charcoal);
  font-family: Inter, Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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

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

/* Header */
.vsp-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(6, 24, 38, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 10px 38px rgba(6, 24, 38, 0.04);
}

.vsp-header-inner {
  height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.vsp-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  min-width: 0;
}

.vsp-brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--navy);
  color: #ffffff;
  display: grid;
  place-items: center;
}

.vsp-brand-text {
  line-height: 1.02;
}

.vsp-brand-text small {
  color: var(--blue);
  font-weight: 800;
}

.vsp-desktop-nav {
  display: none;
  justify-self: center;
  min-width: 0;
}

.vsp-desktop-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
}

.vsp-desktop-nav li {
  flex: 0 0 auto;
}

.vsp-desktop-nav li:nth-child(n+7) {
  display: none;
}

.vsp-desktop-nav a {
  display: block;
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 850;
  color: rgba(6, 24, 38, 0.78);
}

.vsp-desktop-nav a:hover {
  background: rgba(0, 119, 182, 0.08);
  color: var(--navy);
}

.vsp-header-cta {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--navy);
  color: #ffffff;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(6, 24, 38, 0.18);
}

/* Hero */
.vsp-hero {
  position: relative;
  min-height: calc(82vh - 76px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, #061826, #0077b6);
}

.vsp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(0, 180, 216, 0.45), transparent 34%),
    linear-gradient(to top, rgba(6, 24, 38, 0.95), rgba(6, 24, 38, 0.12));
  background-size: cover;
  background-position: center;
}

.vsp-hero-bg::after {
  content: "";
  position: absolute;
  inset: auto -8% -14% -8%;
  height: 44%;
  background: rgba(6, 24, 38, 0.78);
  border-radius: 50% 50% 0 0 / 35% 35% 0 0;
  transform: rotate(-3deg);
  z-index: 3;
}

.vsp-hero-video-stack {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.vsp-hero-video-stack .vsp-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.vsp-hero-video-stack .vsp-hero-video.is-active {
  opacity: 1;
}

.vsp-hero-content {
  position: relative;
  z-index: 5;
  color: #ffffff;
  padding: 94px 0 120px;
}

.vsp-kicker {
  margin: 0 0 10px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 900;
}

.vsp-hero h1 {
  max-width: 920px;
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.8rem, 7.8vw, 7.2rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.vsp-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

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

.vsp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 900;
}

.vsp-btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.vsp-btn-glass {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.vsp-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
  margin-top: 28px;
}

.vsp-hero-stats a,
.vsp-hero-stats span {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.vsp-hero-stats strong {
  display: block;
  font-size: 0.98rem;
}

.vsp-hero-stats small {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Search */
.vsp-search-card {
  position: relative;
  z-index: 10;
  margin-top: -28px;
  padding: 24px;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.vsp-search-card span {
  display: block;
  margin-bottom: 10px;
  font-weight: 900;
}

.vsp-search-card form {
  display: flex;
  gap: 14px;
}

.vsp-search-card input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(6, 24, 38, 0.12);
  border-radius: 999px;
  font-size: 1rem;
}

.vsp-search-card button {
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: var(--navy);
  color: #ffffff;
  font-weight: 900;
}

/* Sections */
.vsp-section {
  padding: 38px 0;
}

.vsp-section-head h2 {
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 7vw, 3.8rem);
  line-height: 1;
}

.vsp-row-between {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.vsp-view-all {
  color: var(--blue);
  font-weight: 900;
  white-space: nowrap;
}

/* Quick actions */
.vsp-quick-actions {
  display: none;
}

/* Mood grid */
.vsp-mood-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.vsp-mood-grid a {
  position: relative;
  isolation: isolate;
  min-height: 118px;
  padding: 18px;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--navy), var(--blue));
  color: #ffffff;
  font-weight: 900;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow);
}

.vsp-mood-grid a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.22), transparent 35%);
}

/* Cards */
.vsp-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.vsp-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(6, 24, 38, 0.08);
  box-shadow: var(--shadow);
}

.vsp-card a {
  display: block;
}

.vsp-card img,
.vsp-card-image,
.vsp-card-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.vsp-card-placeholder {
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--sand), #ffffff);
  color: var(--navy);
  font-weight: 900;
}

.vsp-card-body {
  padding: 20px;
}

.vsp-card-body h2,
.vsp-card-body h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
  line-height: 1.12;
}

.vsp-card-body p {
  margin: 0 0 14px;
  color: var(--muted);
}

.vsp-card-link {
  color: var(--blue);
  font-weight: 900;
}

/* Area grid */
.vsp-area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.vsp-area-card {
  position: relative;
  min-height: 170px;
  padding: 18px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--navy), var(--blue));
  color: #ffffff;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow);
}

.vsp-area-card img,
.vsp-area-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.62;
  object-fit: cover;
}

.vsp-area-fallback {
  background:
    radial-gradient(circle at 30% 20%, rgba(0, 180, 216, 0.55), transparent 34%),
    linear-gradient(145deg, var(--navy), var(--blue));
}

.vsp-area-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 24, 38, 0.88), rgba(6, 24, 38, 0.05));
}

.vsp-area-card strong {
  position: relative;
  z-index: 2;
  font-size: 1.25rem;
}

/* App CTA */
.vsp-app-cta {
  margin-top: 28px;
  padding: 54px 0;
  background: var(--navy);
  color: #ffffff;
}

.vsp-app-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
}

.vsp-app-cta h2 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.5rem;
  line-height: 1;
}

/* Footer */
.vsp-footer {
  padding: 48px 0 56px;
  background: #04111c;
  color: #ffffff;
}

.vsp-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 28px;
}

.vsp-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vsp-footer a {
  color: var(--gold);
}

/* Bottom navigation - native app style */
.vsp-bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  height: calc(72px + env(safe-area-inset-bottom));
  padding: 7px 10px calc(7px + env(safe-area-inset-bottom));
  display: none;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  background: rgba(6, 24, 38, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 -12px 32px rgba(6, 24, 38, 0.28);
  backdrop-filter: blur(22px) saturate(1.2);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
}

.vsp-bottom-nav a {
  min-width: 0;
  height: 58px;
  padding: 6px 2px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10.5px;
  font-weight: 850;
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
}

.vsp-bottom-nav span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  font-size: 21px;
  line-height: 1;
}

.vsp-bottom-nav small {
  font-size: 10.5px;
}

.vsp-bottom-nav a:hover,
.vsp-bottom-nav a:focus {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
}

.vsp-bottom-nav a:active {
  transform: scale(0.94);
}

.vsp-bottom-primary {
  background: #d8a657;
  color: #061826 !important;
  box-shadow: 0 0 0 1px rgba(255,255,255,.18), 0 8px 22px rgba(216,166,87,.35);
}

.vsp-bottom-primary span,
.vsp-bottom-primary small {
  color: #061826 !important;
}

.vsp-bottom-primary span {
  font-size: 24px;
}

.vsp-bottom-primary small {
  font-weight: 950;
}
@media (max-width: 859px) {
  body {
    padding-bottom: calc(82px + env(safe-area-inset-bottom));
  }

  .vsp-bottom-nav {
    display: grid;
  }
}

/* Central app action */
.vsp-bottom-primary {
  height: 58px !important;
  margin-top: -12px;
  border-radius: 24px !important;
  background: linear-gradient(145deg, #f1c26b, #d8a657);
  color: #061826 !important;
  box-shadow:
    0 14px 30px rgba(216, 166, 87, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.vsp-bottom-primary span {
  font-size: 24px;
}

.vsp-bottom-primary small {
  font-size: 11px;
  font-weight: 950;
}

/* iPhone home indicator breathing room */
@media (max-width: 859px) {
  body {
    padding-bottom: calc(108px + env(safe-area-inset-bottom));
  }

  .vsp-bottom-nav {
    display: grid;
  }
}

/* Single generic */
.vsp-single {
  padding: 38px 0 90px;
}

.vsp-single h1 {
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 9vw, 5.8rem);
  line-height: 0.98;
}

.vsp-single-image {
  margin-bottom: 28px;
  border-radius: var(--radius);
  overflow: hidden;
}

.vsp-content {
  font-size: 1.08rem;
}

.vsp-single-cta {
  margin-top: 38px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--sand);
}

/* Reveal effects */
.vsp-reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  filter: blur(8px);
  transition:
    opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

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

.vsp-card,
.vsp-area-card,
.vsp-mood-grid a,
.vsp-quick-actions a {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.vsp-card:hover,
.vsp-area-card:hover,
.vsp-mood-grid a:hover,
.vsp-quick-actions a:hover {
  transform: translateY(-6px);
  filter: saturate(1.08);
}

/* Desktop */
@media (min-width: 860px) {
  body {
    padding-bottom: 0;
  }

  .vsp-desktop-nav {
    display: block;
  }

  .vsp-header-cta {
    display: inline-flex;
  }

  .vsp-bottom-nav {
    display: none;
  }
}

@media (min-width: 1180px) {
  .vsp-desktop-nav ul {
    gap: 10px;
  }

  .vsp-desktop-nav a {
    padding-inline: 14px;
  }

  .vsp-header-cta {
    padding-inline: 22px;
  }
}

/* Mobile */
@media (max-width: 859px) {
  body {
    padding-bottom: calc(104px + env(safe-area-inset-bottom));
  }

  .vsp-container {
    width: min(100% - 24px, var(--container));
  }

  .vsp-site-header {
    background: rgba(255, 255, 255, 0.96);
  }

  .vsp-header-inner {
    height: 66px;
    display: flex;
    justify-content: space-between;
  }

  .vsp-desktop-nav,
  .vsp-header-cta {
    display: none !important;
  }

.vsp-brand-logo {
  width: 48px;
  height: 48px;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

@media (max-width: 859px) {
  .vsp-brand-logo {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }
}

  .vsp-hero {
    min-height: auto;
    align-items: flex-end;
  }

  .vsp-hero-content {
    padding: 54px 0 86px;
  }

  .vsp-hero h1 {
    max-width: 10ch;
    font-size: clamp(3.05rem, 14vw, 4.7rem);
  }

  .vsp-hero p {
    font-size: 1rem;
  }

  .vsp-hero-actions {
    gap: 10px;
  }

  .vsp-btn {
    width: 100%;
    padding: 15px 18px;
  }

  .vsp-hero-actions .vsp-btn {
    width: auto;
  }

  .vsp-hero-stats {
    grid-template-columns: 1fr;
    max-width: 290px;
  }

  .vsp-hero-stats a:nth-child(n+3),
  .vsp-hero-stats span:nth-child(n+3) {
    display: none;
  }

  .vsp-search-card {
    margin-top: -36px;
    padding: 16px;
    border-radius: 24px;
  }

  .vsp-search-card form {
    display: grid;
    grid-template-columns: 1fr;
  }

  .vsp-search-card button {
    height: 48px;
  }

  .vsp-section {
    padding: 28px 0;
  }

  .vsp-section-head h2 {
    font-size: 44px;
    line-height: 0.95;
    letter-spacing: -0.05em;
  }

  .vsp-row-between {
    align-items: flex-start;
    gap: 10px;
  }

  .vsp-view-all {
    margin-top: 8px;
    white-space: nowrap;
  }

  .vsp-quick-actions {
    padding-top: 8px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

  .vsp-quick-actions a {
    min-height: 78px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(6, 24, 38, 0.1);
    border: 1px solid rgba(6, 24, 38, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--navy);
    font-weight: 900;
  }

  .vsp-quick-actions span {
    font-size: 1.35rem;
  }

  .vsp-mood-grid {
    grid-template-columns: 1fr 1fr;
  }

  .vsp-mood-grid a {
    min-height: 132px;
  }

  .vsp-card-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 4px 24px 28px;
    margin-left: -24px;
    margin-right: -24px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .vsp-card-grid::-webkit-scrollbar {
    display: none;
  }

  .vsp-card-grid > * {
    flex: 0 0 78%;
    max-width: 78%;
    scroll-snap-align: start;
  }

  .vsp-card {
    border-radius: 24px;
  }

  .vsp-card img,
  .vsp-card-image,
  .vsp-card-placeholder {
    height: 180px;
    aspect-ratio: auto;
  }

  .vsp-card-body {
    padding: 22px;
  }

  .vsp-card h3 {
    font-size: 28px;
    line-height: 1.02;
    letter-spacing: -0.04em;
  }

  .vsp-card p {
    font-size: 17px;
    line-height: 1.45;
  }

  .vsp-area-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .vsp-area-grid::-webkit-scrollbar {
    display: none;
  }

  .vsp-area-card {
    min-width: 72%;
    scroll-snap-align: start;
  }

  .vsp-app-cta {
    margin-inline: 0;
    border-radius: 32px 32px 0 0;
  }

  .vsp-app-cta-inner {
    grid-template-columns: 1fr;
  }

  .vsp-footer {
    padding-bottom: 120px;
  }

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

  .vsp-bottom-nav {
    display: grid;
  }
}