/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #f4f6f8;
  --bg-2: #ffffff;
  --bg-3: #eceef2;
  --gold: #00c2b5;
  --gold-2: #00ddd0;
  --green: #00a49c;
  --text: #1d2330;
  --muted: #5c6675;
  --border: rgba(16, 24, 40, 0.12);
  --card-shadow: 0 1px 2px rgba(16,24,40,0.06), 0 10px 30px rgba(16,24,40,0.05);
  --radius: 14px;
  --maxw: 1120px;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip; /* guard against horizontal scroll from the scaled hero mockup & chat embeds; `clip` keeps the sticky header working */
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.container--narrow { max-width: 760px; }
.center { text-align: center; }
.muted { color: var(--muted); }
.hl { color: var(--gold); }

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

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 14px 28px;
  border-radius: 5px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  cursor: pointer;
  border: none;
}
.btn--cta {
  background: linear-gradient(135deg, #c0170d, #e82215, #c0170d);
  color: #ffffff;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn--cta::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 28px;
  min-width: 28px;
  background-color: rgba(255,255,255,0.95);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6' stroke='%23c0170d' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-size: 58%;
  background-repeat: no-repeat;
  background-position: center center;
}
.btn--cta:hover { transform: translateY(-2px); box-shadow: none; }
.btn--lg { font-size: 1.15rem; padding: 18px 44px; }
.btn--block { display: flex; width: 100%; justify-content: center; }

/* ===== Top Bar / Countdown ===== */
.topbar {
  background: linear-gradient(90deg, #060d1a, #0a1628);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex; gap: 14px; justify-content: center; align-items: center; flex-wrap: wrap;
}
.countdown { display: inline-flex; gap: 8px; font-variant-numeric: tabular-nums; }
.countdown span { background: rgba(0,0,0,0.3); padding: 4px 8px; border-radius: 6px; }
.countdown b { font-size: 1rem; }
.topbar__price { display: inline-flex; align-items: center; gap: 6px; }
.topbar__price b { color: var(--gold-2); font-size: 1.05rem; }
.topbar__price s { opacity: 0.7; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 14, 23, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo { font-weight: 900; letter-spacing: 2px; font-size: 1.3rem; color: var(--gold); display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
.logo__tagline { font-size: 9px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.8); line-height: 1; padding-left: 52px; }
.nav { display: flex; gap: 26px; }
.nav a { color: #aeb6c4; font-weight: 600; font-size: 0.95rem; transition: color 0.15s; }
.nav a:hover { color: #fff; }
.nav a.nav__demo { display: inline-flex; align-items: center; height: 40px; color: var(--green); border: 1px solid var(--green); padding: 0 18px; border-radius: 50px; font-weight: 800; font-size: 0.82rem; transition: background 0.15s ease, color 0.15s ease; }
.nav a.nav__demo:hover { background: var(--green); color: #ffffff; }
.nav__cta { display: inline-flex; align-items: center; height: 40px; padding: 0 24px; margin-left: 18px; font-size: 0.82rem; box-shadow: 0 6px 16px rgba(0, 194, 181, 0.28); }

/* ===== Hero ===== */
.hero {
  text-align: left;
  padding: 72px 0 64px;
  background: var(--bg);
}
.hero__split { display: grid; grid-template-columns: 1fr 1.35fr; gap: 32px; align-items: center; }
.hero__copy { text-align: left; }
.hero__eyebrow { color: var(--gold); font-weight: 800; letter-spacing: 3px; font-size: 0.78rem; margin-bottom: 14px; text-transform: uppercase; display: block; }
.hero__title { font-size: clamp(1.9rem, 3.6vw, 3.1rem); font-weight: 900; line-height: 1.12; margin: 0 0 18px; }
.hero__sub { color: var(--muted); font-size: 1.05rem; margin: 0 0 22px; line-height: 1.75; max-width: 460px; }
.hero__bullets { list-style: none; padding: 0; margin: 20px 0 0; display: flex; flex-direction: column; gap: 8px; }
.hero__bullets li { font-size: 0.88rem; font-weight: 600; color: var(--text); }
.hero__copy .token-strip { justify-content: flex-start; flex-wrap: nowrap; gap: 7px; margin: 22px 0 0; max-width: 100%; }
.hero__copy .token { width: 33px; height: 33px; }
.hero__copy .token img { width: 27px; height: 27px; }
.hero__copy .token--chip { font-size: 0.55rem; }
.hero__mockup { position: relative; margin-right: -28px; }
.hero__mockup-label { display: inline-flex; align-items: center; gap: 7px; font-size: 0.68rem; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase; color: var(--green); background: rgba(0,194,181,0.12); border: 1px solid rgba(0,194,181,0.3); padding: 6px 14px; border-radius: 50px; margin-bottom: 14px; }
.hero__mockup-label::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #14c08a; box-shadow: 0 0 0 3px rgba(20,192,138,0.25); }
.hero__mockup-frame { position: relative; overflow: hidden; aspect-ratio: 16 / 9.4; background: #0d1117; border-radius: 8px; box-shadow: 0 30px 70px rgba(0,0,0,0.22), 0 0 0 1px rgba(15,23,42,0.06); transition: transform 0.35s ease, box-shadow 0.35s ease; }
.hero__mockup-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.13); display: block; image-rendering: -webkit-optimize-contrast; }
.hero__mockup:hover .hero__mockup-frame { transform: translateY(-4px); box-shadow: 0 40px 90px rgba(0,0,0,0.28), 0 0 0 1px rgba(0,194,181,0.25); }
.hero__mockup-caption { font-size: 0.8rem; color: var(--text); font-weight: 700; text-align: center; margin-top: 14px; letter-spacing: 0.2px; }
@media (max-width: 900px) { .hero__split { grid-template-columns: minmax(0, 1fr); gap: 32px; } .hero__copy, .hero__mockup { min-width: 0; } .hero { text-align: center; } .hero__copy { text-align: center; } .hero__copy .token-strip { justify-content: center; flex-wrap: wrap; } .hero__sub { max-width: 100%; margin-left: auto; margin-right: auto; } .hero__mockup { margin-right: 0; } .hero__mockup-label { margin-left: auto; margin-right: auto; } .hero__trust { flex-wrap: wrap; justify-content: center; } }
.hero__img { display: none; }
.hero__img img { display: none; }
.hero__sub-lead {
  display: block; width: fit-content; max-width: 100%; margin: 0 auto 12px;
  color: #000000; font-size: 1.55rem; font-weight: 900; line-height: 1.3;
  padding: 2px 8px; border-radius: 4px;
  background: linear-gradient(transparent 52%, rgba(22,199,132,0.18) 52%);
}
.hero__cta { margin-top: 32px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.hero__trust-item { display: inline-flex; align-items: center; gap: 5px; white-space: nowrap; background: var(--bg-2); border: 1px solid var(--border); color: var(--text); font-size: 0.76rem; font-weight: 700; padding: 7px 12px; border-radius: 50px; }
@media (max-width: 900px) { .hero__trust { justify-content: center; } }
.hero__trust { line-height: 1.8; }
.hero__badges { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
.token-strip { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; align-items: center; max-width: 560px; margin: 28px auto 0; }
.token { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--bg-2); border: 1px solid var(--border); overflow: hidden; flex: none; }
.token img { width: 32px; height: 32px; display: block; }
.token--chip { font-size: 0.6rem; font-weight: 800; color: var(--text); letter-spacing: 0.3px; }
.token--gold { color: #e6c34a; border-color: rgba(230,195,74,0.6); }
.token--silver { color: #c8ccd4; border-color: rgba(200,204,212,0.6); }
.hero__banner {
  display: inline-block; margin-top: 38px; max-width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #000000; font-weight: 800; letter-spacing: 0.3px;
  font-size: clamp(0.95rem, 2.2vw, 1.45rem);
  padding: 16px 34px; border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 194, 181, 0.35);
}
@media (max-width: 520px) { .hero__banner { padding: 14px 20px; } }
.hero__media { max-width: 720px; width: 100%; height: auto; aspect-ratio: 1398 / 797; margin: 44px auto 0; filter: drop-shadow(0 24px 60px rgba(0,0,0,0.55)); }
.hero__video.yt-facade { max-width: 760px; margin: 40px auto 0; box-shadow: 0 24px 60px rgba(0,0,0,0.55); }
.hero__img { max-width: 1200px; margin: 48px auto 0; padding: 0 24px; line-height: 0; }
.hero__img img { width: 100%; height: auto; display: block; border-radius: 5px 5px 0 0; }
.hero__video-tag { position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%); z-index: 2; background: rgba(7,10,17,0.78); color: #fff; font-weight: 700; font-size: 0.85rem; padding: 7px 16px; border-radius: 50px; white-space: nowrap; pointer-events: none; }
.badge {
  background: var(--bg-2); border: 1px solid var(--border);
  padding: 8px 18px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; color: var(--muted);
}

/* ===== Testimonials ===== */
.section__eyebrow { text-align: center; color: var(--muted); font-weight: 700; font-size: 1rem; margin-bottom: 6px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; max-width: 1160px; margin: 34px auto 0; }
.testimonial-grid .yt-facade { margin: 0; max-width: none; border: 1px solid var(--border); transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.testimonial-grid .yt-facade:hover { transform: translateY(-6px); border-color: rgba(0, 194, 181, 0.55); box-shadow: 0 22px 50px rgba(0,0,0,0.6); }
.testimonial-grid .yt-facade::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 48%; background: linear-gradient(to top, rgba(7,10,17,0.78), transparent); pointer-events: none; z-index: 1; }
.testimonial-grid .yt-facade__play, .testimonial-grid .yt-facade__badge { z-index: 2; }
.testimonial-grid .yt-facade__play svg { animation: ytpulse 2.2s ease-in-out infinite; }
.testimonial-grid .yt-facade:hover .yt-facade__play svg { animation: none; transform: scale(1.14); }
@keyframes ytpulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.08); } }
@media (prefers-reduced-motion: reduce) { .testimonial-grid .yt-facade__play svg { animation: none; } }
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 940px; margin: 24px auto 0; }
.quote { background: var(--bg-2); border: 1px solid var(--border); border-radius: 14px; padding: 24px; }
.quote__stars { color: var(--green); letter-spacing: 2px; margin-bottom: 12px; }
.quote p { color: var(--text); font-size: 0.95rem; line-height: 1.6; margin-bottom: 16px; }
.quote__ph { display: block; margin-top: 10px; color: var(--muted); font-size: 0.7rem; font-style: italic; opacity: 0.7; }
.quote__author { display: flex; align-items: center; gap: 10px; }
.quote__avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--bg-3); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-weight: 800; color: var(--gold); flex: none; }
.quote__author strong { display: block; font-size: 0.9rem; }
.quote__author span { color: var(--muted); font-size: 0.78rem; }
@media (max-width: 760px) { .quotes { grid-template-columns: 1fr; } }
@media (max-width: 980px) { .testimonial-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* ===== Trustpilot-style review bar ===== */
.reviewbar { background: #fff; padding: 18px 0; }
.reviewbar__inner { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.reviewbar__label { font-weight: 700; color: #191919; font-size: 1.05rem; }
.reviewbar__stars { display: inline-flex; gap: 4px; }
.reviewbar__stars .star { width: 30px; height: 30px; display: inline-flex; align-items: center; justify-content: center; background: #00b67a; }
.reviewbar__stars .star--half { background: linear-gradient(90deg, #00b67a 0 90%, #dcdce6 90% 100%); }
.reviewbar__stars .star--empty { background: #dcdce6; }
.reviewbar__stars .star svg { width: 20px; height: 20px; fill: #fff; }
.reviewbar__text { color: #191919; font-size: 1.02rem; }
.reviewbar__text b { font-weight: 800; }
.reviewbar__tp { display: inline-flex; align-items: center; gap: 6px; font-weight: 800; color: #191919; font-size: 1.1rem; }
.reviewbar__tp svg { width: 24px; height: 24px; }
@media (max-width: 600px) { .reviewbar__inner { gap: 10px; } .reviewbar__label, .reviewbar__text, .reviewbar__tp { font-size: 0.9rem; } }
/* Variant: review bar on the dark hero */
.reviewbar--hero { background: transparent; padding: 0 0 26px; }
.reviewbar--hero .reviewbar__label,
.reviewbar--hero .reviewbar__text,
.reviewbar--hero .reviewbar__tp { color: var(--text); }

/* ===== Footer social icons ===== */
.social { display: flex; gap: 14px; justify-content: center; }
.social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-2); border: 1px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.social a:hover { border-color: var(--gold); transform: translateY(-2px); }
.social svg { width: 19px; height: 19px; fill: var(--muted); transition: fill 0.15s ease; }
.social a:hover svg { fill: var(--gold); }

/* ===== Sections ===== */
.section { padding: 80px 0; }
.section--dark { background: var(--bg-3); }
.section--accent { background: linear-gradient(135deg, #071a14, #0a261e); color: #fff; }
.section--accent .section__title { color: #fff; }
.section--accent .section__lead { color: rgba(255,255,255,0.75); }
.section--accent .guarantee-promise p { color: rgba(255,255,255,0.85); }
.section__title { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 900; text-align: center; margin-bottom: 22px; line-height: 1.2; }
.section__lead { color: var(--muted); font-size: 1.1rem; text-align: center; max-width: 720px; margin: 0 auto 28px; }

/* ===== Grids ===== */
.grid { display: grid; gap: 24px; margin-top: 20px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

/* ===== Cards ===== */
.card, .feature, .pricing-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.card:hover, .feature:hover { transform: translateY(-4px); border-color: rgba(0, 194, 181,0.4); }
.card__icon { font-size: 2.2rem; margin-bottom: 14px; }
.card__img { width: 100%; height: 240px; object-fit: cover; object-position: center; border-radius: 10px; margin-top: 18px; display: block; }

/* Card media frame + hover "Click to Enlarge" overlay */
.card:has(.card__media) { display: flex; flex-direction: column; }
.card:has(.card__media) p { margin-bottom: 22px; }
.card__media { position: relative; margin-top: auto; border-radius: 10px; overflow: hidden; background: #0d1117; line-height: 0; cursor: zoom-in; border: 1px solid rgba(0,194,181,0.18); }
.card__media .card__img { width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; object-position: center top; border-radius: 0; margin: 0; display: block; transition: transform 0.5s ease; }
.card__media:hover .card__img { transform: scale(1.06); }
.card__zoom { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; background: linear-gradient(180deg, rgba(8,12,20,0.12), rgba(8,12,20,0.62)); opacity: 0; transition: opacity 0.3s ease; pointer-events: none; }
.card__media:hover .card__zoom { opacity: 1; }
.card__zoom__icon { width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,0.18); border: 1.5px solid rgba(255,255,255,0.75); display: flex; align-items: center; justify-content: center; }
.card__zoom__icon svg { width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.card__zoom__text { color: #fff; font-size: 0.8rem; font-weight: 800; letter-spacing: 0.6px; text-transform: uppercase; }

/* Logo watermark overlay for unbranded images */
.imgwm { position: relative; display: block; }
.card .imgwm { margin-top: 18px; }
.train-card .imgwm { margin-bottom: 20px; }
.imgwm > .card__img, .imgwm > .train-card__img { margin: 0; }
.imgwm__tag { position: absolute; bottom: 8px; right: 8px; background: rgba(7,10,17,0.62); border-radius: 5px; padding: 3px 7px; line-height: 0; pointer-events: none; }
.imgwm__tag img { height: 13px; width: auto; opacity: 0.92; display: block; }
.card h3, .feature h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card p, .feature p { color: var(--muted); }
.feature__icon { width: 52px; height: 52px; margin-bottom: 16px; border-radius: 14px; background: rgba(0, 194, 181, 0.12); display: flex; align-items: center; justify-content: center; }
.feature__icon svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ===== Guarantee ===== */
.guarantee-img { width: 200px; height: auto; aspect-ratio: 1 / 1; margin: 0 auto 24px; filter: drop-shadow(0 8px 24px rgba(0,0,0,0.5)); }
.guarantee-strip { display: block; width: 100%; max-width: 420px; height: auto; aspect-ratio: 526 / 78; margin: 26px auto 0; }
.guarantee-promise { max-width: 640px; margin: 0 auto; }
.guarantee-promise h3 { font-size: 1.3rem; font-weight: 900; color: var(--gold); margin-bottom: 12px; }
.guarantee-promise p { color: var(--text); line-height: 1.65; }
.guarantee-promise__fine { color: var(--muted); font-size: 0.78rem; margin-top: 12px; }

/* ===== Disclaimer ===== */
.disclaimer { background: var(--bg-3); border-top: 1px solid var(--border); padding: 16px 0; }
.disclaimer p { color: var(--muted); font-size: 0.72rem; line-height: 1.55; text-align: center; margin: 0; opacity: 0.8; }
.disclaimer strong { color: var(--muted); }

/* ===== Footer ===== */
.site-footer { background: #06090f; padding: 40px 0; border-top: 1px solid var(--border); }
.site-footer__inner { text-align: center; display: flex; flex-direction: column; gap: 18px; align-items: center; }
.logo--footer { font-size: 1.1rem; }
.footer-nav { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; }
.footer-nav a { color: #aeb6c4; font-size: 0.9rem; }
.footer-nav a:hover { color: #fff; }
.site-footer__copy { color: #8893a5; font-size: 0.8rem; }

/* ===== 10-Day Demo Trial ===== */
.demo-trial { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: radial-gradient(700px 300px at 50% 0%, rgba(0, 194, 181,0.10), transparent 70%); }
.demo-trial__badge { display: inline-block; background: rgba(0, 194, 181,0.15); color: var(--green); font-weight: 800; font-size: 0.75rem; letter-spacing: 1px; text-transform: uppercase; padding: 6px 16px; border-radius: 50px; margin-bottom: 14px; }
.demo-trial__hl { color: var(--green); }
.demo-trial__points { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; margin: 8px 0 26px; color: var(--text); font-weight: 600; font-size: 0.95rem; }
.demo-trial__points span { white-space: nowrap; }
.demo-guarantee { max-width: 660px; margin: 22px auto 24px; padding: 28px 30px; border-radius: 16px; background: rgba(0, 194, 181,0.08); border: 1px solid rgba(0, 194, 181,0.32); text-align: center; }
.demo-guarantee__shield { width: 48px; height: 48px; stroke: var(--green); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 10px; }
.demo-guarantee__hook { font-size: clamp(1.15rem, 2.8vw, 1.5rem); font-weight: 900; color: var(--green); margin-bottom: 8px; }
.demo-guarantee__title { font-size: 1.12rem; font-weight: 800; margin-bottom: 8px; color: var(--text); }
.demo-guarantee__text { color: var(--muted); font-size: 0.95rem; line-height: 1.6; margin: 0; }
.demo-guarantee__text b { color: var(--text); }

/* ===== Backtest disclaimer + lightbox ===== */
.backtest-disclaimer { margin-top: 10px; font-size: 0.72rem; line-height: 1.5; color: var(--muted); font-style: italic; text-align: left; }
.lightbox-img { cursor: zoom-in; }
.lightbox { position: fixed; inset: 0; z-index: 1200; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.9); padding: 24px; cursor: zoom-out; }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 95%; max-height: 92vh; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,0.6); }

/* ===== Demo download: OS chooser ===== */
.dlpop-overlay {
  position: fixed; inset: 0; z-index: 1300; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.82); backdrop-filter: blur(4px); padding: 20px;
  opacity: 0; transition: opacity 0.25s ease;
}
.dlpop-overlay[hidden] { display: none; }
.dlpop-overlay.is-open { opacity: 1; }
.dlpop {
  position: relative; width: 100%; max-width: 640px; max-height: 92vh; overflow-y: auto;
  background: linear-gradient(160deg, #131c2e, #0a0e17);
  border: 1px solid rgba(0, 194, 181,0.35); border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  padding: 42px 38px 34px; text-align: center;
  transform: scale(0.94); transition: transform 0.25s ease;
}
.dlpop-overlay.is-open .dlpop { transform: scale(1); }
.dlpop__close {
  position: absolute; top: 12px; right: 14px;
  width: 36px; height: 36px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,0.08); color: var(--text); font-size: 1.4rem; line-height: 1;
  transition: background 0.15s ease;
}
.dlpop__close:hover { background: rgba(255,255,255,0.18); }
.dlpop__badge {
  display: inline-block; background: rgba(0, 194, 181,0.15); color: var(--green);
  font-weight: 800; font-size: 0.72rem; letter-spacing: 0.4px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 50px; margin-bottom: 12px;
}
.dlpop__title { font-size: 1.5rem; font-weight: 900; margin-bottom: 6px; color: #fff; }
.dlpop__sub { color: var(--muted); font-size: 0.92rem; margin-bottom: 22px; }
.dlpop__btns { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.dlpop__btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  padding: 22px 16px; border-radius: 14px; border: 1px solid var(--border);
  background: var(--bg-2); color: var(--text); cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.dlpop__btn:not(.dlpop__btn--soon):hover { transform: translateY(-3px); border-color: var(--gold); background: var(--bg-3); }
.dlpop__os { width: 38px; height: 38px; margin-bottom: 4px; color: var(--gold); }
.dlpop__lbl { font-weight: 800; font-size: 1rem; }
.dlpop__lbl b { font-weight: 900; }
.dlpop__meta { color: var(--muted); font-size: 0.76rem; }
.dlpop__btn--soon { cursor: not-allowed; border-style: dashed; opacity: 0.6; }
.dlpop__btn--soon .dlpop__os { color: var(--muted); }
.dlpop__title { font-size: 1.7rem; }
.dlpop__trust { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 11px 20px; margin: 24px 0 0; padding: 0; text-align: left; }
.dlpop__trust li { display: flex; align-items: center; gap: 9px; color: #fff; font-size: 0.9rem; font-weight: 600; }
.dlpop__trust svg { width: 18px; height: 18px; flex: none; stroke: var(--green); fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.dlpop__guarantee { display: flex; gap: 14px; align-items: flex-start; text-align: left; margin-top: 24px; padding: 17px 19px; border-radius: 14px; background: rgba(0, 194, 181,0.08); border: 1px solid rgba(0, 194, 181,0.32); }
.dlpop__shield { width: 36px; height: 36px; flex: none; stroke: var(--green); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.dlpop__guarantee strong { display: block; font-size: 1rem; margin-bottom: 4px; color: #fff; }
.dlpop__guarantee p { color: var(--muted); font-size: 0.84rem; line-height: 1.55; margin: 0; }
/* Email gate */
.dlpop__gate { margin-top: 4px; }
.dlpop__gate-row { display: flex; gap: 10px; }
.dlpop__gate-input { flex: 1; min-width: 0; padding: 14px 16px; border-radius: 12px; border: 1px solid var(--border); background: var(--bg-2); color: var(--text); font-size: 1rem; }
.dlpop__gate-input::placeholder { color: var(--muted); }
.dlpop__gate-input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(0, 194, 181,0.18); }
.dlpop__gate-btn { white-space: nowrap; padding: 0 22px; }
.dlpop__gate-err { color: #ff6b6b; font-size: 0.82rem; margin: 8px 0 0; }
.dlpop__gate-fine { color: var(--muted); font-size: 0.78rem; margin: 10px 0 0; }
.dlpop__ready { color: var(--green); font-weight: 800; margin: 0 0 14px; }
@media (max-width: 480px) { .dlpop { padding: 34px 22px 28px; } .dlpop__btns, .dlpop__trust { grid-template-columns: 1fr; } .dlpop__gate-row { flex-direction: column; } .dlpop__gate-btn { padding: 13px; } }

/* ===== Value / price stack ===== */
.vstack { display: grid; grid-template-columns: 1.25fr 1fr; gap: 30px; max-width: 940px; margin: 0 auto; background: var(--bg-2); border: 1px solid var(--border); border-radius: 18px; padding: 34px; align-items: center; }
.vstack__left h2 { font-size: 1.55rem; font-weight: 900; margin-bottom: 18px; }
.vstack__list { list-style: none; }
.vstack__list li { position: relative; padding: 8px 0 8px 28px; color: var(--text); font-size: 0.96rem; }
.vstack__list li::before { content: "\2713"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.vstack__list b { color: var(--gold); }
.vstack__right { text-align: center; background: var(--bg-3); border: 1px solid rgba(0, 194, 181,0.3); border-radius: 14px; padding: 28px 24px; }
.vstack__logo { display: block; height: 28px; width: auto; margin: 0 auto 16px; }
.vstack__flag { display: inline-block; background: rgba(0, 194, 181,0.15); color: var(--gold); font-weight: 800; font-size: 0.72rem; letter-spacing: 1px; text-transform: uppercase; padding: 5px 14px; border-radius: 50px; margin-bottom: 16px; }
.vstack__price { display: flex; align-items: baseline; justify-content: center; gap: 12px; }
.vstack__old { color: var(--muted); text-decoration: line-through; font-size: 1.4rem; font-weight: 700; }
.vstack__new { color: var(--text); font-size: 2.8rem; font-weight: 900; line-height: 1; }
.vstack__crypto { color: var(--green); font-weight: 700; margin: 10px 0 20px; font-size: 0.95rem; }
.vstack__note { color: var(--muted); font-size: 0.8rem; margin-top: 12px; }
@media (max-width: 760px) { .vstack { grid-template-columns: 1fr; padding: 26px; } }

/* ===== Connect Exchanges grid ===== */
.ex-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 34px; }
.ex-card {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--bg-2); border: 1px solid var(--border); border-radius: 12px; padding: 18px 14px;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.ex-card:hover { transform: translateY(-3px); border-color: rgba(0, 194, 181, 0.45); }
.ex-card img { width: 28px; height: 28px; object-fit: contain; flex: none; }
.ex-card span { font-weight: 700; color: var(--text); font-size: 0.95rem; }
@media (max-width: 900px) { .ex-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .ex-grid { grid-template-columns: repeat(2, 1fr); } .ex-card { padding: 14px 10px; } .ex-card span { font-size: 0.85rem; } }

/* ===== Get Started steps ===== */
.section-logo { display: block; height: 30px; width: auto; margin: 14px auto 4px; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 40px; }
.step {
  position: relative; background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 14px; padding: 32px 22px 26px; text-align: center;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.step:hover { transform: translateY(-4px); border-color: rgba(0, 194, 181, 0.45); }
.step__num {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #ffffff;
  font-weight: 900; font-size: 0.95rem; display: flex; align-items: center; justify-content: center;
}
.step__icon {
  width: 66px; height: 66px; margin: 10px auto 18px; border-radius: 50%;
  background: rgba(0, 194, 181, 0.12); display: flex; align-items: center; justify-content: center;
}
.step__icon svg { width: 30px; height: 30px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.92rem; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* ===== Light section (3-in-1 Training) ===== */
.section--light { background: linear-gradient(180deg, #eef2fb, #ffffff); color: #0d1320; }
.section--light .section__title { color: #0d1320; }
.training__eyebrow { text-align: center; color: #2b3550; font-size: 1.2rem; font-weight: 600; margin-bottom: 6px; }
.training__title { text-align: center; font-size: clamp(1.8rem, 4.5vw, 3rem); font-weight: 900; letter-spacing: 1px; color: var(--gold); margin-bottom: 44px; }
.training__title .dark { color: #0d1320; }
.train-card { background: transparent; text-align: center; }
.train-card__img { width: 100%; height: auto; aspect-ratio: 805 / 526; border-radius: 14px; box-shadow: 0 14px 34px rgba(13,19,32,0.18); margin-bottom: 20px; }
.train-card__label { color: #4a5570; font-size: 1.1rem; font-weight: 500; }
.train-card h3 { color: #0d1320; font-size: 1.4rem; font-weight: 900; margin: 2px 0 10px; }
.train-card p { color: #5a6478; }

/* ===== Platform in action ===== */
.showcase { text-align: center; }

/* YouTube facade (click to play) */
.yt-facade {
  position: relative; max-width: 880px; width: 100%; margin: 16px auto 18px;
  aspect-ratio: 16 / 9; border-radius: 16px; overflow: hidden; cursor: pointer;
  background: #000; box-shadow: 0 24px 60px rgba(0,0,0,0.55); border: 1px solid var(--border);
}
.yt-facade__thumb { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease, filter 0.3s ease; }
.yt-facade:hover .yt-facade__thumb, .yt-facade:focus-visible .yt-facade__thumb { transform: scale(1.04); filter: brightness(0.82); }
.yt-facade__play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.yt-facade__play svg { width: 58px; height: 41px; filter: drop-shadow(0 6px 14px rgba(0,0,0,0.45)); transition: transform 0.15s ease; }
.yt-facade:hover .yt-facade__play svg, .yt-facade:focus-visible .yt-facade__play svg { transform: scale(1.1); }
.yt-facade__badge { display: none; }
.yt-facade__badge svg { width: 22px; height: 16px; }
.yt-facade iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
@media (max-width: 520px) { .yt-facade__play svg { width: 64px; height: 46px; } .yt-facade__badge { font-size: 0.8rem; padding: 7px 14px; } }

/* ===== Get Trevolto Now (buy box) ===== */
.buybox { padding: 80px 0; background: var(--bg); }
.buybox__title { text-align: center; color: var(--gold); font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; margin-bottom: 50px; }
.buybox__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; max-width: 1000px; margin: 0 auto; }
.buybox__product { text-align: center; }
.buybox__product img { max-width: 380px; width: 100%; height: auto; aspect-ratio: 901 / 904; margin: 0 auto; }
.buybox__card { background: #0c3535; border: 1px solid rgba(25,212,230,0.3); border-radius: 16px; padding: 36px 32px; box-shadow: 0 0 0 3px rgba(0,0,0,0.2), 0 20px 50px rgba(0,0,0,0.5); }
.buybox__card-title { text-align: center; font-size: 1.7rem; font-weight: 700; margin-bottom: 22px; color: #fff; }
.cd-circles { display: flex; justify-content: center; gap: 18px; margin-bottom: 28px; }
.cd-circles .cd-unit { text-align: center; }
.cd-circles .cd-ring {
  width: 64px; height: 64px; border-radius: 50%; border: 3px solid var(--gold-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 800; color: #fff; margin: 0 auto 8px;
}
.cd-circles .cd-cap { font-size: 0.7rem; letter-spacing: 1px; color: #7f9b9b; text-transform: uppercase; }
.btn--red {
  background: #f01e2c; color: #fff; font-size: 1.5rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  width: 100%; padding: 20px; border-radius: 8px; box-shadow: 0 8px 24px rgba(240,30,44,0.4);
}
.btn--red:hover { background: #d4111e; transform: translateY(-2px); }
.btn--red .arrow { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border: 2px solid #fff; border-radius: 50%; font-size: 1rem; }
.buybox__pay { display: block; width: 100%; max-width: 340px; height: auto; aspect-ratio: 409 / 78; margin: 26px auto 0; }

@media (max-width: 768px) {
  .buybox__grid { grid-template-columns: 1fr; gap: 30px; }
  .cd-circles .cd-ring { width: 56px; height: 56px; font-size: 1.25rem; }
}

/* ===== FAQ ===== */
.faq { max-width: 780px; margin: 36px auto 0; }
.faq__item { background: var(--bg-2); border: 1px solid var(--border); border-radius: 12px; margin-bottom: 14px; overflow: hidden; }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 20px 24px; font-weight: 700; font-size: 1.05rem;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; color: var(--text);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; color: var(--gold); font-size: 1.6rem; font-weight: 400; line-height: 1; flex: none; }
.faq__item[open] summary::after { content: "\2013"; }
.faq__item summary:hover { color: var(--gold); }
.faq__answer { padding: 0 24px 20px; color: var(--muted); line-height: 1.7; }

/* ===== Blog ===== */
.blog-grid__title { text-align: center; font-size: clamp(1.3rem, 3vw, 1.7rem); font-weight: 800; margin-top: 8px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 28px; }
.blog-card {
  display: flex; flex-direction: column; background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 14px; padding: 26px; transition: transform 0.15s ease, border-color 0.15s ease;
}
.blog-card:hover { transform: translateY(-4px); border-color: rgba(0, 194, 181, 0.45); }
.blog-card__tag { color: var(--gold); font-size: 0.78rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px; }
.blog-card h3 { font-size: 1.18rem; line-height: 1.35; margin-bottom: 12px; }
.blog-card p { color: var(--muted); font-size: 0.92rem; flex: 1 1 auto; margin-bottom: 18px; }
.blog-card__link { color: var(--gold); font-weight: 700; font-size: 0.92rem; }
.blog-card__link:hover { text-decoration: underline; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr; } }

/* ===== Checkout / Contact ===== */
.checkout-secure { color: var(--muted); font-weight: 700; font-size: 0.9rem; }
.checkout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 30px; max-width: 940px; margin: 0 auto; align-items: start; }
.checkout__form, .checkout__summary { background: var(--bg-2); border: 1px solid var(--border); border-radius: 14px; padding: 28px; }
.checkout__h2 { font-size: 1.15rem; font-weight: 800; margin: 4px 0 16px; }
.checkout__form .checkout__h2:not(:first-child) { margin-top: 26px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--muted); margin-bottom: 6px; }
.field input, .field textarea {
  width: 100%; background: var(--bg-3); border: 1px solid var(--border); border-radius: 8px;
  padding: 12px 14px; color: var(--text); font-family: inherit; font-size: 0.95rem;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pay-methods { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.pay-method { display: flex; align-items: center; gap: 10px; background: var(--bg-3); border: 1px solid var(--border); border-radius: 8px; padding: 12px 14px; cursor: pointer; font-weight: 600; }
.pay-method em { color: var(--green); font-style: normal; font-weight: 700; }
.pay-method input { accent-color: var(--gold); }
.checkout__fineprint { color: var(--muted); font-size: 0.8rem; margin-top: 14px; text-align: center; }
.summary-row { display: flex; justify-content: space-between; color: var(--muted); padding: 8px 0; }
.summary-row--discount { color: var(--green); }
.summary-total { display: flex; justify-content: space-between; font-weight: 900; font-size: 1.2rem; color: var(--text); padding: 14px 0; border-top: 1px solid var(--border); margin: 6px 0 10px; }
.checkout__trust { display: flex; align-items: center; gap: 8px; margin-top: 16px; color: var(--muted); font-size: 0.82rem; }
.checkout__trust img { width: 20px; height: 20px; }
.checkout__success { max-width: 560px; margin: 30px auto 0; text-align: center; background: var(--bg-2); border: 1px solid rgba(0, 194, 181,0.4); border-radius: 14px; padding: 40px 30px; }
.checkout__success h2 { font-size: 1.6rem; margin-bottom: 12px; }
.checkout__success p { color: var(--muted); margin-bottom: 22px; }
.contact-line { color: var(--muted); margin-bottom: 16px; }
.contact-line strong { color: var(--text); }
@media (max-width: 760px) { .checkout { grid-template-columns: 1fr; } }

/* ===== Checkout v2 (payment options + crypto) ===== */
.pay-options { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 940px; margin: 0 auto 60px; }
.pay-opt { position: relative; background: var(--bg-2); border: 1px solid var(--border); border-radius: 16px; padding: 28px; }
.pay-opt--card { border-color: rgba(0, 194, 181, 0.4); box-shadow: 0 0 30px rgba(0, 194, 181, 0.12); }
.pay-opt--crypto { border-color: rgba(0, 194, 181, 0.4); box-shadow: 0 0 30px rgba(0, 194, 181, 0.12); }
.pay-opt__flag { position: absolute; top: -13px; left: 24px; background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #000; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; padding: 5px 14px; border-radius: 50px; }
.pay-opt--crypto { border-color: var(--gold); box-shadow: 0 0 34px rgba(0, 194, 181, 0.22); }
.pay-opt__save { position: absolute; top: -13px; right: 20px; background: var(--gold); color: #ffffff; font-size: 0.78rem; font-weight: 900; letter-spacing: 0.5px; padding: 5px 14px; border-radius: 50px; box-shadow: 0 6px 16px rgba(0, 194, 181,0.4); }
.crypto-price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 14px; }
.crypto-price__old { color: var(--muted); text-decoration: line-through; font-size: 1.3rem; font-weight: 700; }
.crypto-price__new { color: var(--gold); font-size: 2.4rem; font-weight: 900; line-height: 1; }
.crypto-price__tag { background: rgba(0, 194, 181,0.15); color: var(--gold); font-weight: 800; font-size: 0.78rem; padding: 4px 10px; border-radius: 50px; }
.pay-btn--crypto { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #ffffff; box-shadow: 0 8px 24px rgba(0, 194, 181, 0.4); }
.pay-btn--crypto:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(22, 199, 132, 0.55); }
.pay-opt__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.chip { background: var(--bg-3); border: 1px solid var(--border); border-radius: 8px; padding: 6px 12px; font-size: 0.82rem; font-weight: 700; color: var(--text); }
.chip--btc { color: #f7931a; } .chip--usdt { color: #26a17b; } .chip--eth { color: #8aa0f0; }
.pay-opt__title { font-size: 1.4rem; font-weight: 900; margin-bottom: 10px; }
.pay-opt__sub { color: var(--muted); font-size: 0.92rem; margin-bottom: 18px; line-height: 1.6; }
.pay-check { list-style: none; margin-bottom: 24px; }
.pay-check li { position: relative; padding: 7px 0 7px 26px; color: var(--text); font-size: 0.92rem; }
.pay-check li::before { content: "\2713"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.pay-btn { display: block; text-align: center; font-weight: 800; padding: 16px; border-radius: 50px; font-size: 1.05rem; transition: transform 0.15s ease, box-shadow 0.15s ease; }
.pay-btn--card { background: linear-gradient(135deg, #fb923c, #f97316); color: #2a1205; box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35); }
.pay-btn--card:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(249, 115, 22, 0.5); }
.pay-btn--ghost { background: transparent; border: 1px solid var(--border); color: var(--text); }
.pay-btn--ghost:hover { border-color: #f97316; color: #fb923c; }
.pay-btn--soon { background: var(--bg-3); color: var(--muted); box-shadow: none; cursor: not-allowed; border: 1px dashed var(--border); }
.pay-btn--soon:hover { transform: none; box-shadow: none; }
.pay-opt--soon .pay-opt__chips { opacity: 0.4; }
.pay-soon-note { margin-top: 12px; text-align: center; font-size: 0.82rem; color: var(--muted); }

.crypto-pay { text-align: center; max-width: 1000px; margin: 0 auto 40px; }
.crypto-pay__pill { display: inline-block; background: rgba(249,115,22,0.12); border: 1px solid rgba(249,115,22,0.4); color: #fb923c; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; padding: 6px 16px; border-radius: 50px; margin-bottom: 18px; }
.crypto-pay__title { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900; margin-bottom: 36px; }
.hl-orange { color: #f97316; }
.wallets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.wallet { background: var(--bg-2); border: 1px solid var(--border); border-radius: 14px; padding: 22px; text-align: left; }
.wallet__head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.wallet__icon { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 800; color: #fff; flex: none; }
.wallet__icon--btc { background: #f7931a; } .wallet__icon--usdt { background: #26a17b; } .wallet__icon--eth { background: #627eea; }
.wallet__head strong { display: block; font-size: 0.98rem; } .wallet__head span { color: var(--muted); font-size: 0.78rem; }
.wallet__addr { display: block; background: var(--bg-3); border: 1px solid var(--border); border-radius: 8px; padding: 12px; font-family: ui-monospace, "Cascadia Code", Consolas, monospace; font-size: 0.78rem; color: var(--text); word-break: break-all; margin-bottom: 12px; }
.wallet__copy { width: 100%; background: var(--bg-3); border: 1px solid var(--border); border-radius: 8px; padding: 11px; color: var(--text); font-weight: 700; font-size: 0.88rem; cursor: pointer; transition: border-color 0.15s ease, color 0.15s ease; display: flex; align-items: center; justify-content: center; gap: 8px; }
.copy-ico { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.wallet__copy:hover { border-color: #f97316; color: #fb923c; }

.howto { max-width: 1000px; margin: 0 auto; background: var(--bg-2); border: 1px solid var(--border); border-left: 3px solid #f97316; border-radius: 12px; padding: 26px 30px; }
.howto h3 { font-size: 1rem; margin-bottom: 14px; }
.howto ol { padding-left: 20px; }
.howto li { color: var(--muted); margin-bottom: 10px; line-height: 1.6; }
.howto li strong { color: var(--text); }
.howto__warn { color: #fbbf6b; font-size: 0.85rem; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); }
@media (max-width: 820px) { .pay-options { grid-template-columns: 1fr; } .wallets { grid-template-columns: 1fr; } }

/* ===== Crypto-savings popup (checkout) ===== */
.cpop-overlay { position: fixed; inset: 0; z-index: 1100; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.8); backdrop-filter: blur(4px); padding: 20px; opacity: 0; transition: opacity 0.3s ease; }
.cpop-overlay[hidden] { display: none; }
.cpop-overlay.is-open { opacity: 1; }
.cpop { position: relative; max-width: 440px; width: 100%; text-align: center; padding: 36px 30px; border-radius: 18px; background: linear-gradient(160deg, #0b1f3a, #0a0e17); border: 1px solid var(--gold); box-shadow: 0 0 44px rgba(0, 194, 181,0.3); transform: scale(0.94); transition: transform 0.3s ease; color: #fff; }
.cpop-overlay.is-open .cpop { transform: scale(1); }
.cpop__close { position: absolute; top: 12px; right: 14px; width: 34px; height: 34px; border: none; border-radius: 50%; background: rgba(0,0,0,0.45); color: #fff; font-size: 1.4rem; line-height: 1; cursor: pointer; transition: background 0.15s ease, color 0.15s ease; }
.cpop__close:hover { background: var(--gold); color: #ffffff; }
.cpop__badge { display: inline-block; background: rgba(0, 194, 181,0.15); color: var(--gold); font-weight: 800; font-size: 0.72rem; letter-spacing: 1px; text-transform: uppercase; padding: 5px 14px; border-radius: 50px; margin-bottom: 14px; }
.cpop__title { font-size: 1.55rem; font-weight: 900; line-height: 1.2; margin-bottom: 12px; }
.cpop__title b { color: var(--gold); }
.cpop__sub { color: var(--muted); margin-bottom: 22px; line-height: 1.6; font-size: 0.95rem; }
.cpop__sub s { opacity: 0.7; } .cpop__sub b { color: var(--gold); font-size: 1.15rem; }
.cpop__btn { display: block; background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #ffffff; font-weight: 800; padding: 15px; border-radius: 50px; font-size: 1.05rem; box-shadow: 0 8px 24px rgba(0, 194, 181,0.4); transition: transform 0.15s ease; }
.cpop__btn:hover { transform: translateY(-2px); }
.cpop__wa { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 14px; background: #25D366; color: #fff; font-weight: 800; padding: 14px; border-radius: 50px; transition: transform 0.15s ease, filter 0.15s ease; }
.cpop__wa:hover { transform: translateY(-2px); filter: brightness(1.06); }
.cpop__wa svg { width: 22px; height: 22px; fill: #fff; }
.cpop__note { color: var(--muted); font-size: 0.8rem; margin-top: 14px; }

/* ===== Security / non-custodial section ===== */
.security__note { max-width: 720px; margin: 28px auto 0; text-align: center; color: var(--text); font-size: 0.95rem; background: rgba(0, 194, 181,0.08); border: 1px solid rgba(0, 194, 181,0.3); border-radius: 12px; padding: 14px 20px; }
.security__note b { color: var(--green); }

/* ===== Comparison table ===== */
.compare__wrap { overflow-x: auto; margin-top: 28px; -webkit-overflow-scrolling: touch; }
.compare__table { width: 100%; border-collapse: collapse; min-width: 520px; background: var(--bg-2); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.compare__table th, .compare__table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
.compare__table thead th { background: var(--bg-3); font-weight: 800; color: var(--text); }
.compare__table thead th:last-child { color: var(--gold); }
.compare__table tbody td:first-child { font-weight: 700; color: var(--text); }
.compare__table tbody tr:last-child td { border-bottom: none; }
.compare__no { color: var(--muted); }
.compare__no::before { content: "✕ "; color: #ff6b6b; font-weight: 800; }
.compare__yes { color: var(--text); }
.compare__yes::before { content: "✓ "; color: var(--green); font-weight: 800; }

/* ===== Sticky desktop buy-bar ===== */
.buybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
  display: flex; align-items: center; justify-content: center; gap: 26px;
  background: rgba(10,14,23,0.96); backdrop-filter: blur(10px);
  border-top: 1px solid var(--border); padding: 12px 24px;
  transform: translateY(110%); transition: transform 0.3s ease;
}
.buybar.is-visible { transform: translateY(0); }
.buybar__text { font-size: 0.98rem; color: #fff; }
.buybar__text s { opacity: 0.6; }
.buybar__price { color: var(--gold-2); font-size: 1.15rem; }
.buybar__guar { color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.buybar__btn { padding: 11px 26px; font-size: 0.9rem; }
@media (max-width: 860px) { .buybar { display: none; } }
@media (max-width: 1024px) { .buybar__guar { display: none; } }

/* ===== Legal pages ===== */
.legal { padding: 70px 0; }
.legal__head { text-align: center; margin-bottom: 40px; }
.legal__head h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900; margin-bottom: 10px; }
.legal__updated { color: var(--muted); font-size: 0.9rem; }
.legal__body { max-width: 760px; margin: 0 auto; }
.legal__body h2 { font-size: 1.25rem; font-weight: 800; margin: 34px 0 10px; color: var(--gold); }
.legal__body p, .legal__body li { color: var(--muted); margin-bottom: 12px; }
.legal__body ul { padding-left: 22px; margin-bottom: 12px; }
.legal__body strong { color: var(--text); }
.legal__note {
  background: var(--bg-2); border: 1px solid var(--border); border-left: 3px solid var(--gold);
  border-radius: 10px; padding: 16px 20px; margin: 30px 0; font-size: 0.9rem;
}
.legal__back { display: inline-block; margin-top: 30px; color: var(--gold); font-weight: 700; }

/* ===== Promo popup ===== */
.promo-overlay {
  position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.82); backdrop-filter: blur(4px); padding: 20px;
  opacity: 0; transition: opacity 0.3s ease;
}
.promo-overlay[hidden] { display: none; }
.promo-overlay.is-open { opacity: 1; }
.promo {
  position: relative; display: block;
  width: 100%; max-width: 460px; max-height: 92vh; overflow: auto;
  background: linear-gradient(160deg, #131c2e, #0a0e17);
  border: 1px solid rgba(0, 194, 181,0.35); border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  transform: scale(0.94); transition: transform 0.3s ease;
}
.promo__wa {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 12px; background: #25D366; color: #fff; font-weight: 800;
  padding: 13px; border-radius: 50px; transition: transform 0.15s ease, filter 0.15s ease;
}
.promo__wa:hover { transform: translateY(-2px); filter: brightness(1.06); }
.promo__wa svg { width: 21px; height: 21px; fill: #fff; }
.promo-overlay.is-open .promo { transform: scale(1); }
.promo__close {
  position: absolute; top: 12px; right: 14px; z-index: 3;
  width: 36px; height: 36px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(0,0,0,0.55); color: #fff; font-size: 1.5rem; line-height: 1;
  display: flex; align-items: center; justify-content: center; transition: background 0.15s ease, color 0.15s ease;
}
.promo__close:hover { background: var(--gold); color: #ffffff; }
.promo__body { padding: 34px 30px; text-align: center; display: flex; flex-direction: column; justify-content: center; }
.promo__flag { color: var(--gold); font-weight: 800; letter-spacing: 1.5px; font-size: 0.78rem; text-transform: uppercase; }
.promo__title { font-size: 1.7rem; font-weight: 900; line-height: 1.15; margin: 12px 0 8px; color: #fff; }
.promo__sub { color: var(--muted); font-size: 0.95rem; margin-bottom: 20px; }
.promo__price { display: flex; align-items: baseline; justify-content: center; gap: 14px; margin-bottom: 6px; }
.promo__old { color: var(--muted); text-decoration: line-through; font-size: 1.6rem; font-weight: 700; }
.promo__new { color: var(--gold); font-size: 2.8rem; font-weight: 900; line-height: 1; }
.promo__save { display: inline-block; background: var(--green); color: #ffffff; font-weight: 800; font-size: 0.8rem; padding: 4px 12px; border-radius: 50px; margin-bottom: 16px; }
.promo__terms { color: rgba(255,255,255,0.85); font-weight: 700; font-size: 0.95rem; margin-bottom: 22px; }
.promo__cta { width: 100%; }
.promo__note { color: var(--muted); font-size: 0.82rem; margin-top: 14px; }
@media (max-width: 760px) {
  .promo { grid-template-columns: 1fr; }
  .promo__media { min-height: 0; aspect-ratio: 16 / 9; border-radius: 18px 18px 0 0; }
  .promo__body { padding: 26px 22px; }
  .promo__title { font-size: 1.4rem; }
  .promo__new { font-size: 2.3rem; }
}

/* ===== Sticky mobile CTA ===== */
.sticky-cta {
  display: none;
  position: fixed; bottom: 16px; left: 50%; transform: translateX(-50%);
  z-index: 60; background: linear-gradient(135deg, #c0170d, #e82215, #c0170d);
  color: #ffffff; font-weight: 800; text-transform: uppercase;
  padding: 14px 36px; border-radius: 5px; box-shadow: none;
  align-items: center; gap: 10px;
}
.sticky-cta::before {
  content: '';
  display: inline-block;
  width: 26px; height: 26px; min-width: 26px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6' stroke='%23c0170d' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-size: 60%; background-repeat: no-repeat; background-position: 55% 50%;
}

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .site-header__inner { flex-wrap: wrap; height: auto; padding: 12px 0; row-gap: 10px; }
  .nav { display: flex; flex-wrap: wrap; width: 100%; order: 3; justify-content: center; gap: 8px 20px; }
  .nav a { font-size: 0.9rem; min-height: 40px; display: inline-flex; align-items: center; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--2 { grid-template-columns: 1fr; }
  .hero { padding: 60px 0; }
  .section { padding: 56px 0; }
  .sticky-cta { display: inline-flex; }
  .nav__cta { display: none; }
}

/* Phones: collapse multi-column grids to a single column */
@media (max-width: 560px) {
  .grid--3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .ex-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Small phones: tighten spacing so nothing overflows */
@media (max-width: 380px) {
  .container { padding-left: 14px; padding-right: 14px; }
  .btn--lg { padding: 16px 24px; font-size: 1rem; }
  .ex-grid { grid-template-columns: 1fr 1fr; }
  .hero__title { font-size: 1.75rem; }
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
