:root {
  --navy: #061521;
  --navy-2: #082336;
  --navy-3: #0b3044;
  --teal: #2ee6b5;
  --teal-2: #10a882;
  --mint: #d9fff3;
  --white: #ffffff;
  --ink: #0c1d2d;
  --muted: #647483;
  --soft: #f4faf7;
  --line: rgba(46, 230, 181, .32);
  --shadow: 0 26px 80px rgba(0, 0, 0, .22);
  --radius: 32px;
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--soft);
  line-height: 1.55;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg { display: block; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section-dark { background: var(--navy); color: var(--white); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 100;
  width: min(var(--container), calc(100% - 28px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 14px 10px 18px;
  color: #fff;
  background: rgba(6, 21, 33, .70);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 50px rgba(0,0,0,.20);
  transition: background .25s ease, top .25s ease;
}
.site-header.is-scrolled { top: 10px; background: rgba(6, 21, 33, .94); }
.brand img { width: 184px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255,255,255,.86);
  font-weight: 800;
  font-size: 14px;
}
.main-nav a:hover { background: rgba(255,255,255,.10); color: #fff; }
.main-nav .nav-cta { background: var(--teal); color: var(--navy); }
.main-nav .nav-cta:hover { background: #fff; color: var(--navy); }
.menu-toggle { display: none; padding: 10px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; width: 26px; height: 2px; margin: 5px 0; border-radius: 99px; background: #fff; }

.hero-poster {
  position: relative;
  min-height: 790px;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 72% 16%, rgba(46, 230, 181, .20), transparent 32%),
    linear-gradient(135deg, #061521 0%, #092438 48%, #05242b 100%);
}
.hero-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: linear-gradient(120deg, rgba(46,230,181,.14) 1px, transparent 1px), radial-gradient(rgba(46,230,181,.26) 1.2px, transparent 1.2px);
  background-size: 120px 120px, 18px 18px;
  background-position: -30px -20px, right 140px top 190px;
  mask-image: linear-gradient(90deg, #000 0 14%, transparent 40% 72%, #000 95%);
  opacity: .68;
}
.hero-image {
  position: absolute;
  inset: 0 0 0 38%;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6,21,33,.96) 0%, rgba(6,21,33,.62) 21%, rgba(6,21,33,.10) 46%, rgba(6,21,33,.20) 100%),
    url("../assets/hero-player.jpg") center right / cover no-repeat;
}
.hero-image::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: min(560px, 52vw);
  height: 300px;
  background: linear-gradient(135deg, var(--teal), #1cb294);
  clip-path: polygon(24% 35%, 100% 0, 100% 100%, 0 100%);
  opacity: .92;
}
.poster-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
.poster-lines::before,
.poster-lines::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(255,255,255,.86);
  opacity: .88;
}
.poster-lines::before { left: -30px; top: -20px; width: 190px; height: 112px; border-right: 0; border-bottom: 0; border-radius: 0 0 0 40px; }
.poster-lines::after { right: 34px; bottom: 82px; width: 170px; height: 96px; border-left: 0; border-top: 0; transform: rotate(-24deg); }
.hero-layout { padding-top: 132px; padding-bottom: 96px; }
.hero-copy { max-width: 555px; }
.hero-logo { width: min(350px, 74vw); height: auto; margin-bottom: 28px; }
.kicker {
  margin: 0 0 16px;
  color: rgba(255,255,255,.92);
  font-size: clamp(19px, 2.2vw, 26px);
  font-weight: 800;
  line-height: 1.18;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin: 0;
  font-size: clamp(54px, 8.7vw, 104px);
  line-height: .94;
  letter-spacing: -.055em;
  text-transform: uppercase;
}
h1 span, h1 strong { display: block; }
h1 strong { word-break: keep-all; }
.hero-location { overflow-wrap: normal; hyphens: none; }
h1 span { color: #fff; }
h1 strong { color: var(--teal); font-weight: 950; }
.hero-copy h1 strong { font-size: .72em; line-height: 1.02; }
.hero-tagline {
  position: relative;
  margin: 22px 0 0;
  padding-top: 16px;
  color: var(--teal);
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 900;
  line-height: 1.08;
}
.hero-tagline::before { content: ""; position: absolute; top: 0; left: 0; width: 74px; height: 3px; border-radius: 99px; background: var(--teal); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; max-width: 100%; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 950;
  transition: transform .2s ease, background .2s ease, color .2s ease, border .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--teal); color: var(--navy); box-shadow: 0 16px 32px rgba(46,230,181,.22); }
.btn-ghost { border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.07); color: #fff; }

.intro-band {
  position: relative;
  z-index: 2;
  margin-top: -18px;
  padding: 0 0 18px;
}
.intro-card {
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr) 45%;
  align-items: center;
  gap: 32px;
  min-height: 270px;
  padding: 34px 0 34px 42px;
  overflow: hidden;
  background: #fff;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 22px 68px rgba(6, 21, 33, .14);
}
.city-badge svg { width: 126px; height: 126px; color: #0b5c5e; fill: none; stroke: currentColor; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; }
.intro-copy { max-width: 520px; }
.section-eyebrow {
  margin: 0 0 2px;
  color: var(--teal-2);
  text-transform: uppercase;
  font-weight: 950;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1;
}
.intro-copy h2 {
  margin: 0 0 22px;
  color: var(--navy);
  text-transform: uppercase;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.08;
  letter-spacing: -.04em;
}
.intro-copy p { margin: 0 0 12px; font-size: 17px; color: #0e2535; }
.intro-copy strong { color: var(--teal-2); }
.intro-photo { align-self: stretch; margin: 0; border-radius: 42px 0 0 42px; overflow: hidden; min-height: 250px; }
.intro-photo img { width: 100%; height: 100%; object-fit: cover; }

.features-band {
  position: relative;
  padding: 28px 0 48px;
  overflow: hidden;
}
.features-band::before,
.features-band::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.features-band::before {
  inset: 0;
  background-image: radial-gradient(rgba(46,230,181,.26) 1px, transparent 1.2px);
  background-size: 19px 19px;
  mask-image: linear-gradient(90deg, #000 0 14%, transparent 33% 72%, #000 100%);
  opacity: .55;
}
.features-band::after {
  right: -38px;
  top: 60px;
  width: 190px;
  height: 190px;
  border: 5px solid var(--teal);
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  opacity: .78;
}
.features-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 252px;
  padding: 28px 22px 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.025);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.feature-card:hover { transform: translateY(-5px); border-color: rgba(46,230,181,.8); background: rgba(46,230,181,.08); }
.icon-ring {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--teal);
  border: 3px solid rgba(255,255,255,.86);
  border-radius: 50%;
}
.icon-ring svg { width: 48px; height: 48px; fill: none; stroke: currentColor; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.feature-card h3 {
  margin: 0;
  color: var(--teal);
  text-transform: uppercase;
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.08;
  font-style: italic;
  font-weight: 950;
  letter-spacing: -.03em;
}
.feature-card h3 span { display: block; color: #fff; }
.feature-card p { margin: 14px auto 0; max-width: 205px; color: rgba(255,255,255,.88); font-weight: 600; line-height: 1.32; }
.feature-card::after { content: ""; width: 72px; height: 3px; margin-top: auto; border-radius: 99px; background: var(--teal); opacity: .75; }

.why-band { background: #fff; }
.why-layout {
  display: grid;
  grid-template-columns: 245px minmax(320px, 1fr) 42%;
  align-items: center;
  gap: 30px;
  min-height: 295px;
  overflow: hidden;
}
.why-title { position: relative; min-height: 270px; padding: 38px 0 0 6px; }
.why-title p,
.why-title h2 {
  margin: 0;
  text-transform: uppercase;
  line-height: .98;
  font-style: italic;
  font-weight: 950;
  letter-spacing: -.055em;
}
.why-title p { color: var(--navy); font-size: clamp(36px, 4.3vw, 52px); }
.why-title h2 { color: var(--teal-2); font-size: clamp(36px, 4.3vw, 52px); }
.underline { display: block; width: 84px; height: 4px; margin-top: 18px; border-radius: 99px; background: var(--teal); }
.player-silhouette {
  position: absolute;
  left: -52px;
  bottom: -26px;
  width: 260px;
  height: 160px;
  background: linear-gradient(135deg, rgba(8,35,54,.90), rgba(17,168,130,.90));
  clip-path: polygon(8% 100%, 21% 75%, 31% 73%, 45% 31%, 57% 35%, 68% 52%, 92% 39%, 96% 49%, 73% 67%, 61% 61%, 50% 88%, 64% 99%);
  opacity: .95;
}
.check-list {
  margin: 0;
  padding: 18px 0;
  list-style: none;
  display: grid;
  gap: 18px;
}
.check-list li {
  position: relative;
  padding-left: 52px;
  color: var(--navy);
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 800;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #0b766e;
  color: #fff;
  font-weight: 950;
  box-shadow: 0 8px 18px rgba(11, 118, 110, .22);
}
.why-photo { margin: 0; align-self: stretch; min-height: 270px; overflow: hidden; border-radius: 0 0 0 44px; }
.why-photo img { width: 100%; height: 100%; object-fit: cover; }

.cta-final {
  position: relative;
  padding: 42px 0 52px;
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 35%, rgba(46,230,181,.16), transparent 24%),
    linear-gradient(135deg, #071927 0%, #061521 72%);
}
.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(135deg, rgba(46,230,181,.35) 1px, transparent 1px), radial-gradient(rgba(46,230,181,.25) 1px, transparent 1px);
  background-size: 90px 90px, 20px 20px;
  background-position: left bottom, right bottom;
  opacity: .42;
}
.cta-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 160px 1fr 260px;
  align-items: center;
  gap: 30px;
}
.ball-mark {
  position: relative;
  width: 120px;
  height: 120px;
  border: 8px solid #fff;
  border-radius: 50%;
  background: radial-gradient(circle, var(--teal) 0 58%, transparent 59%);
  box-shadow: 0 20px 40px rgba(0,0,0,.22);
}
.ball-mark::before {
  content: "";
  position: absolute;
  inset: 28px;
  border-radius: 50%;
  background-image: radial-gradient(#fff 2px, transparent 2px);
  background-size: 12px 12px;
  transform: rotate(-18deg);
}
.ball-mark::after {
  content: "";
  position: absolute;
  left: -130px;
  top: 20px;
  width: 150px;
  height: 92px;
  border-top: 5px solid rgba(46,230,181,.55);
  border-left: 5px solid rgba(46,230,181,.55);
  transform: skewX(-25deg);
}
.cta-copy { text-align: center; text-transform: uppercase; }
.cta-copy p { margin: 0; color: #fff; font-style: italic; font-size: clamp(34px, 5vw, 58px); line-height: .98; font-weight: 950; letter-spacing: -.055em; }
.cta-copy h2 { margin: 0; color: var(--teal); font-style: italic; font-size: clamp(38px, 6vw, 68px); line-height: .94; font-weight: 950; letter-spacing: -.055em; }
.cta-copy span { display: block; margin-top: 14px; color: rgba(255,255,255,.86); font-size: clamp(14px, 1.8vw, 20px); font-weight: 800; letter-spacing: .05em; }
.cta-mail {
  width: fit-content;
  margin: 22px auto 0;
  text-transform: none;
  letter-spacing: 0;
}

.script-text {
  margin: 0;
  color: var(--teal);
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: .98;
  font-weight: 800;
  font-style: italic;
  transform: rotate(-6deg);
  text-align: center;
}
.script-text::after { content: ""; display: block; width: 150px; height: 3px; margin: 8px auto 0; border-radius: 99px; background: var(--teal); }

.seo-strip { padding: 54px 0; background: #f4faf7; }
.seo-copy { max-width: 920px; }
.seo-copy h2 { margin: 0 0 16px; color: var(--navy); font-size: clamp(28px, 3vw, 42px); line-height: 1.05; letter-spacing: -.04em; }
.seo-copy p { margin: 0; color: var(--muted); font-size: 18px; }
.site-footer { padding: 26px 0; border-top: 1px solid rgba(255,255,255,.08); }
.footer-layout { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-layout img { width: 165px; height: auto; }
.footer-layout p { margin: 0; color: rgba(255,255,255,.72); font-weight: 700; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1000px) {
  .container { width: min(100% - 32px, var(--container)); }
  .site-header { width: calc(100% - 22px); }
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: rgba(6,21,33,.98);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 24px;
    box-shadow: 0 18px 42px rgba(0,0,0,.20);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { text-align: center; }
  .hero-poster { min-height: 740px; }
  .hero-layout { padding-top: 116px; padding-bottom: 86px; }
  .hero-image { inset: 0 0 0 28%; opacity: .95; }
  .intro-card { grid-template-columns: 110px 1fr; padding: 30px; border-radius: 0 0 28px 28px; }
  .city-badge svg { width: 104px; height: 104px; }
  .intro-photo { grid-column: 1 / -1; min-height: 240px; border-radius: 28px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .why-layout { grid-template-columns: 1fr; gap: 6px; padding-top: 34px; }
  .why-title { min-height: 170px; padding-top: 0; }
  .player-silhouette { left: auto; right: 8px; bottom: 2px; width: 210px; height: 124px; opacity: .65; }
  .why-photo { min-height: 260px; border-radius: 30px 30px 0 0; }
  .cta-layout { grid-template-columns: 110px 1fr; }
  .script-text { grid-column: 1 / -1; }
  .ball-mark { width: 92px; height: 92px; border-width: 6px; }
}

@media (max-width: 700px) {
  .site-header { top: 10px; padding: 8px 10px 8px 12px; }
  .brand img { width: 148px; }
  .hero-poster { min-height: auto; padding: 122px 0 74px; }
  .hero-image { inset: 0; opacity: .58; }
  .hero-image::after { width: 86vw; height: 210px; right: -120px; bottom: -52px; opacity: .82; }
  .hero-layout { padding-top: 0; padding-bottom: 0; }
  .hero-logo { width: 245px; margin-bottom: 22px; }
  h1 { font-size: clamp(44px, 15vw, 70px); max-width: 100%; }
  .kicker { font-size: 18px; }
  .hero-copy h1 strong { font-size: .72em; line-height: .96; max-width: 100%; }
  .hero-location { display: block; }
  .hero-tagline { font-size: 26px; }
  .hero-actions { width: 100%; overflow: hidden; }
  .btn { width: 100%; max-width: 100%; padding-inline: 18px; white-space: normal; text-align: center; }
  .intro-band { margin-top: 0; }
  .intro-card { grid-template-columns: 1fr; gap: 20px; padding: 30px 22px; border-radius: 0; }
  .city-badge { display: none; }
  .intro-copy h2 { font-size: 28px; }
  .features-band { padding: 32px 0; }
  .features-grid { grid-template-columns: 1fr; gap: 16px; }
  .feature-card { min-height: 220px; }
  .why-layout { padding-bottom: 30px; }
  .check-list { gap: 14px; padding: 8px 0 18px; }
  .check-list li { padding-left: 44px; }
  .why-photo { min-height: 210px; border-radius: 24px; }
  .cta-final { padding: 36px 0 42px; }
  .cta-layout { grid-template-columns: 1fr; text-align: center; gap: 18px; }
  .ball-mark { margin: 0 auto; }
  .cta-copy p { font-size: 38px; }
  .cta-copy h2 { font-size: 42px; }
  .cta-mail { width: 100%; }
  .footer-layout { flex-direction: column; text-align: center; }
  .poster-lines::before { width: 120px; height: 82px; }
  .poster-lines::after { display: none; }
}

@media (max-width: 390px) {
  .container { width: calc(100% - 24px); }
  .brand img { width: 132px; }
  .hero-logo { width: 220px; }
  h1 { font-size: 43px; }
  .hero-copy h1 strong { font-size: .70em; line-height: .96; }
  .hero-tagline { font-size: 23px; }
  .intro-card { padding-inline: 18px; }
  .feature-card { padding: 24px 18px; }
  .cta-copy p { font-size: 34px; }
  .cta-copy h2 { font-size: 36px; }
}


@media (max-width: 360px) {
  h1 { font-size: 39px; }
  .hero-copy h1 strong { font-size: .68em; }
  .hero-logo { width: 205px; }
  .cta-copy h2 { font-size: 32px; }
}
