/* Strata Trading Styles */
:root {
  --bg: #020617;           /* page background - darker */
  --text: #e5e7eb;         /* primary text */
  --muted: #94a3b8;        /* secondary text */
  --muted-2: #7c8aa4;      /* tertiary text */
  --border: #0f1629;       /* subtle borders on dark - darker */
  --surface: #0a0f1e;      /* card surfaces - darker */
  --shadow: 0 1px 2px rgba(0,0,0,.35), 0 8px 30px rgba(0,0,0,.35);
  --accent: #22d3ee;       /* primary accent (cyan) */
  --accent-600: #0891b2;   /* hover accent (deeper cyan) */
  --success: #16a34a;
}

/* Custom Scrollbar */
/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
  border-left: 1px solid var(--border);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.3), rgba(34, 211, 238, 0.2));
  border-radius: 6px;
  border: 2px solid var(--bg);
  transition: background 0.2s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.5), rgba(34, 211, 238, 0.4));
  box-shadow: 0 0 10px rgba(34, 211, 238, 0.3);
}

::-webkit-scrollbar-thumb:active {
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.6), rgba(34, 211, 238, 0.5));
}

::-webkit-scrollbar-corner {
  background: var(--bg);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(34, 211, 238, 0.3) var(--bg);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  isolation: isolate;
  position: relative;
}

/* Background image layer */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  background-image: url('bggrid3.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.15;
}

/* Ambient accent glow overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(800px 600px at 15% -10%, rgba(34,211,238,.08), transparent 60%),
    radial-gradient(900px 700px at 85% -20%, rgba(14,165,165,.06), transparent 65%),
    radial-gradient(600px 500px at 50% 110%, rgba(34,211,238,.05), transparent 70%);
}

.container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 20px;
}

main > .container {
  padding-top: 145px;
}

/* Global focus styles */
a:focus-visible, button:focus-visible { outline: 2px solid #93c5fd; outline-offset: 2px; }

/* Top navigation wrapper */
.top-nav-wrapper {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  width: calc(100% - 40px);
  max-width: 1260px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  height: 100px;
  backdrop-filter: blur(22px);
  /* box-shadow: rgba(0, 0, 0, 0.5) 0px 10px 40px; */
  background: rgba(0, 8, 23, 0.10);
  border-width: 1px;
  border-style: solid;
  border-color: rgba(34, 211, 238, 0.1);
  border-image: initial;
  border-radius: 14px;
}

/* Logo - separate from navbar */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 31;
  text-decoration: none;
}
.brand-logo .logo {
  height: 48px;
  width: auto;
  filter: brightness(1.15);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-left: -5px;
  margin-top: 5px;
}
.brand-line-1 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--text);
}
.brand-line-2 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--muted);
}

/* Header */
.site-header {
  background: rgba(0, 8, 23, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,.5);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 24px;
}
.main-nav { display: none; gap: 18px; }
.main-nav a { color: var(--muted); text-decoration: none; font-weight: 500; position: relative; padding-bottom: 6px; }
.main-nav a:hover { color: var(--text); }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: linear-gradient(90deg, #22d3ee, #0ea5a5); transition: width .2s ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after, .main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--text); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-actions a { color: var(--text); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.main-nav a[href$="strategies.html"], .main-nav a[href$="addons.html"], .main-nav a[href$="bundles.html"] { display: none !important; } /* temporarily hidden for Paddle compliance */
.header-actions .cart { display: none; } /* Hidden until store is ready */
.avatar-circle { width: 28px; height: 28px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; background: var(--surface); border: 1px solid var(--border); font-size: 12px; color: var(--muted); }

@media (min-width: 860px) { .main-nav { display: inline-flex; } }

/* Mobile menu toggle */
.nav-toggle { display: none; background: transparent; border: 1px solid var(--border); color: var(--text); padding: 8px 10px; border-radius: 8px; font-weight: 700; }
@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; align-items: center; gap: 8px; }
  .site-header.open .main-nav {
    display: flex;
    position: fixed;
    inset: 64px 0 0 0;
    flex-direction: column;
    padding: 16px 24px;
    background: var(--surface);
    border-top: 1px solid var(--border);
    overflow-y: auto;
    gap: 14px;
  }
}

/* Header shadow on scroll */
.site-header.scrolled { box-shadow: 0 10px 30px rgba(0,0,0,.35); }

/* Breadcrumb */
.breadcrumb { color: var(--muted); margin: 22px 0 14px; font-size: 14px; display: flex; align-items: center; gap: 8px; }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--text); }
.sep { opacity: .6; }

/* Hero */
.hero { display: grid; gap: 22px; grid-template-columns: 1.15fr 1fr; align-items: start; }
.hero-media { display: flex; position: relative; min-height: 400px; }
.hero-product-image { 
  width: 100%; 
  height: auto; 
  border-radius: 12px; 
  border: 1px solid rgba(34,211,238,.2); 
  box-shadow: 0 20px 60px rgba(34,211,238,.15), 0 8px 24px rgba(0,0,0,.3); 
  display: block;
  object-fit: cover;
}
.chart { background: linear-gradient(180deg, #0d1b3a, #0b1220); border-radius: 10px; border: 1px solid var(--border); box-shadow: 0 16px 40px rgba(14,165,165,.10), var(--shadow); width: 100%; height: 100%; object-fit: cover; display: block; }
.collage-a { grid-column: 1 / -1; }
.collage-wide { grid-column: 1 / -1; }
.zoomable { cursor: zoom-in; }

.price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 8px 0 12px;
}
.market-move-pill {
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid rgba(34,211,238,.45);
  background: rgba(34,211,238,.08);
  color: var(--text);
  border-radius: 999px;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(2,6,23,.6);
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .1s ease;
}
.market-move-pill svg {
  color: var(--accent);
  filter: drop-shadow(0 4px 10px rgba(34,211,238,.4));
}
.market-move-pill:hover,
.market-move-pill:focus-visible {
  background: rgba(34,211,238,.18);
  border-color: rgba(34,211,238,.7);
  box-shadow: 0 16px 36px rgba(34,211,238,.25);
  transform: translateY(-1px);
}
.market-move-card {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(34,211,238,.45);
  background: rgba(2,6,23,.5);
  box-shadow: 0 25px 60px rgba(0,0,0,.55), 0 0 60px rgba(34,211,238,.25);
  backdrop-filter: blur(2px);
  z-index: 2;
  max-width: 360px;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .1s ease;
}
.market-move-card:hover,
.market-move-card:focus-visible {
  background: rgba(2,6,23,.75);
  border-color: rgba(34,211,238,.7);
  box-shadow: 0 28px 70px rgba(0,0,0,.65), 0 0 80px rgba(34,211,238,.35);
  transform: translateY(-2px);
  outline: none;
}
.market-move-card::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 0%, rgba(34,211,238,.5), transparent 55%), linear-gradient(140deg, rgba(8,145,178,.5), rgba(34,211,238,.2));
  z-index: -1;
  opacity: .7;
  filter: blur(20px);
}
.market-move-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.market-move-kicker {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #a5f3fc;
}
.market-move-copy strong {
  font-size: 16px;
  color: var(--text);
}
.market-move-date {
  font-size: 12px;
  color: var(--muted);
}
.market-move-thumb {
  width: 170px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(34,211,238,.5);
  box-shadow: 0 18px 40px rgba(14,165,165,.35);
  background: #020617;
}

/* Promotional Badge */
.promo-badge {
  position: absolute;
  top: 50%;
  right: -2%;
  z-index: 10;
  transform: rotate(8deg);
  pointer-events: none;
}
.promo-star {
  position: absolute;
  top: -20px;
  left: -30px;
  font-size: 36px;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.3));
}
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(-15deg); }
  50% { transform: translateY(-10px) rotate(-20deg); }
}
.promo-badge-content {
  background: linear-gradient(135deg, #22d3ee, #0ea5a5);
  border-radius: 20px;
  padding: 24px 32px;
  box-shadow: 0 20px 60px rgba(34,211,238,.45), 0 8px 24px rgba(0,0,0,.3);
  border: 3px solid rgba(255,255,255,.2);
  text-align: center;
  min-width: 240px;
}
.promo-text {
  font-size: 52px;
  font-weight: 900;
  line-height: 0.9;
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(0,0,0,.3);
  letter-spacing: -0.02em;
}
.promo-date {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  margin-top: 8px;
  letter-spacing: 0.02em;
  text-shadow: 1px 1px 4px rgba(0,0,0,.2);
}
.promo-subtext {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,.95);
  margin-top: 6px;
  font-style: italic;
}
.promo-btn {
  font-size: 18px;
  padding: 14px 24px;
  letter-spacing: 0.05em;
}

/* Hero wow polish */
.hero { position: relative; }
.hero::before {
  content: "";
  position: absolute;
  inset: -60px -40px -40px -60px;
  background:
    radial-gradient(480px 360px at 25% 15%, rgba(34,211,238,.18), transparent 60%),
    radial-gradient(520px 380px at 75% 10%, rgba(14,165,165,.16), transparent 65%);
  filter: blur(6px);
  z-index: -1;
}

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.9); display: none; align-items: center; justify-content: center; z-index: 1000; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,.5); cursor: zoom-out; }
.lightbox .close-btn, .lightbox .nav-btn { position: absolute; background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; width: 40px; height: 40px; display: grid; place-items: center; cursor: pointer; }
.lightbox .close-btn { top: 16px; right: 16px; font-size: 20px; line-height: 1; }
.lightbox .prev { left: 18px; top: 50%; transform: translateY(-50%); font-size: 26px; }
.lightbox .next { right: 18px; top: 50%; transform: translateY(-50%); font-size: 26px; }
@media (hover:hover) {
  .lightbox .close-btn:hover, .lightbox .nav-btn:hover { background: rgba(255,255,255,.2); }
}

.hero-info { position: sticky; top: 140px; align-self: start; }
.product-title { font-size: 36px; line-height: 1.2; margin: 6px 0 10px; color: var(--text); background: linear-gradient(135deg, #e5e7eb, #a5f3fc); -webkit-background-clip: text; background-clip: text; color: transparent; }
.product-tagline { color: var(--muted); margin: 0 0 12px; }
.price { font-size: 30px; font-weight: 800; color: var(--text); margin: 8px 0 18px; }
.price-old { text-decoration: line-through; color: var(--muted); font-size: 0.75em; opacity: 0.7; margin-right: 8px; }

/* Product badge */
.badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 10px; border-radius: 999px; font-weight: 700; font-size: 12px; letter-spacing: .02em; color: #0b1220; background: linear-gradient(135deg, #22d3ee, #0ea5a5); box-shadow: 0 6px 20px rgba(14,165,165,.35); border: 1px solid rgba(14,165,165,.55); }
.badge .dot { width: 6px; height: 6px; background: #0b1220; border-radius: 999px; display: inline-block; }

.btn { display: inline-flex; align-items: center; gap: 10px; border-radius: 9px; padding: 12px 16px; font-weight: 700; text-decoration: none; transition: background .2s ease, transform .1s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease; }
.btn.primary { background: linear-gradient(135deg, #0891b2, #0d9488); color: #fff; box-shadow: 0 8px 24px rgba(8,145,178,.35); border: 1px solid rgba(13,148,136,.5); }
.btn.primary:hover { background: linear-gradient(135deg, #0e7490, #0f766e); transform: translateY(-1px); box-shadow: 0 12px 32px rgba(8,145,178,.45); }
.btn:not(.primary) { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn:not(.primary):hover { background: rgba(34,211,238,.08); border-color: rgba(34,211,238,.35); }
.btn:disabled, .btn[disabled] { cursor: not-allowed; opacity: .6; }
.btn.primary:disabled, .btn.primary[disabled] { background: #9ca3af; border-color: #9ca3af; }
/* Anchor-based disabled state (set via JS) */
.btn.disabled, .btn[aria-disabled="true"] { cursor: not-allowed; opacity: .6; pointer-events: none; }
.btn.primary.disabled, .btn.primary[aria-disabled="true"] { background: #9ca3af; border-color: #9ca3af; }
input:invalid { border-color: #ef4444; }
.mini { color: var(--muted); font-size: 14px; }
.license-note { color: var(--muted-2); font-size: 12px; margin: 8px 0 12px; }
.quick-specs { display: flex; flex-wrap: wrap; gap: 10px 18px; color: var(--muted); padding: 0; margin: 10px 0 0; list-style: none; }

/* Money-back guarantee badge */
.guarantee-badge { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  margin: 16px 0; 
  padding: 16px 18px; 
  background: linear-gradient(135deg, rgba(34,211,238,0.12), rgba(14,165,165,0.08)); 
  border: 2px solid rgba(34,211,238,0.3); 
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(34,211,238,0.15);
}
.guarantee-badge svg { 
  flex-shrink: 0; 
  color: var(--accent); 
  filter: drop-shadow(0 2px 4px rgba(34,211,238,0.3));
}
.guarantee-badge div { 
  display: flex; 
  flex-direction: column; 
  gap: 4px; 
}
.guarantee-badge strong { 
  color: var(--text); 
  font-size: 15px; 
  font-weight: 700; 
  letter-spacing: 0.01em;
}
.guarantee-badge span { 
  color: var(--muted); 
  font-size: 13px; 
  line-height: 1.4;
}

/* Inline guarantee badge for hero */
.guarantee-badge-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}
.guarantee-badge-inline svg {
  flex-shrink: 0;
  color: var(--accent);
}
.guarantee-badge-inline strong {
  color: var(--text);
  font-weight: 700;
}

/* CTA pulse for hero */
@keyframes pulseGlow {
  0% { box-shadow: 0 8px 24px rgba(34,211,238,.25); transform: translateY(0); }
  100% { box-shadow: 0 16px 48px rgba(34,211,238,.48); transform: translateY(-2px); }
}
.hero .btn.primary { animation: pulseGlow 3.2s ease-in-out infinite alternate; }
@media (prefers-reduced-motion: reduce) { .hero .btn.primary { animation: none; } }

/* Larger desktop title */
@media (min-width: 1024px) { .product-title { font-size: 44px; } }

/* Increase spacing between chart collage and hero text on desktop */
@media (min-width: 1024px) { .hero { gap: 36px; } }

/* Product details */
.product-details { margin: 28px 0 18px; }
.product-details h2 { margin: 0 0 12px; }
.product-details p { color: var(--muted); }
.details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.details-grid > div { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 16px; box-shadow: var(--shadow); }
.product-details h3 { margin: 6px 0 10px; }
.feature-chips { list-style: none; padding: 0; margin: 8px 0 4px; display: flex; flex-wrap: wrap; gap: 6px 10px; }
.feature-chips li { display: inline-flex; align-items: center; gap: 6px; padding: 5px 9px; border-radius: 999px; background: rgba(34,211,238,.10); border: 1px solid rgba(34,211,238,.25); color: var(--text); }
.feature-more { margin-top: 10px; }
.feature-more summary { list-style: none; cursor: pointer; padding: 10px 12px; font-weight: 700; color: var(--text); position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: 8px; }
.feature-more summary::-webkit-details-marker { display: none; }
.feature-more .content { padding: 10px 12px 0; }
.feature-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.feature-list .ico { color: var(--success); margin-right: 8px; }
.feature-list li { display: flex; align-items: start; gap: 8px; padding: 4px 2px 4px 8px; border-left: 2px solid rgba(34,211,238,.28); }

/* Specs */
.specs { margin: 32px 0; }
.specs h2 { margin: 0 0 16px; }
.specs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.spec-card { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 16px; box-shadow: var(--shadow); }
.spec-card h4 { margin: 6px 0 10px; }
.spec-card ul { margin: 0; padding-left: 18px; color: var(--muted); }
.spec-card code { background: rgba(34,211,238,.14); padding: 2px 6px; border-radius: 6px; color: #cbd5e1; }

/* Included */
.whats-included { margin: 36px 0 64px; }
.included { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; grid-template-columns: repeat(2, 1fr); }
.included .ico { color: var(--success); margin-right: 8px; }
.included li { display: flex; gap: 8px; }

/* Accordion FAQ */
.faq.accordion { margin-bottom: 80px; }
.faq.accordion details { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.faq.accordion details + details { margin-top: 10px; }
.faq.accordion summary { list-style: none; cursor: pointer; padding: 14px 16px; font-weight: 700; color: var(--text); position: relative; outline: none; }
.faq.accordion summary::-webkit-details-marker { display: none; }
.faq.accordion summary::after { content: '\25B8'; position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--muted); transition: transform .2s ease; }
.faq.accordion details[open] summary::after { transform: translateY(-50%) rotate(90deg); }
.faq.accordion .content { padding: 0 16px 16px; color: var(--muted); border-top: 1px solid var(--border); }

/* Compare Plans */
.compare { margin: 32px 0 48px; }
.compare h2 { margin: 0 0 14px; }
.compare .wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: 12px; background: var(--surface); box-shadow: var(--shadow); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 760px; }
.compare-table th, .compare-table td { padding: 14px 12px; border-bottom: 1px solid var(--border); }
.compare-table th { text-align: center; color: var(--text); background: rgba(2,6,23,.5); position: sticky; top: 0; z-index: 1; font-size: 18px; font-weight: 800; }
.compare-table th:first-child { text-align: left; }
.compare-table th small { display: block; color: var(--muted); font-weight: 400; font-size: 15px; margin-top: 4px; }
.compare-table td { color: var(--muted); }
.compare-table td.c { text-align: center; }
.compare-table tbody tr:hover { background: rgba(34,211,238,.05); }
.check { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 999px; background: rgba(34,211,238,.12); color: #a5f3fc; border: 1px solid rgba(34,211,238,.35); font-weight: 900; }

/* Plans */
.plans { margin: 32px 0 48px; }
.plans h2 { margin: 0 0 16px; }
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.plan-card { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 16px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 12px; transition: transform .12s ease, box-shadow .2s ease, border-color .2s ease; }
.plan-card h3 { margin: 6px 0 2px; }
.plan-price { font-size: 24px; font-weight: 800; }
.plan-features { margin: 0; padding-left: 18px; color: var(--muted); flex: 1; }
.plan-card:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(34,211,238,.18); border-color: rgba(34,211,238,.45); }

/* Plan tags */
.plan-card .tag { align-self: flex-start; font-size: 11px; letter-spacing: .04em; padding: 4px 8px; border-radius: 999px; background: rgba(34,211,238,.12); color: #a5f3fc; border: 1px solid rgba(34,211,238,.35); font-weight: 700; }

/* Footer */
.site-footer { border-top: 1px solid var(--border); background: rgba(2,6,23,.5); padding: 16px 0 56px; }
.site-footer .container { display: flex; flex-direction: column; gap: 20px; align-items: center; }
.site-footer p { color: var(--muted-2); margin: 0; text-align: center; }
.social-links { display: flex; gap: 16px; align-items: center; }
.social-links a { color: var(--muted); transition: color 0.2s ease, transform 0.2s ease; display: inline-flex; align-items: center; justify-content: center; }
.social-links a:hover { color: var(--accent); transform: translateY(-2px); }
.social-links svg { width: 24px; height: 24px; }

/* Paddle Checkout Overlay Styling */
.paddle-frame-container,
[class*="paddle"] iframe,
iframe[src*="paddle"] {
  border-radius: 16px !important;
  overflow: hidden !important;
  box-shadow: 0 0 0 2px rgba(34, 211, 238, 0.4), 
              0 0 40px rgba(34, 211, 238, 0.3),
              0 20px 60px rgba(34, 211, 238, 0.2), 
              0 10px 40px rgba(0, 0, 0, 0.8) !important;
}

.paddle-overlay,
[class*="paddle-overlay"] {
  backdrop-filter: blur(8px) !important;
}

.paddle-checkout-container,
[class*="paddle-checkout"],
[class*="wide-overlay"] {
  border-radius: 16px !important;
  border: 2px solid rgba(34, 211, 238, 0.4) !important;
  box-shadow: 0 0 60px rgba(34, 211, 238, 0.35),
              0 0 120px rgba(34, 211, 238, 0.2),
              0 20px 60px rgba(0, 0, 0, 0.8) !important;
}

/* Try to target Paddle iframe wrapper */
div[class*="paddle"] {
  border-radius: 16px !important;
}

/* Additional Paddle overlay targeting */
.checkout-container,
.paddle-billing-checkout,
[data-paddle],
[id*="paddle"] {
  border-radius: 16px !important;
  box-shadow: 0 0 0 2px rgba(34, 211, 238, 0.4),
              0 0 60px rgba(34, 211, 238, 0.3),
              0 20px 80px rgba(0, 0, 0, 0.9) !important;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-info { position: static; }
  .hero-media { min-height: 300px; }
  .market-move-card {
    position: static;
    margin: 18px auto 0;
    width: 100%;
    justify-content: space-between;
  }
  .market-move-thumb {
    width: min(60vw, 220px);
  }
  .details-grid { grid-template-columns: 1fr; }
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-badge {
    top: 45%;
    right: -5%;
    transform: rotate(6deg) scale(0.85);
  }
  .promo-star {
    font-size: 30px;
    top: -16px;
    left: -24px;
  }
  .promo-badge-content {
    padding: 20px 28px;
    min-width: 200px;
  }
  .promo-text {
    font-size: 44px;
  }
  .promo-date {
    font-size: 20px;
  }
  .promo-subtext {
    font-size: 14px;
  }
}
@media (max-width: 680px) {
  .specs-grid { grid-template-columns: 1fr; }
  .included { grid-template-columns: 1fr; }
  .plan-grid { grid-template-columns: 1fr; }
  .hero-media { min-height: 250px; }
  .market-move-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .market-move-thumb {
    width: 100%;
  }
  .price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .promo-badge {
    top: 40%;
    right: -8%;
    transform: rotate(6deg) scale(0.65);
  }
  .promo-star {
    font-size: 24px;
    top: -12px;
    left: -18px;
  }
  .promo-badge-content {
    padding: 16px 22px;
    min-width: 160px;
  }
  .promo-text {
    font-size: 36px;
  }
  .promo-date {
    font-size: 16px;
  }
  .promo-subtext {
    font-size: 12px;
  }
}
