/* ============================================================
   ROTOWIZARDS — LANDING PAGE STYLES
   ============================================================ */

/* Global box model fix */
.rw-landing *,
.rw-landing *::before,
.rw-landing *::after {
    box-sizing: border-box;
}

/* Prevent horizontal overflow at any viewport width */
.rw-landing {
    width: 100%;
    overflow-x: hidden;
}

/* Remove default page padding/width constraints on front page */
.rw-front-page .site-content,
.rw-front-page #content,
.rw-front-page #primary,
.rw-front-page .ast-container,
.rw-front-page .content-area,
.rw-front-page .entry-content,
.rw-front-page .post-content,
.rw-front-page .ast-page-builder-template,
.rw-front-page main {
    padding: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    float: none !important;
}

.rw-front-page .ast-separate-container .ast-article-single,
.rw-front-page .ast-right-sidebar,
.rw-front-page .ast-left-sidebar {
    padding: 0 !important;
    background: none !important;
    box-shadow: none !important;
    width: 100% !important;
}

/* Force full viewport width */
.rw-front-page #page {
    overflow-x: hidden;
    width: 100%;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.rw-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    /* Uniform dark base — color comes from the glowing elements (card,
       headline, button), NOT from the background. */
    background: radial-gradient(ellipse 130% 100% at 50% -5%, #0b1020 0%, #080b15 58%);
    overflow: hidden;
}

/* Animated hex grid background */
.rw-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    /* No background blooms — the glowing elements carry all the color. */
    background-image: none;
    pointer-events: none;
}

/* Grid pattern overlay */
.rw-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(10,191,188,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10,191,188,0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.rw-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: 60px;
    align-items: center;
}

/* Left — copy */
.rw-hero-copy {}

.rw-hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.rw-hero-eyebrow .rw-badge {
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0%, 100% { box-shadow: 0 0 0 0 rgba(10,191,188,0.4); }
    50%       { box-shadow: 0 0 0 6px rgba(10,191,188,0); }
}

.rw-hero h1 {
    font-family: 'Barlow', sans-serif;
    color: #fff;
    margin: 0 0 24px;
    letter-spacing: -1px;
    line-height: 1.02;
}

.rw-hero h1 .highlight {
    white-space: nowrap;
}

.rw-hero h1 .highlight,
.rw-hero-tagline .highlight,
.rw-login-panel-headline .highlight {
    background: var(--rw-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rw-hero-tagline {
    font-family: 'Barlow', sans-serif;
    font-size: clamp(17px, 2vw, 21px);
    font-weight: 800;
    color: var(--rw-text, #F9FAFB);
    margin: 0 0 14px;
    line-height: 1.3;
    letter-spacing: 0.01em;
}

.rw-hero-desc {
    font-size: 18px;
    line-height: 1.7;
    color: var(--rw-text-muted);
    margin-bottom: 36px;
    max-width: 480px;
}

.rw-hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.rw-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    border-top: 1px solid var(--rw-border);
    padding-top: 32px;
}

.rw-stat-item {
    min-width: 0;
}

.rw-stat-number {
    font-family: 'Barlow', sans-serif;
    font-weight: 900;
    font-size: clamp(20px, 2vw, 26px);
    background: var(--rw-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 4px;
    white-space: nowrap;
}

.rw-stat-label {
    font-size: 13px;
    color: var(--rw-text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Right — visual dashboard card */
.rw-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.rw-dashboard-card {
    background: var(--rw-card);
    border: 1px solid var(--rw-border);
    border-radius: var(--rw-radius-lg);
    padding: 24px;
    width: 100%;
    max-width: 440px;
    box-shadow: var(--rw-shadow), var(--rw-shadow-glow);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}

.rw-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--rw-border);
}

.rw-card-title {
    font-family: 'Barlow', sans-serif;
    font-weight: 800;
    font-size: 16px;
    color: #fff;
    letter-spacing: 0.3px;
}

.rw-card-bolt {
    filter: hue-rotate(200deg) saturate(1.5) brightness(0.85);
}

.rw-card-week {
    font-size: 12px;
    color: var(--rw-teal);
    font-weight: 600;
    background: rgba(10,191,188,0.1);
    padding: 3px 10px;
    border-radius: 99px;
}

/* Mini player rows in dashboard */
.rw-player-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.rw-player-row:last-child { border-bottom: none; }

.rw-player-rank {
    width: 24px;
    text-align: center;
    font-size: 12px;
    color: var(--rw-text-muted);
    font-weight: 700;
    flex-shrink: 0;
}

.rw-player-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 13px;
    font-family: 'Barlow', sans-serif;
}

.rw-player-avatar.qb  { background: rgba(21,101,192,0.3); color: #64B5F6; }
.rw-player-avatar.rb  { background: rgba(46,125,50,0.3);  color: #81C784; }
.rw-player-avatar.wr  { background: rgba(230,81,0,0.3);   color: #FFAB40; }
.rw-player-avatar.te  { background: rgba(106,27,154,0.3); color: #CE93D8; }

.rw-player-info { flex: 1; min-width: 0; }

.rw-player-info-name {
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rw-player-info-meta {
    font-size: 11px;
    color: var(--rw-text-muted);
    margin-top: 2px;
}

.rw-player-pts {
    font-family: 'Barlow', sans-serif;
    font-weight: 900;
    font-size: 18px;
    color: var(--rw-teal);
    flex-shrink: 0;
}

.rw-card-footer {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid var(--rw-border);
    text-align: center;
}

.rw-card-footer a {
    font-size: 13px;
    font-weight: 600;
    color: var(--rw-purple-light);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
}

.rw-card-footer a:hover { gap: 8px; }

/* ============================================================
   HERO REDESIGN (2026) — eyebrow pill, proof points, glow + phone
   ============================================================ */

/* Eyebrow pill */
.rw-hero-eyebrow { margin-bottom: 22px; }

.rw-hero-eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 15px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(10,191,188,0.16), rgba(124,58,237,0.16));
    border: 1px solid rgba(45,212,209,0.40);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #7DEFEC;
    box-shadow: 0 0 24px rgba(10,191,188,0.18);
}

.rw-hero-eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--rw-teal, #0ABFBC);
    animation: rw-hero-dot-pulse 2s infinite;
}

@keyframes rw-hero-dot-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(10,191,188,0.55); }
    50%       { box-shadow: 0 0 0 6px rgba(10,191,188,0); }
}

/* Headline — thinner top line, big bold gradient payoff (per mockup) */
.rw-hero-h1-top {
    display: block;
    font-weight: 600;
    font-size: clamp(46px, 5.6vw, 78px);
    letter-spacing: -0.5px;
}

.rw-hero h1 .highlight {
    display: inline-block;
    font-weight: 900;
    font-size: clamp(56px, 7vw, 100px);
    line-height: 1.0;
    margin-top: 2px;
}

/* 4 proof points row */
.rw-hero-points {
    list-style: none;
    margin: 0 0 36px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 28px;
}

.rw-hero-point {
    display: flex;
    align-items: center;
    gap: 11px;
}

.rw-hero-point-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(10,191,188,0.18), rgba(124,58,237,0.16));
    border: 1px solid rgba(45,212,209,0.30);
    color: #2DD4D1;
}

/* Each proof point gets its own accent color */
.rw-hero-point:nth-child(1) .rw-hero-point-icon { color: #60A5FA; background: rgba(96,165,250,0.14);  border-color: rgba(96,165,250,0.32); }
.rw-hero-point:nth-child(2) .rw-hero-point-icon { color: #A78BFA; background: rgba(167,139,250,0.16); border-color: rgba(167,139,250,0.32); }
.rw-hero-point:nth-child(3) .rw-hero-point-icon { color: #FBBF24; background: rgba(251,191,36,0.14);  border-color: rgba(251,191,36,0.32); }
.rw-hero-point:nth-child(4) .rw-hero-point-icon { color: #F87171; background: rgba(248,113,113,0.14); border-color: rgba(248,113,113,0.32); }

.rw-hero-point-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.rw-hero-point-text strong {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
}

.rw-hero-point-text span {
    font-size: 12px;
    color: var(--rw-text-muted);
}

/* Visual stage — glow card layered over a phone frame */
.rw-hero-stage {
    position: relative;
    width: 100%;
    max-width: 460px;
    display: flex;
    justify-content: center;
}

.rw-dashboard-card--glow {
    position: relative;
    z-index: 2;
    border-color: rgba(10,191,188,0.5);
    box-shadow:
        0 18px 50px rgba(0,0,0,0.6),
        0 0 38px rgba(10,191,188,0.35),
        0 0 70px rgba(124,58,237,0.30);
}

/* Gradient edge glow */
.rw-dashboard-card--glow::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(10,191,188,0.75), rgba(124,58,237,0.75));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    opacity: 0.85;
}

/* A touch more contrast on the supporting copy so it doesn't read washed out */
.rw-hero .rw-hero-desc { color: #B9C4CF; }

/* Push the card's gradient edge glow to full strength */
.rw-dashboard-card--glow::before { opacity: 1; }

/* Glowing primary CTA — a bright element on the dark background */
.rw-hero-ctas .rw-btn-primary {
    box-shadow: 0 8px 28px rgba(124,58,237,0.45), 0 0 22px rgba(10,191,188,0.22);
}

/* ============================================================
   TICKER BAR (between hero and features)
   ============================================================ */
.rw-ticker {
    background: var(--rw-surface);
    border-top: 1px solid var(--rw-border);
    border-bottom: 1px solid var(--rw-border);
    padding: 12px 0;
    overflow: hidden;
    position: relative;
    z-index: 3;
}

.rw-ticker-inner {
    display: flex;
    gap: 0;
    animation: ticker-scroll 45s linear infinite;
    width: max-content;
}

.rw-ticker-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 40px;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 600;
    color: var(--rw-text-muted);
}

.rw-ticker-item .label {
    color: var(--rw-teal);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
}

.rw-ticker-item .value {
    color: #fff;
}

.rw-ticker-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--rw-border);
    flex-shrink: 0;
}

@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.rw-features {
    padding: 100px 40px;
    background: #fff;
}

.rw-section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.rw-section-eyebrow {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--rw-teal-dark);
    margin-bottom: 12px;
}

.rw-section-title {
    font-family: 'Barlow', sans-serif;
    font-weight: 900;
    font-size: clamp(28px, 3.5vw, 44px);
    color: #0A0F1E;
    margin: 0 0 16px;
    line-height: 1.1;
}

.rw-section-title .highlight,
.rw-aura-teaser-copy h2 .highlight {
    background: var(--rw-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rw-section-desc {
    font-size: 17px;
    color: #6B7280;
    line-height: 1.7;
}

.rw-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.rw-feature-card {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: var(--rw-radius);
    padding: 32px 28px;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    position: relative;
    overflow: hidden;
}

.rw-feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--rw-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.rw-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    border-color: transparent;
}

.rw-feature-card:hover::before {
    transform: scaleX(1);
}

.rw-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.rw-feature-icon svg {
    width: 26px;
    height: 26px;
}

.rw-feature-icon.teal   { background: rgba(10,191,188,0.12); }
.rw-feature-icon.purple { background: rgba(124,58,237,0.12); }
.rw-feature-icon.gold   { background: rgba(245,158,11,0.12); }
.rw-feature-icon.red    { background: rgba(239,68,68,0.12); }
.rw-feature-icon.green  { background: rgba(16,185,129,0.12); }
.rw-feature-icon.blue   { background: rgba(59,130,246,0.12); }

.rw-feature-title {
    font-family: 'Barlow', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: #0A0F1E;
    margin: 0 0 10px;
}

.rw-feature-desc {
    font-size: 15px;
    line-height: 1.65;
    color: #6B7280;
    margin: 0 0 16px;
}

.rw-feature-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--rw-teal-dark);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
}

.rw-feature-link:hover { gap: 8px; color: var(--rw-purple); }

/* ============================================================
   TRADE ALCHEMY SPOTLIGHT
   ============================================================ */
.rw-alchemy-spotlight {
    padding: 100px 40px;
    background: var(--rw-surface, #111827);
    position: relative;
    overflow: hidden;
}

/* Ambient glow */
.rw-alchemy-spotlight::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 500px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(124,58,237,0.18) 0%, transparent 70%);
    pointer-events: none;
}
.rw-alchemy-spotlight::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -60px;
    width: 400px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(10,191,188,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.rw-alchemy-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* ── Copy side ─────────────────────────────────────────────── */
.rw-alchemy-copy .rw-section-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rw-teal, #0ABFBC);
    background: rgba(10,191,188,0.08);
    border: 1px solid rgba(10,191,188,0.2);
    border-radius: 100px;
    padding: 4px 14px;
    margin-bottom: 18px;
}

.rw-alchemy-copy h2 {
    font-family: 'Barlow', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--rw-text, #F9FAFB);
    margin: 0 0 8px;
    line-height: 1.1;
}

.rw-alchemy-tagline {
    font-family: 'Barlow', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #F59E0B;
    margin: 0 0 20px;
    letter-spacing: 0.04em;
}

.rw-alchemy-desc {
    font-size: 1rem;
    color: var(--rw-text-muted, #9CA3AF);
    line-height: 1.75;
    margin: 0 0 32px;
}

.rw-alchemy-features {
    list-style: none;
    margin: 0 0 36px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rw-alchemy-features li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.rw-alchemy-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.rw-alchemy-features li div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.rw-alchemy-features strong {
    font-family: 'Barlow', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--rw-text, #F9FAFB);
}

.rw-alchemy-features span {
    font-size: 0.85rem;
    color: var(--rw-text-muted, #9CA3AF);
    line-height: 1.5;
}

.rw-alchemy-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ── Visual card ───────────────────────────────────────────── */
.rw-alchemy-visual {
    position: relative;
}

.rw-alchemy-card {
    background: var(--rw-card, #1F2937);
    border: 1px solid rgba(124,58,237,0.3);
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(124,58,237,0.1),
        0 20px 60px rgba(0,0,0,0.5),
        0 0 80px rgba(124,58,237,0.1);
}

.rw-alchemy-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(10,191,188,0.15), rgba(124,58,237,0.15));
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.rw-alchemy-card-title {
    font-family: 'Barlow', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--rw-text, #F9FAFB);
    letter-spacing: 0.02em;
}

.rw-alchemy-card-scoring {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--rw-teal, #0ABFBC);
    background: rgba(10,191,188,0.1);
    border: 1px solid rgba(10,191,188,0.2);
    border-radius: 6px;
    padding: 3px 10px;
    letter-spacing: 0.06em;
}

.rw-alchemy-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.rw-ac-col {
    padding: 16px;
}

.rw-ac-col + .rw-ac-col {
    border-left: 1px solid rgba(255,255,255,0.06);
}

.rw-ac-give { border-top: 2px solid #F87171; }
.rw-ac-get  { border-top: 2px solid #34D399; }

.rw-ac-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}
.rw-ac-give .rw-ac-label { color: #F87171; }
.rw-ac-get  .rw-ac-label { color: #34D399; }

.rw-ac-player {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
}

.rw-ac-pos {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 5px;
    font-size: 0.6rem;
    font-weight: 800;
    flex-shrink: 0;
}
.rw-ac-pos.qb { background: rgba(248,113,113,0.15); color: #F87171; }
.rw-ac-pos.rb { background: rgba(52,211,153,0.15);  color: #34D399; }
.rw-ac-pos.wr { background: rgba(96,165,250,0.15);  color: #60A5FA; }
.rw-ac-pos.te { background: rgba(251,191,36,0.15);  color: #FBBF24; }

.rw-ac-pinfo {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.rw-ac-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--rw-text, #F9FAFB);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rw-ac-val {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--rw-teal, #0ABFBC);
}
.rw-ac-val-drop { color: #F87171; }

.rw-alchemy-drop-row {
    padding: 12px 16px;
    background: rgba(245,158,11,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    border-left: 3px solid #F59E0B;
    display: flex;
    align-items: center;
    gap: 12px;
}

.rw-ac-drop-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #F59E0B;
    white-space: nowrap;
    min-width: 60px;
}

.rw-ac-player-drop .rw-ac-val { color: #F87171; }

.rw-alchemy-verdict {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: rgba(52,211,153,0.05);
    border-top: 1px solid rgba(52,211,153,0.15);
}

.rw-av-badge {
    font-family: 'Barlow', sans-serif;
    font-size: 1.05rem;
    font-weight: 900;
    color: #34D399;
}

.rw-av-detail {
    font-size: 0.8rem;
    color: var(--rw-text-muted, #9CA3AF);
    line-height: 1.4;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .rw-alchemy-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .rw-alchemy-visual {
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .rw-alchemy-spotlight { padding: 64px 24px; }
}

/* ============================================================
   CRYSTAL BALL SPOTLIGHT
   ============================================================ */
.rw-cb-spotlight {
    padding: 100px 40px;
    background: var(--rw-dark, #0A0F1E);
    position: relative;
    overflow: hidden;
}

.rw-cb-spotlight::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -80px;
    width: 500px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(10,191,188,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.rw-cb-spotlight::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -60px;
    width: 400px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(124,58,237,0.14) 0%, transparent 70%);
    pointer-events: none;
}

.rw-cb-spotlight-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Visual first (left), copy second (right) — reversed from Alchemy */
.rw-cb-spotlight-visual { order: 1; }
.rw-cb-spotlight-copy   { order: 2; }

/* ── Chat card mockup ─── */
.rw-cb-chat-card {
    background: #111827;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.rw-cb-chat-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.rw-cb-chat-orb { font-size: 1.3rem; }

.rw-cb-chat-title {
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    flex: 1;
}

.rw-cb-chat-badge {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    background: var(--rw-gradient, linear-gradient(135deg,#0ABFBC,#7C3AED));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border: 1px solid rgba(10,191,188,0.3);
    border-radius: 4px;
    padding: 2px 7px;
    -webkit-text-fill-color: initial;
    color: #0ABFBC;
}

.rw-cb-chat-msgs {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rw-cb-chat-msg {
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    line-height: 1.55;
    max-width: 88%;
}

.rw-cb-msg-user {
    background: var(--rw-gradient, linear-gradient(135deg,#0ABFBC,#7C3AED));
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.rw-cb-msg-ai {
    background: rgba(255,255,255,0.06);
    color: var(--rw-text, #F9FAFB);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

/* ── Copy side ─── */
.rw-cb-spotlight-copy .rw-section-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rw-teal, #0ABFBC);
    margin-bottom: 16px;
}

.rw-cb-spotlight-copy h2 {
    font-family: 'Barlow', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.1;
}

.rw-cb-spotlight-tagline {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px;
}

.rw-cb-tagline-accent {
    background: var(--rw-gradient, linear-gradient(135deg, #0ABFBC, #7C3AED));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rw-cb-spotlight-desc {
    font-size: 1rem;
    color: var(--rw-text-muted, #9CA3AF);
    line-height: 1.7;
    margin: 0 0 32px;
}

/* Teal keywords (tools/actions) */
.rw-cb-keyword {
    color: var(--rw-teal, #0ABFBC);
    font-weight: 600;
}

/* Purple keywords (personalization) */
.rw-cb-keyword-purple {
    color: #A78BFA;
    font-weight: 600;
}

/* Feature list strong tags */
.rw-cb-features strong {
    color: #fff;
}

/* Chat mockup highlights */
.rw-cb-ai-pick {
    color: #0ABFBC;
    font-weight: 700;
}

.rw-cb-ai-stat {
    color: #FCD34D;
    font-weight: 700;
}

/* ── Feature card badge ─── */
.rw-feature-card-highlight {
    border-color: rgba(10,191,188,0.25) !important;
    position: relative;
}

.rw-feature-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0ABFBC;
    border: 1px solid rgba(10,191,188,0.4);
    border-radius: 4px;
    padding: 2px 8px;
    margin-bottom: 8px;
}

/* ── Responsive ─── */
@media (max-width: 1024px) {
    .rw-cb-spotlight-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .rw-cb-spotlight-visual {
        order: 2;
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }
    .rw-cb-spotlight-copy { order: 1; }
}

@media (max-width: 600px) {
    .rw-cb-spotlight { padding: 64px 24px; }
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.rw-how {
    padding: 100px 40px;
    background: var(--rw-dark);
    position: relative;
    overflow: hidden;
}

.rw-how::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 50%, rgba(10,191,188,0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 50%, rgba(124,58,237,0.10) 0%, transparent 50%);
    pointer-events: none;
}

.rw-how .rw-section-title { color: #fff; }
.rw-features .rw-section-header { max-width: 800px; }
.rw-how .rw-section-desc  { color: var(--rw-text-muted); }

.rw-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    list-style: none;
    padding: 0;
}

/* Connecting line between steps */
.rw-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(16.66% + 20px);
    right: calc(16.66% + 20px);
    height: 2px;
    background: linear-gradient(90deg, var(--rw-teal), var(--rw-purple));
    z-index: 0;
}

.rw-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.rw-step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--rw-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: 'Barlow', sans-serif;
    font-weight: 900;
    font-size: 28px;
    color: #fff;
    box-shadow: 0 0 30px rgba(10,191,188,0.3);
}

.rw-step-title {
    font-family: 'Barlow', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: #fff;
    margin: 0 0 10px;
}

.rw-step-desc {
    font-size: 15px;
    color: var(--rw-text-muted);
    line-height: 1.65;
}

/* ============================================================
   MEMBERSHIP / PRICING
   ============================================================ */
.rw-pricing {
    padding: 100px 40px;
    background: #F9FAFB;
}

.rw-pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
}

.rw-pricing-card {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: var(--rw-radius-lg);
    padding: 40px;
    position: relative;
    transition: transform 0.25s, box-shadow 0.25s;
}

.rw-pricing-card.featured {
    background: var(--rw-dark);
    border-color: transparent;
    box-shadow: 0 0 0 2px var(--rw-teal), var(--rw-shadow);
}

.rw-pricing-card:hover { transform: translateY(-4px); }

.rw-pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--rw-gradient);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 99px;
    white-space: nowrap;
}

.rw-plan-name {
    font-family: 'Barlow', sans-serif;
    font-weight: 900;
    font-size: 22px;
    margin-bottom: 8px;
}

.rw-pricing-card:not(.featured) .rw-plan-name { color: #0A0F1E; }
.rw-pricing-card.featured .rw-plan-name { color: #fff; }

.rw-plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 20px;
}

.rw-price-amount {
    font-family: 'Barlow', sans-serif;
    font-weight: 900;
    font-size: 48px;
    line-height: 1;
}

.rw-pricing-card:not(.featured) .rw-price-amount { color: #0A0F1E; }
.rw-pricing-card.featured .rw-price-amount {
    background: var(--rw-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rw-price-period {
    font-size: 15px;
    color: #9CA3AF;
    font-weight: 500;
}

.rw-plan-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #6B7280;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid #E5E7EB;
}

.rw-pricing-card.featured .rw-plan-desc {
    color: var(--rw-text-muted);
    border-color: var(--rw-border);
}

.rw-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rw-plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.rw-pricing-card:not(.featured) .rw-plan-features li { color: #374151; }
.rw-pricing-card.featured .rw-plan-features li { color: var(--rw-text); }

.rw-plan-features li::before {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--rw-gradient);
    /* checkmark via mask */
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='white' d='M16.7 5.3a1 1 0 0 1 0 1.4l-8 8a1 1 0 0 1-1.4 0l-4-4a1 1 0 1 1 1.4-1.4L8 12.6l7.3-7.3a1 1 0 0 1 1.4 0z'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='white' d='M16.7 5.3a1 1 0 0 1 0 1.4l-8 8a1 1 0 0 1-1.4 0l-4-4a1 1 0 1 1 1.4-1.4L8 12.6l7.3-7.3a1 1 0 0 1 1.4 0z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ── Nested sub-features (e.g. War Room components) ── */
/* Block layout with an absolute-positioned check so it sits on the FIRST line
   (not centered against the whole group + sublist). */
.rw-plan-features li.rw-feature-group {
    display: block;
    position: relative;
    padding-left: 30px;
}
.rw-plan-features li.rw-feature-group::before {
    position: absolute;
    left: 0;
    top: 2px;
    margin: 0;
}
.rw-plan-subfeatures {
    list-style: none;
    margin: 7px 0 2px 2px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.rw-plan-subfeatures li {
    font-size: 13px;
    color: var(--rw-text, #F9FAFB);
    gap: 8px;
    align-items: center;
}
.rw-plan-subfeatures li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    flex-shrink: 0;
    background: #0ABFBC;
    -webkit-mask: none;
    mask: none;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.rw-cta-banner {
    padding: 80px 40px;
    background: var(--rw-gradient);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.rw-cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(0,0,0,0.1) 0%, transparent 40%);
    pointer-events: none;
}

.rw-cta-banner-inner { position: relative; z-index: 1; }

.rw-cta-banner h2 {
    font-family: 'Barlow', sans-serif;
    font-weight: 900;
    font-size: clamp(30px, 4vw, 52px);
    color: #fff;
    margin: 0 0 14px;
    letter-spacing: -0.5px;
}

.rw-cta-banner p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin: 0 auto 36px;
    max-width: 560px;
    line-height: 1.6;
}

/* ============================================================
   WHY WE'RE DIFFERENT
   ============================================================ */
.rw-why-us {
    background: var(--rw-surface, #111827);
    padding: 80px 40px;
}

.rw-why-us-inner {
    max-width: 960px;
    margin: 0 auto;
}

.rw-why-us-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
}

.rw-why-us-col {
    border-radius: 16px;
    padding: 32px;
}

.rw-why-col-them {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.07);
}

.rw-why-col-us {
    background: rgba(10,191,188,0.05);
    border: 1px solid rgba(10,191,188,0.2);
}

.rw-why-col-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.rw-why-col-label {
    font-family: 'Barlow', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.rw-why-label-them {
    color: var(--rw-text-muted, #9CA3AF);
}

.rw-why-label-us {
    background: var(--rw-gradient, linear-gradient(135deg, #0ABFBC, #7C3AED));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rw-why-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.rw-why-col-them .rw-why-list li {
    color: var(--rw-text-muted, #9CA3AF);
    font-size: 0.95rem;
    padding-left: 26px;
    position: relative;
    line-height: 1.5;
}

.rw-why-col-them .rw-why-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: rgba(239,68,68,0.55);
    font-weight: 700;
}

/* Nested sub-points (e.g. under the waiver recommendation row) — dash markers,
   smaller + more muted, so they read as elaborations of the parent ✗ point. */
.rw-why-col-them .rw-why-sublist {
    list-style: none;
    margin: 10px 0 2px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.rw-why-col-them .rw-why-sublist li {
    font-size: 0.85rem;
    padding-left: 18px;
    color: rgba(156,163,175,0.8);
}
.rw-why-col-them .rw-why-sublist li::before {
    content: '–';
    color: rgba(239,68,68,0.4);
    font-weight: 700;
}

.rw-why-col-us .rw-why-list li {
    color: var(--rw-text, #F9FAFB);
    font-size: 0.95rem;
    padding-left: 26px;
    position: relative;
    line-height: 1.5;
}

.rw-why-col-us .rw-why-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--rw-teal, #0ABFBC);
    font-weight: 700;
}

.rw-why-col-us .rw-why-list li strong {
    color: #fff;
}

/* Rotowizards sub-points (waiver, auction, start/sit, trade) — mirror the
   Other Sites sub-list, with a teal dash instead of the red one. */
.rw-why-col-us .rw-why-sublist {
    list-style: none;
    margin: 10px 0 2px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.rw-why-col-us .rw-why-sublist li {
    font-size: 0.85rem;
    padding-left: 18px;
    color: rgba(249,250,251,0.82);
}
.rw-why-col-us .rw-why-sublist li::before {
    content: '–';
    color: rgba(10,191,188,0.6);
    font-weight: 700;
}

/* Collapsible groups (waiver / auction / start-sit / trade). Native <details>;
   waivers ship open, the rest collapsed, so the comparison is skimmable but the
   detail is one click away. The ✗/✓ marker stays on the parent <li>. */
.rw-why-details summary {
    list-style: none;                 /* Firefox default triangle */
    cursor: pointer;
    position: relative;
    padding-right: 112px;             /* room for the "Show details" pill */
    outline: none;
    transition: color 0.15s;
}
.rw-why-details summary::-webkit-details-marker { display: none; }  /* Chrome/Safari triangle */

/* Explicit, button-like cue so it's obvious the row expands. */
.rw-why-details summary::after {
    content: 'Show details ▾';
    position: absolute;
    right: 0;
    top: -2px;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
    white-space: nowrap;
    transition: filter 0.15s, background 0.15s;
}
.rw-why-details[open] summary::after { content: 'Hide ▴'; }
.rw-why-details summary:hover { color: #fff; }
.rw-why-details summary:hover::after { filter: brightness(1.25); }

.rw-why-col-us .rw-why-details summary::after {
    color: var(--rw-teal, #0ABFBC);
    background: rgba(10,191,188,0.12);
    border: 1px solid rgba(10,191,188,0.4);
}

/* ============================================================
   AURA TEASER
   ============================================================ */
.rw-aura-teaser {
    padding: 100px 24px;
    background: #0A0F1E;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.rw-aura-teaser-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 72px;
}

.rw-aura-teaser-copy {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.rw-aura-teaser-badge {
    display: inline-block;
    background: linear-gradient(135deg, #7C3AED, #0ABFBC);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 99px;
}

.rw-aura-teaser-copy h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    color: #F9FAFB;
    margin: 0;
}

.rw-aura-teaser-tag {
    font-size: 1.15rem;
    font-weight: 700;
    color: #E5E7EB;
    margin: 0;
}

.rw-aura-teaser-desc {
    font-size: 1rem;
    color: #9CA3AF;
    line-height: 1.75;
    margin: 0;
}

.rw-aura-teaser-desc em {
    font-style: normal;
    color: #F9FAFB;
}

/* Mock score card */
.rw-aura-teaser-visual {
    flex-shrink: 0;
    width: 320px;
}

.rw-aura-mock {
    background: #111827;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(124,58,237,0.15);
}

.rw-aura-mock-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: rgba(124,58,237,0.12);
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.rw-aura-mock-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #F9FAFB;
}

.rw-aura-mock-league {
    font-size: 0.75rem;
    color: #6B7280;
}

.rw-aura-mock-rows {
    padding: 8px 0;
}

.rw-aura-mock-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.rw-aura-mock-row:last-child { border-bottom: none; }

.rw-aura-pos {
    font-size: 0.7rem;
    font-weight: 800;
    padding: 3px 7px;
    border-radius: 5px;
    width: 32px;
    text-align: center;
    flex-shrink: 0;
}

.rw-aura-pos.rb { background: rgba(16,185,129,0.15); color: #10B981; }
.rw-aura-pos.wr { background: rgba(59,130,246,0.15); color: #60A5FA; }
.rw-aura-pos.qb { background: rgba(239,68,68,0.15);  color: #F87171; }
.rw-aura-pos.te { background: rgba(245,158,11,0.15); color: #FBBF24; }

.rw-aura-name {
    flex: 1;
    font-size: 0.88rem;
    color: #E5E7EB;
}

.rw-aura-score {
    font-size: 1rem;
    font-weight: 900;
    width: 46px;
    text-align: right;
    flex-shrink: 0;
}

.rw-aura-high { color: #10B981; }
.rw-aura-mid  { color: #FBBF24; }
.rw-aura-low  { color: #9CA3AF; }

.rw-aura-mock-footer {
    padding: 10px 20px;
    background: rgba(10,191,188,0.06);
    border-top: 1px solid rgba(10,191,188,0.1);
    font-size: 0.72rem;
    color: #0ABFBC;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.04em;
}

@media (max-width: 900px) {
    .rw-aura-teaser-inner { flex-direction: column; gap: 48px; }
    .rw-aura-teaser-visual { width: 100%; max-width: 380px; align-self: center; }
    .rw-aura-teaser { padding: 72px 24px; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .rw-features-grid { grid-template-columns: repeat(2, 1fr); }
    .rw-hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .rw-hero-visual { display: none; }
}

@media (max-width: 768px) {
    .rw-hero { min-height: auto; }
    .rw-hero-inner { padding: 60px 24px; }
    /* Stack the 3 stat items full-width so the labels wrap naturally instead
       of being squeezed into ~1/3 columns (which orphaned words like "to"). */
    .rw-hero-stats { grid-template-columns: 1fr; gap: 20px; }
    .rw-features { padding: 60px 24px; }
    .rw-features-grid { grid-template-columns: 1fr; }
    .rw-how { padding: 60px 24px; }
    .rw-steps { grid-template-columns: 1fr; }
    .rw-steps::before { display: none; }
    .rw-pricing { padding: 60px 24px; }
    .rw-pricing-grid { grid-template-columns: 1fr; }
    .rw-cta-banner { padding: 60px 24px; }
    .rw-hero-ctas { flex-direction: column; }
    .rw-hero-ctas .rw-btn { text-align: center; justify-content: center; }

    /* ── Why We're Different ── */
    .rw-why-us { padding: 60px 24px; }
    .rw-why-us-table { grid-template-columns: 1fr; }

    /* ── Mobile text reduction ── */

    /* Hero: hide the long description paragraph */
    .rw-hero-desc { display: none; }

    /* Feature cards: hide description, keep icon + title + link */
    .rw-feature-desc { display: none; }

    /* Spotlight sections: hide the long desc paragraphs */
    .rw-alchemy-desc { display: none; }
    .rw-cb-spotlight-desc { display: none; }

    /* Spotlight bullet lists: hide the sub-text, keep bold label */
    .rw-alchemy-features li span:not(.rw-alchemy-icon) { display: none; }

    /* How It Works: hide step descriptions */
    .rw-step-desc { display: none; }

    /* AURA teaser: hide desc on tiny screens */
    .rw-aura-teaser-desc { display: none; }
    .rw-aura-teaser-inner { flex-direction: column; }
    .rw-aura-teaser-visual { display: none; }
}

/* ── Logged-in tools strip ────────────────────────────────────── */
.rw-tools-strip {
    background: rgba(255,255,255,0.04);
    border-top: 1px solid var(--rw-border);
    border-bottom: 1px solid var(--rw-border);
    padding: 20px 24px;
}
.rw-tools-strip-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.rw-tool-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 20px;
    border-radius: 10px;
    border: 1px solid var(--rw-border);
    background: rgba(255,255,255,0.03);
    color: var(--rw-text-muted);
    text-decoration: none;
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
    min-width: 100px;
}
.rw-tool-btn:hover {
    background: rgba(10,191,188,0.08);
    border-color: var(--rw-teal);
    color: #fff;
}
.rw-tool-icon {
    font-size: 22px;
}
