:root {
  --navy-950: #020916;
  --navy-900: #041430;
  --navy-800: #09265d;
  --blue: #087cff;
  --cyan: #14d8ff;
  --white: #f7fbff;
  --muted: #bdccec;
  --gold: #ffd652;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: start center;
  background: #263345;
  color: var(--white);
}

a { color: inherit; }

.landing-shell {
  position: relative;
  isolation: isolate;
  width: min(100%, 430px);
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 38%, rgba(0, 144, 255, .24), transparent 28%),
    linear-gradient(180deg, #0b2866 0%, #061a45 43%, #020b20 100%);
  box-shadow: 0 24px 70px rgba(0,0,0,.42);
}

.grid-lines {
  position: absolute;
  inset: 148px 14px 95px;
  z-index: -4;
  opacity: .18;
  background-image:
    linear-gradient(rgba(31,164,255,.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31,164,255,.28) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 78%, transparent);
}

.ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(55px);
  opacity: .55;
  z-index: -3;
}
.ambient-one { width: 190px; height: 190px; right: -70px; top: 250px; background: #008cff; }
.ambient-two { width: 150px; height: 150px; left: -85px; top: 470px; background: #00d9ff; opacity: .2; }

.brand-header {
  padding: 32px 22px 0;
  text-align: center;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -1.5px;
  text-shadow: 0 0 18px rgba(255,255,255,.18);
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 24px;
  font-size: 30px;
  font-style: italic;
  transform: rotate(8deg);
}
.brand i {
  width: 7px;
  height: 7px;
  align-self: flex-start;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 11px var(--gold);
}
.brand-header p {
  margin: 3px 0 0;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
}

.hero {
  position: relative;
  z-index: 3;
  padding: 14px 21px 0;
  text-align: center;
}
.eyebrow {
  margin: 0 0 5px;
  color: #82eaff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}
.hero h1 {
  margin: 0;
  line-height: .94;
  letter-spacing: -1.3px;
}
.hero h1 span,
.hero h1 strong { display: block; }
.hero h1 span { font-size: clamp(29px, 8.3vw, 37px); font-weight: 900; }
.hero h1 strong {
  margin-top: 4px;
  color: #29d5ff;
  font-size: clamp(30px, 8.6vw, 39px);
  font-weight: 950;
  text-shadow: 0 0 22px rgba(29,192,255,.32);
}
.intro {
  max-width: 340px;
  margin: 12px auto 16px;
  color: #eff6ff;
  font-size: 12px;
  line-height: 1.42;
}
.cta {
  position: relative;
  display: inline-grid;
  place-items: center;
  min-width: 170px;
  min-height: 48px;
  border: 2px solid #7cecff;
  border-radius: 999px;
  background: linear-gradient(180deg, #2eb9ff, #0571e5 68%, #0753bd);
  color: white;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 0 12px #1fd2ff, 0 0 28px rgba(0,126,255,.65), inset 0 1px 8px rgba(255,255,255,.35);
  transition: transform .2s ease, box-shadow .2s ease;
}
.cta::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(40,210,255,.42);
  border-radius: inherit;
  animation: pulse 2.2s infinite;
}
.cta:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 0 16px #2ce2ff, 0 0 38px rgba(0,126,255,.85); }

.ambassador {
  position: relative;
  z-index: 2;
  height: 355px;
  margin-top: 13px;
  overflow: hidden;
  border-top: 1px solid rgba(76,190,255,.12);
}
.ambassador::before {
  content: "";
  position: absolute;
  left: -75px;
  right: -45px;
  bottom: 25px;
  height: 82px;
  border: 1px solid rgba(14,207,255,.48);
  border-radius: 50%;
  transform: rotate(-6deg);
  box-shadow: 0 0 18px rgba(12,196,255,.2);
}
.ambassador-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  right: -22px;
  top: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(17,161,255,.5), transparent 65%);
  filter: blur(4px);
}
.ambassador-copy {
  position: absolute;
  left: 20px;
  top: 74px;
  z-index: 3;
  width: 178px;
  text-align: left;
}
.mini-label {
  display: inline-flex;
  padding: 5px 8px;
  border: 1px solid rgba(38,201,255,.8);
  border-radius: 999px;
  background: rgba(2,18,52,.74);
  color: #a8edff;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .1em;
}
.ambassador h2 {
  margin: 10px 0 4px;
  font-size: 43px;
  line-height: .78;
  letter-spacing: -2px;
  font-style: italic;
  text-shadow: 0 4px 0 #082b6b, 0 0 25px rgba(37,194,255,.3);
}
.ambassador-copy > p {
  margin: 12px 0 0;
  color: #34d3ff;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .05em;
}
.divider {
  width: 46px;
  height: 3px;
  margin: 10px 0 8px;
  background: linear-gradient(90deg, #0a87ff, #4be7ff);
  box-shadow: 0 0 10px rgba(23,185,255,.8);
}
.ambassador small {
  color: #dceaff;
  font-size: 10px;
  line-height: 1.35;
}

.villa-frame {
  position: absolute;
  z-index: 2;
  right: -86px;
  top: 8px;
  width: 345px;
  height: 340px;
  overflow: hidden;
  filter: drop-shadow(-12px 8px 16px rgba(0,0,0,.35));
  mask-image: linear-gradient(to right, transparent 0%, #000 20%, #000 89%, transparent 100%), linear-gradient(to bottom, #000 75%, transparent 100%);
  mask-composite: intersect;
}
.villa-frame img {
  width: 390px;
  height: 372px;
  object-fit: cover;
  object-position: 46% 7%;
  transform: scale(1.06);
}
.ambassador-badge {
  position: absolute;
  z-index: 4;
  right: 22px;
  bottom: 27px;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 2px solid #72e8ff;
  border-radius: 50%;
  background: rgba(5,34,92,.88);
  box-shadow: 0 0 20px rgba(0,159,255,.8), inset 0 0 14px rgba(27,179,255,.35);
}
.ambassador-badge span {
  color: var(--gold);
  font-size: 25px;
  font-weight: 950;
  font-style: italic;
}

.partner-copy {
  position: relative;
  z-index: 5;
  margin-top: -19px;
  padding: 0 20px;
}
.partner-copy p { margin: 0; font-size: 9px; font-weight: 900; }
.partner-copy h3 { margin: 1px 0 0; font-size: 20px; letter-spacing: -.4px; }

.feature-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 18px 14px 0;
}
.feature-strip article {
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 70px;
  padding: 10px;
  border: 1px solid rgba(61,186,255,.38);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(12,50,109,.84), rgba(3,21,53,.9));
  box-shadow: inset 0 1px rgba(255,255,255,.05), 0 8px 22px rgba(0,0,0,.2);
}
.feature-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #0b78ec;
  color: white;
  box-shadow: 0 0 12px rgba(10,139,255,.65);
}
.feature-strip strong { display: block; font-size: 9px; line-height: 1.1; }
.feature-strip small { display: block; margin-top: 3px; color: #a9bade; font-size: 8px; line-height: 1.2; }

.pitch {
  position: relative;
  height: 85px;
  margin-top: 7px;
}
.pitch::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 18px;
  height: 20px;
  border: 1px solid #29d7ff;
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(31,211,255,.8), inset 0 0 20px rgba(0,129,255,.2);
}
.ball {
  position: absolute;
  left: calc(50% - 17px);
  top: 8px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 2px solid #5ceaff;
  border-radius: 50%;
  background: #0672dc;
  color: var(--gold);
  box-shadow: 0 0 15px rgba(0,186,255,.9);
  animation: float 2.8s ease-in-out infinite;
}

footer {
  padding: 15px 20px 24px;
  text-align: center;
  background: linear-gradient(180deg, rgba(1,7,20,.35), #010715 36%);
  color: #e7efff;
  font-size: 9px;
}
footer p { margin: 2px 0; }
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
}
.age {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border: 1px solid white;
  border-radius: 50%;
  font-size: 9px;
}

@keyframes pulse {
  0%, 100% { opacity: .25; transform: scale(.96); }
  50% { opacity: .75; transform: scale(1.05); }
}
@keyframes float {
  0%,100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-7px) rotate(12deg); }
}

@media (max-width: 370px) {
  .brand-header { padding-top: 24px; }
  .ambassador-copy { left: 15px; width: 155px; }
  .ambassador h2 { font-size: 38px; }
  .villa-frame { right: -111px; }
  .feature-strip { grid-template-columns: 1fr; }
}

@media (min-width: 720px) {
  body { padding: 26px 0; }
  .landing-shell { min-height: 900px; border-radius: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; scroll-behavior: auto !important; }
}
