:root {
  --ink: #092233;
  --muted: #5a6970;
  --paper: #fffaf0;
  --cream: #fff5dc;
  --sun: #ffc43d;
  --orange: #ff6b2c;
  --red: #e3392f;
  --water: #0587a6;
  --water-dark: #03556c;
  --green: #4e8d3a;
  --line: rgba(9, 34, 51, 0.14);
  --shadow: 0 26px 70px rgba(9, 34, 51, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f6efe1;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 14px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  margin: 14px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(5, 85, 108, 0.9);
  box-shadow: 0 18px 42px rgba(9, 34, 51, 0.22);
  padding: 10px;
  color: #fff;
  backdrop-filter: blur(16px);
}

.brand,
.top-nav,
.hero-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 11px;
  font-weight: 950;
}

.brand-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 7px;
  background: var(--sun);
  color: var(--water-dark);
  font-size: 13px;
  font-weight: 950;
}

.top-nav {
  gap: 4px;
}

.top-nav a {
  border-radius: 7px;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 850;
}

.top-nav a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.header-cta,
.primary-btn,
.secondary-btn,
.bonus-bar a,
.footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 7px;
  padding: 13px 18px;
  font-weight: 950;
}

.header-cta,
.primary-btn,
.bonus-bar a {
  background: linear-gradient(180deg, #ff8848, var(--orange));
  color: #fff;
  box-shadow: 0 16px 30px rgba(255, 107, 44, 0.28);
}

.secondary-btn,
.footer a {
  border: 1px solid rgba(255, 255, 255, 0.44);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 30px;
  align-items: center;
  min-height: calc(100vh - 72px);
  margin-top: -72px;
  padding: 128px max(16px, calc((100% - 1180px) / 2)) 54px;
  background:
    linear-gradient(180deg, rgba(7, 53, 70, 0.38), rgba(7, 53, 70, 0.12)),
    linear-gradient(180deg, #7bd8ea 0 48%, #0e9bb8 49% 68%, #056e8b 69% 100%);
  color: #fff;
}

.hero-content {
  max-width: 720px;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  text-shadow: 0 5px 0 rgba(3, 85, 108, 0.35);
  font-size: clamp(50px, 9vw, 106px);
  line-height: 0.9;
  font-weight: 950;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
  font-weight: 940;
}

.lead {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
}

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

.slot-showcase {
  border: 10px solid #073546;
  border-radius: 8px;
  background: #073546;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.34);
}

.slot-top,
.slot-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px;
}

.slot-top span {
  color: var(--sun);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 950;
}

.slot-top b {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.slot-screen {
  position: relative;
  overflow: hidden;
  border-radius: 7px;
  background: #b9eff4;
  min-height: 380px;
}

.sky {
  position: absolute;
  inset: 0 0 45%;
  background:
    radial-gradient(circle at 80% 28%, var(--sun) 0 44px, transparent 45px),
    linear-gradient(180deg, #aaf0ff, #eafff8);
}

.water {
  position: absolute;
  inset: 44% 0 0;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.16) 0 4px, transparent 4px 18px),
    linear-gradient(180deg, #0d9fbd, #056e8b);
}

.fish,
.hook {
  position: absolute;
}

.fish {
  width: 76px;
  height: 34px;
  border-radius: 999px;
  background: var(--orange);
}

.fish::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 7px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 18px solid var(--orange);
}

.fish-one {
  left: 9%;
  bottom: 34%;
}

.fish-two {
  right: 11%;
  bottom: 18%;
  transform: scale(0.84);
  background: var(--sun);
}

.fish-two::after {
  border-left-color: var(--sun);
}

.hook {
  left: 50%;
  top: -2px;
  width: 3px;
  height: 150px;
  background: #073546;
}

.hook::after {
  content: "";
  position: absolute;
  bottom: -28px;
  left: -12px;
  width: 26px;
  height: 26px;
  border: 5px solid #073546;
  border-top-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(28deg);
}

.reel-board {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  border: 6px solid #073546;
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.92);
  padding: 10px;
}

.reel-board span {
  display: grid;
  place-items: center;
  min-height: 58px;
  border-radius: 7px;
  background: #fff;
  color: var(--water-dark);
  font-size: 12px;
  font-weight: 950;
}

.slot-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.slot-bottom div {
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
  padding: 12px;
}

.slot-bottom b,
.slot-bottom span {
  display: block;
}

.slot-bottom span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.bonus-bar {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  margin: -28px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: 18px;
}

.bonus-bar span,
.bonus-bar b {
  display: block;
}

.bonus-bar span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.bonus-bar b {
  margin-top: 4px;
  font-size: 20px;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: 76px;
}

.intro,
.split,
.image-band {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: start;
}

.intro {
  border-bottom: 1px solid var(--line);
  padding-bottom: 46px;
}

.section-head {
  max-width: 780px;
  margin-bottom: 24px;
}

.intro p,
.section-head p,
.steps-grid p,
.feature-copy p,
.feature-list p,
.image-band p,
.faq p,
.footer p {
  color: var(--muted);
  line-height: 1.65;
}

.steps-grid,
.feature-list,
.stats-table {
  display: grid;
  gap: 14px;
}

.steps-grid {
  grid-template-columns: repeat(4, 1fr);
}

.feature-list,
.stats-table {
  grid-template-columns: repeat(2, 1fr);
}

.steps-grid article,
.feature-copy,
.feature-list article,
.stats-table div,
.trust-card,
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: 18px;
}

.steps-grid article,
.feature-list article,
.stats-table div,
.trust-card,
details {
  box-shadow: none;
}

.steps-grid span {
  display: block;
  margin-bottom: 20px;
  color: var(--orange);
  font-size: 28px;
  font-weight: 950;
}

.steps-grid b,
.feature-list b,
.trust-card b,
.stats-table b,
.stats-table span {
  display: block;
}

.stats-table span {
  color: var(--muted);
  font-size: 13px;
}

.stats-table b {
  margin-top: 5px;
  color: var(--water-dark);
}

.image-band {
  border-top: 1px solid var(--line);
}

.trust-card {
  background:
    linear-gradient(135deg, rgba(255, 196, 61, 0.22), rgba(5, 135, 166, 0.13)),
    var(--paper);
}

.trust-card ul {
  display: grid;
  gap: 12px;
  margin: 12px 0 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.55;
}

.faq {
  padding-bottom: 76px;
}

details {
  margin-bottom: 12px;
}

summary {
  cursor: pointer;
  color: var(--water-dark);
  font-weight: 950;
}

details p {
  margin: 12px 0 0;
}

.footer {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  background: #073546;
  color: #fff;
  padding: 22px max(16px, calc((100% - 1180px) / 2));
}

.footer p {
  max-width: 850px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.go-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.go-shell {
  width: min(720px, 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: clamp(24px, 5vw, 48px);
}

.go-shell .brand {
  margin-bottom: 28px;
  color: var(--ink);
}

.go-shell h1 {
  font-size: clamp(34px, 6vw, 58px);
}

.go-shell code {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--cream);
  padding: 2px 6px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .top-nav {
    display: none;
  }

  .hero,
  .intro,
  .split,
  .image-band {
    grid-template-columns: 1fr;
  }

  .hero {
    margin-top: -68px;
    padding-top: 118px;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .site-header,
  .section,
  .bonus-bar {
    width: calc(100% - 18px);
  }

  .site-header {
    margin-top: 9px;
  }

  .brand {
    font-size: 14px;
  }

  .header-cta {
    min-height: 40px;
    padding: 10px;
    font-size: 13px;
  }

  .hero {
    padding-left: 9px;
    padding-right: 9px;
  }

  .slot-screen {
    min-height: 310px;
  }

  .reel-board {
    left: 10px;
    right: 10px;
    bottom: 10px;
    gap: 5px;
    padding: 6px;
  }

  .reel-board span {
    min-height: 42px;
    font-size: 10px;
  }

  .bonus-bar,
  .footer {
    display: block;
  }

  .bonus-bar a,
  .footer a {
    width: 100%;
    margin-top: 14px;
  }

  .steps-grid,
  .feature-list,
  .stats-table,
  .slot-bottom {
    grid-template-columns: 1fr;
  }
}
