/* ============================================
   REVAMPED — Landing Page Styles
   ============================================ */

:root {
    --red: #ff4655;
    --red-dark: #cc3844;
    --cyan: #00ffaa;
    --gold: #ffd700;
    --bg: #0a0a0f;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a25;
    --bg-surface: #16161f;
    --border: #ffffff10;
    --text: #ffffff;
    --text-muted: #8b8b9e;
    --text-dim: #5a5a6e;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a { color: inherit; text-decoration: none; }

/* ============================================
   GRADIENT TEXT
   ============================================ */
.gradient-text {
    background: linear-gradient(135deg, var(--red) 0%, #ff6b7a 50%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    backdrop-filter: blur(0px);
}

.nav.scrolled {
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.5px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--red), #ff6b7a);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
    color: white;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    font-size: 14px;
    font-weight: 500;
}

.nav-links a {
    color: var(--text-muted);
    transition: color var(--transition);
}

.nav-links a:hover { color: var(--text); }

.nav-cta {
    background: var(--red) !important;
    color: white !important;
    padding: 8px 20px;
    border-radius: 100px;
    font-weight: 600;
    transition: all var(--transition) !important;
}

.nav-cta:hover { background: var(--red-dark) !important; transform: translateY(-1px); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-muted);
    padding: 8px 0;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 15px;
    font-family: var(--font);
    transition: all var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--red);
    color: white;
    box-shadow: 0 4px 24px rgba(255, 70, 85, 0.3);
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 70, 85, 0.4);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-lg { padding: 18px 36px; font-size: 17px; }

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    padding-top: 140px;
    padding-bottom: 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(255, 70, 85, 0.15) 0%, rgba(255, 70, 85, 0.05) 40%, transparent 70%);
    pointer-events: none;
}

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

.hero-content {
    position: relative;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 70, 85, 0.1);
    border: 1px solid rgba(255, 70, 85, 0.2);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--red);
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}

.hero h1 {
    font-size: clamp(48px, 8vw, 88px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -3px;
    margin-bottom: 24px;
}

.hero-sub {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

/* ============================================
   HERO DEVICE MOCKUPS (Real Screenshots)
   ============================================ */
.hero-devices {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    max-width: 1060px;
    margin: 0 auto;
}

.hero-real-note {
    text-align: center;
    font-size: 15px;
    color: var(--text-muted);
    margin-top: 28px;
    letter-spacing: 0.02em;
    font-weight: 500;
}

.device-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

/* iPad in center */
.device-ipad-hero {
    flex-shrink: 0;
    z-index: 1;
}

.device-frame-ipad-hero {
    width: 560px;
    border-radius: 14px;
    border: 3px solid #2a2a38;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
    background: #1a1a24;
    aspect-ratio: 4/3;
}

/* Phone frames */
.device-frame-phone {
    width: 180px;
    border-radius: 28px;
    border: 3px solid #2a2a38;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    background: #1a1a24;
    aspect-ratio: 9/19.5;
}

.device-phone-left {
    flex-shrink: 0;
    z-index: 2;
}

/* Hero Watch frame */
.device-watch-hero {
    flex-shrink: 0;
    z-index: 2;
    position: relative;
}

.device-frame-watch {
    width: 120px;
    aspect-ratio: 11/13;
    border-radius: 36px;
    background: #111;
    border: 3px solid #2a2a38;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.04),
        0 30px 60px rgba(0,0,0,0.6),
        inset 0 1px 0 rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
    padding: 7px;
}

.watch-screen-hero {
    width: 100%;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    background: #000;
}

.watch-screen-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

/* Digital Crown — same style as watchOS section, scaled down */
.hero-watch-crown-track {
    position: absolute;
    right: -7px;
    top: 28px;
    width: 6px;
    height: 22px;
    background: #3a3a48;
    border-radius: 3px;
    z-index: 2;
    box-shadow: 1px 0 3px rgba(0,0,0,0.4);
}

.hero-watch-crown-track::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 1px;
    right: 1px;
    height: calc(100% - 4px);
    background: repeating-linear-gradient(
        180deg,
        #555 0px,
        #555 1px,
        #3a3a48 1px,
        #3a3a48 2.5px
    );
    border-radius: 2px;
}

/* Side button — flat oblong below crown */
.hero-watch-crown-track::after {
    content: '';
    position: absolute;
    top: 38px;
    left: 0px;
    width: 5px;
    height: 33px;
    background: #3a3a48;
    border-radius: 3px;
    box-shadow: 1px 0 3px rgba(0,0,0,0.4);
}

/* ============================================
   MOCK UI — Profile (Mac)
   ============================================ */
.mock { width: 100%; height: 100%; }

.mock-profile {
    display: flex;
    background: var(--bg);
}

.mock-sidebar {
    width: 160px;
    background: #0e0e16;
    padding: 12px 8px;
    flex-shrink: 0;
    border-right: 1px solid var(--border);
}

.mock-sidebar-item {
    padding: 7px 10px;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-dim);
    border-radius: 6px;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mock-sidebar-item.active {
    background: rgba(255, 70, 85, 0.1);
    color: var(--red);
}

.mock-icon { font-size: 12px; }

.mock-main {
    flex: 1;
    padding: 0;
    overflow: hidden;
}

.mock-card-banner {
    height: 80px;
    background: linear-gradient(135deg, #1a1a2e, #2d1b3d, #1a2a3e);
    position: relative;
}

.mock-player-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    margin-top: -20px;
    position: relative;
}

.mock-avatar {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ff4655, #ff6b7a);
    border: 2px solid var(--bg);
    flex-shrink: 0;
}

.mock-name { font-size: 14px; font-weight: 700; }
.mock-tag { font-size: 10px; color: var(--text-dim); }

.mock-rank-row {
    display: flex;
    gap: 12px;
    padding: 6px 16px;
}

.mock-rank-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-card);
    padding: 8px 12px;
    border-radius: 10px;
    flex: 1;
    border: 1px solid var(--border);
}

.mock-rank-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
}

.mock-rank-icon.imm { background: linear-gradient(135deg, #ff4655, #ff8a94); }
.mock-rank-icon.rad { background: linear-gradient(135deg, #ffd700, #fffacd); }

.mock-rank-label { font-size: 11px; font-weight: 700; }
.mock-rank-label-sm { font-size: 8px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.5px; }
.mock-rr { font-size: 10px; color: var(--cyan); }

.mock-rr-graph {
    padding: 4px 16px;
    height: 42px;
}

.rr-line { width: 100%; height: 100%; }

.mock-stats-row {
    display: flex;
    gap: 8px;
    padding: 6px 16px;
}

.mock-stat {
    flex: 1;
    background: var(--bg-card);
    border-radius: 8px;
    padding: 6px 8px;
    text-align: center;
    font-size: 9px;
    color: var(--text-dim);
    border: 1px solid var(--border);
}

.mock-stat span {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1px;
}

/* ============================================
   MOCK UI — Store (iPhone)
   ============================================ */
.mock-store-phone {
    padding: 12px;
    background: var(--bg);
    height: 100%;
}

.mock-phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.mock-phone-title { font-size: 20px; font-weight: 800; }
.mock-wallet { font-size: 11px; color: var(--cyan); font-weight: 600; }

.mock-phone-section-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dim);
    margin-bottom: 8px;
    font-weight: 600;
}

.mock-store-grid-phone {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mock-skin-card-phone {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.mock-skin-img-phone {
    height: 50px;
}

.tier-ultra .mock-skin-img-phone { background: linear-gradient(135deg, #fad663, #e8b525); }
.tier-premium .mock-skin-img-phone { background: linear-gradient(135deg, #e0a44e, #c77d2a); }
.tier-select .mock-skin-img-phone { background: linear-gradient(135deg, #5a9fe6, #3a7fc6); }
.tier-deluxe .mock-skin-img-phone { background: linear-gradient(135deg, #4ac29a, #2a9a6a); }

.mock-skin-info-phone {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 10px;
    background: var(--bg-card);
    font-size: 10px;
    font-weight: 600;
}

.mock-price-phone { color: var(--cyan); }

/* ============================================
   BETA NOTICE
   ============================================ */
.beta-notice {
    padding: 32px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.beta-text {
    font-size: 15px;
    color: var(--text-muted);
    letter-spacing: 0.02em;
    line-height: 1.6;
}

.beta-label {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 13px;
    margin-right: 10px;
    padding: 4px 12px;
    border-radius: 4px;
    background: linear-gradient(135deg, var(--red), #ff6b7a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border: 1px solid rgba(255, 70, 85, 0.3);
    display: inline-block;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 70, 85, 0.08);
    border: 1px solid rgba(255, 70, 85, 0.15);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   FEATURES GRID
   ============================================ */
.features {
    padding: 120px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all var(--transition);
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.feature-large {
    grid-column: span 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0;
    overflow: hidden;
}

.feature-large .feature-text {
    padding: 40px 40px 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-visual {
    background: linear-gradient(135deg, #12121a, #1a1228);
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 70, 85, 0.08);
    border: 1px solid rgba(255, 70, 85, 0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    margin-bottom: 20px;
    position: relative;
}

.live-icon .live-dot {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 8px;
    height: 8px;
    background: var(--cyan);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Feature profile real screenshot */
.feature-phone-frame {
    width: 240px;
    border-radius: 28px;
    border: 3px solid #2a2a38;
    overflow: hidden;
    background: #1a1a24;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.feature-screenshot {
    width: 100%;
    display: block;
}

/* ============================================
   PLATFORMS
   ============================================ */
.platforms {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg) 0%, #0d0d14 100%);
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.platform-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}

.platform-card:hover {
    border-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.platform-device-visual {
    padding: 32px 32px 0;
    display: flex;
    justify-content: center;
    min-height: 220px;
    align-items: flex-end;
}

.platform-info {
    padding: 24px 32px 32px;
}

.platform-icon-row {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.platform-icon-row h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
}

.platform-info p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Platform device frames with real screenshots */
.platform-screenshot {
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: top;
}

.platform-phone-frame {
    width: 160px;
    background: #1a1a24;
    border-radius: 20px;
    border: 2px solid #2a2a38;
    overflow: hidden;
    margin-bottom: -1px;
}

.platform-phone-frame .platform-screenshot {
    aspect-ratio: 9/17;
}

.platform-ipad-frame {
    width: 280px;
    background: #1a1a24;
    border-radius: 14px;
    border: 2px solid #2a2a38;
    overflow: hidden;
    margin-bottom: -1px;
}

.platform-mac-frame {
    width: 100%;
    max-width: 420px;
    background: #1a1a24;
    border-radius: 10px;
    border: 2px solid #2a2a38;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.platform-mac-screenshot {
    width: 100%;
    display: block;
}

.platform-mac-frame::before {
    content: '';
    display: none;
}

.platform-watch-frame {
    width: 130px;
    background: #1a1a24;
    border-radius: 32px;
    border: 2px solid #2a2a38;
    overflow: hidden;
    padding: 10px;
}

.platform-screenshot-watch {
    width: 100%;
    display: block;
    border-radius: 22px;
}

.platform-screen {
    background: var(--bg);
    aspect-ratio: auto;
    overflow: hidden;
}

/* Platform mock contents */
.p-mock-matches { padding: 10px; }
.p-mock-header {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
    padding: 4px 0;
}

.p-match-row {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 6px;
    border-radius: 6px;
    margin-bottom: 3px;
    font-size: 8px;
    border-left: 2px solid;
}

.p-match-row.win { border-left-color: var(--cyan); background: rgba(0, 255, 170, 0.04); }
.p-match-row.loss { border-left-color: var(--red); background: rgba(255, 70, 85, 0.04); }

.p-map { font-weight: 600; width: 30px; }
.p-agent {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, #444, #666);
    flex-shrink: 0;
}
.p-kda { flex: 1; color: var(--text-muted); }
.p-rr { font-weight: 700; }
.p-rr.rr-up { color: var(--cyan); }
.p-rr.rr-down { color: var(--red); }

/* Strategy mock */
.p-mock-strategy { height: 100%; display: flex; flex-direction: column; }

.p-strat-toolbar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 8px;
    background: #0e0e16;
    border-bottom: 1px solid var(--border);
    font-size: 10px;
}

.p-tool {
    padding: 3px 6px;
    border-radius: 4px;
    color: var(--text-dim);
}

.p-tool.active {
    background: rgba(255, 70, 85, 0.15);
    color: var(--red);
}

.p-colors {
    margin-left: auto;
    display: flex;
    gap: 3px;
}

.p-colors i {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.p-strat-map {
    flex: 1;
    position: relative;
    background: linear-gradient(135deg, #0a0f14, #0e1118);
    padding: 10px;
}

.p-strat-label {
    position: absolute;
    top: 12%;
    left: 25%;
    font-size: 9px;
    font-weight: 700;
    color: var(--red);
    opacity: 0.6;
}

.p-strat-label.b { left: auto; right: 22%; }

.p-strat-lines { position: absolute; inset: 0; width: 100%; height: 100%; }

.p-strat-agent {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7px;
    font-weight: 700;
    color: white;
}

.p-strat-agent.green { background: var(--cyan); color: #0a0a0f; }

/* Mac live mock */
.p-mock-mac-live { display: flex; height: 100%; }

.p-mac-sidebar {
    width: 70px;
    background: #0e0e16;
    padding: 8px 4px;
    border-right: 1px solid var(--border);
}

.p-sb-item {
    padding: 5px 8px;
    font-size: 8px;
    font-weight: 500;
    color: var(--text-dim);
    border-radius: 4px;
    margin-bottom: 2px;
}

.p-sb-item.active {
    background: rgba(255, 70, 85, 0.1);
    color: var(--red);
}

.p-mac-main { flex: 1; padding: 10px; }

.p-live-header {
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
}

.p-live-timer {
    color: var(--cyan);
    font-variant-numeric: tabular-nums;
}

.p-live-players { display: flex; flex-direction: column; gap: 4px; }

.p-live-player {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 8px;
    background: var(--bg-card);
    border-radius: 6px;
    font-size: 8px;
    border: 1px solid var(--border);
}

.p-lp-rank {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
}

.p-lp-rank.imm { background: linear-gradient(135deg, #ff4655, #ff8a94); }
.p-lp-rank.dia { background: linear-gradient(135deg, #b489fa, #8b5cf6); }
.p-lp-rank.asc { background: linear-gradient(135deg, #2dde98, #1fb880); }

.p-lp-name { font-weight: 600; flex: 1; }
.p-lp-kd { color: var(--text-dim); }
.p-lp-wr { color: var(--cyan); font-weight: 600; }

/* Watch mock */
.p-mock-watch {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.p-watch-rank-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff4655, #ff8a94);
    margin-bottom: 4px;
}

.p-watch-rank-text { font-size: 8px; font-weight: 700; }
.p-watch-rr { font-size: 7px; color: var(--cyan); }

/* ============================================
   STRATEGY SECTION
   ============================================ */
.strategy {
    padding: 120px 0;
}

.strategy-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.strategy-text h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.strategy-text > p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 36px;
}

.strategy-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.strategy-features li {
    display: flex;
    gap: 14px;
}

.sf-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(255, 70, 85, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.strategy-features li strong {
    display: block;
    font-size: 15px;
    margin-bottom: 2px;
}

.strategy-features li div {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Strategy screenshot */
.strat-screenshot-frame {
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid #2a2a38;
    box-shadow: 0 40px 80px rgba(0,0,0,0.4);
    background: #1a1a24;
}

.strat-screenshot {
    width: 100%;
    display: block;
}

/* ============================================
   STORE SECTION
   ============================================ */
.store-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg) 0%, #0d0d14 100%);
}

.store-showcase {
    max-width: 900px;
    margin: 0 auto;
}

.store-showcase-split {
    max-width: 1100px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 48px;
    align-items: center;
}

.store-phone-visual {
    display: flex;
    justify-content: center;
}

.store-phone-frame {
    width: 260px;
    border-radius: 32px;
    border: 3px solid #2a2a38;
    overflow: hidden;
    background: #1a1a24;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.store-phone-screenshot {
    width: 100%;
    display: block;
}

.store-feature-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.store-feat {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all var(--transition);
}

.store-feat:hover {
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

.store-feat-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.store-feat h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.store-feat p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================
   WIDGETS
   ============================================ */
.widgets {
    padding: 120px 0;
}

/* Widget cards grid — screenshot with label underneath */
.widget-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.widget-card-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.widget-card-text {
    margin-top: 16px;
}

.widget-card-text h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.widget-card-text p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ============================================
   MORE FEATURES
   ============================================ */
.more-features {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg) 0%, #0d0d14 100%);
}

.more-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.more-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: all var(--transition);
}

.more-item:hover {
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

.more-icon {
    font-size: 28px;
    margin-bottom: 16px;
}

.more-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.more-item p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================
   DOWNLOAD CTA
   ============================================ */
.download {
    padding: 120px 0;
}

.download-card {
    position: relative;
    text-align: center;
    background: linear-gradient(135deg, #16121f, #1a1228, #12182a);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 80px 40px;
    overflow: hidden;
}

.download-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 70, 85, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 255, 170, 0.05) 0%, transparent 50%);
}

.download-card h2 {
    position: relative;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 16px;
}

.download-card p {
    position: relative;
    font-size: 17px;
    color: var(--text-muted);
    max-width: 460px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.download-card .btn {
    position: relative;
}

.download-platforms {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    font-size: 14px;
    color: var(--text-dim);
}

.download-platforms .dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--text-dim);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 40px 0;
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 12px;
}

.footer-logo .logo-icon {
    width: 30px;
    height: 30px;
    font-size: 15px;
}

.footer-disclaimer {
    font-size: 12px;
    color: var(--text-dim);
    max-width: 500px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 24px;
    font-size: 13px;
    color: var(--text-muted);
}

.footer-links a:hover { color: var(--text); }

/* ============================================
   WATCHOS CROWN-SCROLL SECTION
   ============================================ */
.watchos {
    position: relative;
    background: linear-gradient(180deg, #0d0d14 0%, var(--bg) 50%, #0d0d14 100%);
}

.watchos-scroll-area {
    height: 400vh;
    position: relative;
}

.watchos-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
}

.watchos-layout {
    max-width: 1000px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 80px;
    align-items: center;
}

.watchos-text h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.watchos-text > p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 420px;
}

.watchos-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 70, 85, 0.08);
    border: 1px solid rgba(255, 70, 85, 0.15);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 16px;
    transition: opacity 0.3s ease;
    min-width: 180px;
    text-align: center;
}

.watchos-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-dim);
    animation: hintBounce 2s ease-in-out infinite;
}

@keyframes hintBounce {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50% { transform: translateY(6px); opacity: 1; }
}

.watchos-device-wrap {
    position: relative;
}

/* Watch frame */
.watchos-watch-frame {
    width: 220px;
    height: 268px;
    background: #111;
    border-radius: 56px;
    border: 4px solid #2a2a38;
    overflow: hidden;
    padding: 12px;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.04),
        0 40px 80px rgba(0,0,0,0.6),
        inset 0 1px 0 rgba(255,255,255,0.05);
    position: relative;
}

/* Digital Crown — cylindrical knob on upper right */
.watchos-crown-track {
    position: absolute;
    right: -12px;
    top: 52px;
    width: 10px;
    height: 38px;
    background: #3a3a48;
    border-radius: 5px;
    z-index: 2;
    box-shadow: 1px 0 3px rgba(0,0,0,0.4);
}

.watchos-crown-track::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 1px;
    right: 1px;
    height: calc(100% - 4px);
    background: repeating-linear-gradient(
        180deg,
        #555 0px,
        #555 1.5px,
        #3a3a48 1.5px,
        #3a3a48 4px
    );
    border-radius: 3px;
}

/* Side button — flat oblong below crown */
.watchos-crown-track::after {
    content: '';
    position: absolute;
    top: 70px;
    left: 1px;
    width: 8px;
    height: 60px;
    background: #3a3a48;
    border-radius: 4px;
    box-shadow: 1px 0 3px rgba(0,0,0,0.4);
}

.watchos-screen {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 44px;
    position: relative;
}

.watchos-screen img {
    width: 100%;
    display: block;
    will-change: transform;
    transition: transform 0.08s linear;
}

/* Progress bar underneath the watch */
.watchos-progress-bar {
    width: 120px;
    height: 3px;
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
    overflow: hidden;
    margin: 16px auto 0;
}

.watchos-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--red), var(--cyan));
    border-radius: 2px;
    transition: width 0.1s ease-out;
}

/* ============================================
   MATCH INTELLIGENCE SECTION
   ============================================ */
.match-intel {
    padding: 120px 0;
    background: linear-gradient(180deg, #0d0d14 0%, var(--bg) 50%, #0d0d14 100%);
}

.match-intel-showcase {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.match-phone-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 24px 8px;
    margin: 0 -24px;
}

.match-phone-scroll::-webkit-scrollbar { display: none; }

.match-phone-row {
    display: inline-flex;
    gap: 20px;
    min-width: 100%;
    justify-content: center;
}

.match-phone-item {
    flex-shrink: 0;
    text-align: center;
}

.match-phone-frame {
    width: 160px;
    border-radius: 24px;
    border: 3px solid #2a2a38;
    overflow: hidden;
    background: #0a0a0f;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    aspect-ratio: 9/19.5;
}

.match-phone-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.match-phone-label {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}

/* Heatmap grid */
.heatmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
    max-width: 960px;
    margin: 0 auto;
}

.heatmap-card {
    text-align: center;
}

.heatmap-frame {
    border-radius: 16px;
    border: 2px solid #2a2a38;
    overflow: hidden;
    background: #0a0a0f;
    box-shadow: 0 12px 24px rgba(0,0,0,0.3);
    aspect-ratio: 9/19.5;
}

.heatmap-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
}

.heatmap-label {
    display: block;
    margin-top: 8px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   PLAYER SCOUTING SECTION
   ============================================ */
.scouting {
    padding: 120px 0;
}

.scouting-showcase {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.scouting-phone-row {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.scouting-phone-item {
    flex-shrink: 0;
    text-align: center;
}

.scouting-phone-frame {
    width: 160px;
    border-radius: 24px;
    border: 3px solid #2a2a38;
    overflow: hidden;
    background: #0a0a0f;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    aspect-ratio: 9/19.5;
}

.scouting-phone-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.scouting-phone-label {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}

/* Widget screenshot frames */
.widget-real-img {
    width: 100%;
    border-radius: 28px;
    border: 3px solid #2a2a38;
    overflow: hidden;
    background: #0a0a0f;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
}

.widget-real-img:hover {
    transform: scale(1.03);
}

.widget-real-img img {
    width: 100%;
    display: block;
}

/* ============================================
   CAREER STATS SECTION
   ============================================ */
.career-stats {
    padding: 120px 0;
}

.career-stats-showcase {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.career-stats-phone-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 24px 8px;
    margin: 0 -24px;
}

.career-stats-phone-scroll::-webkit-scrollbar { display: none; }

.career-stats-phone-row {
    display: inline-flex;
    gap: 24px;
    min-width: 100%;
    justify-content: center;
}

.career-stats-phone-item {
    flex-shrink: 0;
    text-align: center;
}

.career-stats-phone-frame {
    width: 200px;
    border-radius: 28px;
    border: 3px solid #2a2a38;
    overflow: hidden;
    background: #0a0a0f;
    box-shadow: 0 24px 48px rgba(0,0,0,0.4);
    aspect-ratio: 9/19.5;
}

.career-stats-phone-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.career-stats-phone-label {
    display: block;
    margin-top: 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
}

/* ============================================
   FRIENDS SECTION
   ============================================ */
.friends-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #0d0d14 0%, var(--bg) 50%, #0d0d14 100%);
}

.friends-showcase {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: flex-start;
}

.friends-phone-item {
    text-align: center;
}

.friends-phone-frame {
    width: 220px;
    border-radius: 28px;
    border: 3px solid #2a2a38;
    overflow: hidden;
    background: #0a0a0f;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    aspect-ratio: 9/19.5;
}

.friends-phone-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.friends-phone-label {
    display: block;
    margin-top: 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-muted);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* ---------- Tablet (max 1024px) ---------- */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-large {
        grid-column: span 2;
    }

    .strategy-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .more-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .store-showcase-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .store-phone-visual { justify-content: center; }
    .store-phone-frame { width: 220px; }

    .widget-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .hero-devices { gap: 20px; }
    .device-frame-ipad-hero { width: 420px; }
    .device-frame-phone { width: 150px; }

    .watchos-layout {
        gap: 48px;
    }

    .match-phone-frame { width: 140px; }
    .scouting-phone-frame { width: 140px; }
    .career-stats-phone-frame { width: 170px; }
    .heatmap-grid { grid-template-columns: repeat(3, 1fr); }

    .friends-phone-frame { width: 180px; }
}

/* ---------- Mobile landscape / small tablet (max 768px) ---------- */
@media (max-width: 768px) {
    /* Nav */
    .nav-links { display: none; }
    .nav-toggle { display: flex; }

    /* Hero */
    .hero { padding-top: 120px; padding-bottom: 40px; }
    .hero h1 { letter-spacing: -2px; }
    .hero-sub { font-size: 16px; margin-bottom: 32px; }
    .hero-actions { margin-bottom: 48px; }

    .hero-devices {
        flex-wrap: wrap;
        gap: 16px;
    }

    .device-ipad-hero { order: -1; flex-basis: 100%; display: flex; justify-content: center; }
    .device-frame-ipad-hero { width: 100%; max-width: 500px; }
    .device-frame-phone { width: 140px; }

    /* Section padding reduction */
    .features,
    .platforms,
    .strategy,
    .store-section,
    .widgets,
    .match-intel,
    .scouting,
    .friends-section,
    .career-stats,
    .more-features,
    .download { padding: 80px 0; }

    .section-header { margin-bottom: 48px; }
    .section-header p { font-size: 15px; }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-large {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    .feature-large .feature-text { padding: 28px; }
    .feature-visual { padding: 24px; }
    .feature-phone-frame { width: 200px; }
    .feature-card { padding: 24px; }

    /* Platforms */
    .platform-grid {
        grid-template-columns: 1fr;
    }

    .platform-device-visual { min-height: 180px; padding: 24px 24px 0; }
    .platform-info { padding: 20px 24px 24px; }

    /* Store */
    .store-feature-cards {
        grid-template-columns: 1fr;
    }
    .store-feat { padding: 24px; }

    /* More Features */
    .more-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .more-item { padding: 22px; }

    /* Beta Notice */
    .beta-notice { padding: 24px 0; }
    .beta-text { font-size: 14px; }

    /* Footer */
    .footer-inner {
        flex-direction: column;
        gap: 24px;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }

    /* Download */
    .download-card { padding: 60px 24px; }

    /* watchOS */
    .watchos-layout {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .watchos-text > p { margin-left: auto; margin-right: auto; }
    .watchos-hint { justify-content: center; }

    .watchos-device-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .watchos-scroll-area {
        height: 300vh;
    }

    .watchos-watch-frame {
        width: 180px;
        height: 220px;
        border-radius: 46px;
        padding: 10px;
    }

    .watchos-screen { border-radius: 36px; }

    /* Match Intel phone row → horizontal scroll */
    .match-phone-row {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        padding-bottom: 8px;
        scrollbar-width: none;
    }
    .match-phone-row::-webkit-scrollbar { display: none; }
    .match-phone-frame { width: 130px; }

    /* Scouting phone row → horizontal scroll */
    .scouting-phone-row {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        padding-bottom: 8px;
        scrollbar-width: none;
    }
    .scouting-phone-row::-webkit-scrollbar { display: none; }
    .scouting-phone-frame { width: 130px; }

    /* Career Stats phone row → horizontal scroll */
    .career-stats-phone-row {
        justify-content: flex-start;
    }
    .career-stats-phone-frame { width: 150px; }

    /* Heatmap grid */
    .heatmap-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }

    /* Friends */
    .friends-showcase {
        gap: 24px;
    }
    .friends-phone-frame { width: 170px; }

    /* Widgets */
    .widget-cards-grid { gap: 16px; }
    .widget-card-text h4 { font-size: 14px; }
    .widget-card-text p { font-size: 12px; }
}

/* ---------- Mobile portrait (max 480px) ---------- */
@media (max-width: 480px) {
    .container { padding: 0 16px; }

    /* Hero */
    .hero { padding-top: 100px; padding-bottom: 32px; min-height: auto; }
    .hero-badge { font-size: 11px; padding: 6px 14px; margin-bottom: 20px; }
    .hero-sub { font-size: 15px; line-height: 1.6; }
    .hero-actions { flex-direction: column; align-items: center; margin-bottom: 40px; }
    .btn { width: 100%; justify-content: center; }
    .btn-lg { width: 100%; }

    .device-frame-phone { width: 120px; }
    .device-watch-hero { display: none; }
    .device-frame-ipad-hero { max-width: 100%; }

    /* Section padding further reduced */
    .features,
    .platforms,
    .strategy,
    .store-section,
    .widgets,
    .match-intel,
    .scouting,
    .friends-section,
    .career-stats,
    .more-features,
    .download { padding: 60px 0; }

    .section-header { margin-bottom: 36px; }
    .section-header h2 { letter-spacing: -1.5px; }

    /* Beta Notice */
    .beta-notice { padding: 20px 0; }
    .beta-text { font-size: 13px; }
    .beta-label { font-size: 11px; margin-right: 6px; padding: 3px 8px; }

    /* Features */
    .feature-card { padding: 20px; }
    .feature-card h3 { font-size: 18px; }
    .feature-card p { font-size: 13px; }
    .feature-icon { width: 48px; height: 48px; margin-bottom: 16px; }

    /* Platforms */
    .platform-device-visual { min-height: 160px; padding: 20px 20px 0; }
    .platform-phone-frame { width: 130px; }
    .platform-ipad-frame { width: 220px; }
    .platform-info { padding: 16px 20px 20px; }
    .platform-info p { font-size: 13px; }

    /* Strategy */
    .strategy-text > p { font-size: 14px; }
    .strategy-features li { gap: 10px; }
    .sf-icon { width: 36px; height: 36px; min-width: 36px; font-size: 16px; }
    .strategy-features li strong { font-size: 14px; }
    .strategy-features li div { font-size: 12px; }

    /* Store */
    .store-phone-frame { width: 200px; }
    .store-feat { padding: 20px; }
    .store-feat h4 { font-size: 16px; }
    .store-feat p { font-size: 13px; }

    /* Widgets — 2 per row still works */
    .widget-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .widget-real-img { border-radius: 20px; border-width: 2px; }
    .widget-card-text { margin-top: 10px; }
    .widget-card-text h4 { font-size: 13px; }
    .widget-card-text p { font-size: 11px; }

    /* Match Intel */
    .match-phone-frame { width: 120px; border-radius: 20px; border-width: 2px; }
    .match-phone-label { font-size: 11px; margin-top: 8px; }
    .match-phone-scroll { padding: 0 16px 8px; margin: 0 -16px; }

    /* Heatmap */
    .heatmap-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
    .heatmap-frame { border-radius: 12px; border-width: 1.5px; }
    .heatmap-label { font-size: 9px; margin-top: 6px; }

    /* Scouting */
    .scouting-phone-frame { width: 120px; border-radius: 20px; border-width: 2px; }
    .scouting-phone-label { font-size: 11px; margin-top: 8px; }
    .scouting-phone-row { gap: 14px; }

    /* Career Stats */
    .career-stats-phone-frame { width: 140px; border-radius: 22px; border-width: 2px; }
    .career-stats-phone-label { font-size: 12px; margin-top: 10px; }
    .career-stats-phone-scroll { padding: 0 16px 8px; margin: 0 -16px; }
    .career-stats-phone-row { gap: 16px; }

    /* Friends */
    .friends-showcase { gap: 16px; }
    .friends-phone-frame { width: 150px; border-radius: 22px; border-width: 2px; }
    .friends-phone-label { font-size: 13px; margin-top: 12px; }

    /* More Features */
    .more-grid {
        grid-template-columns: 1fr;
    }
    .more-item { padding: 20px; }
    .more-icon { font-size: 24px; margin-bottom: 12px; }
    .more-item h4 { font-size: 15px; }

    /* Download */
    .download-card { padding: 48px 20px; border-radius: 20px; }
    .download-card p { font-size: 15px; }
    .download-platforms { gap: 10px; font-size: 12px; flex-wrap: wrap; justify-content: center; }

    /* Footer */
    .footer { padding: 32px 0; }
    .footer-disclaimer { font-size: 11px; }

    /* watchOS */
    .watchos-watch-frame {
        width: 160px;
        height: 196px;
        border-radius: 42px;
        padding: 8px;
    }
    .watchos-screen { border-radius: 34px; }
    .watchos-crown-track { height: 32px; width: 8px; right: -10px; top: 44px; }
    .watchos-crown-track::after { top: 58px; height: 50px; width: 6px; }
    .watchos-progress-bar { width: 100px; }
}
