/* amibrokersignals.com — v3 */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Space+Mono:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg: #0a0d13;
  --bg2: #0f1420;
  --bg3: #141927;
  --card: #141c2e;
  --card2: #1a2340;
  --border: #1f2d4a;
  --border2: #253355;
  --accent: #00d4ff;
  --accent2: #0099cc;
  --green: #00e676;
  --green2: #00b850;
  --red: #ff4757;
  --gold: #ffd700;
  --gold2: #ffb300;
  --text: #e8edf5;
  --text2: #9aaabf;
  --text3: #5a6a85;
  --white: #ffffff;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-accent: 0 0 30px rgba(0,212,255,0.12);
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --font-body: 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); font-size: 16px; line-height: 1.7; overflow-x: hidden; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* Global h1 — used on inner pages */
h1 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; }

/* h2 — section titles */
h2 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); font-weight: 700; }

/* h3 — card titles, sub-sections */
h3 { font-size: clamp(1rem, 1.8vw, 1.2rem); font-weight: 600; }

/* h4 — labels, sidebar headings */
h4 { font-size: 0.95rem; font-weight: 600; }

/* Hero h1 — larger but still controlled */
.hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* Page-detail hero h1 */
.page-hero h1 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

p { color: var(--text2); }
a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--white); }
code, .mono { font-family: var(--font-mono); font-size: 0.85em; }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* ── NAVBAR ── */
nav { position: sticky; top: 0; z-index: 100; background: rgba(10,13,19,0.95); border-bottom: 1px solid var(--border); backdrop-filter: blur(12px); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: var(--white); display: flex; align-items: center; gap: 10px; letter-spacing: -0.01em; }
.logo span { color: var(--accent); }
.logo-icon { width: 32px; height: 32px; background: linear-gradient(135deg, var(--accent), var(--green)); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a { color: var(--text2); font-size: 0.9rem; font-weight: 500; padding: 8px 14px; border-radius: var(--radius-sm); transition: all 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); background: var(--bg3); }
.nav-cta { background: var(--accent); color: var(--bg) !important; font-weight: 600 !important; }
.nav-cta:hover { background: var(--accent2) !important; color: var(--white) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { width: 22px; height: 2px; background: var(--text2); border-radius: 2px; transition: all 0.3s; display: block; }
.mobile-menu { display: none; background: var(--bg2); border-top: 1px solid var(--border); padding: 16px; flex-direction: column; gap: 4px; }
.mobile-menu a { color: var(--text2); padding: 12px 16px; border-radius: var(--radius-sm); display: block; font-weight: 500; }
.mobile-menu a:hover { background: var(--bg3); color: var(--white); }
.mobile-menu.open { display: flex; }

/* ── HERO ── */
.hero { min-height: 88vh; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,212,255,0.07) 0%, transparent 70%), radial-gradient(ellipse 60% 40% at 80% 80%, rgba(0,230,118,0.05) 0%, transparent 60%); }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px); background-size: 60px 60px; opacity: 0.3; }

/* Full-width two-column layout */
.hero > .container { width: 100%; }
.hero-inner { display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: center; position: relative; z-index: 2; }
.hero-content { max-width: 100%; }

.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,212,255,0.1); border: 1px solid rgba(0,212,255,0.3); color: var(--accent); font-size: 0.78rem; font-weight: 600; padding: 5px 14px; border-radius: 100px; margin-bottom: 20px; font-family: var(--font-mono); }
.hero-badge::before { content: '●'; font-size: 0.55rem; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero h1 { margin-bottom: 16px; }
.hero h1 em { color: var(--accent); font-style: normal; }
.hero p { font-size: clamp(0.9rem, 1.5vw, 1rem); margin-bottom: 28px; max-width: 100%; line-height: 1.7; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Stats row — now under left column */
.hero-stats { display: flex; gap: 0; margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--border); }
.stat { flex: 1; padding-right: 24px; border-right: 1px solid var(--border); margin-right: 24px; }
.stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.stat-num { font-family: var(--font-display); font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 700; color: var(--white); letter-spacing: -0.01em; }
.stat-label { font-size: 0.68rem; color: var(--text3); font-family: var(--font-mono); margin-top: 3px; }

/* Right panel — feature highlights card */
.hero-panel { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 28px; display: flex; flex-direction: column; gap: 16px; }
.hero-panel-title { font-family: var(--font-mono); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text3); margin-bottom: 4px; }
.hero-feat { display: flex; align-items: flex-start; gap: 12px; padding: 14px; background: var(--bg3); border-radius: 10px; border: 1px solid var(--border); transition: border-color 0.2s; }
.hero-feat:hover { border-color: var(--border2); }
.hero-feat-icon { font-size: 1.2rem; line-height: 1; flex-shrink: 0; margin-top: 2px; }
.hero-feat-text strong { display: block; font-size: 0.88rem; color: var(--white); font-weight: 600; margin-bottom: 3px; }
.hero-feat-text span { font-size: 0.78rem; color: var(--text3); line-height: 1.4; }
.hero-panel-cta { background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.2); border-radius: 10px; padding: 14px 16px; text-align: center; }
.hero-panel-cta p { font-size: 0.78rem; color: var(--text2); margin-bottom: 10px; }
.hero-panel-cta .btn { width: 100%; justify-content: center; font-size: 0.85rem; padding: 9px 16px; display: flex; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.9rem; cursor: pointer; transition: all 0.2s; border: none; text-decoration: none; }
.btn-primary { background: var(--accent); color: var(--bg); }
.btn-primary:hover { background: var(--accent2); color: var(--white); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,212,255,0.3); }
.btn-outline { background: transparent; color: var(--accent); border: 1px solid var(--accent); }
.btn-outline:hover { background: var(--accent); color: var(--bg); }
.btn-green { background: var(--green); color: var(--bg); }
.btn-green:hover { background: var(--green2); color: var(--white); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,230,118,0.3); }
.btn-sm { padding: 8px 16px; font-size: 0.82rem; }
.btn-lg { padding: 14px 28px; font-size: 1rem; }

/* ── SECTION HEADERS ── */
.section-header { text-align: center; margin-bottom: 44px; }
.section-tag { display: inline-block; font-family: var(--font-mono); font-size: 0.7rem; color: var(--accent); background: rgba(0,212,255,0.1); border: 1px solid rgba(0,212,255,0.2); padding: 4px 12px; border-radius: 100px; margin-bottom: 12px; letter-spacing: 0.1em; text-transform: uppercase; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { max-width: 560px; margin: 0 auto; font-size: clamp(0.88rem, 1.8vw, 0.95rem); line-height: 1.65; }

/* ── AFL CARDS ── */
.afl-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }
.afl-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: all 0.3s; position: relative; overflow: hidden; }
.afl-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--accent), var(--green)); opacity: 0; transition: opacity 0.3s; }
.afl-card:hover { border-color: var(--border2); transform: translateY(-4px); box-shadow: var(--shadow-accent); }
.afl-card:hover::before { opacity: 1; }
.afl-card-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 16px; }
.afl-card-meta { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.tag { display: inline-block; font-size: 0.72rem; font-weight: 600; padding: 3px 9px; border-radius: 100px; font-family: var(--font-mono); }
.tag-intraday { background: rgba(0,212,255,0.12); color: var(--accent); }
.tag-swing { background: rgba(0,230,118,0.12); color: var(--green); }
.tag-trend { background: rgba(255,215,0,0.12); color: var(--gold); }
.tag-orb { background: rgba(255,71,87,0.12); color: var(--red); }
.tag-free { background: rgba(0,230,118,0.15); color: var(--green); border: 1px solid rgba(0,230,118,0.3); }
.afl-card h3 { font-size: 1.15rem; margin-bottom: 8px; color: var(--white); }
.afl-card p { font-size: 0.9rem; line-height: 1.6; margin-bottom: 20px; }
.afl-card-actions { display: flex; gap: 10px; }

/* ── FEATURE BOXES ── */
.feature-box { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.feature-icon { font-size: 2rem; margin-bottom: 16px; }
.feature-box h3 { margin-bottom: 10px; font-size: 1.1rem; }

/* ── CODE BLOCK ── */
.code-block { background: #060a10; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 20px 24px; font-family: var(--font-mono); font-size: 0.82rem; color: #a8d8ea; overflow-x: auto; line-height: 1.8; position: relative; }
.code-block .comment { color: #3d5a7a; }
.code-block .keyword { color: #00d4ff; }
.code-block .string { color: #00e676; }
.code-block .number { color: var(--gold); }
.code-block-header { background: var(--bg3); border: 1px solid var(--border); border-bottom: none; border-radius: var(--radius-sm) var(--radius-sm) 0 0; padding: 10px 16px; display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; color: var(--text3); font-family: var(--font-mono); }
.code-block-header + .code-block { border-radius: 0 0 var(--radius-sm) var(--radius-sm); }
.dot-row { display: flex; gap: 6px; }
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot-r { background: #ff5f57; } .dot-y { background: #febc2e; } .dot-g { background: #28c840; }

/* ── STEPS ── */
.steps { counter-reset: step; display: flex; flex-direction: column; gap: 24px; }
.step { display: flex; gap: 20px; align-items: flex-start; }
.step-num { counter-increment: step; width: 40px; height: 40px; min-width: 40px; border-radius: 50%; background: rgba(0,212,255,0.1); border: 2px solid var(--accent); color: var(--accent); font-family: var(--font-display); font-weight: 800; font-size: 1rem; display: flex; align-items: center; justify-content: center; }
.step-num::before { content: counter(step); }
.step-content h4 { color: var(--white); margin-bottom: 6px; font-size: 1rem; }
.step-content p { font-size: 0.9rem; }

/* ── TABLE ── */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; }
thead { background: var(--bg3); }
th { padding: 14px 20px; text-align: left; font-family: var(--font-mono); font-size: 0.78rem; color: var(--text3); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 400; }
td { padding: 14px 20px; border-top: 1px solid var(--border); font-size: 0.9rem; }
tr:hover td { background: rgba(255,255,255,0.02); }
.td-green { color: var(--green); font-weight: 600; }
.td-red { color: var(--red); font-weight: 600; }

/* ── BANNER/CTA ── */
.cta-banner { background: linear-gradient(135deg, var(--card2) 0%, var(--bg3) 100%); border: 1px solid var(--border2); border-radius: 16px; padding: 56px; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(0,212,255,0.05), transparent 70%); pointer-events: none; }
.cta-banner h2 { margin-bottom: 16px; }
.cta-banner p { max-width: 500px; margin: 0 auto 32px; }

/* ── BREADCRUMB ── */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; font-family: var(--font-mono); color: var(--text3); margin-bottom: 32px; flex-wrap: wrap; }
.breadcrumb a { color: var(--text3); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { color: var(--border2); }

/* ── PAGE HERO (detail pages) ── */
.page-hero { padding: 64px 0 48px; border-bottom: 1px solid var(--border); background: linear-gradient(180deg, rgba(0,212,255,0.03) 0%, transparent 100%); }
.page-hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,230,118,0.1); border: 1px solid rgba(0,230,118,0.25); color: var(--green); font-size: 0.78rem; font-weight: 600; padding: 5px 12px; border-radius: 100px; margin-bottom: 16px; font-family: var(--font-mono); }
.page-hero-meta { display: flex; gap: 24px; margin-top: 24px; flex-wrap: wrap; }
.meta-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text2); }
.meta-item strong { color: var(--white); }

/* ── INDICATOR SPECS ── */
.specs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.spec-item { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 16px; }
.spec-label { font-family: var(--font-mono); font-size: 0.72rem; color: var(--text3); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 6px; }
.spec-value { color: var(--white); font-weight: 600; font-size: 0.95rem; }

/* ── ALERT BOXES ── */
.alert { border-radius: var(--radius-sm); padding: 16px 20px; margin: 20px 0; display: flex; gap: 12px; align-items: flex-start; font-size: 0.9rem; }
.alert-info { background: rgba(0,212,255,0.07); border: 1px solid rgba(0,212,255,0.2); color: var(--text); }
.alert-warning { background: rgba(255,215,0,0.07); border: 1px solid rgba(255,215,0,0.25); color: var(--text); }
.alert-success { background: rgba(0,230,118,0.07); border: 1px solid rgba(0,230,118,0.25); color: var(--text); }
.alert-icon { font-size: 1.1rem; line-height: 1.5; }

/* ── PARTNER STRIP ── */
.partner-strip { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 32px 0; }
.partner-strip-inner { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.partner-card { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.partner-logo { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 24px; font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: var(--white); min-width: 160px; }
.partner-logo span { color: var(--accent); }
.partner-tag { font-size: 0.75rem; color: var(--text3); font-family: var(--font-mono); }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; background: none; border: none; text-align: left; color: var(--white); font-family: var(--font-display); font-weight: 600; font-size: 1rem; padding: 20px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q:hover { color: var(--accent); }
.faq-arrow { font-size: 1.2rem; transition: transform 0.3s; flex-shrink: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a p { padding-bottom: 20px; font-size: 0.93rem; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-item.open .faq-a { max-height: 300px; }

/* ── FOOTER ── */
footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { font-size: 0.88rem; margin-top: 14px; margin-bottom: 20px; max-width: 280px; }
.footer-col h4 { font-family: var(--font-mono); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text3); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: var(--text2); font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: gap; gap: 16px; }
.footer-bottom p { font-size: 0.82rem; color: var(--text3); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 0.82rem; color: var(--text3); }
.footer-links a:hover { color: var(--accent); }
.disclaimer { background: rgba(255,215,0,0.05); border: 1px solid rgba(255,215,0,0.15); border-radius: var(--radius-sm); padding: 14px 18px; margin-top: 24px; font-size: 0.78rem; color: var(--text3); line-height: 1.6; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 340px; gap: 40px; }
}

@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 60px 0; }
  /* Hero collapses to single column on tablet */
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-panel { display: none; } /* hide right panel on tablet/mobile */
}

@media (max-width: 640px) {
  /* Nav */
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Layout */
  .container { padding: 0 16px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 48px 0; }
  .section-sm { padding: 32px 0; }

  /* Hero */
  .hero { min-height: auto; padding: 52px 0 40px; }
  .hero p { font-size: 0.93rem; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 0; margin-top: 28px; padding-top: 20px; }
  .stat { padding-right: 16px; margin-right: 16px; }

  /* Section header */
  .section-header { margin-bottom: 32px; }
  .section-header p { font-size: 0.88rem; }

  /* AFL grid */
  .afl-grid { grid-template-columns: 1fr; }

  /* Page hero */
  .page-hero { padding: 40px 0 32px; }
  .page-hero h1 { font-size: 1.5rem; }
  .page-hero-meta { flex-direction: column; gap: 8px; }
  .page-hero-meta .meta-item { font-size: 0.8rem; }
  .page-hero .btn-lg { width: 100%; justify-content: center; }

  /* Cards */
  .afl-card { padding: 20px; }
  .cta-banner { padding: 28px 20px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  footer { padding: 48px 0 24px; }

  /* Sidebar */
  .sidebar-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }

  /* Table */
  .table-wrap { font-size: 0.8rem; }
}

/* ── ANIMATIONS ── */
.fade-in { animation: fadeIn 0.6s ease both; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* ── SIDEBAR LAYOUT ── */
.sidebar-layout { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; }
.sidebar { position: sticky; top: 80px; }
.sidebar-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin-bottom: 20px; }
.sidebar-card h4 { font-family: var(--font-mono); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text3); margin-bottom: 16px; }
.sidebar-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.sidebar-card ul li a { color: var(--text2); font-size: 0.88rem; display: flex; align-items: center; gap: 8px; padding: 6px 0; border-bottom: 1px solid var(--border); transition: color 0.2s; }
.sidebar-card ul li:last-child a { border-bottom: none; }
.sidebar-card ul li a:hover { color: var(--accent); }
@media (max-width: 900px) { .sidebar-layout { grid-template-columns: 1fr; } .sidebar { position: static; } }

/* ── PROGRESS / RATING ── */
.rating-bar { height: 6px; background: var(--bg3); border-radius: 3px; overflow: hidden; margin-top: 6px; }
.rating-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--accent), var(--green)); }
