/* =================================================================
   EDG3 TRADES — one-page site styles
   -----------------------------------------------------------------
   BRAND PALETTE (dark theme, black background).
   Ordered most-used → least-used, per Chad:
     royalBlue      #4169E1   primary accent (buttons, links, glows)
     imperialPurple #4B0082   secondary (hover/depth, gradients)
     white          #FFFFFF   text
     linePurple     #be7dec   tertiary accent (link hover, soft highlights)
     cyan           #00c3ff   highlight pops
     pink           #ff0062   used sparingly (badges/attention)
   Change a value here and the whole site updates.
   ================================================================= */
:root {
  --bg:        #000000;   /* black background            */
  --surface:   #0c0e16;   /* cards / alt sections (slight blue-black) */
  --surface-2: #11131f;   /* nested surfaces             */
  --text:      #ffffff;   /* main text                   */
  --muted:     #aab2c5;   /* secondary text              */

  --royal:     #4169e1;   /* primary accent              */
  --imperial:  #4b0082;   /* secondary                   */
  --linepurple:#be7dec;   /* tertiary accent             */
  --cyan:      #00c3ff;   /* highlight                   */
  --pink:      #ff0062;   /* sparing attention           */

  --accent:    var(--royal);
  --border: rgba(255,255,255,0.10);
  --radius: 14px;
  --maxw: 1040px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
h1, h2, h3 { line-height: 1.2; margin: 0 0 .4em; color: #fff; }
a { color: var(--royal); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--linepurple); }
.accent {
  background: linear-gradient(90deg, var(--royal), var(--linepurple));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
code { background: rgba(255,255,255,.08); padding: .1em .4em; border-radius: 6px; font-size: .9em; color: var(--linepurple); }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  background: var(--royal);
  color: #fff;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .08s ease, background .15s ease, box-shadow .15s ease;
  box-shadow: 0 6px 20px rgba(65,105,225,.30);
}
.btn:hover { background: var(--imperial); color: #fff; transform: translateY(-1px); box-shadow: 0 8px 26px rgba(75,0,130,.45); }
.btn-lg { padding: 15px 30px; font-size: 1.05rem; }
.btn-sm { padding: 8px 16px; font-size: .9rem; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { font-weight: 800; font-size: 1.25rem; letter-spacing: .5px; color: #fff; }
.brand-accent { color: var(--royal); }
.nav { display: flex; align-items: center; gap: 22px; }
.nav a { color: var(--muted); font-weight: 600; }
.nav a:hover { color: #fff; }
.nav a.btn { color: #fff; }

/* ---------- hero ---------- */
.hero {
  padding: 90px 0 70px;
  background:
    radial-gradient(1100px 480px at 72% -10%, rgba(65,105,225,.22), transparent 60%),
    radial-gradient(900px 460px at 12% 10%, rgba(75,0,130,.28), transparent 62%),
    var(--bg);
}
.eyebrow { color: var(--cyan); font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; font-size: .8rem; margin: 0 0 14px; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
.lede { color: var(--muted); font-size: 1.2rem; max-width: 660px; margin: 18px 0 30px; }
.lede strong { color: #fff; }
.hero-cta { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.link-quiet { color: var(--muted); font-weight: 600; }
.link-quiet:hover { color: #fff; }

/* ---------- sections ---------- */
.section { padding: 70px 0; }
.section-alt { background: var(--surface); }
.section h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 28px; }
.note { color: var(--muted); margin-top: 24px; }

/* ---------- cards ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color .15s ease, transform .1s ease;
}
.card:hover { border-color: var(--royal); transform: translateY(-2px); }
.section-alt .card { background: var(--surface-2); }
.card h3 { font-size: 1.15rem; }
.card p { color: var(--muted); margin: 0; }
.card-feature { border-color: var(--royal); position: relative; box-shadow: 0 0 0 1px rgba(65,105,225,.35), 0 10px 30px rgba(75,0,130,.25); }
.badge {
  position: absolute; top: -11px; left: 24px;
  background: var(--pink); color: #fff;
  font-size: .72rem; font-weight: 800; letter-spacing: .5px;
  padding: 4px 10px; border-radius: 999px; text-transform: uppercase;
}

/* ---------- steps ---------- */
.steps { list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.steps li { position: relative; padding-top: 8px; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--royal), var(--imperial));
  color: #fff; font-weight: 800; margin-bottom: 12px;
}
.steps h3 { font-size: 1.1rem; }
.steps p { color: var(--muted); margin: 0; }

/* ---------- pricing embed ---------- */
stripe-pricing-table { display: block; margin-top: 10px; }

/* hot-pink cue pointing at the Monthly/Quarterly/Yearly toggle (sits above the Stripe table) */
.billing-cue-wrap { text-align: center; margin: 26px 0 6px; }
.billing-cue {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 22px;
  border-radius: 999px;                 /* pill, matches button shape */
  border: 2px solid var(--pink);
  background: rgba(255, 0, 98, 0.10);
  color: #fff; font-weight: 700; font-size: 1rem; line-height: 1.2;
  box-shadow: 0 0 16px rgba(255, 0, 98, 0.35);
  animation: cuePulse 2s ease-in-out infinite;
}
.billing-cue strong { color: #fff; font-weight: 800; }
@keyframes cuePulse {
  0%, 100% { box-shadow: 0 0 14px rgba(255, 0, 98, 0.30); }
  50%      { box-shadow: 0 0 26px rgba(255, 0, 98, 0.60); }
}
@media (max-width: 560px) { .billing-cue { font-size: .9rem; padding: 10px 16px; } }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--border); padding: 40px 0 60px; background: var(--bg); }
.disclaimer { color: var(--muted); font-size: .85rem; max-width: 820px; }
.foot-links { color: var(--muted); font-size: .9rem; margin-top: 18px; }
.copyright { color: var(--muted); font-size: .8rem; margin-top: 10px; }

/* ---------- responsive ---------- */
@media (max-width: 560px) {
  .nav { gap: 14px; }
  .nav a:not(.btn) { display: none; }
  .hero { padding: 64px 0 50px; }
}
