/* ===========================
   VARIABLES & RESET
=========================== */
:root {
  --bg: #0E0E1A;
  --bg-2: #13131F;
  --bg-3: #1A1A2E;
  --gold: #D4AF37;
  --gold-muted: #8B7536;
  --emerald: #1A3D2E;
  --emerald-light: #245240;
  --text: #F0EDE6;
  --text-muted: #9A9490;
  --border: rgba(212, 175, 55, 0.15);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --radius: 12px;
  --shadow: 0 20px 60px rgba(0,0,0,0.5);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.gold { color: var(--gold); }

/* ===========================
   TYPOGRAPHY
=========================== */
.section__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section__sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 3rem;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
}

.btn--primary {
  background: var(--gold);
  color: #0E0E1A;
}
.btn--primary:hover { background: #e8c84a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,175,55,0.35); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(240,237,230,0.25);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn--full { width: 100%; text-align: center; }

/* ===========================
   NAV
=========================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(14,14,26,0.96);
  backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.logo-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(212,175,55,0.4);
}
.logo-text {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
}
.logo-ms { color: var(--gold); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  opacity: 0.75;
  transition: color 0.2s, opacity 0.2s;
}
.nav__links a:hover { opacity: 1; color: var(--text); }
.nav__links .nav__cta {
  background: #E8C84A;
  color: #0E0E1A;
  padding: 0.5rem 1.25rem;
  border-radius: 5px;
  font-weight: 700;
  opacity: 1 !important;
}
.nav__links .nav__cta:hover { background: #f0d060; color: #0E0E1A; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(14,14,26,0.98);
  border-top: 1px solid var(--border);
}
.nav__mobile a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.4rem 0;
}
.nav__mobile a:hover { color: var(--gold); }
.nav__mobile .nav__cta {
  background: var(--gold);
  color: #0E0E1A;
  padding: 0.65rem 1.25rem;
  border-radius: 5px;
  font-weight: 600;
  text-align: center;
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile.open { display: flex; }
}

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 60% 50%, #3D1A1A 0%, #0E0E1A 60%);
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(212,175,55,0.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(61,26,26,0.5) 0%, transparent 50%);
  pointer-events: none;
}

.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: float-up linear infinite;
}

@keyframes float-up {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 8rem 1.5rem 9rem;
  width: 100%;
}

.hero__content--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero__img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow), 0 0 60px rgba(212,175,55,0.08);
  margin-bottom: 1.5rem;
}
.hero__img-wrap img { width: 100%; display: block; }

.hero__features {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.hero__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.hero__features .feature-list__icon { margin-top: 2px; flex-shrink: 0; }

@media (max-width: 900px) {
  .hero__content--split {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    text-align: center;
  }
  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__features { text-align: left; }
  .hero__scroll { display: none; }
  .stat__divider { display: none; }
}

.hero__scarcity {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 20px;
  padding: 0.35rem 0.85rem;
  margin-bottom: 1.25rem;
  letter-spacing: 0.03em;
}

.hero__scarcity-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.hero__headline {
  font-family: 'Urbanist', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  max-width: 700px;
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
  letter-spacing: -0.02em;
}

.hero__too-good {
  font-size: 0.85rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 1rem;
  opacity: 0.85;
}

.hero__sub {
  font-size: 1.15rem;
  color: #d6d0c9;
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.stat__num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.stat__divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  opacity: 0.5;
}
.hero__scroll span { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; }
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ===========================
   SECTIONS (shared)
=========================== */
.section {
  padding: 6rem 0;
}

/* ===========================
   HOW IT WORKS
=========================== */
.how-it-works { background: var(--bg-2); }

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  text-align: center;
  padding: 2.5rem 2rem;
  position: relative;
}


.step__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: rgba(212,175,55,0.08);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step__icon svg { width: 28px; height: 28px; }

.step h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.step p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }

.step__connector {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-muted), transparent);
  align-self: center;
  flex-shrink: 0;
  margin-top: -2rem;
}

@media (max-width: 768px) {
  .steps { flex-direction: column; }
  .step__connector { width: 1px; height: 40px; background: linear-gradient(to bottom, transparent, var(--gold-muted), transparent); align-self: center; margin: 0; }
}

/* ===========================
   MACHINES
=========================== */
.machines { background: var(--bg); }

.machines__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.machines__text p { color: var(--text-muted); margin-bottom: 2rem; }

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.feature-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.feature-list__icon {
  color: var(--gold);
  font-size: 0.6rem;
  margin-top: 0.35rem;
  flex-shrink: 0;
}
.feature-list li strong { display: block; margin-bottom: 0.25rem; font-weight: 600; }
.feature-list li p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* machine visual */
.machines__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.machines__img-main {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow), 0 0 60px rgba(212,175,55,0.08);
}
.machines__img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* gallery */
.gallery { background: var(--bg); padding: 0 0 0 0; }
.gallery__grid {
  display: grid;
  grid-template-columns: 1fr 2fr 2fr 1fr;
  grid-template-rows: 520px;
  gap: 4px;
}

.gallery__item--tall img { object-position: top center; }
.gallery__item--wide img { object-position: center center; }
.gallery__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-3);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery__item:hover img { transform: scale(1.03); }
.gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,14,26,0.85) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery__item:hover .gallery__overlay { opacity: 1; }
.gallery__overlay span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

@media (max-width: 768px) {
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 320px);
  }
}

@media (max-width: 768px) {
  .machines__grid { grid-template-columns: 1fr; }
  .machines__visual { margin-top: 3rem; }
}

/* ===========================
   VIDEO (merged into how-it-works)
=========================== */
.hiw-video {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid var(--border);
}

.hiw-video__title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hiw-video__text p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

@media (max-width: 768px) {
  .hiw-video { grid-template-columns: 1fr; gap: 2.5rem; justify-items: center; text-align: center; }
  .video-player, .video-caption { margin: 0 auto; }
}

.video-player {
  width: 320px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow), 0 0 40px rgba(212,175,55,0.08);
  display: block;
}

.video-caption {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.6rem;
  text-align: center;
  width: 320px;
}

.video-thumb {
  display: block;
  width: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow), 0 0 40px rgba(212,175,55,0.08);
  aspect-ratio: 9/16;
  position: relative;
  cursor: pointer;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.video-thumb:hover img { transform: scale(1.04); }

.video-thumb__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transition: background 0.3s;
}
.video-thumb:hover .video-thumb__overlay { background: rgba(0,0,0,0.2); }

.video-thumb__play svg { width: 64px; height: 64px; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5)); }

.video-thumb__overlay span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

@media (max-width: 768px) {
  .hiw-video { grid-template-columns: 1fr; gap: 2.5rem; }
  .video-wrapper { width: 100%; max-width: 320px; margin: 0 auto; }
}

/* ===========================
   TABLETS SHOWCASE
=========================== */
.tablets-showcase { background: var(--bg); }

.tablets-showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.tablets-showcase__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.tablets-showcase__item img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow), 0 0 40px rgba(212,175,55,0.06);
  display: block;
}

@media (max-width: 600px) {
  .tablets-showcase__grid { grid-template-columns: 1fr; }
}

/* ===========================
   SHOWCASE
=========================== */
.showcase { background: var(--bg-2); }

.showcase__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.showcase__grid--two {
  grid-template-columns: 1fr 1fr;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.showcase__card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.showcase__card:hover {
  border-color: rgba(212,175,55,0.35);
  transform: translateY(-4px);
}

.showcase__img-wrap {
  width: 100%;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: var(--bg);
}

.showcase__img-wrap--large {
  height: 420px;
  padding: 0.5rem;
}
.showcase__img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.showcase__label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  padding: 0 1.25rem 1.25rem;
}

@media (max-width: 768px) {
  .showcase__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .showcase__grid { grid-template-columns: 1fr; }
}

/* ===========================
   LEGAL
=========================== */
.legal { background: var(--bg-2); }
.legal .section__sub { margin: 0 auto 3rem; text-align: center; }
.legal .section__eyebrow, .legal .section__title { text-align: center; }

.legal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.legal__card {
  padding: 2.5rem;
  border-radius: var(--radius);
  position: relative;
}
.legal__card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
.legal__card ul { display: flex; flex-direction: column; gap: 0.85rem; }
.legal__card li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.95rem; }

.legal__card--bad {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  opacity: 0.7;
}
.legal__card--bad h3 { color: var(--text-muted); }
.x { color: #e05555; font-size: 1.1rem; }

.legal__card--good {
  background: rgba(26,61,46,0.4);
  border: 1px solid rgba(212,175,55,0.25);
  box-shadow: 0 0 40px rgba(26,61,46,0.3);
}
.check { color: #4dbb7a; font-size: 1.1rem; }

.legal__badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #0E0E1A;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}

.legal__footer { max-width: 700px; margin: 0 auto; }
.legal__duane {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: rgba(212,175,55,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.legal__duane-icon { width: 28px; height: 28px; flex-shrink: 0; margin-top: 2px; }
.legal__duane p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.legal__duane strong { color: var(--text); }

@media (max-width: 600px) {
  .legal__grid { grid-template-columns: 1fr; }
}

/* ===========================
   EARNINGS
=========================== */
.earnings { background: var(--bg); }

.earnings__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.earnings__big-num {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 1rem;
}

.earnings__highlight > p { color: var(--text-muted); font-size: 1rem; }
.earnings__divider { height: 1px; background: var(--border); margin: 1.75rem 0; }
.earnings__note { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* dashboard */
.dashboard {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.dashboard__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.dashboard__header-left { display: flex; flex-direction: column; gap: 0.2rem; }
.dashboard__title { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; }
.dashboard__venue { font-size: 0.68rem; color: var(--text-muted); }
.dashboard__live { display: flex; align-items: center; gap: 0.4rem; font-size: 0.7rem; color: #4dbb7a; white-space: nowrap; }
.dashboard__dot {
  width: 6px; height: 6px;
  background: #4dbb7a;
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.dashboard__date-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border);
  font-size: 0.7rem;
  color: var(--text-muted);
}
.dashboard__date-bar strong { color: var(--text); }

.dashboard__tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
}
.dashboard__tab {
  font-size: 0.7rem;
  padding: 0.5rem 1rem;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
}
.dashboard__tab.active { color: var(--gold); border-bottom-color: var(--gold); }

.dashboard__block {
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--border);
}
.dashboard__block-label { display: block; font-size: 0.68rem; color: var(--text-muted); margin-bottom: 0.25rem; }
.dashboard__block-val { display: block; font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; margin-bottom: 0.6rem; }
.dashboard__block-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.dashboard__block-row > div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.dashboard__block-row span { font-size: 0.62rem; color: var(--text-muted); }
.dashboard__block-row strong { font-size: 0.8rem; color: var(--text); }
.plus { color: #4dbb7a !important; }
.minus { color: #e05555 !important; }

.dashboard__disclaimer { padding: 0.5rem 1.25rem 0.75rem; font-size: 0.65rem; color: var(--text-muted); opacity: 0.6; }

@media (max-width: 768px) {
  .earnings__grid { grid-template-columns: 1fr; }
}

/* ===========================
   RECURRING CALLOUT
=========================== */
.recurring {
  background: linear-gradient(135deg, #1c1500 0%, #2a1f00 50%, #1c1500 100%);
  border-top: 1px solid rgba(212,175,55,0.25);
  border-bottom: 1px solid rgba(212,175,55,0.25);
  padding: 5rem 0;
}

.recurring__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2.5rem;
  align-items: center;
}

.recurring__icon {
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.8;
  flex-shrink: 0;
}

.recurring__text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.recurring__text p {
  font-size: 0.95rem;
  color: rgba(240,237,230,0.65);
  line-height: 1.7;
  max-width: 580px;
}

@media (max-width: 900px) {
  .recurring__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .recurring__icon { margin: 0 auto; }
  .recurring__text p { margin: 0 auto; }
  .recurring__inner .btn { margin: 0 auto; }
}

/* ===========================
   RISK FREE
=========================== */
.risk-free { background: var(--bg-3); padding-bottom: 3rem; }
.risk-free__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.risk-free__text p { color: var(--text-muted); }

.risk-free__cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.promise-card {
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
.promise-card__icon {
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  background: rgba(212,175,55,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-weight: 700;
}
.promise-card h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.35rem; }
.promise-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

@media (max-width: 768px) {
  .risk-free__inner { grid-template-columns: 1fr; }
}

/* ===========================
   FAQ
=========================== */
.faq { background: var(--bg-2); padding-top: 3rem; }

.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__item:first-child { border-top: 1px solid var(--border); }

.faq__question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  padding: 1.5rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}
.faq__question:hover { color: var(--gold); }

.faq__arrow {
  color: var(--gold);
  transition: transform 0.3s;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.faq__item.open .faq__arrow { transform: rotate(180deg); }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq__answer p {
  padding: 0 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}
.faq__item.open .faq__answer { max-height: 300px; }

/* ===========================
   CONTACT
=========================== */
.contact { background: var(--bg); }

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact__text p { color: var(--text-muted); margin-bottom: 2rem; }

.contact__methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact__method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.25s, transform 0.25s;
}
.contact__method:hover { border-color: var(--gold); transform: translateX(4px); }
.contact__method svg { width: 24px; height: 24px; flex-shrink: 0; }
.contact__method strong { display: block; font-weight: 600; font-size: 0.95rem; }
.contact__method span { font-size: 0.82rem; color: var(--text-muted); }

.contact__card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.contact__card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.contact__form { display: flex; flex-direction: column; gap: 1.25rem; }
.form__group { display: flex; flex-direction: column; gap: 0.5rem; }
.form__group label { font-size: 0.82rem; font-weight: 500; color: var(--text-muted); letter-spacing: 0.03em; }
.form__group input,
.form__group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  transition: border-color 0.2s;
  width: 100%;
  resize: vertical;
}
.form__group input::placeholder,
.form__group textarea::placeholder { color: rgba(154,148,144,0.5); }
.form__group input:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(212,175,55,0.04);
}

@media (max-width: 768px) {
  .contact__inner { grid-template-columns: 1fr; gap: 3rem; }
}

/* ===========================
   FOOTER
=========================== */
.footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.footer__tagline { font-size: 0.9rem; color: var(--text-muted); }
.footer__legal { font-size: 0.72rem; color: rgba(154,148,144,0.5); max-width: 680px; line-height: 1.6; }

/* ===========================
   ANIMATIONS (scroll reveal)
=========================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===========================
   GLOBAL MOBILE CENTERING
=========================== */
@media (max-width: 900px) {
  .section__eyebrow,
  .section__title,
  .section__sub,
  .hiw-video__title,
  .hiw-video__text p,
  .hiw-video__text .section__eyebrow,
  .step h3,
  .step p,
  .risk-free__text,
  .risk-free__text p,
  .recurring__text h2,
  .recurring__text p,
  .contact__text p,
  .earnings__highlight p,
  .earnings__note,
  .machines__text,
  .tablets-showcase__item p,
  .showcase__label { text-align: center; }

  .steps { align-items: center; }
  .step { text-align: center; align-items: center; }
  .step__icon { margin: 0 auto; }

  .risk-free__inner { text-align: center; }
  .risk-free__cards { justify-content: center; }
  .promise-card { text-align: center; }

  .recurring__inner { text-align: center; flex-direction: column; align-items: center; }

  .contact__text { text-align: center; }
  .contact__methods { align-items: center; }

  .tablets-showcase__grid { justify-items: center; }
  .showcase__grid--two { justify-items: center; }

  .earnings__highlight { text-align: center; }
}
