:root {
  --c-navy:        #0B1F3A;
  --c-navy-2:      #17355F;
  --c-gold:        #FFB800;
  --c-gold-2:      #FFC107;
  --c-gold-glow:   rgba(255, 184, 0, 0.22);
  --c-bg:          #F5F7FA;
  --c-surface:     #FFFFFF;
  --c-border:      #E2E8F0;
  --c-text:        #0F172A;
  --c-text-2:      #64748B;
  --c-success:     #16A34A;
  --c-warning:     #F59E0B;
  --c-error:       #DC2626;
  --font:          'Poppins', 'Inter', system-ui, sans-serif;
  --r-sm: 6px; --r-md: 10px; --r-lg: 14px; --r-xl: 18px; --r-pill: 999px;
  --sh-sm: 0 1px 3px rgba(15,23,42,.06), 0 4px 12px rgba(15,23,42,.06);
  --sh-md: 0 4px 16px rgba(15,23,42,.08);
  --sh-lg: 0 8px 32px rgba(15,23,42,.10);
  --t: 0.2s ease;
  --max-w: 1220px;
  /* Legacy aliases */
  --navy: #0B1F3A; --navy-soft: #17355F; --navy-light: #1E4080;
  --gold: #FFB800; --gold-deep: #FFC107; --gold-glow: rgba(255,184,0,.22);
  --ink: #0F172A; --muted: #64748B; --line: #E2E8F0; --surface: #F5F7FA; --white: #fff;
}

/* ── Base ─────────────────────────────────────────────────────────── */
body { font-family: var(--font); color: var(--c-text); background: #fff; -webkit-font-smoothing: antialiased; }
.material-symbols-outlined { font-variation-settings: "FILL" 0,"wght" 400,"GRAD" 0,"opsz" 24; line-height:1; vertical-align:middle; font-size:20px; }
a { text-decoration: none; transition: color var(--t), background var(--t); }
.text-muted { color: var(--c-text-2) !important; }
.bg-navy { background: var(--c-navy); }
.landing-shell, .container { max-width: var(--max-w); }

/* ── Buttons ──────────────────────────────────────────────────────── */
.btn-gold {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 44px; padding: 0 24px;
  background: var(--c-gold); border: 2px solid transparent;
  color: #000; font-size: 14px; font-weight: 600;
  border-radius: var(--r-md); box-shadow: 0 4px 14px var(--c-gold-glow);
  transition: all var(--t); white-space: nowrap;
}
.btn-gold:hover { background: var(--c-gold-2); color: #000; transform: translateY(-1px); box-shadow: 0 6px 20px var(--c-gold-glow); }
.btn-gold.btn-lg { height: 52px; padding: 0 32px; font-size: 15px; }
.btn-outline-surface {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 44px; padding: 0 24px;
  background: #fff; border: 1.5px solid var(--c-border);
  color: var(--c-navy); font-size: 14px; font-weight: 600;
  border-radius: var(--r-md); transition: all var(--t);
}
.btn-outline-surface:hover { border-color: var(--c-navy); color: var(--c-navy); background: var(--c-bg); }
.btn-navy {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 44px; padding: 0 24px;
  background: var(--c-navy); border: 2px solid transparent;
  color: #fff; font-size: 14px; font-weight: 600;
  border-radius: var(--r-md); transition: all var(--t);
}
.btn-navy:hover { background: var(--c-navy-2); color: #fff; }
.btn-outline-light:hover { color: var(--c-navy) !important; }

/* ── Status badges ────────────────────────────────────────────────── */
.status-badge { display:inline-flex; align-items:center; gap:5px; padding:4px 12px; border-radius:var(--r-pill); font-size:12px; font-weight:600; }
.status-pending  { background:rgba(245,158,11,.12); color:#92400E; }
.status-approved, .status-paid, .status-active, .status-success { background:rgba(22,163,74,.10); color:#15803D; }
.status-rejected, .status-cancelled, .status-danger { background:rgba(220,38,38,.10); color:#B91C1C; }
.status-draft, .status-neutral { background:rgba(100,116,139,.10); color:#475569; }
.status-primary, .status-published { background:rgba(11,31,58,.08); color:var(--c-navy); }
.status-warning { background:rgba(245,158,11,.12); color:#92400E; }
.status-purple  { background:rgba(124,58,237,.10); color:#6D28D9; }
.tag-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border: 1px solid var(--c-border);
  border-radius: var(--r-pill);
  background: #f8fafc;
  color: var(--c-navy);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}
.tag-chip:hover {
  border-color: var(--c-gold);
  background: rgba(255, 184, 0, 0.12);
  color: var(--c-navy);
}

/* ── Cards ────────────────────────────────────────────────────────── */
.card-base {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--r-xl); padding: 24px;
  box-shadow: var(--sh-sm); transition: box-shadow var(--t), transform var(--t);
}
.card-base:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }
.feature-card,.tool-card,.post-card,.stat-card { background:#fff; border:1px solid var(--c-border); border-radius:var(--r-xl); }
.feature-card { padding:24px; }

/* ── Forms ────────────────────────────────────────────────────────── */
.form-control,.form-select {
  height: 44px; padding: 0 14px;
  border: 1.5px solid var(--c-border); border-radius: var(--r-md);
  font-family: var(--font); font-size: 14px; color: var(--c-text);
  background: #fff; transition: border-color var(--t), box-shadow var(--t);
}
.form-control:focus,.form-select:focus {
  border-color: var(--c-gold); box-shadow: 0 0 0 3px var(--c-gold-glow); outline: none;
}
textarea.form-control { height: auto; min-height: 100px; padding: 12px 14px; }
.form-label { font-size: 13px; font-weight: 500; color: var(--c-navy); margin-bottom: 6px; display: block; }

/* ── Tables ───────────────────────────────────────────────────────── */
.table td,.table th { vertical-align: middle; font-size: 14px; }
.table thead th { background: var(--c-bg); color: var(--c-text-2); font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; padding: 12px 16px; border-bottom: 1px solid var(--c-border); }
.table tbody td { padding: 14px 16px; border-color: var(--c-border); color: var(--c-text); }
.table-hover tbody tr:hover { background: var(--c-bg); }

/* ── Misc utilities ───────────────────────────────────────────────── */
.icon-box { width:40px; height:40px; border-radius:var(--r-md); background:rgba(255,184,0,.12); color:var(--c-navy); display:grid; place-items:center; }
.toc a { display:block; color:var(--c-text-2); padding:.25rem 0; font-size:14px; }
.empty-state { border:1.5px dashed var(--c-border); border-radius:var(--r-xl); padding:40px; text-align:center; color:var(--c-text-2); }
.ratio iframe { border:0; }
.navbar-brand { font-weight:700; }
.article-shell { max-width:960px; }
.article-card { background:#fff; border:1px solid var(--c-border); border-radius:var(--r-xl); padding:40px; }
.share-row { display:flex; gap:10px; flex-wrap:wrap; }
.simple-list { display:grid; gap:20px; }
.content-shell { max-width:1100px; }
.text-gold { color: var(--c-gold) !important; }

/* ── Header / Navbar ──────────────────────────────────────────────── */
.landing-shell { max-width: var(--max-w); }

.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--c-border);
}
.site-nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; min-height: 68px;
}

.site-brand { display:flex; align-items:center; gap:10px; color:var(--c-navy); flex-shrink:0; }
.site-brand-logo { display:block; height:34px; width:auto; max-width:200px; object-fit:contain; }
.footer-brand-logo { display:block; height:32px; width:auto; max-width:200px; object-fit:contain; }
.auth-brand-logo { display:block; height:34px; width:auto; max-width:200px; object-fit:contain; }
.site-brand-text { font-size:16px; font-weight:700; }
.brand-mark { display:grid; place-items:center; width:36px; height:36px; background:var(--c-navy); border-radius:var(--r-md); font-size:13px; font-weight:700; color:var(--c-gold); }

.navbar-toggler { border:0; padding:6px; background:transparent; line-height:1; }
.navbar-toggler .material-symbols-outlined { font-size:26px; color:var(--c-navy); }

.site-nav-links { display:flex; align-items:center; gap:2px; margin:0 auto; padding:0; list-style:none; }
.site-nav-links .nav-link { color:var(--c-text-2); font-size:14px; font-weight:500; padding:8px 14px; border-radius:var(--r-md); transition:all var(--t); }
.site-nav-links .nav-link:hover { color:var(--c-navy); background:var(--c-bg); }
.site-nav-links .nav-link.active { color:var(--c-navy); font-weight:600; }
.site-nav-actions { display:flex; align-items:center; gap:8px; flex-shrink:0; }

@media (min-width: 992px) {
  .site-nav .navbar-collapse { display:flex !important; align-items:center; justify-content:flex-end; gap:24px; flex:1; }
}
@media (max-width: 991px) {
  .site-nav { flex-wrap:wrap; }
  .site-nav .navbar-collapse { width:100%; padding:16px 0 8px; }
  .site-nav-links { flex-direction:column; align-items:stretch; width:100%; margin:0 0 12px; gap:0; }
  .site-nav-links .nav-link { padding:12px 4px; border-bottom:1px solid var(--c-border); border-radius:0; }
  .site-nav-actions { width:100%; padding-top:8px; }
  .site-brand-logo { height:28px; }
}


.section { padding: 100px 0; }

/* Home Sections Refinement */
.section-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-head h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.section-head p {
    font-size: 1.25rem;
    color: var(--muted);
    font-weight: 400;
    line-height: 1.5;
}

.section-switch {
    display: inline-flex;
    padding: 6px;
    background: var(--surface);
    border-radius: 12px;
    margin-top: 24px;
}

.switch-btn {
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--muted);
    transition: all 0.3s ease;
}

.switch-btn:hover {
    color: var(--navy);
}

.switch-btn-active {
    background: var(--gold);
    color: var(--navy);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.section-head-dark h2 {
    color: #fff;
    background: linear-gradient(to right, #fff, rgba(255,255,255,0.6));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Benefit Cards */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-color: var(--gold);
}

.benefit-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.benefit-card:hover img {
    transform: scale(1.05);
}

.benefit-card-body {
    padding: 24px;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--navy);
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Media Strip */
.media-strip {
    background: var(--surface);
    padding: 60px 0;
}

.media-label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--muted);
    margin-bottom: 40px;
}

.media-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.media-logos img {
    height: 32px;
    width: auto;
    filter: grayscale(1) opacity(0.5);
    transition: all 0.3s ease;
}

.media-logos img:hover {
    filter: grayscale(0) opacity(1);
    transform: scale(1.1);
}

/* App Showcase */
.app-showcase {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.app-showcase::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--gold);
    filter: blur(150px);
    opacity: 0.05;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.app-badges {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
}

.app-badge {
    padding: 10px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.app-badge:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--gold);
    color: var(--gold);
}

.app-stage {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 60px;
    margin-top: 60px;
}

.app-point {
    margin-bottom: 48px;
}

.app-point h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.app-point p {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
}

.app-phone-wrap img {
    max-width: 340px;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
}

/* Asset Section */
.asset-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.asset-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.asset-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
}

.asset-icon {
    width: 80px;
    height: 80px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 24px;
    color: var(--navy);
    transition: all 0.3s ease;
}

.asset-card:hover .asset-icon {
    background: var(--gold);
    border-color: var(--gold);
}

.asset-icon span {
    font-size: 32px;
}

.asset-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--navy);
}

.asset-card p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.asset-card-link {
    background: var(--navy);
    color: #fff;
}

.asset-card-link:hover {
    background: var(--navy-soft);
}

.asset-card-link h3, .asset-card-link p {
    color: #fff;
}

.asset-card-link .asset-icon {
    background: var(--gold);
    color: var(--navy);
}

.asset-card-link:hover .asset-icon {
    background: #fff;
    transform: scale(1.1) rotate(5deg);
}

/* Rebate Steps */
.rebate-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.rebate-step-card {
    background: #fff;
    padding: 48px 32px;
    border-radius: 24px;
    border: 1px solid var(--line);
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
}

.rebate-step-card:hover {
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.rebate-step-icon {
    width: 80px;
    height: 80px;
    background: var(--surface);
    border-radius: 24px;
    display: grid;
    place-items: center;
    margin: 0 auto 32px;
    color: var(--navy);
    transition: all 0.4s ease;
}

.rebate-step-card:hover .rebate-step-icon {
    background: var(--gold);
    transform: rotateY(180deg);
}

.rebate-step-number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 3rem;
    font-weight: 800;
    color: var(--surface);
    line-height: 1;
    z-index: 0;
}

.rebate-step-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.rebate-step-card p {
    color: var(--muted);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Community Flow */
.community-flow {
    background: #fff;
    padding: 60px 40px;
    border-radius: 24px;
    border: 1px solid var(--line);
    margin-bottom: 30px;
}

.community-flow-track {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    position: relative;
}

.flow-node {
    text-align: center;
    flex: 1;
    z-index: 1;
}

.flow-illustration {
    width: 60px;
    height: 60px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    display: grid;
    place-items: center;
    margin: 0 auto 12px;
    color: var(--navy);
    transition: all 0.3s ease;
}

.flow-node-premium .flow-illustration {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 10px 25px var(--gold-glow);
    color: #000;
}

.flow-node h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
    line-height: 1.3;
}

.flow-arrow {
    font-size: 1.2rem;
    color: #cbd5e1;
    font-weight: 300;
    margin-bottom: 24px;
}

.flow-caption {
    text-align: center;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.75rem;
    padding-top: 10px;
    border-top: 1px solid var(--line);
}

.flow-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 30px 0;
}

.flow-info-card {
    padding: 32px 24px;
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.flow-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.04);
    border-color: var(--line);
}

.flow-info-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--navy);
}

.flow-info-card p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

/* Asset Spotlight */
.asset-grid-spotlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.asset-card-spotlight {
    padding: 32px 24px;
}

.asset-spotlight-link {
    display: inline-block;
    margin-top: 16px;
    font-weight: 700;
    color: var(--gold-deep);
}


/* ── Section & Typography ─────────────────────────────────────────── */
.section { padding: 88px 0; }
.home-section { padding: 88px 0; }
.section-head { text-align:center; max-width:680px; margin:0 auto 56px; }
.section-head h2 { font-size:clamp(1.875rem,4vw,2.75rem); font-weight:700; color:var(--c-navy); line-height:1.15; margin-bottom:14px; letter-spacing:-0.02em; }
.section-head p { font-size:1.0625rem; color:var(--c-text-2); line-height:1.65; }
.section-head-dark h2 { color:#fff; }
.section-head-dark p { color:rgba(255,255,255,.65); }
.page-eyebrow { display:inline-block; font-size:11px; font-weight:700; letter-spacing:.18em; color:var(--c-gold); text-transform:uppercase; margin-bottom:16px; }

/* ── Footer ───────────────────────────────────────────────────────── */
.footer { background:var(--c-navy); color:rgba(255,255,255,.75); padding:80px 0 0; }
.footer h5 { font-size:13px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:#fff; margin-bottom:20px; }
.footer-links { list-style:none; padding:0; margin:0; display:grid; gap:10px; }
.footer-links a { color:rgba(255,255,255,.6); font-size:14px; transition:color var(--t); }
.footer-links a:hover { color:var(--c-gold); }
.footer-social { display:flex; gap:12px; margin-top:24px; }
.social-icon { width:38px; height:38px; border-radius:var(--r-md); border:1px solid rgba(255,255,255,.15); display:grid; place-items:center; color:rgba(255,255,255,.6); transition:all var(--t); }
.social-icon:hover { border-color:var(--c-gold); color:var(--c-gold); }
.footer-bottom { border-top:1px solid rgba(255,255,255,.08); padding:24px 0; margin-top:64px; font-size:13px; color:rgba(255,255,255,.4); }

/* ── Hero (Landing Home) ──────────────────────────────────────────── */
.landing-hero { position:relative; overflow:hidden; background:linear-gradient(160deg, var(--c-navy) 0%, var(--c-navy-2) 100%); color:#fff; padding-top:20px; }
.hero-main { display:grid; grid-template-columns:1fr 1fr; align-items:center; gap:48px; padding:72px 0 80px; }
.hero-copy h1 { font-size:clamp(2.25rem,5vw,3.5rem); font-weight:700; line-height:1.12; letter-spacing:-0.03em; color:#fff; margin-bottom:20px; }
.hero-copy p { font-size:1.125rem; color:rgba(255,255,255,.7); line-height:1.65; margin-bottom:32px; max-width:480px; }
.hero-note { font-size:12px; color:rgba(255,255,255,.4); margin-top:16px; }
.hero-visual { position:relative; }
.hero-visual-text { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size:16rem; font-weight:900; color:rgba(255,184,0,.04); z-index:0; pointer-events:none; white-space:nowrap; }
.hero-visual img { position:relative; z-index:1; width:100%; height:auto; filter:drop-shadow(0 20px 40px rgba(0,0,0,.4)); }

/* ── Internal Page Hero ───────────────────────────────────────────── */
.page-hero { padding:88px 0 60px; background:linear-gradient(160deg, var(--c-navy) 0%, var(--c-navy-2) 100%); color:#fff; }
.page-hero h1 { font-size:clamp(2rem,5vw,3rem); font-weight:700; line-height:1.15; letter-spacing:-0.02em; margin-bottom:16px; }
.page-hero p { font-size:1.0625rem; color:rgba(255,255,255,.7); max-width:680px; }
.content-band { padding:80px 0; background:#fff; }
.content-card { background:#fff; border:1px solid var(--c-border); border-radius:var(--r-xl); padding:36px; margin-bottom:24px; }
.soft-panel { background:var(--c-bg); border-radius:var(--r-xl); padding:32px; }
.split-grid { display:grid; grid-template-columns:1fr 2fr; gap:40px; }
.search-bar { display:grid; grid-template-columns:1fr auto; gap:12px; margin-bottom:36px; }
.collection-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:20px; }

/* ── Content Tiles (Blog/Tools) ───────────────────────────────────── */
.content-tile { border:1px solid var(--c-border); border-radius:var(--r-xl); overflow:hidden; background:#fff; transition:all var(--t); }
.content-tile:hover { transform:translateY(-4px); box-shadow:var(--sh-md); border-color:var(--c-gold); }
.content-tile-body { padding:24px; }
.mini-label { font-size:11px; font-weight:700; letter-spacing:.1em; color:var(--c-gold); text-transform:uppercase; margin-bottom:10px; display:block; }
.content-tile h3 { font-size:1.125rem; font-weight:600; margin-bottom:10px; color:var(--c-navy); }
.content-tile p { color:var(--c-text-2); font-size:0.9375rem; line-height:1.6; margin-bottom:0; }

/* ── Download / Video rows ────────────────────────────────────────── */
.download-row,.video-row { display:grid; grid-template-columns:1fr auto; gap:20px; align-items:center; padding:20px 24px; background:#fff; border:1px solid var(--c-border); border-radius:var(--r-xl); margin-bottom:12px; transition:all var(--t); }
.download-row:hover,.video-row:hover { border-color:var(--c-gold); background:var(--c-bg); }
.video-card { border:1px solid var(--c-border); border-radius:var(--r-xl); overflow:hidden; background:#fff; }

/* ── Auth ─────────────────────────────────────────────────────────── */
.auth-shell { min-height:100vh; display:flex; align-items:center; justify-content:center; background:linear-gradient(160deg, var(--c-navy) 0%, var(--c-navy-2) 100%); padding:40px 16px; }
.auth-card { background:#fff; border-radius:var(--r-2xl); padding:48px 40px; width:100%; max-width:440px; box-shadow:var(--sh-xl); }
.auth-card h2 { font-size:1.625rem; font-weight:700; color:var(--c-navy); margin-bottom:6px; }
.auth-card p { color:var(--c-text-2); font-size:15px; }

/* ── Responsive (global) ──────────────────────────────────────────── */
@media (max-width:991px) {
  .section,.home-section { padding:64px 0; }
  .page-hero { padding:64px 0 40px; }
  .hero-main { grid-template-columns:1fr; text-align:center; padding:40px 0 56px; }
  .hero-copy { width: 100%; }
  .hero-copy h1 { font-size: clamp(2.25rem, 9vw, 3rem); line-height: 1.2; word-break: normal; margin-bottom: 16px; }
  .hero-copy p { margin-inline:auto; font-size: 1.05rem; padding: 0; max-width: 480px; }
  .hero-actions { display: flex; flex-direction: column; gap: 12px; align-items: stretch; max-width: 340px; margin: 24px auto 0; }
  .hero-actions .btn { width: 100%; margin: 0; }
  .hero-visual { display:none; }
  .split-grid { grid-template-columns:1fr; }
  .flow-info-grid { grid-template-columns:1fr; }
  .rebate-steps-grid { grid-template-columns:1fr; }
  .footer { padding:56px 0 0; }
  .content-card,.soft-panel { padding:24px; }
}
@media (max-width:599px) {
  .section,.home-section { padding:48px 0; }
  .page-hero h1 { font-size:1.75rem; }
  .auth-card { padding:36px 24px; }
  .community-flow { padding:32px 20px; }
  .collection-grid { grid-template-columns:1fr; }
}


/* ── Withdraw / CTA Banner ────────────────────────────────────────── */
.withdraw-banner { background:var(--c-navy); padding:80px 0; }
.withdraw-glass {
  background:rgba(255,255,255,.06); backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,.12); padding:48px 40px;
  border-radius:var(--r-xl); max-width:580px; margin:0 auto; text-align:center;
}
.withdraw-glass h2 { font-size:clamp(1.5rem,3vw,2.25rem); font-weight:700; color:#fff; margin-bottom:16px; }
.withdraw-glass p { font-size:1rem; color:rgba(255,255,255,.7); margin-bottom:28px; }

/* ── Home-specific helpers ────────────────────────────────────────── */
.home-benefits { background:#fff; }
.home-benefits .section-head { margin-bottom:40px; }
.hero-actions { display:flex; gap:12px; flex-wrap:wrap; margin-top:28px; }
.flow-info-note { text-align:center; font-size:0.9375rem; color:var(--c-text-2); margin:24px 0 16px; }
.flow-info-cta { min-width:220px; }

/* ── Broker Page ──────────────────────────────────────────────────── */
.broker-page { background:var(--c-bg); }
.broker-top-card { border-radius:var(--r-xl); }
.broker-logo-box { width:56px;height:56px;border-radius:var(--r-lg);display:grid;place-items:center;background:var(--c-navy);color:var(--c-gold);font-weight:700; }
.broker-section-title { font-size:1.125rem;font-weight:700;color:var(--c-navy);margin-bottom:12px; }
.broker-duo-grid { display:grid;grid-template-columns:1fr 1fr;gap:14px; }
.broker-table td { border:none;padding:.4rem .3rem;font-size:.9375rem; }
.copy-field { display:grid;grid-template-columns:1fr auto;gap:10px; }
.copy-field input { background:var(--c-bg);border:1px solid var(--c-border);border-radius:var(--r-md);padding:0 12px;height:44px;font-size:14px; }

/* ── Risk / Legal pages ───────────────────────────────────────────── */
.legal-content h2,.article-content h2 { margin-top:2.25rem; font-size:1.375rem; font-weight:700; color:var(--c-navy); }
.risk-box { margin-top:24px;padding:20px 24px;background:rgba(255,184,0,.06);border-left:4px solid var(--c-gold);border-radius:0 var(--r-md) var(--r-md) 0;font-size:0.9375rem;color:var(--c-text-2);line-height:1.6; }
.toc a { display:block;color:var(--c-text-2);padding:.3rem 0;font-size:14px;transition:color var(--t); }
.toc a:hover { color:var(--c-gold); }

/* CKEditor content renderer for article detail */
.ck-content-render > *:first-child { margin-top: 0 !important; }
.ck-content-render > *:last-child { margin-bottom: 0 !important; }
.ck-content-render p { margin: 0 0 1rem; line-height: 1.8; }
.ck-content-render h1,
.ck-content-render h2,
.ck-content-render h3,
.ck-content-render h4,
.ck-content-render h5,
.ck-content-render h6 {
  margin: 2rem 0 1rem;
  line-height: 1.3;
  color: var(--c-navy);
}
.ck-content-render ul,
.ck-content-render ol {
  margin: 0 0 1rem;
  padding-left: 1.4rem;
}
.ck-content-render li { margin-bottom: .45rem; }
.ck-content-render blockquote {
  margin: 1.5rem 0;
  padding: .85rem 1rem;
  border-left: 4px solid var(--c-gold);
  background: #f8fafc;
  color: var(--c-text);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.ck-content-render pre {
  margin: 1.25rem 0;
  padding: 1rem;
  border-radius: var(--r-md);
  background: #0f172a;
  color: #e2e8f0;
  overflow-x: auto;
}
.ck-content-render code {
  padding: .15rem .35rem;
  border-radius: 6px;
  background: #f1f5f9;
  color: #0f172a;
  font-size: .9em;
}
.ck-content-render pre code {
  padding: 0;
  background: transparent;
  color: inherit;
}
.ck-content-render img {
  max-width: 100%;
  height: auto;
  border-radius: var(--r-md);
}
.ck-content-render figure { margin: 1.4rem 0; }
.ck-content-render figure figcaption {
  margin-top: .5rem;
  font-size: .9rem;
  color: var(--c-text-2);
  text-align: center;
}
.ck-content-render table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  display: block;
  overflow-x: auto;
  white-space: nowrap;
}
.ck-content-render table th,
.ck-content-render table td {
  border: 1px solid var(--c-border);
  padding: .7rem .8rem;
  vertical-align: top;
}
.ck-content-render table th {
  background: #f8fafc;
  color: var(--c-navy);
  font-weight: 600;
}
.ck-content-render figure.table {
  margin: 1.25rem 0;
  overflow-x: auto;
}
.ck-content-render figure.table table {
  display: table;
  min-width: 640px;
  white-space: normal;
}
.ck-content-render hr {
  border: 0;
  border-top: 1px solid var(--c-border);
  margin: 1.8rem 0;
}
.ck-content-render a {
  color: #1d4ed8;
  text-decoration: underline;
  word-break: break-word;
}


.content-band {
    padding: 80px 0;
    background: #fff;
}

.content-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.content-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
    border-color: var(--line);
}

.content-card h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
}

.soft-panel {
    background: var(--surface);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
}

.risk-box {
    margin-top: 30px;
    padding: 24px;
    background: rgba(255, 222, 2, 0.05);
    border-left: 4px solid var(--gold);
    border-radius: 0 12px 12px 0;
    font-size: 0.9rem;
    color: var(--beige-deep);
    font-weight: 500;
    line-height: 1.6;
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

@media(max-width:991px) {
    .split-grid { grid-template-columns: 1fr; }
    .page-hero { padding: 80px 0 40px; }
}
.search-bar {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    margin-bottom: 40px;
    background: var(--surface);
    padding: 24px;
    border-radius: 16px;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.content-tile {
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    height: 100%;
    transition: all 0.3s ease;
}

.content-tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border-color: var(--gold);
}

.content-tile-body {
    padding: 30px;
}

.mini-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--gold-deep);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.content-tile h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--navy);
}

.content-tile p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.download-row, .video-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.download-row:hover, .video-row:hover {
    border-color: var(--gold);
    background: var(--surface);
}

.video-card {
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
}

.video-card .ratio {
    border-radius: 20px 20px 0 0;
}

/* Broker Partner page */
.broker-page { background:#eef1f4; }
.broker-top-card { border-radius:16px; }
.broker-logo-box{
    width:64px;height:64px;border-radius:14px;display:grid;place-items:center;
    background:linear-gradient(135deg,#0b1f3a 0%,#17355f 100%);color:#ffde02;font-weight:700;
}
.broker-section-title{font-size:1.35rem;font-weight:700;color:#0f1728;margin-bottom:14px}
.broker-duo-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.broker-table td{border:none;padding:.4rem .3rem;font-size:.95rem}
.copy-field{display:grid;grid-template-columns:1fr auto;gap:10px}
.copy-field input{
    border:1px solid #d8dde7;border-radius:10px;padding:10px 12px;background:#fff;color:#0f1728;
}
.broker-rate-table thead th{background:#f8fafc;font-size:.82rem;letter-spacing:.04em;text-transform:uppercase}
.broker-rate-table td,.broker-rate-table th{padding:12px;border-color:#e8edf3}
.broker-info-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.broker-info-grid p{margin:.35rem 0 0;color:#64748b}
.broker-options{
    background:linear-gradient(135deg,#5f7179 0%,#73878f 100%);
    border-color:rgba(255,255,255,.1);
}
.broker-options-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px}
.broker-options .table td{border:none;color:#e5edf2;padding:.45rem .25rem}

@media (max-width:991px){
    .broker-duo-grid,.broker-info-grid,.broker-options-grid{grid-template-columns:1fr}
}
.dashboard-shell{background:linear-gradient(180deg,#eef2f7 0%,#f7f8fb 100%)}
.dashboard-sidebar{padding:22px!important;border-right:1px solid rgba(255,255,255,.08);background:linear-gradient(180deg,#071226 0%,#0e1b37 100%)}
.dashboard-brand{display:flex;gap:12px;align-items:center;margin-bottom:28px;padding:10px 8px}
.dashboard-brand strong{display:block;font-size:15px;color:#fff}
.dashboard-brand small{display:block;font-size:12px;color:rgba(255,255,255,.55)}
.dashboard-menu{display:grid;gap:8px}
.dashboard-menu a{display:flex;align-items:center;gap:12px;padding:12px 14px;border-radius:10px;color:#d7def0;font-size:14px;font-weight:500}
.dashboard-menu a .material-symbols-outlined{font-size:20px;color:#f5d64f}
.dashboard-menu a:hover,.dashboard-menu a.active{background:rgba(255,255,255,.08);color:#fff}
.dashboard-main{min-height:100vh}
.dashboard-topbar{display:flex;justify-content:space-between;align-items:center;padding:26px 32px 0}
.dashboard-eyebrow{margin:0 0 6px;font-size:11px;letter-spacing:3px;color:#7b8085}
.dashboard-topbar h1{margin:0;font-size:34px;line-height:1.05;font-weight:600;color:#0f1728}
.dashboard-userchip{display:flex;align-items:center;gap:10px;padding:10px 14px;border:1px solid rgba(20,29,34,.08);border-radius:999px;background:rgba(255,255,255,.76)}
.dashboard-content{padding-top:24px!important}
.dashboard-card{background:#fff;border:1px solid rgba(20,29,34,.08);border-radius:14px;padding:22px;box-shadow:0 18px 40px rgba(8,16,34,.06)}
.dashboard-card + .dashboard-card{margin-top:18px}
.dashboard-section-title{margin:0 0 18px;font-size:20px;font-weight:600;color:#0f1728}
.dashboard-stat{display:flex;align-items:flex-start;gap:14px}
.dashboard-stat-icon{display:grid;place-items:center;width:46px;height:46px;border-radius:14px;background:#fff6c8;color:#644c00}
.dashboard-stat-label{display:block;font-size:13px;color:#7b8085}
.dashboard-stat-value{display:block;font-size:34px;line-height:1;font-weight:600;color:#0f1728;margin-top:8px}
.dashboard-actions{display:flex;gap:12px;flex-wrap:wrap}
.dashboard-filterbar{display:grid;grid-template-columns:220px minmax(0,1fr) auto;gap:12px;align-items:center}
.dashboard-table{background:#fff;border:1px solid rgba(20,29,34,.08);border-radius:14px;overflow:hidden}
.dashboard-table .table{margin:0}
.dashboard-table .table thead th{background:#f8fafc;border-bottom:1px solid rgba(20,29,34,.08);font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#697386}
.dashboard-table .table tbody td{padding:16px 14px;border-color:#eef2f7}
.dashboard-form-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
.dashboard-form-grid .span-2{grid-column:span 2}
.dashboard-form-grid label{display:block;margin-bottom:8px;font-size:13px;color:#556070;font-weight:500}
.dashboard-form-grid .form-control,.dashboard-form-grid .form-select{min-height:48px;border-color:#d8dde7}
.dashboard-form-grid textarea.form-control{min-height:120px}
.dashboard-link{color:#1244d6;font-weight:500}

/* Auth Page Styles */
.auth-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 40px 20px;
    background: radial-gradient(circle at top right, #334155, var(--navy));
}

.auth-card {
    background: #fff;
    width: 100%;
    max-width: 440px;
    padding: 60px 48px;
    border-radius: 24px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.3);
}

.auth-brand {
    text-align: center;
    margin-bottom: 40px;
}

.auth-card h1 {
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
    color: var(--navy);
}

.auth-form .form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 8px;
}

.auth-form .form-control {
    min-height: 52px;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.auth-form .form-control:focus {
    background: #fff;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px var(--gold-glow);
}

.auth-footer {
    text-align: center;
    margin-top: 32px;
    font-size: 0.9rem;
    color: var(--muted);
}

.auth-footer a {
    color: var(--navy);
    font-weight: 600;
}

/* Footer Refinement */
.footer {
    background: var(--navy);
    color: #94a3b8;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.footer h5 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #94a3b8;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: grid;
    place-items: center;
    color: #fff;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
}

/* Landing Hero Refinement */
.landing-hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top right, #334155, var(--navy));
    color: #fff;
    padding-bottom: 60px;
}

.hero-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.hero-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero-nav a {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
}

.hero-nav a:hover {
    color: var(--gold);
}

.hero-nav .btn {
    padding: 8px 20px;
    border-radius: 8px;
}

.hero-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.2;
}

.hero-rating span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
}

.hero-rating strong {
    font-size: 16px;
}

.hero-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    padding: 40px 0 80px;
}

.hero-copy h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(to bottom right, #fff 50%, rgba(255,255,255,0.6));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-copy p {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-visual {
    position: relative;
}

.hero-visual-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20rem;
    font-weight: 900;
    color: rgba(255, 222, 2, 0.05);
    z-index: 1;
    pointer-events: none;
}

.hero-visual img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.3));
}

/* Rebate steps section */
.home-benefits {
    background: #e9edf1;
}

.step-head {
    margin-bottom: 34px;
}

.step-head h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
}

.step-head p {
    font-size: 1.25rem;
    color: #1f2937;
}

.rebate-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.rebate-step-card {
    background: #fff;
    border: 1px solid #e6e9ee;
    border-radius: 14px;
    padding: 30px 28px 28px;
    text-align: center;
    min-height: 330px;
}

.rebate-step-icon {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 14px;
}

.rebate-step-icon .material-symbols-outlined {
    font-size: 48px;
    color: #0f172a;
}

.rebate-step-number {
    font-size: 1.8rem;
    color: #0f172a;
    margin-bottom: 10px;
}

.rebate-step-card h3 {
    font-size: 2rem;
    font-weight: 500;
    color: #0f172a;
    margin-bottom: 10px;
    line-height: 1.25;
}

.rebate-step-card p {
    font-size: 1.15rem;
    line-height: 1.55;
    color: #111827;
    margin: 0;
}

@media (max-width: 991px) {
    .rebate-steps-grid {
        grid-template-columns: 1fr;
    }
    .rebate-step-card {
        min-height: auto;
    }
}

/* Assets spotlight section (pixel-close tuning) */
.assets-spotlight {
    background: #fff;
    padding-top: 84px;
    padding-bottom: 84px;
}

.assets-spotlight .section-head {
    max-width: 860px;
    margin-bottom: 42px;
}

.assets-spotlight .section-head h2 {
    font-size: clamp(2.2rem, 4.3vw, 3.1rem);
    margin-bottom: 10px;
    letter-spacing: -0.015em;
}

.assets-spotlight .section-head p {
    font-size: 1.25rem;
    color: #8b93a1;
    margin-bottom: 20px;
}

.asset-grid-spotlight {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.asset-card-spotlight {
    background: #f3f4f6;
    border: 1px solid #eceff3;
    border-radius: 10px;
    padding: 34px 28px 28px;
    min-height: 214px;
    box-shadow: none;
    transform: none;
}

.asset-card-spotlight:hover {
    background: #f5f6f8;
    border-color: #e4e8ef;
    box-shadow: 0 8px 20px rgba(8, 16, 34, 0.06);
    transform: translateY(-2px);
}

.asset-card-spotlight .asset-icon {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    border: 1px solid #cfd6e2;
    background: transparent;
    box-shadow: none;
    margin-bottom: 20px;
}

.asset-card-spotlight:hover .asset-icon {
    background: #fff;
    border-color: #c5cedd;
    transform: none;
    box-shadow: none;
}

.asset-card-spotlight .asset-icon span {
    font-size: 34px;
    color: #334155;
}

.asset-card-spotlight h3 {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 8px;
    color: #0f172a;
}

.asset-card-spotlight p {
    font-size: 1.15rem;
    line-height: 1.55;
    color: #475569;
}

.asset-spotlight-link {
    display: inline-flex;
    margin-top: 4px;
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
}

.asset-spotlight-link::after {
    content: '\203A';
    margin-left: 8px;
    line-height: 1;
}

@media (max-width: 991px) {
    .asset-grid-spotlight {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .assets-spotlight {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .asset-grid-spotlight {
        grid-template-columns: 1fr;
    }

    .assets-spotlight .section-head h2 {
        font-size: 2rem;
    }

    .assets-spotlight .section-head p {
        font-size: 1rem;
    }

    .asset-card-spotlight h3 {
        font-size: 1.55rem;
    }

    .asset-card-spotlight p,
    .asset-spotlight-link {
        font-size: 1rem;
    }
}

/* ── Hero Responsive Fixes ── */
@media (max-width: 991px) {
    .landing-hero .hero-main {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 0 56px;
        gap: 24px;
    }
    .landing-hero .hero-visual {
        display: none !important;
    }
    .landing-hero .hero-copy {
        width: 100%;
        margin: 0 auto;
    }
    .landing-hero .hero-copy h1 {
        font-size: clamp(2rem, 9vw, 3rem);
        line-height: 1.25;
        margin-bottom: 16px;
        text-align: center;
        background: #fff; /* Fallback */
        background: linear-gradient(to bottom right, #fff 50%, rgba(255,255,255,0.6));
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .landing-hero .hero-copy p {
        margin: 0 auto 24px;
        font-size: 1.05rem;
        max-width: 480px;
        text-align: center;
    }
    .landing-hero .page-eyebrow {
        display: block;
        text-align: center;
        margin-bottom: 16px;
    }
    .landing-hero .hero-actions {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        max-width: 340px;
        margin: 0 auto;
        gap: 12px;
    }
    .landing-hero .hero-actions .btn {
        width: 100%;
        margin: 0;
    }
}
