/* ============================================
   100x shared styles
   Clean, professional. Dark grey + orange.
   ============================================ */

:root {
  --bg: #141517;
  --bg-raised: #18191c;
  --bg-card: #1c1e21;
  --line: rgba(255, 255, 255, 0.06);
  --line-strong: rgba(255, 255, 255, 0.12);
  --text: #f4f5f6;
  --text-dim: #a6abb2;
  --text-faint: #6d7278;
  --accent: #f97316;
  --accent-hover: #fb8b3c;
  --accent-dim: rgba(249, 115, 22, 0.09);
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max-w: 1100px;
  --radius: 14px;
  --shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.55);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16.5px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- typography ---------- */

h1, h2, h3 {
  font-weight: 600;
  letter-spacing: -0.028em;
  line-height: 1.1;
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4.4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.12rem; }

.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  display: block;
  margin-bottom: 20px;
}

.lead {
  color: var(--text-dim);
  font-size: 1.15rem;
  max-width: 600px;
}

.section-intro { max-width: 660px; }
.section-intro .lead { margin-top: 20px; }

.center { text-align: center; }
.center .section-intro { margin-left: auto; margin-right: auto; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- nav ---------- */

.nav {
  position: sticky;
  top: 0;
  backdrop-filter: blur(16px);
  background: rgba(20, 21, 23, 0.86);
  border-bottom: 1px solid var(--line);
  z-index: 50;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav-logo {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }

.nav-links a.btn-primary { color: #fff; }
.nav-links a.btn-primary:hover { color: #fff; }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.15s, transform 0.15s, border-color 0.15s, box-shadow 0.15s;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 28px -10px rgba(249, 115, 22, 0.5);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 14px 32px -10px rgba(249, 115, 22, 0.55);
}

.btn-ghost {
  border: 1px solid var(--line-strong);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--text-faint); }

.btn-sm { padding: 10px 22px; font-size: 0.85rem; border-radius: 9px; box-shadow: none; }

/* ---------- sections ---------- */

section { padding: 64px 0; }
.section-line { border-top: 1px solid var(--line); }

/* ---------- hero ---------- */

.hero {
  padding: 120px 0 110px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: center;
}

.hero .lead { margin: 28px 0 40px; }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-note {
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--text-faint);
}

.hero-media {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- strip ---------- */

.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  background: var(--bg-raised);
}

.strip-inner {
  display: flex;
  gap: 68px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* ---------- VSL ---------- */

.vsl-hero {
  padding: 48px 0 64px;
  background:
    radial-gradient(ellipse 50% 60% at 50% 0%, rgba(249, 115, 22, 0.06), transparent),
    var(--bg);
}


.vsl-section {
  background:
    radial-gradient(ellipse 50% 70% at 50% 0%, rgba(249, 115, 22, 0.05), transparent),
    var(--bg-raised);
  border-bottom: 1px solid var(--line);
}

.vsl-frame {
  margin: 36px auto 0;
  max-width: 860px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #0f1012;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  position: relative;
}

.vsl-frame iframe,
.vsl-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #0f1012;
}

.vsl-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  padding: 24px;
}

.vsl-placeholder .play {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 36px -8px rgba(249, 115, 22, 0.55);
  transition: transform 0.2s;
}
.vsl-placeholder:hover .play { transform: scale(1.05); }

.vsl-placeholder .play::after {
  content: "";
  border-style: solid;
  border-width: 13px 0 13px 21px;
  border-color: transparent transparent transparent #fff;
  margin-left: 5px;
}

.vsl-placeholder p { color: var(--text-dim); font-size: 0.9rem; max-width: 440px; }

/* ---------- opt-in (step 1) ---------- */

.optin-section {
  background: var(--bg-raised);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 96px 0;
}

.optin-shell {
  max-width: 720px;
  margin: 48px auto 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(249, 115, 22, 0.05), transparent),
    var(--bg-card);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
  height: 560px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: stretch;
}

.optin-placeholder {
  border: 1px dashed rgba(249, 115, 22, 0.4);
  background: var(--accent-dim);
  border-radius: var(--radius);
  padding: 32px;
  margin: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  flex: 1;
}

.optin-placeholder .tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.optin-placeholder p { color: var(--text-dim); font-size: 0.92rem; }

/* ---------- cards ---------- */

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent), var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: var(--line-strong); transform: translateY(-2px); }

.card .num {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 18px;
}

.card h3 { margin-bottom: 12px; }
.card p { color: var(--text-dim); font-size: 0.95rem; }

/* ---------- placeholder blocks ---------- */

.placeholder {
  border: 1px dashed rgba(249, 115, 22, 0.4);
  background: var(--accent-dim);
  border-radius: var(--radius);
  padding: 32px;
}

.placeholder .tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.placeholder p { color: var(--text-dim); font-size: 0.92rem; }

/* ---------- free guide ---------- */

.guide-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 44px;
  align-items: center;
  background:
    radial-gradient(ellipse 60% 100% at 100% 50%, rgba(249, 115, 22, 0.07), transparent),
    var(--bg-card);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow);
}

.guide-points {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.guide-points li {
  position: relative;
  padding-left: 28px;
  color: var(--text-dim);
  font-size: 0.95rem;
}

.guide-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.guide-visual { display: flex; justify-content: center; }

.guide-form {
  background: var(--bg-raised);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: stretch;
}

.guide-form-placeholder {
  border: 1px dashed rgba(249, 115, 22, 0.4);
  background: var(--accent-dim);
  border-radius: var(--radius);
  padding: 32px;
  margin: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.guide-form-placeholder .tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.guide-form-placeholder p { color: var(--text-dim); font-size: 0.92rem; }

.guide-doc {
  width: 220px;
  aspect-ratio: 3 / 4;
  background: linear-gradient(160deg, #202226, #17181b);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: var(--shadow);
  transform: rotate(3deg);
  transition: transform 0.25s;
}
.guide-card:hover .guide-doc { transform: rotate(0deg) translateY(-4px); }

.guide-doc-logo { font-weight: 700; font-size: 1.6rem; letter-spacing: -0.02em; }
.guide-doc-logo span { color: var(--accent); }
.guide-doc-title { color: var(--text-dim); font-size: 0.85rem; font-weight: 500; }
.guide-doc-sub {
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

@media (max-width: 900px) {
  .guide-card { grid-template-columns: 1fr; padding: 40px 28px; gap: 40px; }
  .guide-visual { order: -1; }
  .guide-doc { width: 170px; }
}

/* ---------- FAQ ---------- */

.faq-list {
  max-width: 760px;
  margin: 36px auto 0;
}

.faq-item {
  border: 1px solid var(--line);
  background: var(--bg-card);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--line-strong); }
.faq-item[open] { border-color: var(--line-strong); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item .faq-body {
  padding: 0 26px 24px;
  color: var(--text-dim);
  font-size: 0.95rem;
}

.faq-item .faq-body .note {
  display: block;
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- results gallery ---------- */

.chart-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.chart-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.chart-item:hover { border-color: var(--line-strong); transform: translateY(-2px); }

.chart-item img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

.chart-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 20px 26px 4px;
}

.chart-meta .idx {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-faint);
  letter-spacing: 0.1em;
}

.chart-meta .sym {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.chart-caption {
  padding: 0 26px 24px;
  color: var(--text-dim);
  font-size: 0.95rem;
}

/* ---------- CTA band ---------- */

.cta-band {
  text-align: center;
  padding: 72px 0;
  background:
    radial-gradient(ellipse 55% 90% at 50% 100%, rgba(249, 115, 22, 0.1), transparent),
    var(--bg-raised);
  border-top: 1px solid var(--line);
}

.cta-band h2 { margin-bottom: 16px; }
.cta-band p { color: var(--text-dim); margin-bottom: 40px; }

/* ---------- book page ---------- */

.book-hero {
  text-align: center;
  padding: 52px 0 0;
  max-width: 640px;
  margin: 0 auto;
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 920px;
  margin: 36px auto 0;
}

.step-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent), var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  text-align: left;
}

.step-card .n {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 14px;
}

.step-card h3 { font-size: 1rem; margin-bottom: 6px; }
.step-card p { color: var(--text-dim); font-size: 0.9rem; }

.form-shell {
  max-width: 920px;
  margin: 20px auto 64px;
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(249, 115, 22, 0.05), transparent),
    var(--bg-card);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
  height: 640px;
  box-shadow: var(--shadow);
}

.form-shell iframe { width: 100%; height: 100%; border: 0; display: block; }

@media (max-width: 900px) {
  .steps-row { grid-template-columns: 1fr; }
  .book-hero { padding-top: 64px; }
  .form-shell { height: 560px; margin-bottom: 64px; }
}

/* ---------- footer ---------- */

footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 36px;
  background: var(--bg-raised);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

.footer-grid h4 {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-faint);
  margin-bottom: 18px;
  font-weight: 600;
}

.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { color: var(--text-dim); font-size: 0.9rem; transition: color 0.15s; }
.footer-grid a:hover { color: var(--text); }

.footer-brand p { color: var(--text-dim); font-size: 0.9rem; max-width: 280px; margin-top: 14px; }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.8rem;
  color: var(--text-faint);
  line-height: 1.7;
}

/* ---------- responsive ---------- */

.nav-burger { display: none; }

.mobile-menu { display: none; }

@media (max-width: 740px) {
  .nav-inner { height: 62px; }
  .nav-links { gap: 12px; }
  .nav-links a { display: none; }
  .nav-links a.btn { display: inline-flex; padding: 10px 16px; font-size: 0.84rem; }

  .nav-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 0 8px;
    margin-left: 12px;
    background: none;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    cursor: pointer;
  }
  .nav-burger span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
  }
  .nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-menu.open {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    z-index: 49;
    background: var(--bg-raised);
    border-bottom: 1px solid var(--line-strong);
    padding: 16px 24px 20px;
    box-shadow: var(--shadow);
  }
  .mobile-menu a {
    padding: 12px 4px;
    font-weight: 500;
    color: var(--text);
    border-bottom: 1px solid var(--line);
  }
  .mobile-menu a.btn { border-bottom: 0; color: #fff; text-align: center; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 48px 0 44px; gap: 32px; }
  .hero-media { order: -1; max-height: 380px; }
  .grid-3, .grid-2, .chart-grid { grid-template-columns: 1fr; }
  .book-layout { grid-template-columns: 1fr; gap: 44px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  section { padding: 48px 0; }
  .nav-links { gap: 20px; }
  .nav-links .hide-mobile { display: none; }
}

/* ---------- about page ---------- */

.about-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 20px;
  align-items: start;
}

.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-photo img { width: 100%; display: block; }

.about-bio p { color: var(--text-dim); }

@media (max-width: 900px) {
  .about-layout { grid-template-columns: 1fr; }
  .about-photo { max-width: 320px; }
}

/* ---------- returns calculator ---------- */

.calc-panel {
  max-width: 980px;
  margin: 36px auto 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(249, 115, 22, 0.05), transparent),
    var(--bg-card);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.calc-chart {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 200px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
}

.calc-bar {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
}

.calc-bar-track {
  flex: 1;
  width: 100%;
  position: relative;
}

.calc-bar-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, var(--accent), rgba(249, 115, 22, 0.45));
  border-radius: 6px 6px 2px 2px;
  transition: height 0.35s ease;
  min-height: 4px;
}

.calc-bar span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-faint);
}

.calc {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.calc-field label {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 10px;
}

.calc-input {
  display: flex;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 0 16px;
  height: 54px;
  transition: border-color 0.15s;
}
.calc-input:focus-within { border-color: var(--accent); }

.calc-input span { color: var(--text-faint); font-weight: 600; }

.calc-input input {
  width: 100%;
  background: none;
  border: 0;
  outline: 0;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 0 8px;
  text-align: center;
}

.calc-out {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: 10px;
  height: 54px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}
.calc-out.accent { color: var(--accent); border-color: rgba(249, 115, 22, 0.35); }

.calc-note {
  text-align: center;
  margin-top: 22px;
  font-size: 0.78rem;
  color: var(--text-faint);
}

@media (max-width: 900px) {
  .calc { grid-template-columns: 1fr 1fr; }
  .calc-panel { padding: 22px; }
  .calc-chart { gap: 5px; height: 150px; }
  .calc-bar span { font-size: 0.55rem; }
}

/* ---------- trade wall ---------- */

.trade-wall {
  columns: 3;
  column-gap: 14px;
  margin-top: 36px;
}

.trade-item {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--line);
  margin-bottom: 14px;
  break-inside: avoid;
  display: block;
  transition: border-color 0.2s;
}
.trade-item:hover { border-color: var(--line-strong); }

@media (max-width: 900px) {
  .trade-wall { columns: 2; }
}
@media (max-width: 560px) {
  .trade-wall { columns: 1; }
}

/* ---------- vsl big play ---------- */

.vsl-big-play {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 16, 18, 0.25);
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.vsl-big-play:hover { background: rgba(15, 16, 18, 0.1); }
.vsl-big-play.hidden { display: none; }

.vsl-big-play::before {
  content: "";
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 18px 50px -10px rgba(249, 115, 22, 0.65);
  transition: transform 0.2s;
}
.vsl-big-play:hover::before { transform: scale(1.07); }

.vsl-big-play::after {
  content: "";
  position: absolute;
  border-style: solid;
  border-width: 19px 0 19px 31px;
  border-color: transparent transparent transparent #fff;
  margin-left: 8px;
}

@media (max-width: 900px) {
  .vsl-big-play::before { width: 76px; height: 76px; }
  .vsl-big-play::after { border-width: 13px 0 13px 21px; margin-left: 6px; }
}
