:root {
  --bg: #071323;
  --bg-2: #0d1d33;
  --panel: #132846;
  --panel-2: #18385f;
  --gold: #f4c84a;
  --gold-2: #ffe18a;
  --text: #f7fbff;
  --muted: #b2c3d7;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: var(--text);
  background:
    radial-gradient(circle at 22% 10%, rgba(244, 200, 74, 0.13), transparent 28%),
    radial-gradient(circle at 78% 18%, rgba(86, 195, 255, 0.1), transparent 30%),
    linear-gradient(180deg, #071323 0%, #09192d 48%, #06101f 100%);
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

/* ── BG Orbs ─────────────────────────────── */

.bg-orbs {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  animation: floatOrb 16s ease-in-out infinite;
}

.bg-orb-1 {
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(244, 200, 74, 0.11) 0%, transparent 70%);
  top: -200px;
  left: -130px;
  animation-duration: 18s;
}

.bg-orb-2 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(86, 195, 255, 0.09) 0%, transparent 70%);
  top: 28%;
  right: -140px;
  animation-duration: 22s;
  animation-delay: -8s;
}

.bg-orb-3 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(244, 200, 74, 0.07) 0%, transparent 70%);
  bottom: 8%;
  left: 36%;
  animation-duration: 26s;
  animation-delay: -14s;
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(28px, -18px) scale(1.04); }
  66% { transform: translate(-14px, 22px) scale(0.97); }
}

/* ── Header ─────────────────────────────── */

.top {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 22px;
  width: 100%;
  padding: 16px 5%;
  background: rgba(7, 19, 35, 0.93);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  border-top: 2px solid var(--gold);
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 142px;
  height: 44px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  color: var(--muted);
  font-size: 15px;
}

.nav a {
  transition: color 160ms;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 200ms ease;
}

.nav a:hover {
  color: var(--gold-2);
}

.nav a:hover::after {
  transform: scaleX(1);
}

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

/* ── Buttons ─────────────────────────────── */

.top-cta,
.btn,
.mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 15px;
}

.top-cta,
.btn-primary,
.mobile-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 50%, var(--gold) 100%);
  background-size: 200% auto;
  color: #071323;
  box-shadow: 0 16px 34px rgba(244, 200, 74, 0.24);
  transition: transform 160ms ease, box-shadow 160ms ease, background-position 400ms ease;
}

.top-cta:hover,
.btn-primary:hover,
.mobile-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(244, 200, 74, 0.42);
  background-position: right center;
}

.btn-ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.btn-ghost:hover {
  border-color: rgba(244, 200, 74, 0.52);
  background: rgba(244, 200, 74, 0.09);
  color: var(--gold-2);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  transition: border-color 160ms;
}

.nav-toggle:hover {
  border-color: rgba(244, 200, 74, 0.4);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

/* ── Hero ─────────────────────────────────── */

.hero {
  display: flex;
  align-items: stretch;
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 5% 42px;
  position: relative;
  z-index: 1;
}

.hero-copy,
.hero-panel {
  flex: 1 1 360px;
}

.hero-copy {
  min-height: 430px;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(19, 40, 70, 0.92), rgba(9, 25, 45, 0.92)),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 16px);
  box-shadow: var(--shadow), inset 0 3px 0 rgba(244, 200, 74, 0.32);
  animation: fadeSlideUp 0.42s ease both;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(244, 200, 74, 0.12);
  border: 1px solid rgba(244, 200, 74, 0.22);
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: 52px;
  line-height: 58px;
  letter-spacing: -1px;
  font-weight: 900;
}

h2 {
  margin-bottom: 12px;
  font-size: 34px;
  line-height: 42px;
  letter-spacing: -0.3px;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 28px;
}

p {
  color: var(--muted);
}

.hero-copy p {
  max-width: 660px;
  font-size: 18px;
  line-height: 30px;
}

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

.hero-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(24, 56, 95, 0.96), rgba(12, 29, 52, 0.96));
  box-shadow: var(--shadow), inset 0 3px 0 rgba(244, 200, 74, 0.18);
  animation: fadeSlideUp 0.42s 0.12s ease both;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.panel-head span {
  color: var(--muted);
  font-size: 14px;
}

.panel-head strong {
  color: var(--gold-2);
  font-size: 14px;
}

.meter {
  height: 10px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.meter-bar {
  display: block;
  width: 34%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  transition: width 280ms ease;
}

.step-btn,
.filter-btn {
  width: 100%;
  margin-bottom: 10px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  text-align: left;
  transition: border-color 140ms, background 140ms;
}

.step-btn:hover:not(.is-active),
.filter-btn:hover:not(.is-active) {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
}

.step-btn.is-active,
.filter-btn.is-active {
  border-color: rgba(244, 200, 74, 0.8);
  background: rgba(244, 200, 74, 0.14);
}

.step-text {
  min-height: 48px;
  margin: 18px 0 0;
  color: var(--text);
  font-size: 15px;
}

/* ── Strip ───────────────────────────────── */

.strip,
.section,
.footer {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 5%;
  padding-right: 5%;
}

.strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 0;
  padding-bottom: 42px;
  position: relative;
  z-index: 1;
}

.strip div {
  flex: 1 1 180px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-left: 3px solid rgba(244, 200, 74, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 160ms, border-left-color 160ms, background 160ms, transform 160ms;
  cursor: default;
}

.strip div:hover {
  border-color: rgba(244, 200, 74, 0.22);
  border-left-color: rgba(244, 200, 74, 0.8);
  background: rgba(244, 200, 74, 0.05);
  transform: translateY(-2px);
}

.strip strong,
.strip span {
  display: block;
}

.strip strong {
  font-size: 15px;
  margin-bottom: 3px;
}

.strip span {
  color: var(--muted);
  font-size: 14px;
}

/* ── Sections ────────────────────────────── */

.section {
  padding-top: 54px;
  padding-bottom: 54px;
  position: relative;
  z-index: 1;
}

.section-soft {
  max-width: none;
  padding-left: calc(5% + 0px);
  padding-right: calc(5% + 0px);
  background: rgba(255, 255, 255, 0.035);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-soft > * {
  max-width: 1062px;
  margin-left: auto;
  margin-right: auto;
}

.section-head {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-head p {
  font-size: 17px;
  line-height: 28px;
  margin-bottom: 0;
  margin-top: 8px;
}

/* ── Slots ───────────────────────────────── */

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-btn {
  width: auto;
  min-height: 40px;
  margin: 0;
  padding: 8px 16px;
  text-align: center;
}

.slots-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.slot-card {
  flex: 1 1 250px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(19, 40, 70, 0.86);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  cursor: default;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.slot-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(244, 200, 74, 0.24);
  border-color: rgba(244, 200, 74, 0.32);
}

.slot-card.is-hidden {
  display: none;
}

.slot-img-wrap {
  position: relative;
  overflow: hidden;
}

.slot-img-wrap img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform 320ms ease;
}

.slot-card:hover .slot-img-wrap img {
  transform: scale(1.05);
}

.slot-badge {
  position: absolute;
  top: 9px;
  left: 9px;
  padding: 3px 9px;
  border-radius: 4px;
  background: rgba(7, 19, 35, 0.82);
  border: 1px solid rgba(244, 200, 74, 0.45);
  color: var(--gold-2);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  pointer-events: none;
}

.slot-badge-bright {
  border-color: rgba(86, 195, 255, 0.5);
  color: #9de8ff;
}

.slot-badge-calm {
  border-color: rgba(120, 220, 140, 0.5);
  color: #a8eab8;
}

.slot-body {
  padding: 14px 14px 12px;
}

.slot-body h3 {
  margin-bottom: 0;
  font-size: 16px;
}

.slot-card p,
.bonus-card p,
.faq-list p {
  margin-bottom: 0;
}

/* ── Bonus ───────────────────────────────── */

.bonus-row,
.check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.bonus-card {
  flex: 1 1 250px;
  padding: 28px 24px 24px;
  border: 1px solid var(--line);
  border-top: 2px solid rgba(244, 200, 74, 0.55);
  border-radius: 10px;
  background: rgba(7, 19, 35, 0.46);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.bonus-card:hover {
  transform: translateY(-3px);
  border-color: rgba(244, 200, 74, 0.32);
  border-top-color: rgba(244, 200, 74, 0.9);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.bonus-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 10px;
  background: var(--gold);
  color: #071323;
  font-weight: 900;
  font-size: 14px;
}

.note {
  margin-top: 18px;
  color: var(--gold-2);
}

/* ── Features ────────────────────────────── */

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.feature-card {
  flex: 1 1 220px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-left: 3px solid rgba(244, 200, 74, 0.55);
  border-radius: 10px;
  background: rgba(19, 40, 70, 0.5);
  transition: transform 200ms ease, box-shadow 200ms ease, border-left-color 200ms ease, background 200ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.32);
  border-left-color: var(--gold);
  background: rgba(19, 40, 70, 0.7);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 8px;
  background: rgba(244, 200, 74, 0.12);
  border: 1px solid rgba(244, 200, 74, 0.18);
  color: var(--gold-2);
  font-size: 14px;
  font-weight: 900;
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 15px;
  line-height: 25px;
  margin-bottom: 0;
}

/* ── Guide / Split ───────────────────────── */

.side-head {
  max-width: none;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}

.split-body {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.article {
  flex: 1 1 560px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.article p {
  font-size: 16px;
  line-height: 27px;
}

.article p:last-child {
  margin-bottom: 0;
}

.guide-aside {
  flex: 0 0 264px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.guide-tip {
  padding: 22px;
  border: 1px solid var(--line);
  border-left: 3px solid rgba(244, 200, 74, 0.5);
  border-radius: 10px;
  background: rgba(19, 40, 70, 0.48);
}

.guide-tip h4 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 800;
  color: var(--gold-2);
}

.guide-tip ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 30px;
}

.guide-tip ul a {
  color: var(--muted);
  transition: color 160ms;
}

.guide-tip ul a:hover {
  color: var(--gold-2);
}

.guide-tip p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 24px;
}

/* ── Info table ──────────────────────────── */

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0;
  font-size: 15px;
}

.info-table th,
.info-table td {
  padding: 11px 14px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.info-table th {
  background: rgba(244, 200, 74, 0.1);
  color: var(--gold-2);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-table td {
  color: var(--muted);
}

.info-table tbody tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.03);
}

/* ── FAQ ─────────────────────────────────── */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(7, 19, 35, 0.44);
  transition: border-color 160ms, background 160ms;
}

details:hover {
  border-color: rgba(244, 200, 74, 0.22);
  background: rgba(7, 19, 35, 0.58);
}

details[open] {
  border-color: rgba(244, 200, 74, 0.28);
}

summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  list-style: none;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 800;
  font-size: 16px;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: '+';
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(244, 200, 74, 0.12);
  color: var(--gold-2);
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  transition: background 160ms;
}

details[open] > summary::after {
  content: '−';
  background: rgba(244, 200, 74, 0.22);
}

details p {
  padding: 0 20px 20px;
  font-size: 15px;
  line-height: 26px;
}

/* ── Footer ──────────────────────────────── */

.footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  padding-top: 36px;
  padding-bottom: 88px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer strong {
  display: block;
  color: var(--text);
  font-size: 16px;
  margin-bottom: 6px;
}

.footer p {
  font-size: 14px;
  margin-bottom: 0;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-start;
  font-size: 15px;
}

/* ── Mobile CTA ──────────────────────────── */

.mobile-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 18;
  display: none;
}

/* ── Main z-index ────────────────────────── */

main {
  position: relative;
  z-index: 1;
}

/* ── Animation ───────────────────────────── */

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Responsive ──────────────────────────── */

@media (max-width: 820px) {
  .top {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .nav,
  .top-cta {
    display: none;
  }

  .nav.is-open {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 0;
    padding-top: 12px;
    padding-bottom: 8px;
  }

  .hero {
    flex-direction: column;
    padding-top: 40px;
  }

  .hero-copy {
    min-height: auto;
    padding: 30px;
  }

  h1 {
    font-size: 40px;
    line-height: 48px;
  }

  h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .mobile-cta {
    display: inline-flex;
  }

  .split-body {
    flex-direction: column;
  }

  .guide-aside {
    flex: 1 1 auto;
    width: 100%;
  }
}

@media (max-width: 520px) {
  .hero-copy,
  .hero-panel,
  .article {
    padding: 22px;
  }

  .hero-copy p {
    font-size: 16px;
    line-height: 26px;
  }

  .slot-card,
  .bonus-card,
  .feature-card {
    flex-basis: 100%;
  }

  .info-table {
    font-size: 14px;
  }

  .info-table th,
  .info-table td {
    padding: 9px 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  .hero-copy,
  .hero-panel,
  .bg-orb {
    transition: none !important;
    animation: none !important;
  }
}
