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

:root {
  --bg:        #0a0a0a;
  --bg2:       #0f0f0f;
  --bg3:       #141414;
  --green:     #1a4a2e;
  --green-l:   #22633c;
  --green-b:   #2d7a4a;
  --gold:      #d4af37;
  --gold-l:    #e8c84a;
  --white:     #f0f0f0;
  --gray:      #888;
  --border:    rgba(212,175,55,.15);
  --border2:   rgba(255,255,255,.06);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 3px; }

/* ── HEADER ── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border2);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  transition: background .3s;
}

.logo {
  display: flex; align-items: center; gap: 0;
  font-size: 1.25rem; font-weight: 700; letter-spacing: -.02em;
  color: var(--white); text-decoration: none; white-space: nowrap;
}
.logo .gold { color: var(--gold); }
.logo img { width: 18px; height: auto; display: inline-block; vertical-align: middle; margin: 0 1px; }

nav { display: flex; align-items: center; gap: 2rem; }
nav a {
  color: var(--gray); text-decoration: none; font-size: .875rem;
  font-weight: 500; letter-spacing: .01em;
  transition: color .2s;
}
nav a:hover { color: var(--gold); }
nav a.active { color: var(--gold); }

.nav-cta {
  background: var(--green); color: var(--white) !important;
  padding: .45rem 1.1rem; border-radius: 6px;
  font-weight: 600 !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--green-l) !important; color: var(--white) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ── MOBILE NAV ── */
@media (max-width: 768px) {
  nav { display: none; position: fixed; top: 68px; left: 0; right: 0;
        background: rgba(10,10,10,.98); flex-direction: column; gap: 0;
        padding: 1.5rem 5%; border-bottom: 1px solid var(--border2); }
  nav.open { display: flex; }
  nav a { padding: .7rem 0; font-size: 1rem; border-bottom: 1px solid var(--border2); }
  nav a:last-child { border-bottom: none; }
  .hamburger { display: flex; }
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 5% 80px;
  position: relative; overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(26,74,46,.22) 0%, transparent 65%),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(212,175,55,.06) 0%, transparent 55%);
}

.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
}

.hero-inner { position: relative; z-index: 1; max-width: 780px; }

.hero-logo { width: 100%; max-width: 640px; height: auto; display: block; margin: 0 auto 2rem; }

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(212,175,55,.08); border: 1px solid rgba(212,175,55,.25);
  color: var(--gold); font-size: .78rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .35rem .9rem; border-radius: 99px; margin-bottom: 2rem;
}
.hero-badge::before { content: ''; display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

h1.hero-title {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 700; letter-spacing: -.03em; line-height: 1.12;
  margin-bottom: 1.25rem;
}

.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem; border-radius: 8px;
  font-family: inherit; font-size: .9rem; font-weight: 600;
  cursor: pointer; text-decoration: none; border: none;
  transition: all .2s; letter-spacing: .01em;
}
.btn-primary { background: var(--gold); color: #0a0a0a; }
.btn-primary:hover { background: var(--gold-l); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,175,55,.3); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.2); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: var(--green-l); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(26,74,46,.4); }
.btn-green-outline { background: transparent; color: var(--gold); border: 1.5px solid var(--border); }
.btn-green-outline:hover { border-color: var(--gold); background: rgba(212,175,55,.05); transform: translateY(-2px); }

/* ── SECTIONS ── */
section { padding: 100px 5%; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-label {
  display: inline-block;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: .75rem;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700; letter-spacing: -.03em; line-height: 1.15;
  margin-bottom: 1.25rem;
}

.lead {
  font-size: 1.05rem; color: rgba(240,240,240,.65);
  max-width: 600px; line-height: 1.7;
}

/* ── ABOUT / MISSION ── */
#about, #mission { background: var(--bg2); border-top: 1px solid var(--border2); border-bottom: 1px solid var(--border2); }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; gap: 2rem; } }

.about-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat-card {
  background: var(--bg3); border: 1px solid var(--border2);
  border-radius: 10px; padding: 1.25rem;
}
.stat-card .num { font-size: 1.8rem; font-weight: 700; color: var(--gold); }
.stat-card .label { font-size: .8rem; color: var(--gray); margin-top: .15rem; }

/* ── DIVIDER ── */
.divider {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px; margin: 1.5rem 0;
}

/* ── PRODUCT / PROGRAM TAGS ── */
.aurum-header { margin-bottom: 3.5rem; }
.product-tag {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(26,74,46,.3); border: 1px solid rgba(45,122,74,.4);
  color: #4eca7b; font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .3rem .8rem; border-radius: 99px; margin-bottom: 1rem;
}
.product-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: #4eca7b; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem; margin: 2.5rem 0 3rem;
}
.feature-item {
  display: flex; align-items: flex-start; gap: .75rem;
  background: var(--bg3); border: 1px solid var(--border2);
  border-radius: 10px; padding: 1.1rem;
  transition: border-color .2s, transform .2s;
}
.feature-item:hover { border-color: rgba(212,175,55,.3); transform: translateY(-3px); }
.feature-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(26,74,46,.4); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1rem;
}
.feature-item p { font-size: .85rem; color: rgba(240,240,240,.75); font-weight: 500; }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1020px; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .pricing-grid { grid-template-columns: 1fr; } }

.pricing-card.funded-tier {
  border-color: rgba(212,175,55,.45);
  background: linear-gradient(135deg, rgba(212,175,55,.08) 0%, rgba(10,10,10,0) 60%), var(--bg3);
}
.pricing-card.funded-tier::before {
  content: 'PREMIUM';
  position: absolute; top: 1.25rem; right: -2.2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-l)); color: #0a0a0a;
  font-size: .6rem; font-weight: 800; letter-spacing: .1em;
  padding: .2rem 3rem; transform: rotate(35deg);
}

.pricing-card {
  background: var(--bg3); border: 1px solid var(--border2);
  border-radius: 14px; padding: 2rem;
  position: relative; overflow: hidden;
  transition: border-color .25s, transform .25s;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured {
  border-color: rgba(212,175,55,.35);
  background: linear-gradient(135deg, rgba(26,74,46,.18) 0%, rgba(10,10,10,0) 60%), var(--bg3);
}
.pricing-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute; top: 1.25rem; right: -2.2rem;
  background: var(--gold); color: #0a0a0a;
  font-size: .6rem; font-weight: 800; letter-spacing: .1em;
  padding: .2rem 3rem; transform: rotate(35deg);
}
.pricing-tier { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }
.pricing-price { font-size: 2.5rem; font-weight: 700; letter-spacing: -.04em; margin-bottom: .25rem; }
.pricing-price span { font-size: .9rem; color: var(--gray); font-weight: 400; }
.pricing-desc { font-size: .85rem; color: var(--gray); margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border2); }
.pricing-features { list-style: none; margin-bottom: 1.75rem; display: flex; flex-direction: column; gap: .65rem; }
.pricing-features li { font-size: .85rem; color: rgba(240,240,240,.8); display: flex; align-items: flex-start; gap: .5rem; }
.pricing-features li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* ── FUNDED ── */
#funded { background: var(--bg2); border-top: 1px solid var(--border2); border-bottom: 1px solid var(--border2); }

.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
@media (max-width: 768px) { .split-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

.steps-list { display: flex; flex-direction: column; gap: 1rem; }
.step-item {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--bg3); border: 1px solid var(--border2);
  border-radius: 10px; padding: 1rem 1.25rem;
}
.step-num {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  background: rgba(212,175,55,.12); border: 1px solid rgba(212,175,55,.4);
  color: var(--gold); font-weight: 700; font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
}
.step-item p { font-size: .9rem; color: rgba(240,240,240,.8); }

.signal-mock {
  background: linear-gradient(160deg, #0d2818 0%, #0a1f12 100%);
  border: 1px solid rgba(45,122,74,.5);
  border-radius: 16px; padding: 1.5rem 1.5rem 1.25rem;
  max-width: 440px; width: 100%; margin: 0 auto;
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.signal-mock .signal-header {
  font-size: .78rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: #4eca7b; margin-bottom: .9rem; padding-bottom: .75rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.signal-mock .signal-body { font-size: .88rem; line-height: 1.85; color: #e8f5ec; }
.signal-mock .signal-body strong { color: #fff; }
.signal-mock .signal-divider { border-top: 1px dashed rgba(255,255,255,.15); margin: 1rem 0; }
.signal-mock .status-safe { color: #4eca7b; font-weight: 700; }

.firms-row {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: .25rem 0; background: var(--bg3); border: 1px solid var(--border2);
  border-radius: 12px; padding: 1.1rem 1rem;
}
.firms-row .firm-name { padding: .4rem 1.25rem; font-weight: 700; font-size: .95rem; color: rgba(240,240,240,.85); }
.firms-row .firm-sep { color: var(--gray); opacity: .4; }
@media (max-width: 580px) { .firms-row .firm-name { padding: .4rem .75rem; font-size: .85rem; } }

.funded-tagline {
  text-align: center; max-width: 480px; margin: 2rem auto 0;
  font-size: 1rem; line-height: 1.9; font-weight: 500;
}
.funded-tagline .line-basic { color: var(--gray); }
.funded-tagline .line-pro { color: #4eca7b; }
.funded-tagline .line-funded { color: var(--gold); font-weight: 700; }

/* ── NEXUS ── */
#nexus {
  background: var(--bg2);
  border-top: 1px solid var(--border2); border-bottom: 1px solid var(--border2);
}

.nexus-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
@media (max-width: 768px) { .nexus-inner { grid-template-columns: 1fr; gap: 2.5rem; } }

.coming-soon-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(212,175,55,.08); border: 1px solid rgba(212,175,55,.25);
  color: var(--gold); font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .3rem .9rem; border-radius: 99px; margin-bottom: 1rem;
}

.nexus-visual {
  background: var(--bg3); border: 1px solid var(--border2);
  border-radius: 16px; padding: 2.5rem;
  position: relative; overflow: hidden;
}
.nexus-visual::before {
  content: '';
  position: absolute; top: -40%; left: -20%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(26,74,46,.15), transparent);
  pointer-events: none;
}

.ticker-row {
  display: flex; gap: .75rem; margin-bottom: .75rem; flex-wrap: wrap;
}
.ticker {
  background: var(--bg); border: 1px solid var(--border2);
  border-radius: 8px; padding: .5rem .85rem;
  font-size: .8rem; font-weight: 600; font-family: 'Space Grotesk', monospace;
}
.ticker .sym { color: var(--white); }
.ticker .val { color: var(--gold); margin-left: .4rem; }
.ticker .chg-up { color: #4eca7b; margin-left: .25rem; font-size: .72rem; }
.ticker .chg-dn { color: #e05555; margin-left: .25rem; font-size: .72rem; }

.nexus-markets {
  display: flex; flex-direction: column; gap: .5rem; margin-top: 1.5rem;
}
.market-row {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg); border: 1px solid var(--border2);
  border-radius: 8px; padding: .7rem 1rem;
}
.market-row .mname { font-size: .82rem; color: var(--gray); }
.market-row .mstatus {
  font-size: .72rem; font-weight: 700; letter-spacing: .05em;
  padding: .2rem .6rem; border-radius: 99px;
}
.mstatus.soon { background: rgba(212,175,55,.1); color: var(--gold); }

/* ── SERVICE / PROGRAM CARDS ── */
.section-inner-wide { max-width: 1240px; margin: 0 auto; }

.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem; margin-top: 3.5rem;
}

.service-card {
  background: var(--bg3); border: 1px solid var(--border2);
  border-radius: 16px; padding: 2.75rem 2.5rem;
  display: flex; flex-direction: column;
  transition: border-color .25s, transform .25s;
}
.service-card:hover { border-color: rgba(26,74,46,.5); transform: translateY(-4px); }

.service-icon {
  width: 64px; height: 64px; border-radius: 14px;
  background: rgba(26,74,46,.35); border: 1px solid rgba(45,122,74,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem; margin-bottom: 1.5rem;
}

.service-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 1rem; }
.service-card p { font-size: .95rem; color: rgba(240,240,240,.65); line-height: 1.8; flex: 1; margin-bottom: 2rem; }

/* ── CONTACT ── */
#contact {
  background: var(--bg2);
  border-top: 1px solid var(--border2);
}

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

.contact-item {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.25rem;
}
.contact-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(26,74,46,.3); border: 1px solid rgba(45,122,74,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.contact-item .label { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gold); font-weight: 700; margin-bottom: .2rem; }
.contact-item .val { font-size: .9rem; color: rgba(240,240,240,.75); }
.contact-item a { color: rgba(240,240,240,.75); text-decoration: none; }
.contact-item a:hover { color: var(--gold); }

/* ── FOOTER ── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border2);
  padding: 2.5rem 5%;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}

.footer-logo { font-size: 1rem; font-weight: 700; color: var(--white); }
.footer-copy { font-size: .8rem; color: var(--gray); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: .8rem; color: var(--gray); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }

/* ── FADE-IN ANIMATIONS ── */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }

/* ── GOLD LINE ACCENT ── */
.gold-line {
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .3; margin: 0;
}

/* ── MISC ── */
.text-gold { color: var(--gold); }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* ── FORMS / INTAKE ── */
.form-card {
  background: var(--bg3); border: 1px solid var(--border2);
  border-radius: 16px; padding: 2.5rem;
  max-width: 760px; margin: 0 auto;
}
@media (max-width: 580px) { .form-card { padding: 1.75rem 1.25rem; } }

.form-row { margin-bottom: 1.5rem; }
.form-row-split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 580px) { .form-row-split { grid-template-columns: 1fr; } }

.form-label {
  display: block; font-size: .78rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .5rem;
}
.form-label .optional { color: var(--gray); text-transform: none; font-weight: 500; letter-spacing: 0; margin-left: .35rem; }

.form-input, .form-select, .form-textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--border2);
  border-radius: 8px; padding: .75rem .9rem;
  font-family: inherit; font-size: .92rem; color: var(--white);
  transition: border-color .2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: rgba(212,175,55,.5);
}
.form-textarea { resize: vertical; min-height: 110px; }
.form-select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23d4af37' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .9rem center; padding-right: 2.25rem;
}
.form-hint { font-size: .8rem; color: var(--gray); margin-top: .4rem; }

.branch-fields { display: none; }
.branch-fields.visible { display: block; }

.checkbox-row { display: flex; align-items: flex-start; gap: .65rem; margin-bottom: 1.75rem; }
.checkbox-row input[type="checkbox"] { margin-top: .2rem; width: 16px; height: 16px; accent-color: var(--gold); flex-shrink: 0; }
.checkbox-row label { font-size: .85rem; color: rgba(240,240,240,.75); line-height: 1.5; }

.form-note {
  font-size: .82rem; color: var(--gray); margin-top: 1.25rem; text-align: center;
}

.form-success {
  display: none; text-align: center; padding: 2rem 0;
}
.form-success.visible { display: block; }
.form-success .icon { font-size: 2.5rem; margin-bottom: 1rem; }

.form-error {
  display: none; background: rgba(224,85,85,.1); border: 1px solid rgba(224,85,85,.35);
  color: #e05555; border-radius: 8px; padding: .85rem 1rem; font-size: .85rem; margin-bottom: 1.5rem;
}
.form-error.visible { display: block; }

/* ── TAG PILLS (industry lists) ── */
.tag-pills { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; }
.tag-pill {
  font-size: .82rem; font-weight: 500; color: rgba(240,240,240,.85);
  background: var(--bg2); border: 1px solid var(--border2);
  border-radius: 999px; padding: .5rem 1.1rem;
}
.tag-pill.secondary { color: var(--gray); border-color: var(--border2); background: transparent; }

/* ── FAQ ACCORDION ── */
.faq-list { display: flex; flex-direction: column; gap: .75rem; max-width: 760px; }
.faq-item {
  background: var(--bg2); border: 1px solid var(--border2); border-radius: 10px;
  padding: .25rem 1.5rem;
}
.faq-item summary {
  cursor: pointer; list-style: none; font-weight: 600; font-size: .98rem;
  padding: 1.1rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; color: var(--gold); font-size: 1.3rem; font-weight: 400; flex-shrink: 0;
  transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { font-size: .9rem; color: rgba(240,240,240,.7); padding-bottom: 1.25rem; margin: 0; }

/* ── PRICING CALLOUT (single line) ── */
.pricing-callout {
  max-width: 620px; margin: 0 auto; text-align: center;
  background: var(--bg2); border: 1px solid var(--border); border-radius: 14px;
  padding: 2rem 2rem;
}
.pricing-callout .amount { font-size: 1.6rem; font-weight: 700; color: var(--gold); margin-bottom: .35rem; }
.pricing-callout .fine { font-size: .85rem; color: var(--gray); }
