:root {
  --bg: #0b0d12;
  --bg-2: #11141b;
  --bg-3: #161a23;
  --border: #232733;
  --text: #e7e9ee;
  --muted: #9aa1ad;
  --brand: #ff9900;
  --brand-2: #ffb347;
  --brand-soft: rgba(255, 153, 0, 0.12);
  --success: #34d399;
  --danger: #ef4444;
  --radius: 10px;
  --radius-lg: 16px;
  --max: 1180px;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 0 1px rgba(255, 153, 0, 0.25), 0 30px 80px -20px rgba(255, 153, 0, 0.25);
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed; inset: 0;
  background:
    radial-gradient(900px 500px at 80% -10%, rgba(255,153,0,0.10), transparent 60%),
    radial-gradient(700px 400px at -10% 20%, rgba(74,127,255,0.08), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
main, header, footer, section { position: relative; z-index: 1; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-2); text-decoration: none; }
a:hover { color: var(--brand); }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0 0 16px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 14px; color: var(--text); }
.muted { color: var(--muted); }
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-2);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 153, 0, 0.25);
}
.kicker .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 8px var(--brand); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 13, 18, 0.75);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
}
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--text); font-weight: 800; letter-spacing: -0.02em; font-size: 1.05rem;
}
.logo-mark {
  width: 32px; height: 32px; border-radius: 8px;
  background: linear-gradient(135deg, var(--brand), #ff6f00);
  display: grid; place-items: center;
  color: #0b0d12;
  font-weight: 900; font-size: 14px;
  box-shadow: 0 6px 18px rgba(255,153,0,0.35);
}
.logo-mark svg { width: 18px; height: 18px; }
.nav-links { display: none; gap: 28px; }
.nav-links a { color: var(--muted); font-size: 0.95rem; }
.nav-links a:hover { color: var(--text); }
@media (min-width: 860px) {
  .nav-links { display: flex; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius);
  font-weight: 700; font-size: 0.98rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--brand), #ff6f00);
  color: #0b0d12;
  box-shadow: 0 10px 24px -8px rgba(255,153,0,0.55), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 14px 30px -8px rgba(255,153,0,0.7); color:#0b0d12; }
.btn-secondary {
  background: var(--bg-3);
  color: var(--text);
  border-color: var(--border);
}
.btn-secondary:hover { background: var(--bg-2); border-color: #2c3142; color: var(--text); }
.btn-lg { padding: 18px 32px; font-size: 1.05rem; border-radius: 12px; }
.btn-block { width: 100%; }

/* Hero */
.hero {
  padding: 80px 0 60px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 980px) {
  .hero-grid { grid-template-columns: 1.1fr 1fr; }
  .hero { padding: 110px 0 80px; }
}
.hero h1 strong { color: var(--brand); }
.hero-sub { font-size: 1.15rem; color: var(--muted); max-width: 560px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 18px;
  margin-top: 28px; padding-top: 22px;
  border-top: 1px solid var(--border);
  color: var(--muted); font-size: 0.92rem;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust svg { width: 16px; height: 16px; color: var(--success); }

.hero-visual {
  position: relative;
  padding: 30px;
  background: linear-gradient(160deg, var(--bg-2), var(--bg-3));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.hero-visual::before {
  content: "";
  position: absolute; inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,153,0,0.25), transparent 50%);
  pointer-events: none;
  -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  -webkit-mask-composite: xor; mask-composite: exclude;
  padding: 1px;
}
.cover-stack {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  align-items: end;
}
.cover-stack img {
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.06);
}
.cover-stack img:nth-child(2) { transform: translateY(-18px) scale(1.05); z-index: 2; }
.cover-stack img:nth-child(1) { transform: rotate(-3deg); }
.cover-stack img:nth-child(3) { transform: rotate(3deg); }
.hero-badge {
  position: absolute; top: -14px; right: 24px;
  background: var(--brand);
  color: #0b0d12;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 800; font-size: 0.78rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  box-shadow: 0 8px 22px rgba(255,153,0,0.45);
}

/* Section */
section { padding: 80px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head h2 strong { color: var(--brand); }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* Value grid */
.values {
  display: grid; gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .values { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .values { grid-template-columns: repeat(4, 1fr); } }
.value-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.value-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--brand-soft); color: var(--brand);
  display: grid; place-items: center; margin-bottom: 14px;
}
.value-icon svg { width: 22px; height: 22px; }
.value-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.value-card p { font-size: 0.95rem; color: var(--muted); margin: 0; }

/* Products */
.products {
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .products { grid-template-columns: repeat(3, 1fr); } }
.product {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.product:hover { transform: translateY(-3px); border-color: rgba(255,153,0,0.4); }
.product-cover {
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, #1a1f2c, #0f1218);
  display: grid; place-items: center;
  padding: 28px;
  border-bottom: 1px solid var(--border);
}
.product-cover img {
  max-height: 100%;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.5));
}
.product-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.product-tag {
  display: inline-block;
  font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--brand); font-weight: 700;
  margin-bottom: 8px;
}
.product h3 { font-size: 1.3rem; margin-bottom: 10px; }
.product-desc { color: var(--muted); font-size: 0.95rem; flex: 1; }
.product-meta {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin: 18px 0;
  font-size: 0.85rem; color: var(--muted);
}
.product-meta span { display: inline-flex; align-items: center; gap: 6px; }
.product-meta svg { width: 14px; height: 14px; color: var(--brand); }
.product-modules {
  margin: 0 0 22px;
  padding-left: 0;
  list-style: none;
  font-size: 0.92rem;
  color: var(--text);
}
.product-modules li {
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
  display: flex; gap: 10px; align-items: flex-start;
}
.product-modules li:last-child { border-bottom: 0; }
.product-modules li::before {
  content: "▸"; color: var(--brand); flex-shrink: 0;
}
.product-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding-top: 18px; border-top: 1px solid var(--border);
}
.price {
  display: flex; align-items: baseline; gap: 8px;
}
.price-amount { font-size: 1.6rem; font-weight: 800; color: var(--text); }
.price-old { color: var(--muted); text-decoration: line-through; font-size: 0.95rem; }

/* Bundle / Pricing */
.bundle {
  background: linear-gradient(160deg, var(--bg-2), #0e1320);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.bundle::before {
  content: "";
  position: absolute; inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,153,0,0.6), transparent 40%, rgba(74,127,255,0.4) 100%);
  -webkit-mask: linear-gradient(#000,#000) content-box, linear-gradient(#000,#000);
  -webkit-mask-composite: xor; mask-composite: exclude;
  padding: 2px;
  pointer-events: none;
}
.bundle-grid {
  display: grid; gap: 36px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) { .bundle-grid { grid-template-columns: 1.2fr 0.8fr; } }
.bundle-badge {
  display: inline-block;
  background: var(--brand); color: #0b0d12;
  font-size: 0.75rem; font-weight: 800;
  padding: 6px 12px; border-radius: 6px;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 14px;
}
.bundle h2 { margin-bottom: 10px; }
.bundle h2 strong { color: var(--brand); }
.bundle-list { padding-left: 0; list-style: none; margin: 22px 0 28px; }
.bundle-list li {
  padding: 12px 0;
  display: flex; gap: 14px; align-items: flex-start;
  border-top: 1px solid var(--border);
}
.bundle-list li:first-child { border-top: 0; }
.bundle-list .check {
  width: 22px; height: 22px; flex-shrink: 0;
  border-radius: 50%; background: var(--brand-soft); color: var(--brand);
  display: grid; place-items: center;
}
.bundle-list .check svg { width: 12px; height: 12px; }
.bundle-list strong { color: var(--text); }
.bundle-list span { color: var(--muted); font-size: 0.92rem; display: block; }
.bundle-card {
  background: rgba(11,13,18,0.6);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  text-align: center;
}
.bundle-price {
  display: flex; align-items: baseline; justify-content: center; gap: 10px; margin-bottom: 6px;
}
.bundle-price .currency { font-size: 1.2rem; color: var(--muted); font-weight: 700; }
.bundle-price .amount { font-size: 3.4rem; font-weight: 900; color: var(--brand); letter-spacing: -0.04em; }
.bundle-strike { color: var(--muted); text-decoration: line-through; font-size: 1rem; }
.bundle-savings {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.85rem; font-weight: 700;
  color: var(--success);
  background: rgba(52, 211, 153, 0.1);
  padding: 4px 10px; border-radius: 6px;
}
.bundle-card .btn { margin-top: 22px; }
.bundle-foot {
  margin-top: 16px;
  font-size: 0.82rem; color: var(--muted);
  display: flex; flex-direction: column; gap: 6px;
}
.bundle-foot span { display: inline-flex; align-items: center; gap: 6px; justify-content: center; }
.bundle-foot svg { width: 14px; height: 14px; color: var(--success); }

/* Individual pricing */
.pricing {
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .pricing { grid-template-columns: repeat(3, 1fr); } }
.price-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
}
.price-card h3 { font-size: 1.2rem; margin-bottom: 6px; }
.price-card .sub { color: var(--muted); font-size: 0.92rem; margin-bottom: 22px; }
.price-card .big {
  font-size: 2.4rem; font-weight: 900; color: var(--text); letter-spacing: -0.03em;
}
.price-card .big small { color: var(--muted); font-size: 1rem; font-weight: 600; }
.price-card ul { padding-left: 0; list-style: none; margin: 22px 0 26px; text-align: left; }
.price-card ul li {
  padding: 8px 0;
  font-size: 0.95rem;
  display: flex; gap: 10px; align-items: flex-start;
  color: var(--muted);
}
.price-card ul li::before { content: "✓"; color: var(--brand); font-weight: 800; }

/* Guarantee */
.guarantee {
  display: grid; gap: 28px;
  grid-template-columns: 1fr;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  align-items: center;
}
@media (min-width: 800px) { .guarantee { grid-template-columns: 130px 1fr; } }
.guarantee-shield {
  width: 130px; height: 130px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-soft), transparent);
  border: 2px solid rgba(255,153,0,0.35);
  display: grid; place-items: center;
  color: var(--brand);
  margin: 0 auto;
}
.guarantee-shield svg { width: 60px; height: 60px; }
.guarantee h3 { font-size: 1.4rem; }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  padding: 4px 22px;
  transition: border-color 0.2s ease;
}
.faq details[open] { border-color: rgba(255,153,0,0.4); }
.faq summary {
  cursor: pointer;
  padding: 18px 0;
  font-weight: 700;
  font-size: 1rem;
  list-style: none;
  display: flex; justify-content: space-between; gap: 18px; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-size: 1.6rem; font-weight: 400; color: var(--brand);
  line-height: 1; transition: transform 0.2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); padding-bottom: 18px; margin: 0; }

/* Final CTA */
.final-cta {
  text-align: center;
  background: linear-gradient(160deg, var(--bg-2), var(--bg-3));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 60px 28px;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,153,0,0.15), transparent 60%);
  pointer-events: none;
}
.final-cta > * { position: relative; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  background: #07090d;
  padding: 50px 0 30px;
  margin-top: 60px;
}
.footer-grid {
  display: grid; gap: 36px;
  grid-template-columns: 1fr;
}
@media (min-width: 860px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; } }
.site-footer h4 {
  font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text); margin-bottom: 14px; font-weight: 700;
}
.site-footer p, .site-footer li, .site-footer a { color: var(--muted); font-size: 0.92rem; }
.site-footer ul { padding: 0; list-style: none; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer a:hover { color: var(--text); }
.digital-notice {
  background: rgba(255,153,0,0.06);
  border: 1px solid rgba(255,153,0,0.2);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.88rem; color: var(--muted);
  margin-top: 18px;
  display: flex; gap: 10px; align-items: flex-start;
}
.digital-notice svg { width: 18px; height: 18px; color: var(--brand); flex-shrink: 0; margin-top: 1px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 36px; padding-top: 22px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  font-size: 0.85rem; color: var(--muted);
}

/* Generic page (policies) */
.page {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}
.page h1 { font-size: 2.2rem; margin-bottom: 8px; }
.page .updated { color: var(--muted); font-size: 0.9rem; margin-bottom: 30px; }
.page h2 { font-size: 1.3rem; margin: 36px 0 10px; }
.page p, .page li { color: var(--muted); }
.page strong { color: var(--text); }
.page ul { padding-left: 22px; }
.page li { margin-bottom: 8px; }
.page a { color: var(--brand-2); }

/* Inside The Members Area */
.inside-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 20px;
  margin-top: 44px;
}
.inside-card {
  margin: 0;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.inside-card:hover {
  transform: translateY(-3px);
  border-color: var(--brand-soft);
}
.inside-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  flex: 1 1 auto;
  min-height: 0;
}
.inside-card figcaption {
  padding: 14px 18px;
  color: var(--muted);
  font-size: 0.92rem;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}
.inside-tall {
  grid-column: 2;
  grid-row: 1 / span 2;
}
.inside-tall img {
  height: 100%;
  object-fit: cover;
}
.inside-wide {
  grid-column: 1 / -1;
}
@media (max-width: 760px) {
  .inside-grid { grid-template-columns: 1fr; }
  .inside-tall, .inside-wide { grid-column: auto; grid-row: auto; }
  .inside-tall img { height: auto; }
}

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
