:root {
  --night: #050b16;
  --navy: #07101f;
  --navy-2: #0c1a33;
  --panel: #132447;
  --wrap: #1b4b9c;
  --cyan: #5ec8e8;
  --cyan-2: #9fe4f6;
  --ink: #eef6fb;
  --muted: #b7c7d8;
  --gold: #e8c36a;
  --line: rgba(158, 214, 236, 0.18);
  --radius: 22px;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
  --pad: clamp(20px, 7vw, 96px);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  background:
    radial-gradient(900px 420px at 90% -8%, rgba(94, 200, 232, 0.14), transparent 55%),
    radial-gradient(700px 380px at -10% 20%, rgba(27, 75, 156, 0.28), transparent 50%),
    linear-gradient(180deg, #081424 0%, var(--navy) 38%, var(--night) 100%);
  color: var(--ink);
  line-height: 1.55;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--cyan-2); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: inherit; }
.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--cyan);
  color: #041018;
  padding: 8px 12px;
  z-index: 40;
}
.skip:focus { left: 8px; }

/* Top strip */
.topbar {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 8px var(--pad);
  background: #04111f;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.topbar strong { color: var(--cyan); font-weight: 600; }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px var(--pad);
  background: rgba(7, 16, 31, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  margin-right: auto;
}
.brand:hover { text-decoration: none; }
.brand img {
  width: 52px;
  height: auto;
  filter: drop-shadow(0 0 12px rgba(94, 200, 232, 0.4));
}
.brand strong {
  display: block;
  font-family: Syne, sans-serif;
  font-size: 17px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.brand small {
  display: block;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 10px;
}
.nav-links { display: flex; gap: 18px; align-items: center; }
.nav-links a {
  color: var(--muted);
  font-weight: 500;
  font-size: 14.5px;
}
.nav-links a:hover,
.nav-links a.is-active { color: var(--ink); text-decoration: none; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  position: relative;
  margin: 0 auto;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 14.5px;
}
.btn-cyan {
  background: var(--cyan);
  color: #062033;
}
.btn-cyan:hover { filter: brightness(1.06); text-decoration: none; }
.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--cyan); text-decoration: none; }
.btn-gold {
  background: var(--gold);
  color: #1a1406;
}
.btn-gold:hover { filter: brightness(1.05); text-decoration: none; }

/* Type */
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  color: var(--cyan);
  margin: 0 0 10px;
  font-weight: 600;
}
h1, h2, h3 { font-family: Syne, sans-serif; line-height: 1.08; margin: 0 0 16px; }
h1 { font-size: clamp(36px, 5.6vw, 68px); letter-spacing: -0.03em; }
h2 { font-size: clamp(26px, 3.6vw, 42px); }
h3 { font-size: 20px; }
.lede { font-size: 18px; color: var(--muted); max-width: 44ch; }
.wrap { width: min(var(--max), calc(100% - 2 * var(--pad) + 2 * var(--pad))); padding-left: var(--pad); padding-right: var(--pad); }
section { padding: 72px var(--pad); }
.section-tight { padding-top: 40px; padding-bottom: 40px; }

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding: 56px var(--pad) 36px;
  position: relative;
}
.hero-photo {
  min-height: 72vh;
  padding: 0;
  display: grid;
  align-items: end;
  background: #041018 center 68% / cover no-repeat;
  position: relative;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 11, 22, 0.92) 8%, rgba(5, 11, 22, 0.55) 48%, rgba(5, 11, 22, 0.2) 100%),
    linear-gradient(180deg, rgba(5, 11, 22, 0.2) 0%, rgba(5, 11, 22, 0.72) 100%);
}
.hero-photo .hero-copy {
  position: relative;
  z-index: 1;
  padding: 80px var(--pad) 56px;
  max-width: 820px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 28px 0; }
.pills { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; list-style: none; }
.pills li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  color: var(--muted);
  font-size: 13px;
  background: rgba(7, 16, 31, 0.45);
}
.hero-art {
  position: relative;
}
.hero-art img {
  width: 100%;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.5));
}
.float-badge {
  position: absolute;
  right: 8%;
  bottom: -18px;
  width: 118px;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.45));
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 10px var(--pad) 70px;
}
.card, .stats article, .offer article, .area article, .rule, .quote, .faq details, .form, .legal {
  background: rgba(18, 36, 69, 0.55);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.stats strong, .stat-num {
  font-family: Syne, sans-serif;
  font-size: 36px;
  color: var(--cyan);
  display: block;
}
.stats p, .card p { margin: 8px 0 0; color: var(--muted); }

/* Grids */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split img, .frame img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
}
img[src*="yelo-sailors"] { object-position: center 78%; }
img[src*="rides-live"] { object-position: center 28%; }
img[src*="yelo-wedding"] { object-position: center 40%; }
.split img[src$=".webp"], .vehicle-shot {
  height: auto;
  background: #0a1628;
  padding: 18px;
  object-fit: contain;
  box-shadow: none;
}
.frame figcaption { color: var(--muted); font-size: 13px; margin-top: 10px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.offer article h3 { margin-bottom: 8px; }
.offer article { min-height: 180px; }
.offer .ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(94, 200, 232, 0.12);
  color: var(--cyan);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  font-family: Syne, sans-serif;
  font-weight: 700;
}

.steps { list-style: none; padding: 0; margin: 24px 0; }
.steps li {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}
.steps span {
  font-family: Syne, sans-serif;
  color: var(--cyan);
  width: 36px;
  flex-shrink: 0;
}
.fine { color: var(--muted); font-size: 14px; }
.prose-list { margin: 16px 0 24px; padding-left: 18px; color: var(--muted); }
.prose-list li { margin: 8px 0; }
.cta-strip {
  margin: 0 var(--pad) 70px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 28px;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 12px;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.gallery .g-wide { grid-row: 1 / span 2; object-position: center 62%; }

/* Quotes */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.quote {
  min-height: 220px;
  display: flex;
  flex-direction: column;
}
.quote p { flex: 1; font-size: 16px; }
.quote footer {
  margin-top: 16px;
  padding: 0;
  border: 0;
  color: var(--cyan-2);
  font-size: 13px;
  font-weight: 600;
  display: block;
}
.quotes-more { margin-top: 16px; }

/* Advertise band */
.ad-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, #0d2144, #1b4b9c 70%);
  border-radius: 28px;
  padding: 40px;
  margin: 0 var(--pad) 80px;
  border: 1px solid var(--line);
}
.ad-band img { filter: drop-shadow(0 20px 30px rgba(0,0,0,.4)); }

.video-wrap {
  position: relative;
  padding-top: 56.25%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Contact */
.contact-list { list-style: none; padding: 0; font-size: 18px; margin: 0; }
.contact-list li { padding: 8px 0; border-bottom: 1px solid var(--line); }

/* Forms */
.form label { display: block; font-size: 13px; color: var(--muted); margin: 12px 0 6px; }
.form input, .form select, .form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #081424;
  color: var(--ink);
  font: inherit;
}
.form textarea { min-height: 140px; resize: vertical; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-status {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(94, 200, 232, 0.12);
  color: var(--cyan-2);
}
.form-status.is-on { display: block; }

/* FAQ */
.faq details {
  margin-bottom: 12px;
  padding: 0;
}
.faq summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 650;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq details p {
  padding: 0 22px 18px;
  margin: 0;
  color: var(--muted);
}
.faq details[open] summary { color: var(--cyan); }

.legal { max-width: 780px; }
.legal p, .legal li { color: var(--muted); }
.legal h2 { font-size: 22px; margin-top: 28px; }

/* Footer */
.site-footer {
  padding: 40px var(--pad) 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 28px;
  margin-bottom: 28px;
}
.site-footer h4 {
  font-family: Syne, sans-serif;
  color: var(--ink);
  margin: 0 0 12px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin: 8px 0; }
.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--cyan-2); }
.foot-end {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

/* Mobile CTA */
.mobile-cta {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 25;
  justify-content: center;
  padding: 14px;
  border-radius: 999px;
  background: var(--cyan);
  color: #062033;
  font-weight: 800;
  box-shadow: var(--shadow);
  text-decoration: none;
}

/* Chatbot */
.chat-launch {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 28;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 0;
  background: var(--cyan);
  color: #062033;
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--shadow);
  font-family: Syne, sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.chat-panel {
  position: fixed;
  right: 18px;
  bottom: 86px;
  width: min(360px, calc(100vw - 24px));
  height: 460px;
  background: #0b1730;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  z-index: 28;
  overflow: hidden;
}
.chat-panel.is-open { display: flex; }
.chat-head {
  padding: 14px 16px;
  background: #102446;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
}
.chat-head button {
  background: transparent;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  font-size: 18px;
}
.chat-log {
  flex: 1;
  overflow: auto;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bubble {
  max-width: 86%;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 14px;
}
.bubble.bot { background: #163058; align-self: flex-start; }
.bubble.me { background: var(--cyan); color: #062033; align-self: flex-end; }
.chat-chips { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 12px 8px; }
.chat-chips button {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--cyan-2);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  cursor: pointer;
}
.chat-form {
  display: flex;
  gap: 8px;
  padding: 10px;
  border-top: 1px solid var(--line);
}
.chat-form input {
  flex: 1;
  border: 1px solid var(--line);
  background: #081424;
  color: var(--ink);
  border-radius: 999px;
  padding: 10px 12px;
}
.chat-form button {
  border: 0;
  background: var(--cyan);
  color: #062033;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
  cursor: pointer;
}

.page-hero {
  padding: 40px var(--pad) 8px;
}
.page-hero .lede { max-width: 56ch; }

.partners-note {
  background: rgba(232, 195, 106, 0.08);
  border: 1px solid rgba(232, 195, 106, 0.25);
  color: var(--muted);
}

.rule h3 { margin-bottom: 8px; }

@media (max-width: 980px) {
  .nav-links, .nav .btn { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .nav.is-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #07101f;
    padding: 18px 20px 24px;
    border-bottom: 1px solid var(--line);
    align-items: flex-start;
  }
  .nav.is-open .nav-links .btn { display: inline-flex; }
  .hero, .split, .stats, .grid-3, .grid-2, .quotes, .ad-band, .foot-grid, .form .row {
    grid-template-columns: 1fr;
  }
  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px 180px;
  }
  .gallery .g-wide { grid-row: auto; grid-column: 1 / span 2; height: 220px; }
  .hero { padding-top: 28px; }
  .hero-photo { min-height: 88vh; }
  .ad-band { margin-left: 20px; margin-right: 20px; padding: 24px; }
  .mobile-cta { display: flex; }
  .chat-launch { bottom: 76px; }
  .chat-panel { bottom: 144px; }
  body { padding-bottom: 88px; }
  .split img, .frame img { height: 280px; }
  .split img[src$=".webp"] { height: auto; }
  .float-badge { width: 88px; }
  .cta-strip { grid-template-columns: 1fr; margin-left: 20px; margin-right: 20px; }
}

@media (max-width: 640px) {
  .gallery { grid-template-columns: 1fr; grid-template-rows: none; }
  .gallery .g-wide { grid-column: auto; height: 220px; }
  h1 { font-size: 34px; }
}
