/* ===========================================================
   getpowertrades.com — independent review site
   Design system: "Ticker" — amber/bronze on near-black,
   candlestick-chart motifs as structural signature.
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@600;700;800&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@500;600&display=swap');

:root{
  --accent: #FFB020;
  --accent2: #FFD37A;
  --accent-dark: #B8790A;

  --bg: #0a0a0d;
  --bg-elev: #131318;
  --bg-elev-2: #1a1a21;
  --bg-elev-3: #1f1f27;
  --border: rgba(255,255,255,0.09);
  --border-strong: rgba(255,255,255,0.16);

  --text: #eeeef2;
  --text-dim: #a3a3ad;
  --text-faint: #6b6b76;

  --up: #FFB020;      /* candle up = accent, ties to brand */
  --down: #5b5f70;    /* candle down = muted slate, avoids red/green cliché */
  --star: #FFC94A;
  --danger: #f3a6a6;
  --danger-bg: rgba(243,166,166,0.08);
  --safe: #8fd6b4;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;

  --maxw: 1180px;
  --shadow: 0 20px 60px rgba(0,0,0,0.45);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
.mono{ font-family:'IBM Plex Mono', monospace; }

h1,h2,h3,h4{
  font-family:'Sora', sans-serif;
  font-weight:700;
  line-height:1.12;
  margin:0 0 .5em;
  letter-spacing:-0.01em;
}
p{ margin:0 0 1em; color: var(--text-dim); }

.wrap{ max-width: var(--maxw); margin:0 auto; padding:0 24px; }
section{ padding: 88px 0; position:relative; }
@media (max-width:760px){ section{ padding:56px 0; } }

.eyebrow{
  font-family:'IBM Plex Mono', monospace;
  font-size:.72rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color: var(--accent2);
  display:flex; align-items:center; gap:8px;
  margin-bottom:14px;
}
.eyebrow::before{
  content:''; width:14px; height:2px; background: var(--accent);
}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:14px 26px;
  border-radius: 100px;
  font-weight:600; font-size:.95rem;
  font-family:'Inter',sans-serif;
  cursor:pointer; border:1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space:nowrap;
}
.btn-primary{
  background: linear-gradient(135deg, var(--accent2), var(--accent) 60%, var(--accent-dark));
  color:#1a1206;
  box-shadow: 0 8px 24px rgba(255,176,32,0.25);
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 12px 30px rgba(255,176,32,0.35); }
.btn-ghost{
  background: transparent; border-color: var(--border-strong); color: var(--text);
}
.btn-ghost:hover{ border-color: var(--accent2); color: var(--accent2); }
.btn-sm{ padding:10px 18px; font-size:.85rem; }
.btn-block{ width:100%; }

/* ---------- NAV ---------- */
.nav{
  position: sticky; top:0; z-index:100;
  background: rgba(10,10,13,0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner{
  max-width: var(--maxw); margin:0 auto; padding: 14px 24px;
  display:flex; align-items:center; justify-content:space-between;
}
.nav-brand{ display:flex; align-items:center; gap:10px; font-family:'Sora'; font-weight:700; font-size:1.05rem; }
.nav-brand img{ width:32px; height:32px; border-radius:8px; }
.nav-links{ display:flex; gap:6px; align-items:center; }
.nav-links a{
  padding:9px 14px; border-radius:100px; font-size:.9rem; font-weight:500; color: var(--text-dim);
  transition: color .15s, background .15s;
}
.nav-links a:hover{ color: var(--text); background: var(--bg-elev-2); }
.nav-links a.active{ color: var(--accent2); }
.nav-cta{ display:flex; align-items:center; gap:14px; }
.hamburger{
  display:none; width:40px; height:40px; border-radius:10px; border:1px solid var(--border-strong);
  background: var(--bg-elev); align-items:center; justify-content:center; cursor:pointer;
}
.hamburger span, .hamburger span::before, .hamburger span::after{
  content:''; display:block; width:18px; height:2px; background: var(--text); position:relative;
  transition: transform .2s;
}
.hamburger span::before{ position:absolute; top:-6px; }
.hamburger span::after{ position:absolute; top:6px; }

.mobile-menu{
  display:none; position:fixed; inset:0 0 0 auto; width:78%; max-width:320px;
  background: var(--bg-elev); border-left:1px solid var(--border);
  z-index:200; padding:24px; transform: translateX(100%);
  transition: transform .25s ease; flex-direction:column; gap:4px;
}
.mobile-menu.open{ transform: translateX(0); display:flex; }
.mobile-menu a{ padding:14px 10px; border-bottom:1px solid var(--border); font-weight:500; }
.mobile-menu-close{ align-self:flex-end; background:none; border:none; color:var(--text); font-size:1.4rem; cursor:pointer; margin-bottom:10px; }
.scrim{ display:none; position:fixed; inset:0; background:rgba(0,0,0,0.5); z-index:199; }
.scrim.open{ display:block; }

@media (max-width:860px){
  .nav-links{ display:none; }
  .hamburger{ display:flex; }
}

/* ---------- HERO ---------- */
.hero{ padding-top:72px; padding-bottom:60px; position:relative; }
.hero-grid{
  display:grid; grid-template-columns: 1.1fr .9fr; gap:56px; align-items:center;
}
@media (max-width:900px){ .hero-grid{ grid-template-columns:1fr; } }

.hero h1{ font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
.hero .subhead{ font-size:1.08rem; max-width:520px; }
.cta-row{ display:flex; gap:12px; flex-wrap:wrap; margin: 26px 0 22px; }
.meta-line{
  display:flex; gap:18px; flex-wrap:wrap; align-items:center;
  font-family:'IBM Plex Mono', monospace; font-size:.82rem; color: var(--text-dim);
}
.meta-line b{ color: var(--text); }
.stars{ color: var(--star); letter-spacing:1px; }

.ticker-panel{
  background: var(--bg-elev); border:1px solid var(--border); border-radius: var(--radius-lg);
  padding:20px; box-shadow: var(--shadow); position:relative; overflow:hidden;
}
.ticker-panel::after{
  content:''; position:absolute; inset:0; pointer-events:none;
  background: radial-gradient(600px 300px at 80% -10%, rgba(255,176,32,0.10), transparent 60%);
}

/* ---------- STAT STRIP ---------- */
.stat-strip{
  display:grid; grid-template-columns: repeat(4,1fr); gap:1px;
  background: var(--border); border:1px solid var(--border); border-radius: var(--radius);
  overflow:hidden;
}
.stat{
  background: var(--bg-elev); padding:26px 20px; text-align:center;
}
.stat .num{ font-family:'Sora'; font-weight:800; font-size:1.9rem; color: var(--accent2); }
.stat .lbl{ font-size:.78rem; color: var(--text-faint); text-transform:uppercase; letter-spacing:.08em; margin-top:6px; }
@media (max-width:700px){ .stat-strip{ grid-template-columns: repeat(2,1fr); } }

/* ---------- SECTION HEAD ---------- */
.section-head{ max-width:640px; margin-bottom:44px; }
.section-head h2{ font-size: clamp(1.6rem, 3vw, 2.2rem); }

/* ---------- FEATURE GRID ---------- */
.feature-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:18px; }
@media (max-width:860px){ .feature-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width:560px){ .feature-grid{ grid-template-columns: 1fr; } }
.feature-card{
  background: var(--bg-elev); border:1px solid var(--border); border-radius: var(--radius);
  padding:24px; transition: border-color .15s, transform .15s;
}
.feature-card:hover{ border-color: var(--border-strong); transform: translateY(-3px); }
.feature-icon{
  width:38px; height:38px; border-radius:10px; background: var(--bg-elev-3);
  display:flex; align-items:center; justify-content:center; margin-bottom:14px; color: var(--accent2);
}
.feature-card h4{ font-size:1.02rem; margin-bottom:6px; }
.feature-card p{ font-size:.9rem; margin:0; }

/* ---------- REVIEW CARDS ---------- */
.review-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:18px; }
@media (max-width:900px){ .review-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width:600px){ .review-grid{ grid-template-columns: 1fr; } }
.review-card{
  background: var(--bg-elev); border:1px solid var(--border); border-radius: var(--radius);
  padding:22px; display:flex; flex-direction:column; gap:10px;
}
.review-top{ display:flex; align-items:center; gap:10px; }
.avatar{
  width:36px; height:36px; border-radius:50%; background: var(--bg-elev-3);
  display:flex; align-items:center; justify-content:center; font-family:'Sora'; font-weight:700; font-size:.8rem; color:var(--accent2);
  flex-shrink:0;
}
.review-name{ font-weight:600; font-size:.92rem; }
.review-stars{ color: var(--star); font-size:.82rem; letter-spacing:1px; }
.review-body{ font-size:.9rem; color: var(--text-dim); margin:0; }
.review-foot{
  font-family:'IBM Plex Mono', monospace; font-size:.72rem; color: var(--text-faint);
  padding-top:8px; border-top:1px solid var(--border);
}

/* ---------- RATING BARS ---------- */
.rating-box{
  display:grid; grid-template-columns: auto 1fr; gap:36px; align-items:center;
  background: var(--bg-elev); border:1px solid var(--border); border-radius: var(--radius-lg);
  padding:30px;
}
@media (max-width:640px){ .rating-box{ grid-template-columns:1fr; } }
.rating-headline{ text-align:center; }
.rating-headline .big{ font-family:'Sora'; font-weight:800; font-size:3rem; }
.rating-headline .stars{ font-size:1.1rem; margin:6px 0; }
.rating-headline .count{ color: var(--text-faint); font-size:.85rem; font-family:'IBM Plex Mono',monospace; }
.bar-row{ display:grid; grid-template-columns: 44px 1fr 70px; gap:12px; align-items:center; margin-bottom:10px; font-family:'IBM Plex Mono',monospace; font-size:.82rem; }
.bar-track{ height:8px; background: var(--bg-elev-3); border-radius:100px; overflow:hidden; }
.bar-fill{ height:100%; background: linear-gradient(90deg, var(--accent-dark), var(--accent)); border-radius:100px; }
.bar-row .right{ text-align:right; color: var(--text-dim); }

.rating-note{
  margin-top:16px; padding:14px 16px; border-radius: var(--radius-sm);
  background: var(--bg-elev-3); border:1px solid var(--border); font-size:.85rem; color: var(--text-dim);
}

/* ---------- PRICING CARDS ---------- */
.pricing-grid{ display:grid; grid-template-columns: repeat(2,1fr); gap:22px; }
@media (max-width:760px){ .pricing-grid{ grid-template-columns:1fr; } }
.plan-card{
  background: var(--bg-elev); border:1px solid var(--border); border-radius: var(--radius-lg);
  padding:30px; display:flex; flex-direction:column; position:relative;
}
.plan-card.featured{ border-color: var(--accent-dark); box-shadow: 0 0 0 1px var(--accent-dark), var(--shadow); }
.plan-tag{
  font-family:'IBM Plex Mono',monospace; font-size:.68rem; text-transform:uppercase; letter-spacing:.1em;
  color: var(--accent2); background: rgba(255,176,32,0.1); border:1px solid rgba(255,176,32,0.25);
  padding:5px 10px; border-radius:100px; display:inline-flex; width:fit-content; margin-bottom:14px;
}
.plan-name{ font-family:'Sora'; font-weight:700; font-size:1.3rem; margin-bottom:4px; }
.plan-price{ font-family:'Sora'; font-weight:800; font-size:2.3rem; margin:8px 0 2px; }
.plan-price small{ font-family:'Inter'; font-weight:500; font-size:.9rem; color: var(--text-faint); }
.plan-sub{ font-size:.82rem; color: var(--text-faint); margin-bottom:20px; }
.plan-features{ list-style:none; margin:0 0 24px; padding:0; display:flex; flex-direction:column; gap:10px; flex:1; }
.plan-features li{ display:flex; gap:10px; font-size:.9rem; color: var(--text-dim); align-items:flex-start; }
.plan-features li::before{ content:'✓'; color: var(--accent2); font-weight:700; flex-shrink:0; }

.choose-steps{ display:grid; grid-template-columns: repeat(3,1fr); gap:18px; margin-top:20px; }
@media (max-width:760px){ .choose-steps{ grid-template-columns:1fr; } }
.choose-step{ background: var(--bg-elev); border:1px solid var(--border); border-radius: var(--radius); padding:20px; }
.choose-step .step-num{ font-family:'IBM Plex Mono'; color: var(--accent2); font-size:.78rem; margin-bottom:8px; }

.honest-math{
  background: var(--danger-bg); border:1px solid rgba(243,166,166,0.28); border-radius: var(--radius);
  padding:24px 26px; margin-top:36px;
}
.honest-math h3{ color:#f6c9c9; font-size:1.1rem; }
.honest-math p, .honest-math li{ color:#e7c9c9; }

/* ---------- VERDICT / PROS-CONS ---------- */
.verdict-box{
  display:grid; grid-template-columns: repeat(2,1fr); gap:1px; background: var(--border);
  border:1px solid var(--border); border-radius: var(--radius-lg); overflow:hidden; margin: 30px 0;
}
@media (max-width:700px){ .verdict-box{ grid-template-columns:1fr; } }
.verdict-col{ background: var(--bg-elev); padding:26px; }
.verdict-col h4{ font-family:'IBM Plex Mono', monospace; font-size:.82rem; text-transform:uppercase; letter-spacing:.08em; margin-bottom:14px; }
.verdict-col.pros h4{ color: var(--safe); }
.verdict-col.cons h4{ color: var(--danger); }
.verdict-col ul{ margin:0; padding-left:18px; color: var(--text-dim); font-size:.92rem; }
.verdict-col li{ margin-bottom:8px; }

.score-box{
  display:flex; align-items:center; gap:24px; background: var(--bg-elev); border:1px solid var(--border);
  border-radius: var(--radius-lg); padding:30px; margin:34px 0;
}
@media (max-width:600px){ .score-box{ flex-direction:column; text-align:center; } }
.score-num{ font-family:'Sora'; font-weight:800; font-size:3.4rem; color: var(--accent2); flex-shrink:0; }
.score-num small{ font-size:1.2rem; color: var(--text-faint); font-weight:600; }

/* ---------- PROFILE MATCH (worthit page) ---------- */
.profile-grid{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
@media (max-width:700px){ .profile-grid{ grid-template-columns:1fr; } }
.profile-card{ background: var(--bg-elev); border:1px solid var(--border); border-radius: var(--radius); padding:24px; }
.profile-card h4{ font-size:1.02rem; margin-bottom:10px; }
.profile-card.fit{ border-left:3px solid var(--accent); }
.profile-card.nofit{ border-left:3px solid var(--down); }

/* ---------- COMPARISON TABLE ---------- */
.table-wrap{ overflow-x:auto; border:1px solid var(--border); border-radius: var(--radius-lg); }
table.compare{ width:100%; border-collapse:collapse; min-width:640px; }
table.compare th, table.compare td{ padding:16px 18px; border-bottom:1px solid var(--border); text-align:left; font-size:.9rem; }
table.compare th{ font-family:'IBM Plex Mono',monospace; font-size:.72rem; text-transform:uppercase; letter-spacing:.06em; color: var(--text-faint); background: var(--bg-elev-2); }
table.compare td{ color: var(--text-dim); }
table.compare tr:last-child td{ border-bottom:none; }
table.compare tr.highlight td{ background: rgba(255,176,32,0.05); color: var(--text); }

.alt-cards{ display:grid; grid-template-columns: repeat(4,1fr); gap:16px; margin-top:26px; }
@media (max-width:900px){ .alt-cards{ grid-template-columns: repeat(2,1fr); } }
@media (max-width:560px){ .alt-cards{ grid-template-columns: 1fr; } }
.alt-card{ background: var(--bg-elev); border:1px solid var(--border); border-radius: var(--radius); padding:20px; }
.alt-card h4{ font-size:.94rem; margin-bottom:8px; }
.alt-card p{ font-size:.85rem; margin:0; }

/* ---------- FAQ ---------- */
.faq-list{ display:flex; flex-direction:column; gap:1px; background: var(--border); border:1px solid var(--border); border-radius: var(--radius-lg); overflow:hidden; }
.faq-item{ background: var(--bg-elev); }
.faq-q{
  width:100%; text-align:left; background:none; border:none; color: var(--text); font-family:'Sora'; font-weight:600;
  font-size:1rem; padding:22px 24px; cursor:pointer; display:flex; justify-content:space-between; align-items:center; gap:16px;
}
.faq-q .plus{ font-family:'IBM Plex Mono'; color: var(--accent2); font-size:1.2rem; flex-shrink:0; transition: transform .2s; }
.faq-item.open .plus{ transform: rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition: max-height .25s ease; }
.faq-a-inner{ padding: 0 24px 22px; color: var(--text-dim); font-size:.92rem; }

/* ---------- CANDLESTICK DIVIDER ---------- */
.chart-divider{ width:100%; height:44px; opacity:.5; margin: 6px 0; }

/* ---------- STICKY CTA BAR ---------- */
.sticky-cta{
  position: fixed; bottom:0; left:0; right:0; z-index:150;
  background: rgba(19,19,24,0.92); backdrop-filter: blur(14px);
  border-top:1px solid var(--border);
  padding:14px 20px; display:flex; align-items:center; justify-content:space-between; gap:16px;
}
.sticky-cta-info{ display:flex; align-items:center; gap:10px; font-size:.86rem; }
.sticky-cta-info img{ width:28px; height:28px; border-radius:7px; }
.sticky-cta-info .stars{ font-size:.8rem; }
body{ padding-bottom: 84px; }
@media (max-width:520px){ .sticky-cta-info .label{ display:none; } }

/* ---------- FOOTER ---------- */
footer{ background: var(--bg-elev); border-top:1px solid var(--border); padding:50px 0 100px; margin-top:40px; }
.footer-grid{ display:grid; grid-template-columns: 1.3fr 1fr; gap:40px; }
@media (max-width:700px){ .footer-grid{ grid-template-columns:1fr; } }
.footer-brand{ display:flex; align-items:center; gap:10px; font-family:'Sora'; font-weight:700; margin-bottom:14px; }
.footer-brand img{ width:28px; height:28px; border-radius:7px; }
.footer-links{ display:flex; flex-direction:column; gap:8px; }
.footer-links a{ color: var(--text-dim); font-size:.88rem; }
.footer-links a:hover{ color: var(--accent2); }
.disclosure{ font-size:.78rem; color: var(--text-faint); line-height:1.7; }
.disclosure strong{ color: var(--text-dim); }
.risk-note{
  margin-top:18px; padding:16px 18px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.03); border:1px solid var(--border); font-size:.76rem; color: var(--text-faint); line-height:1.7;
}
.copyright{ margin-top:26px; font-size:.76rem; color: var(--text-faint); border-top:1px solid var(--border); padding-top:20px; }

/* ---------- UTIL ---------- */
.final-cta{
  text-align:center; background: linear-gradient(180deg, var(--bg-elev), var(--bg-elev-2));
  border:1px solid var(--border); border-radius: var(--radius-lg); padding:60px 30px;
}
.final-cta h2{ font-size: clamp(1.6rem,3.4vw,2.4rem); }
.final-cta .cta-row{ justify-content:center; }
.tag-line{ display:inline-flex; align-items:center; gap:6px; font-family:'IBM Plex Mono',monospace; font-size:.75rem; color:var(--text-faint); background:var(--bg-elev-3); padding:6px 12px; border-radius:100px; margin-bottom:16px; }

.pagelinks-grid{ display:grid; grid-template-columns: repeat(5,1fr); gap:14px; }
@media (max-width:900px){ .pagelinks-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width:560px){ .pagelinks-grid{ grid-template-columns: 1fr; } }
.pagelink-card{ background: var(--bg-elev); border:1px solid var(--border); border-radius: var(--radius); padding:18px; transition: border-color .15s, transform .15s; }
.pagelink-card:hover{ border-color: var(--accent-dark); transform: translateY(-3px); }
.pagelink-card .k{ font-family:'IBM Plex Mono',monospace; font-size:.7rem; color: var(--accent2); }
.pagelink-card h4{ font-size:.95rem; margin:6px 0 0; }
