/* ============================================
   RELOKANT — Design System
   Font: Outfit (headings) + JetBrains Mono (accents)
   Theme: Dark cyberpunk-minimal
   ============================================ */

:root {
    --bg: #0a0b0f;
    --bg-elevated: #12131a;
    --bg-card: #16171f;
    --bg-card-hover: #1c1d27;
    --border: rgba(255,255,255,0.06);
    --border-hover: rgba(255,255,255,0.12);
    
    --text: #f0f0f5;
    --text-secondary: #8a8b9e;
    --text-muted: #5a5b6e;
    
    --accent: #00E5A0;
    --accent-dim: rgba(0,229,160,0.12);
    --accent-glow: rgba(0,229,160,0.25);
    --accent-secondary: #00B4D8;
    
    --gradient: linear-gradient(135deg, #00E5A0 0%, #00B4D8 100%);
    --gradient-text: linear-gradient(135deg, #00E5A0 0%, #00D4E8 50%, #7B61FF 100%);
    
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    
    --font: 'Outfit', -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    --nav-height: 72px;
    --container: 1200px;
}

/* ============================================
   Reset & Base
   ============================================ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.hide-mobile { display: inline; }

/* ============================================
   Typography
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-dim);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   Navigation
   ============================================ */

.nav {
    position: fixed;
    top: 16px;
    left: 16px;
    right: 16px;
    z-index: 1000;
    background: rgba(10,11,15,0.8);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(10,11,15,0.95);
    border-color: var(--border-hover);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.logo-dot {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: 'Outfit', -apple-system, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s;
    cursor: pointer;
}

.nav-link:hover {
    color: var(--text);
}

/* Nav dropdown */
.nav-dropdown {
    position: relative;
}
.nav-dropdown > .nav-link {
    display: flex; align-items: center; gap: 4px;
}
.nav-dropdown > .nav-link::after {
    content: '';
    width: 0; height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    transition: transform 0.2s;
}
.nav-dropdown:hover > .nav-link::after {
    transform: rotate(180deg);
}
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 420px;
    background: rgba(16,17,25,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -16px; left: 0; right: 0; height: 16px;
}
.nav-dd-item {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 14px; border-radius: 10px;
    text-decoration: none; transition: background 0.15s;
}
.nav-dd-item:hover {
    background: rgba(255,255,255,0.04);
}
.nav-dd-icon {
    width: 36px; height: 36px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0;
    background: rgba(255,255,255,0.04);
}
.nav-dd-text { min-width: 0; display: flex; flex-direction: column; }
.nav-dd-name {
    font-size: 14px; font-weight: 600; color: var(--text);
    line-height: 1.2;
}
.nav-dd-desc {
    font-size: 12px; color: var(--text-muted);
    line-height: 1.3; margin-top: 2px;
}
.nav-dd-divider {
    height: 1px;
    background: var(--border);
    margin: 6px 0;
}
.nav-dd-group {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 6px 16px 4px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-cta {
    font-size: 14px;
    font-weight: 600;
    color: var(--bg);
    background: var(--accent);
    padding: 10px 22px;
    border-radius: 100px;
    transition: all 0.2s;
    cursor: pointer;
}

.nav-cta:hover {
    background: #00ffb3;
    transform: translateY(-1px);
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 16px;
    right: 16px;
    z-index: 999;
    background: rgba(18,19,26,0.98);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 0;
    cursor: pointer;
}

.mobile-cta {
    display: block;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: var(--bg);
    background: var(--accent);
    padding: 14px;
    border-radius: var(--radius-sm);
    margin-top: 8px;
    cursor: pointer;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font);
    font-weight: 600;
    border-radius: 100px;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    font-size: 16px;
    color: var(--bg);
    background: var(--accent);
    padding: 16px 32px;
    box-shadow: 0 0 30px var(--accent-glow);
}

.btn-primary:hover {
    background: #00ffb3;
    box-shadow: 0 0 50px var(--accent-glow);
    transform: translateY(-2px);
}

.btn-ghost {
    font-size: 16px;
    color: var(--text);
    padding: 16px 32px;
    border: 1px solid rgba(255,255,255,0.25);
}

.btn-ghost:hover {
    color: var(--text);
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.05);
}

.btn-outline {
    font-size: 15px;
    color: var(--text);
    padding: 14px 28px;
    border: 1px solid var(--border);
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-dim);
}

.btn-lg {
    font-size: 18px;
    padding: 20px 40px;
}

/* ============================================
   Hero
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--nav-height) + 20px) 0 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-grid-canvas {
    position: absolute;
    inset: 0;
    pointer-events: auto;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: var(--accent);
    top: -200px;
    right: -100px;
    opacity: 0.08;
}

.hero-glow-2 {
    width: 500px;
    height: 500px;
    background: #7B61FF;
    bottom: -100px;
    left: -100px;
    opacity: 0.06;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-split {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--text-secondary);
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 32px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 var(--accent-glow); }
    50% { box-shadow: 0 0 0 8px transparent; }
}

.uptime-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    margin-right: 4px;
    vertical-align: middle;
    animation: pulse-dot 2s infinite;
}

.hero-title {
    font-size: clamp(44px, 8vw, 88px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

.hero-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--text-secondary);
    max-width: 540px;
    margin: 0 0 32px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 32px;
}

/* ============================================
   Phone Mockup
   ============================================ */

.hero-phone {
    flex-shrink: 0;
    position: relative;
}

.phone-glow {
    position: absolute;
    width: 300px;
    height: 400px;
    background: var(--accent);
    opacity: 0.12;
    filter: blur(80px);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.phone-frame {
    width: 260px;
    height: 520px;
    background: #1a1a2e;
    border-radius: 40px;
    padding: 10px;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.1),
        0 25px 80px rgba(0,0,0,0.5),
        0 0 60px rgba(0,229,160,0.1);
    position: relative;
}

.hero-phone {
    animation: phone-float 6s ease-in-out infinite;
    will-change: transform;
    backface-visibility: hidden;
}

@keyframes phone-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.phone-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 26px;
    background: #1a1a2e;
    border-radius: 0 0 14px 14px;
    z-index: 2;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #00E5A0;
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 40px 14px 14px;
}

.mock-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 4px;
    margin-bottom: 12px;
}

.mock-logo {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}
.mock-logo svg {
    width: 100%;
    height: 100%;
    display: block;
}

.mock-brand {
    font-size: 13px;
    font-weight: 600;
    color: rgba(0,0,0,0.7);
    flex: 1;
}

.mock-toggle {
    opacity: 0.4;
}

.mock-server {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.35);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 12px 14px;
    margin-bottom: auto;
}

.mock-flag {
    flex-shrink: 0;
    border-radius: 3px;
    overflow: hidden;
}

.mock-server-info {
    flex: 1;
}

.mock-server-name {
    font-size: 13px;
    font-weight: 600;
    color: rgba(0,0,0,0.8);
}

.mock-server-detail {
    font-size: 10px;
    color: rgba(0,0,0,0.4);
}

.mock-chevron {
    opacity: 0.3;
}

.mock-button-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: auto 0;
    padding: 16px 0;
    position: relative;
}

.mock-pulse-ring {
    position: absolute;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 2px solid rgba(10,10,10,0.15);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    animation: mock-pulse 2.5s ease-out infinite;
}

@keyframes mock-pulse {
    0% { transform: translate(-50%, -60%) scale(1); opacity: 0.6; }
    100% { transform: translate(-50%, -60%) scale(1.5); opacity: 0; }
}

.mock-btn {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(10,10,10,0.15);
    border: 2px solid rgba(10,10,10,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.mock-status {
    font-size: 12px;
    font-weight: 600;
    color: rgba(0,0,0,0.6);
    letter-spacing: 0.02em;
}

.mock-footer {
    display: flex;
    justify-content: space-around;
    background: rgba(10,10,10,0.75);
    border-radius: 16px;
    padding: 12px;
    margin-top: auto;
}

.mock-footer-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
}

/* ============================================
   Free Trial Promo
   ============================================ */

.trial-promo {
    padding: 40px 0 80px;
}

.trial-card {
    position: relative;
    border-radius: 24px;
    border: 1px solid rgba(0,229,160,0.2);
    background: linear-gradient(135deg, rgba(0,229,160,0.06) 0%, rgba(0,180,216,0.03) 100%);
    overflow: hidden;
    padding: 64px 48px;
    text-align: center;
}

.trial-card-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(0,229,160,0.08), transparent 70%);
}

.trial-content {
    position: relative;
}

.trial-badge-inline {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-dim);
    padding: 6px 18px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.trial-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.trial-desc {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.6;
}

.trial-steps-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.trial-step-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

.trial-step-num {
    width: 24px;
    height: 24px;
    background: var(--accent);
    color: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    font-family: var(--font-mono);
    flex-shrink: 0;
}

.trial-arrow {
    color: var(--text-muted);
    flex-shrink: 0;
}

.trial-cta {
    box-shadow: 0 0 40px var(--accent-glow);
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    font-family: var(--font-mono);
    color: var(--text);
    letter-spacing: -0.02em;
}

.stat-unit {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scroll-pulse 2s infinite;
}

@keyframes scroll-pulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   Service Status
   ============================================ */

.status {
    padding: 48px 0 80px;
    border-bottom: 1px solid var(--border);
}

.status-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.status-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
}

.status-title span {
    color: var(--accent);
    font-weight: 700;
    font-size: 17px;
}

.status-live {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-muted);
}

.status-pulse {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: status-pulse 2.5s ease-in-out infinite;
}

@keyframes status-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0,229,160,0.4); }
    50% { box-shadow: 0 0 0 6px rgba(0,229,160,0); }
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.status-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: border-color 0.2s;
}

.status-card:hover {
    border-color: var(--border-hover);
}

.status-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
}

.status-icon .fallback {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-secondary);
    display: none;
}

.status-icon .fallback-rzd {
    font-size: 9px;
    font-weight: 800;
    color: #fff;
    background: #e21a1a;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    align-items: center;
    justify-content: center;
    letter-spacing: -0.5px;
}

.status-icon img.broken { display: none; }
.status-icon img.broken + .fallback { display: flex; }

.status-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    animation: dot-pulse 2s ease-in-out infinite;
    animation-delay: var(--pulse-delay, 0s);
}

@keyframes dot-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0,229,160,0.3); }
    50% { opacity: 0.5; box-shadow: 0 0 0 4px rgba(0,229,160,0); }
}

.status-footer {
    margin-top: 16px;
    text-align: center;
    font-size: 12px;
    font-family: var(--font-mono);
    color: var(--text-muted);
}

/* ============================================
   Features
   ============================================ */

.features {
    padding: 120px 0;
}

/* Features — Glass Cards */
.features-scene {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
}

.features-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    animation: features-blob-float 8s ease-in-out infinite;
}
.features-blob-1 { width: 350px; height: 350px; background: rgba(0,229,160,0.07); top: -10%; left: 0; }
.features-blob-2 { width: 250px; height: 250px; background: rgba(0,180,216,0.06); bottom: -5%; right: 5%; animation-delay: -3s; }
@keyframes features-blob-float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(15px, -15px); }
}

.features-glass-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: default;
}
.feature-card:hover {
    transform: translateY(-8px) scale(1.02) !important;
    border-color: rgba(0,229,160,0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 40px rgba(0,229,160,0.05);
}
.feature-card:hover .feature-card-title { color: #fff; }

.feature-card-num {
    font-family: var(--font-mono);
    font-size: 48px;
    font-weight: 700;
    color: rgba(0,229,160,0.35);
    line-height: 1;
    margin-bottom: 16px;
}
.feature-card-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    vertical-align: super;
    margin-left: 2px;
    box-shadow: 0 0 8px rgba(0,229,160,0.4);
}

.feature-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    transition: color 0.3s;
}
.feature-card-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Speed — Face-Off Bars */
.speed {
    padding: 120px 0;
}

.speed .section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 56px;
}

.speed-faceoff {
    max-width: 700px;
    margin: 0 auto;
}

.speed-headers {
    display: flex;
    justify-content: space-between;
    margin-bottom: 32px;
    padding: 0 4px;
}

.speed-header-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.3);
}

.speed-header-accent {
    color: var(--accent);
}

.speed-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.speed-row:last-child {
    margin-bottom: 0;
}

.speed-metric-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.35);
    padding: 0 12px;
    white-space: nowrap;
    text-align: center;
}

.speed-metric-hint {
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: rgba(255,255,255,0.2);
    font-size: 12px;
}

.speed-bar-left {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.speed-bar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.speed-val {
    font-size: 18px;
    font-weight: 700;
    white-space: nowrap;
    min-width: 90px;
}

.speed-val-dim {
    text-align: right;
    color: rgba(255,255,255,0.3);
}

.speed-val-accent {
    text-align: left;
    color: var(--accent);
}

.speed-unit {
    font-size: 13px;
    font-weight: 400;
    opacity: 0.6;
}

.speed-track {
    height: 10px;
    border-radius: 5px;
    background: rgba(255,255,255,0.04);
    overflow: hidden;
    flex: 1;
    min-width: 40px;
}

.speed-track-rtl {
    direction: rtl;
}

.speed-fill {
    height: 100%;
    border-radius: 5px;
    width: 0;
    transition: width 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.speed-fill-dim {
    background: rgba(255,255,255,0.1);
}

.speed-fill-accent {
    background: linear-gradient(90deg, var(--accent), #00c4ff);
}

.speed-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-top: 40px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse-dot 2s infinite;
}

/* ============================================
   Highlight Underline
   ============================================ */

.hl-underline {
    position: relative;
    display: inline;
}
.hl-underline::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #00c4ff);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
}
.hl-underline.animated::after {
    animation: hl-draw 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes hl-draw {
    to { transform: scaleX(1); }
}

/* ============================================
   Compare Section
   ============================================ */

.compare {
    padding: 120px 0;
}

.compare .section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 56px;
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 820px;
    margin: 0 auto;
}

.compare-col {
    border-radius: 20px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.compare-col-dim {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
}

.compare-col-accent {
    background: rgba(0,229,160,0.04);
    border: 1px solid rgba(0,229,160,0.15);
}

.compare-col-header {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.35);
}

.compare-col-accent .compare-col-header {
    color: var(--accent);
    border-bottom-color: rgba(0,229,160,0.15);
}

.compare-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.compare-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.compare-icon-x {
    color: rgba(255,255,255,0.2);
}

.compare-icon-check {
    color: var(--accent);
}

.compare-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.compare-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
}

.compare-col-dim .compare-title {
    color: rgba(255,255,255,0.45);
}

.compare-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    line-height: 1.5;
}

.compare-col-dim .compare-desc {
    color: rgba(255,255,255,0.2);
}

/* Light mode */
html.light .compare-col-dim {
    background: rgba(0,0,0,0.02);
    border-color: rgba(0,0,0,0.06);
}
html.light .compare-col-accent {
    background: rgba(0,229,160,0.04);
    border-color: rgba(0,229,160,0.18);
}
html.light .compare-col-header {
    color: rgba(0,0,0,0.4);
    border-bottom-color: rgba(0,0,0,0.08);
}
html.light .compare-col-accent .compare-col-header {
    color: #00B88D;
    border-bottom-color: rgba(0,229,160,0.2);
}
html.light .compare-icon-x { color: rgba(0,0,0,0.2); }
html.light .compare-col-dim .compare-title { color: rgba(0,0,0,0.4); }
html.light .compare-col-dim .compare-desc { color: rgba(0,0,0,0.3); }
html.light .compare-desc { color: rgba(0,0,0,0.45); }

/* Mobile */
@media (max-width: 640px) {
    .compare-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .compare-col {
        padding: 24px 20px;
    }
}

/* ============================================
   Trust / Security
   ============================================ */

.trust {
    padding: 120px 0;
}

.trust-rows {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.trust-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

.trust-row:first-child {
    border-top: 1px solid var(--border);
}

.trust-row-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.trust-row-text {
    flex: 1;
}

.trust-row-text h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 2px;
}

.trust-row-text p {
    font-size: 14px;
    color: var(--text-secondary);
}

.trust-row-badge {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--accent);
    background: var(--accent-dim);
    padding: 4px 10px;
    border-radius: 100px;
    white-space: nowrap;
}

/* Light mode */
html.light .trust-row {
    border-color: rgba(0,0,0,0.08);
}
html.light .trust-row-text p {
    color: rgba(0,0,0,0.5);
}
html.light .trust-row-badge {
    color: #00B88D;
    background: rgba(0,229,160,0.1);
}

/* Mobile */
@media (max-width: 640px) {
    .trust-row { gap: 14px; }
    .trust-row-badge { display: none; }
    .trust-row-text h4 { font-size: 15px; }
}

/* ============================================
   How It Works
   ============================================ */

.how {
    padding: 120px 0;
    background: var(--bg-elevated);
}

.steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    flex: 1;
    text-align: center;
    padding: 0 24px;
}

.step-number {
    font-family: var(--font-mono);
    font-size: 48px;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.step-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-connector {
    width: 60px;
    height: 2px;
    background: var(--border);
    margin-top: 30px;
    flex-shrink: 0;
}

/* ============================================
   Use Cases
   ============================================ */

/* ============================================
   Pricing
   ============================================ */

.pricing {
    padding: 120px 0;
    background: var(--bg-elevated);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.toggle-label {
    font-size: 15px;
    color: var(--text-muted);
    transition: color 0.2s;
    cursor: pointer;
}

.toggle-label.toggle-active {
    color: var(--text);
}

.toggle-badge {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--accent);
    background: var(--accent-dim);
    padding: 3px 8px;
    border-radius: 100px;
    vertical-align: middle;
}

.toggle-switch {
    width: 52px;
    height: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
}

.toggle-switch:hover {
    border-color: var(--border-hover);
}

.toggle-thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.toggle-switch.active .toggle-thumb {
    transform: translateX(24px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1060px;
    margin: 0 auto;
}

.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 32px;
    transition: all 0.3s;
    position: relative;
}

.price-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.price-card-popular {
    border-color: var(--accent);
    background: linear-gradient(180deg, rgba(0,229,160,0.06) 0%, var(--bg-card) 100%);
}

.price-card-popular:hover {
    border-color: var(--accent);
}

.price-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    color: var(--bg);
    background: var(--accent);
    padding: 4px 16px;
    border-radius: 100px;
}

.price-name {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 6px;
}

.price-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.price-amount {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 32px;
}

.price-currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-secondary);
}

.price-value {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.03em;
    font-family: var(--font-mono);
    line-height: 1;
}

.price-period {
    font-size: 16px;
    color: var(--text-muted);
    margin-left: 4px;
}

.price-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.price-features li {
    font-size: 15px;
    color: var(--text-secondary);
    padding-left: 24px;
    position: relative;
}

.price-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-dim);
    border: 2px solid var(--accent);
}

.price-features li.dimmed {
    color: var(--text-muted);
}

.price-features li.dimmed::before {
    border-color: rgba(255,255,255,0.15);
    background: transparent;
}

.price-features li.highlight {
    color: var(--accent);
    font-weight: 500;
}

.pricing-guarantee {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    color: var(--accent);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.price-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-btn {
    width: 100%;
    justify-content: center;
    font-size: 14px;
    padding: 12px 20px;
}

.price-btn-save {
    flex-direction: column;
    gap: 2px;
    padding: 10px 20px;
}
.price-btn-save .btn-main { font-size: 14px; font-weight: 600; }
.price-btn-save .btn-sub {
    font-size: 11px;
    color: var(--accent);
    font-weight: 500;
    opacity: 0.85;
}
.btn-primary.price-btn-save .btn-sub { color: rgba(0,0,0,0.55); }

.btn-crypto {
    display: none;
    position: relative;
    width: 100%;
    margin-top: 14px;
    padding: 13px 20px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    background: rgba(247,147,26,0.04);
    color: rgba(255,255,255,0.55);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.35s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
}
.btn-crypto::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(247,147,26,0.4), rgba(247,147,26,0.05) 40%, rgba(0,229,160,0.05) 60%, rgba(0,229,160,0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transition: all 0.35s ease;
}
.btn-crypto:hover {
    color: #fff;
    background: rgba(247,147,26,0.08);
}
.btn-crypto:hover::before {
    background: linear-gradient(135deg, #f7931a, rgba(247,147,26,0.1) 40%, rgba(0,229,160,0.1) 60%, #00E5A0);
}
.btn-crypto .btc-icon { color: #f7931a; width: 18px; height: 18px; flex-shrink: 0; transition: all 0.35s; }
.btn-crypto:hover .btc-icon { filter: drop-shadow(0 0 6px rgba(247,147,26,0.6)); }

.pricing-note {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 40px;
}

/* ============================================
   Reviews
   ============================================ */

.reviews {
    padding: 120px 0;
}

.tg-reviews {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tg-message {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    max-width: 560px;
}

.tg-message:nth-child(even) {
    align-self: flex-end;
}

.tg-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 15px;
    color: #fff;
}

.tg-av-1 { background: #5B6EAE; }
.tg-av-2 { background: #D4773D; }
.tg-av-3 { background: #8B5CF6; }
.tg-av-4 { background: #3B82F6; }
.tg-av-5 { background: #E5484D; }
.tg-av-6 { background: #0EA5E9; }

.tg-bubble {
    background: #1e2736;
    border-radius: 4px 18px 18px 18px;
    padding: 12px 16px;
    max-width: 480px;
}

.tg-message:nth-child(even) .tg-bubble {
    border-radius: 18px 4px 18px 18px;
    background: #1a2e30;
}

.tg-name {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
}

.nm-1 { color: #7B8EC7; }
.nm-2 { color: #E09960; }
.nm-3 { color: #A78BFA; }
.nm-4 { color: #60A5FA; }
.nm-5 { color: #F87171; }
.nm-6 { color: #38BDF8; }

.tg-text {
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
}

.tg-meta {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
}

.tg-time {
    font-size: 11px;
    color: rgba(255,255,255,0.3);
}

.tg-source {
    text-align: center;
    margin-top: 24px;
}

.tg-source a {
    font-size: 13px;
    color: var(--accent);
    text-decoration: none;
    font-family: var(--font-mono);
    opacity: 0.7;
    transition: opacity 0.3s;
}

.tg-source a:hover { opacity: 1; }

/* Light mode */
html.light .tg-bubble { background: #e8ecf0; }
html.light .tg-message:nth-child(even) .tg-bubble { background: #d8eedf; }
html.light .tg-text { color: #1a1a1a; }
html.light .tg-time { color: rgba(0,0,0,0.3); }

@media (max-width: 640px) {
    .tg-message { max-width: 100%; }
    .tg-bubble { max-width: 100%; }
}

/* ============================================
   FAQ
   ============================================ */

.faq {
    padding: 120px 0;
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 0;
    font-family: var(--font);
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-chevron {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   Free Tools
   ============================================ */

.free-tools {
    padding: 100px 0 80px;
    overflow: hidden;
}

/* Carousel wrapper */
.ft-carousel-wrap {
    position: relative;
    margin-top: 48px;
}

.ft-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 8px 24px 20px;
    -webkit-overflow-scrolling: touch;
}
.ft-carousel::-webkit-scrollbar { display: none; }

/* Fade edges */
.ft-carousel-wrap::before,
.ft-carousel-wrap::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 60px;
    z-index: 5;
    pointer-events: none;
}
.ft-carousel-wrap::before { left: 0; background: linear-gradient(90deg, var(--bg) 0%, transparent 100%); }
.ft-carousel-wrap::after { right: 0; background: linear-gradient(-90deg, var(--bg) 0%, transparent 100%); }

/* Nav arrows */
.ft-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    color: var(--text);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s, background 0.2s;
    backdrop-filter: blur(8px);
}
.ft-carousel-wrap:hover .ft-arrow { opacity: 1; }
.ft-arrow:hover { background: var(--bg-card-hover); border-color: var(--accent-glow); }
.ft-arrow-left { left: 8px; }
.ft-arrow-right { right: 8px; }

/* Card */
.ft-card {
    flex-shrink: 0;
    width: 280px;
    border-radius: var(--radius);
    overflow: hidden;
    scroll-snap-align: start;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    backface-visibility: hidden;
}
.ft-card:hover {
    transform: translateY(-8px) translateZ(0);
    box-shadow: 0 24px 60px rgba(0,229,160,0.1), 0 8px 24px rgba(0,0,0,0.4);
}

/* Visual area — pulse rings */
.ft-visual {
    height: 180px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
}

.ft-icon {
    width: 44px; height: 44px;
    position: relative;
    z-index: 3;
    transition: transform 0.4s;
}
.ft-card:hover .ft-icon { transform: scale(1.1); }

/* Pulsing rings */
.ft-rings {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ft-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    opacity: 0.15;
    transition: opacity 0.4s;
}
.ft-card:hover .ft-ring { opacity: 0.3; }

.ft-ring:nth-child(1) { width: 60px; height: 60px; animation: ftPulse 3s ease-in-out infinite; }
.ft-ring:nth-child(2) { width: 100px; height: 100px; animation: ftPulse 3s ease-in-out 0.5s infinite; }
.ft-ring:nth-child(3) { width: 150px; height: 150px; animation: ftPulse 3s ease-in-out 1s infinite; }

@keyframes ftPulse {
    0%, 100% { transform: scale(1); opacity: 0.15; }
    50% { transform: scale(1.08); opacity: 0.25; }
}

/* Radial glow center */
.ft-visual::after {
    content: '';
    position: absolute;
    width: 80px; height: 80px;
    border-radius: 50%;
    z-index: 1;
    opacity: 0.15;
    transition: opacity 0.4s;
}
.ft-card:hover .ft-visual::after { opacity: 0.3; }

/* Per-tool colors */
.ft-card[data-tool="ip"] .ft-ring { border-color: #00E5A0; }
.ft-card[data-tool="ip"] .ft-icon { color: #00E5A0; }
.ft-card[data-tool="ip"] .ft-visual::after { background: radial-gradient(circle, #00E5A0, transparent); }

.ft-card[data-tool="speed"] .ft-ring { border-color: #7B61FF; }
.ft-card[data-tool="speed"] .ft-icon { color: #7B61FF; }
.ft-card[data-tool="speed"] .ft-visual::after { background: radial-gradient(circle, #7B61FF, transparent); }

.ft-card[data-tool="anon"] .ft-ring { border-color: #FFD93D; }
.ft-card[data-tool="anon"] .ft-icon { color: #FFD93D; }
.ft-card[data-tool="anon"] .ft-visual::after { background: radial-gradient(circle, #FFD93D, transparent); }

.ft-card[data-tool="dns"] .ft-ring { border-color: #FF6B6B; }
.ft-card[data-tool="dns"] .ft-icon { color: #FF6B6B; }
.ft-card[data-tool="dns"] .ft-visual::after { background: radial-gradient(circle, #FF6B6B, transparent); }

.ft-card[data-tool="webrtc"] .ft-ring { border-color: #A78BFA; }
.ft-card[data-tool="webrtc"] .ft-icon { color: #A78BFA; }
.ft-card[data-tool="webrtc"] .ft-visual::after { background: radial-gradient(circle, #A78BFA, transparent); }

.ft-card[data-tool="ping"] .ft-ring { border-color: #00B4D8; }
.ft-card[data-tool="ping"] .ft-icon { color: #00B4D8; }
.ft-card[data-tool="ping"] .ft-visual::after { background: radial-gradient(circle, #00B4D8, transparent); }

.ft-card[data-tool="headers"] .ft-ring { border-color: #F472B6; }
.ft-card[data-tool="headers"] .ft-icon { color: #F472B6; }
.ft-card[data-tool="headers"] .ft-visual::after { background: radial-gradient(circle, #F472B6, transparent); }

.ft-card[data-tool="whois"] .ft-ring { border-color: #34D399; }
.ft-card[data-tool="whois"] .ft-icon { color: #34D399; }
.ft-card[data-tool="whois"] .ft-visual::after { background: radial-gradient(circle, #34D399, transparent); }

.ft-card[data-tool="checklist"] .ft-ring { border-color: #00E5A0; }
.ft-card[data-tool="checklist"] .ft-icon { color: #00E5A0; }
.ft-card[data-tool="checklist"] .ft-visual::after { background: radial-gradient(circle, #00E5A0, transparent); }

.ft-card[data-tool="tax"] .ft-ring { border-color: #FBBF24; }
.ft-card[data-tool="tax"] .ft-icon { color: #FBBF24; }
.ft-card[data-tool="tax"] .ft-visual::after { background: radial-gradient(circle, #FBBF24, transparent); }

.ft-card[data-tool="services"] .ft-ring { border-color: #60A5FA; }
.ft-card[data-tool="services"] .ft-icon { color: #60A5FA; }
.ft-card[data-tool="services"] .ft-visual::after { background: radial-gradient(circle, #60A5FA, transparent); }

/* Card body */
.ft-body {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 var(--radius) var(--radius);
    padding: 20px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.4s;
}
.ft-card:hover .ft-body { border-color: rgba(0,229,160,0.15); }

.ft-name {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}
.ft-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    flex: 1;
}
.ft-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    margin-top: 12px;
    transition: gap 0.3s;
}
.ft-card:hover .ft-link { gap: 10px; }

/* ============================================
   CTA
   ============================================ */

.cta {
    padding: 60px 0 120px;
}

.cta-card {
    position: relative;
    text-align: center;
    padding: 80px 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.06;
    filter: blur(100px);
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
}

.cta-title {
    position: relative;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.cta-desc {
    position: relative;
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* ============================================
   Sticky CTA
   ============================================ */
.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
}
.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.sticky-cta .btn {
    padding: 14px 28px;
    font-size: 15px;
    border-radius: 100px;
    box-shadow: 0 4px 24px rgba(0,229,160,0.3);
}
.sticky-cta .btn:hover {
    box-shadow: 0 6px 32px rgba(0,229,160,0.4);
}
@media (max-width: 768px) {
    .sticky-cta {
        bottom: 16px;
        right: 16px;
        left: 16px;
    }
    .sticky-cta .btn {
        width: 100%;
        padding: 14px 20px;
    }
}

/* ============================================
   Footer
   ============================================ */

.footer {
    border-top: 1px solid var(--border);
    padding: 64px 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand {
    max-width: 320px;
}

.footer-brand .logo-text {
    font-size: 22px;
    margin-bottom: 12px;
    display: block;
}

.footer-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-heading {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    font-size: 14px;
    color: var(--text-muted);
    transition: color 0.2s;
    cursor: pointer;
}

.footer-link:hover {
    color: var(--text);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ============================================
   Animations
   ============================================ */

[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
    .features-glass-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hide-mobile { display: none; }

    .nav-links, .nav-cta { display: none; }
    .nav-actions { gap: 4px; }
    .nav-burger { display: flex; }
    .mobile-menu { display: flex; }

    .nav-inner { padding: 12px 16px; }

    .hero {
        padding-top: calc(var(--nav-height) + 20px);
        padding-bottom: 48px;
        min-height: auto;
    }

    .hero-split {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 14px;
        margin-bottom: 24px;
    }

    .hero-title {
        font-size: 36px;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-bottom: 32px;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: row;
        gap: 16px;
        padding: 16px 20px;
        width: 100%;
        justify-content: center;
    }

    .stat-value {
        font-size: 22px;
    }

    .stat-label {
        font-size: 11px;
    }

    .stat-divider {
        width: 1px;
        height: 32px;
    }

    /* Phone mockup mobile */
    .hero-phone {
        display: flex;
        justify-content: center;
        animation: none;
    }

    .phone-frame {
        width: 220px;
        height: 440px;
        border-radius: 34px;
        padding: 8px;
    }

    .phone-notch {
        width: 76px;
        height: 22px;
        top: 8px;
        border-radius: 0 0 12px 12px;
    }

    .phone-screen {
        border-radius: 28px;
        padding: 34px 12px 12px;
    }

    .mock-btn {
        width: 72px;
        height: 72px;
    }

    .mock-pulse-ring {
        width: 90px;
        height: 90px;
    }

    .mock-btn svg {
        width: 22px;
        height: 22px;
    }

    .phone-glow {
        width: 200px;
        height: 280px;
    }

    /* Hero scroll indicator */
    .hero-scroll-indicator {
        display: none;
    }

    /* Trial promo mobile */
    .trial-promo {
        padding: 20px 0 60px;
    }

    .trial-card {
        padding: 40px 24px;
        border-radius: 20px;
    }

    .trial-title {
        font-size: 24px;
    }

    .trial-desc {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .trial-steps-row {
        flex-direction: column;
        gap: 12px;
    }

    .trial-arrow {
        transform: rotate(90deg);
    }

    .trial-step-item {
        width: 100%;
        justify-content: center;
    }

    /* Features mobile */
    .features-glass-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .feature-card {
        transform: none !important;
        padding: 24px;
    }
    .feature-card-num { font-size: 36px; margin-bottom: 12px; }

    /* Speed mobile */
    .speed-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .speed-bar-left,
    .speed-bar-right {
        justify-content: flex-start;
    }

    .speed-metric-label {
        text-align: left;
        padding: 0;
    }

    .speed-headers {
        flex-direction: column;
        gap: 4px;
    }

    /* Steps mobile */
    .steps {
        flex-direction: column;
        gap: 32px;
    }

    .step {
        padding: 0 16px;
    }

    .step-number {
        font-size: 36px;
    }

    .step-connector {
        width: 2px;
        height: 32px;
        margin: 0 auto;
    }

    .download-card {
        padding: 32px 24px;
    }

    /* Pricing mobile */
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .price-card {
        padding: 32px 24px;
    }

    .price-card-popular {
        order: 0;
    }

    /* Footer mobile */
    .footer-inner {
        flex-direction: column;
        gap: 32px;
    }

    .footer-links {
        gap: 40px;
    }

    /* CTA mobile */
    .cta-card {
        padding: 48px 24px;
        border-radius: 20px;
    }

    /* Section spacing mobile */
    .section-header {
        margin-bottom: 40px;
    }

    .features, .how, .pricing, .faq, .download {
        padding: 64px 0;
    }

    .status {
        padding: 32px 0 48px;
    }

    .status-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .status-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .status-card {
        padding: 10px 12px;
    }

    .status-icon {
        width: 24px;
        height: 24px;
    }

    .status-icon img {
        width: 24px;
        height: 24px;
    }

    .status-name {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 30px;
    }

    .phone-frame {
        width: 200px;
        height: 400px;
    }

    .mock-server {
        padding: 10px 12px;
    }

    .mock-server-name {
        font-size: 12px;
    }

    .mock-btn {
        width: 64px;
        height: 64px;
    }

    .mock-pulse-ring {
        width: 80px;
        height: 80px;
    }
}

/* ============================================
   Device Mockups Section
   ============================================ */

.devices-section {
    padding: 100px 0 60px;
}

.devices-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 520px;
    perspective: 1200px;
    margin-bottom: 56px;
}

/* MacBook */
.mockup-laptop {
    position: relative;
    transform: rotateY(-4deg) rotateX(2deg);
    transition: transform 0.6s cubic-bezier(0.23,1,0.32,1);
    z-index: 1;
}
.devices-showcase:hover .mockup-laptop {
    transform: rotateY(-2deg) rotateX(1deg);
}
.mockup-laptop-screen {
    width: clamp(480px, 52vw, 680px);
    aspect-ratio: 16/10;
    background: #0c0c0e;
    border-radius: 12px 12px 0 0;
    border: 2px solid #2a2a2e;
    border-bottom: none;
    overflow: hidden;
    position: relative;
    box-shadow: 0 -2px 40px rgba(0,229,160,0.06), inset 0 0 0 1px rgba(255,255,255,0.03);
}
.mockup-laptop-screen::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 28px;
    background: #1a1a1e;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    z-index: 2;
}
.mockup-laptop-screen::after {
    content: '';
    position: absolute; top: 8px; left: 12px;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #ff5f57;
    box-shadow: 14px 0 0 #febc2e, 28px 0 0 #28c840;
    z-index: 3;
}
.mockup-laptop-base {
    width: calc(clamp(480px, 52vw, 680px) + 60px);
    height: 14px;
    margin: 0 auto;
    margin-left: -30px;
    background: linear-gradient(180deg, #2a2a2e 0%, #1e1e22 100%);
    border-radius: 0 0 6px 6px;
    position: relative;
}
.mockup-laptop-base::before {
    content: '';
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 80px; height: 4px;
    background: #333;
    border-radius: 0 0 4px 4px;
}
.mockup-laptop-hinge {
    width: calc(clamp(480px, 52vw, 680px) + 80px);
    height: 5px;
    margin-left: -40px;
    background: linear-gradient(180deg, #222 0%, #191919 100%);
    border-radius: 0 0 12px 12px;
}
.mockup-laptop::after {
    content: '';
    position: absolute;
    bottom: -20px; left: 50%; transform: translateX(-50%);
    width: 80%; height: 30px;
    background: radial-gradient(ellipse, rgba(0,0,0,0.4) 0%, transparent 70%);
    filter: blur(8px);
}

/* Phone */
.mockup-phone {
    position: absolute;
    right: clamp(20px, 8vw, 120px);
    bottom: -20px;
    z-index: 10;
    transform: rotateY(6deg) rotateZ(-2deg);
    transition: transform 0.6s cubic-bezier(0.23,1,0.32,1);
}
.devices-showcase:hover .mockup-phone {
    transform: rotateY(3deg) rotateZ(-1deg) translateY(-8px);
}
.mockup-phone-body {
    width: clamp(160px, 18vw, 220px);
    aspect-ratio: 9/19.5;
    background: #1a1a1e;
    border-radius: 28px;
    border: 2px solid #333;
    padding: 8px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 4px 20px rgba(0,229,160,0.08), inset 0 0 0 1px rgba(255,255,255,0.04);
}
.mockup-phone-body::before {
    content: '';
    position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
    width: 60px; height: 20px;
    background: #111; border-radius: 12px;
    z-index: 5;
}
.mockup-phone-screen {
    width: 100%; height: 100%;
    background: #0c0c0e;
    border-radius: 22px;
    overflow: hidden;
}

/* App UI inside screens */
.dui {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    font-family: var(--font);
    background: #0c0c0e;
}

/* Desktop UI */
.dui-desktop { padding-top: 28px; }
.dui-sidebar {
    position: absolute; top: 28px; left: 0; bottom: 0;
    width: 200px;
    background: #111114;
    border-right: 1px solid rgba(255,255,255,0.05);
    padding: 16px 12px;
    display: flex; flex-direction: column; gap: 4px;
}
.dui-sidebar-logo {
    font-size: 13px; font-weight: 700; color: var(--accent);
    margin-bottom: 16px; padding: 4px 8px;
    display: flex; align-items: center; gap: 8px;
}
.dui-sidebar-logo .dui-r {
    width: 22px; height: 22px; border-radius: 6px;
    background: var(--accent); color: #0a0a0a;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-size: 12px;
}
.dui-nav-item {
    font-size: 11px; color: var(--text-secondary);
    padding: 6px 8px; border-radius: 6px;
    display: flex; align-items: center; gap: 8px;
}
.dui-nav-item.active { background: var(--accent-dim); color: var(--accent); }
.dui-nav-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: currentColor; opacity: 0.4;
}
.dui-nav-item.active .dui-nav-dot { opacity: 1; }

.dui-main {
    margin-left: 200px; padding: 24px;
    flex: 1; display: flex; flex-direction: column;
}
.dui-main-title {
    font-size: 16px; font-weight: 700;
    margin-bottom: 20px; color: var(--text);
}
.dui-connect {
    flex: 1; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 12px;
}
.dui-big-btn {
    width: 80px; height: 80px; border-radius: 50%;
    background: var(--accent);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 40px var(--accent-glow), 0 0 80px rgba(0,229,160,0.1);
    animation: dui-pulse 3s ease-in-out infinite;
}
@keyframes dui-pulse {
    0%,100% { box-shadow: 0 0 40px var(--accent-glow), 0 0 80px rgba(0,229,160,0.1); }
    50% { box-shadow: 0 0 50px var(--accent-glow), 0 0 100px rgba(0,229,160,0.15); }
}
.dui-big-btn svg { width: 28px; height: 28px; }
.dui-status { font-size: 13px; font-weight: 600; color: var(--accent); }
.dui-status-sub { font-size: 10px; color: var(--text-muted); font-family: var(--font-mono); }

.dui-servers { display: flex; flex-direction: column; gap: 6px; margin-top: 16px; width: 100%; }
.dui-server {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 12px;
    background: rgba(255,255,255,0.02);
    border-radius: 8px; border: 1px solid var(--border);
    font-size: 11px;
}
.dui-server.active { border-color: rgba(0,229,160,0.2); background: var(--accent-dim); }
.dui-server-flag { font-size: 16px; }
.dui-server-name { flex: 1; font-weight: 500; }
.dui-server-ping { font-family: var(--font-mono); font-size: 10px; color: var(--accent); opacity: 0.8; }
.dui-server-bar { width: 30px; height: 3px; border-radius: 2px; background: rgba(255,255,255,0.06); overflow: hidden; }
.dui-server-bar-fill { height: 100%; border-radius: 2px; background: var(--accent); }

/* Mobile UI */
.dui-mobile { padding: 28px 12px 12px; gap: 8px; }
.dui-mob-header { display: flex; align-items: center; justify-content: space-between; padding: 0 4px; margin-top: 8px; }
.dui-mob-brand { font-size: 12px; font-weight: 700; color: var(--accent); }
.dui-mob-icon { width: 8px; height: 8px; border-radius: 50%; background: var(--text-muted); }
.dui-mob-connect { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
.dui-mob-btn {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--accent);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 30px var(--accent-glow);
    animation: dui-pulse 3s ease-in-out infinite;
}
.dui-mob-btn svg { width: 20px; height: 20px; }
.dui-mob-status { font-size: 10px; font-weight: 600; color: var(--accent); }
.dui-mob-pill {
    display: flex; align-items: center; gap: 6px;
    padding: 6px 12px;
    background: rgba(255,255,255,0.04);
    border-radius: 20px; border: 1px solid var(--border);
    font-size: 9px; color: var(--text-secondary);
}
.dui-mob-pill .dui-flag { font-size: 12px; }
.dui-mob-nav { display: flex; justify-content: space-around; padding: 6px 0; border-top: 1px solid var(--border); }
.dui-mob-nav-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--text-muted); }
.dui-mob-nav-dot.active { background: var(--accent); width: 16px; border-radius: 3px; }

/* Platform icons */
.platforms-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}
.platform-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: #71717a;
    transition: color 0.3s, transform 0.3s;
    cursor: default;
}
.platform-icon:hover { color: var(--accent); transform: translateY(-2px); }
.platform-icon svg { width: 28px; height: 28px; }
.platform-icon span { font-size: 11px; font-weight: 500; }

/* ============================================
   Download Section
   ============================================ */

.download {
    padding: 120px 0;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}
.download-card:nth-child(1) { grid-column: 1 / 3; }
.download-card:nth-child(2) { grid-column: 3 / 5; }
.download-card:nth-child(3) { grid-column: 5 / 7; }
.download-card:nth-child(4) { grid-column: 1 / 3; }
.download-card:nth-child(5) { grid-column: 3 / 5; }
.download-card:nth-child(6) { grid-column: 5 / 7; }

.download-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.download-card .download-desc {
    flex: 1;
}

.download-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.download-icon {
    color: var(--accent);
    margin-bottom: 20px;
}

.download-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.download-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.download-btn {
    width: 100%;
    justify-content: center;
}

.download-guide-link {
    display: block;
    text-align: center;
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-muted);
    transition: color 0.2s;
}

.download-guide-link:hover {
    color: var(--accent);
}

@media (max-width: 1024px) {
    .download-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 640px;
        margin: 0 auto;
    }
    .download-card:nth-child(n) { grid-column: auto; }
    .download-card:last-child { grid-column: 1 / -1; max-width: 300px; justify-self: center; }
}

@media (max-width: 768px) {
    .download-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    .download-card:nth-child(n) { grid-column: auto; }
}

/* ============================================
   Article Page (shared by setup-*.html, blog)
   ============================================ */

.article-page {
    padding-top: calc(var(--nav-height) + 60px);
    padding-bottom: 80px;
    min-height: 100vh;
}

.article-header {
    margin-bottom: 48px;
}

.article-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 24px;
    transition: color 0.2s;
}

.article-back:hover {
    color: var(--accent);
}

.article-title {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}

.article-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.article-content {
    max-width: 720px;
}

.article-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 40px 0 16px;
}

.article-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 32px 0 12px;
}

.article-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.article-content a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.article-content a:hover {
    color: var(--text);
}

.article-content ul, .article-content ol {
    color: var(--text-secondary);
    padding-left: 24px;
    margin-bottom: 16px;
    line-height: 1.8;
}

.article-content li {
    margin-bottom: 8px;
}

.article-content .step-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 24px;
    margin: 24px 0;
}

.article-content .step-box h3 {
    margin-top: 0;
    color: var(--accent);
}

.article-content .step-box p {
    margin-bottom: 0;
}

.article-content .download-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: var(--bg);
    padding: 12px 24px;
    border-radius: var(--radius-xs);
    text-decoration: none;
    font-weight: 600;
    margin: 16px 0;
    transition: all 0.2s;
}

.article-content .download-link:hover {
    filter: brightness(1.1);
    color: var(--bg);
}

.article-content .note {
    background: rgba(0,229,160,0.08);
    border-left: 3px solid var(--accent);
    padding: 16px 20px;
    border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
    margin: 24px 0;
}

.article-content .note p {
    margin-bottom: 0;
    color: var(--text);
}

/* ============================================
   Blog List Page
   ============================================ */

.blog-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0;
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s ease;
    overflow: hidden;
}

.blog-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.blog-card-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #0a0a12;
    overflow: hidden;
}

.light .blog-card-img {
    background: #f0f0f5;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-body {
    display: flex;
    flex-direction: column;
    padding: 20px;
    flex: 1;
}

.blog-card-tag {
    display: inline-block;
    background: var(--accent-dim);
    color: var(--accent);
    padding: 3px 10px;
    border-radius: var(--radius-xs);
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 10px;
    width: fit-content;
}

.blog-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.35;
}

.blog-card-desc {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 12px;
    flex: 1;
}

.blog-card-meta {
    color: var(--text-muted);
    font-size: 0.8rem;
}

@media (max-width: 900px) {
    .blog-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .blog-list {
        grid-template-columns: 1fr;
    }
    .blog-card-img {
        aspect-ratio: 16 / 9;
    }
}

/* Hero stats with icons */
.stat-icon {
    width: 28px;
    height: 28px;
    color: var(--accent);
}

/* ============================================
   Responsive: download, article, mockups
   ============================================ */

@media (max-width: 768px) {
    .article-title {
        font-size: 1.8rem;
    }
    .mockup-laptop-screen { width: 340px; }
    .mockup-laptop-base { width: 380px; margin-left: -20px; }
    .mockup-laptop-hinge { width: 400px; margin-left: -30px; }
    .mockup-phone { right: 0; }
    .mockup-phone-body { width: 140px; }
    .dui-sidebar { display: none; }
    .dui-main { margin-left: 0; }
    .platforms-row { gap: 20px; }
}

/* ============================================
   Network Map
   ============================================ */

.network-map {
    padding: 80px 0;
}

.network-map .container {
    max-width: 1100px;
}

.map-container {
    position: relative;
    width: 100%;
    aspect-ratio: 2.2/1;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg);
    border: 1px solid var(--border);
    box-shadow: 0 4px 60px rgba(0,0,0,0.5), 0 0 120px rgba(0,229,160,0.03);
}

.map-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
    opacity: 0.85;
}

.map-fade {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(to right, var(--bg) 0%, transparent 6%, transparent 94%, var(--bg) 100%),
        linear-gradient(to bottom, var(--bg) 0%, transparent 8%, transparent 92%, var(--bg) 100%);
    z-index: 2;
}

.map-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.map-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
}

.map-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.map-stat {
    text-align: center;
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    min-width: 120px;
    transition: border-color 0.3s, background 0.3s;
}

.map-stat:hover {
    border-color: rgba(0,229,160,0.15);
    background: var(--accent-dim);
}

.map-stat-value {
    font-size: 26px;
    font-weight: 700;
    color: var(--accent);
    font-family: var(--font-mono);
    line-height: 1;
}

.map-stat-label {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 640px) {
    .map-stats { gap: 12px; }
    .map-stat { min-width: 0; padding: 12px 16px; flex: 1; }
    .map-stat-value { font-size: 20px; }
    .network-map { padding: 40px 0; }
}

/* =============================================
   THEME TOGGLER
   ============================================= */
.theme-toggle {
    width: 36px; height: 36px;
    border: none; background: transparent;
    cursor: pointer; padding: 0;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
    margin-left: 8px;
    position: relative;
    color: var(--text-secondary);
    flex-shrink: 0;
}
.theme-toggle:hover { background: rgba(255,255,255,0.08); color: var(--text); }
.theme-toggle svg { width: 20px; height: 20px; transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.3s; }
.theme-toggle .icon-sun { position: absolute; opacity: 0; transform: rotate(-90deg) scale(0.5); }
.theme-toggle .icon-moon { position: absolute; opacity: 1; transform: rotate(0) scale(1); }
html.light .theme-toggle .icon-sun { opacity: 1; transform: rotate(0) scale(1); }
html.light .theme-toggle .icon-moon { opacity: 0; transform: rotate(90deg) scale(0.5); }
html.light .theme-toggle:hover { background: rgba(0,0,0,0.06); }

/* =============================================
   LIGHT THEME
   ============================================= */
html.light {
    --bg: #ffffff;
    --bg-elevated: #f7f8fa;
    --bg-card: #ffffff;
    --bg-card-hover: #f3f4f6;
    --border: rgba(0,0,0,0.08);
    --border-hover: rgba(0,0,0,0.15);
    --text: #111827;
    --text-secondary: #4b5563;
    --text-muted: #9ca3af;
    --accent: #00B88D;
    --accent-dim: rgba(0,184,141,0.08);
    --accent-glow: rgba(0,184,141,0.18);
    --accent-secondary: #0091B4;
    --gradient: linear-gradient(135deg, #00B88D 0%, #0091B4 100%);
    --gradient-text: linear-gradient(135deg, #00936F 0%, #007A9A 50%, #5B45CC 100%);
}
html.light body { background: #fff; color: var(--text); }
html.light .nav { background: rgba(255,255,255,0.85); border-color: rgba(0,0,0,0.06); }
html.light .nav.scrolled { background: rgba(255,255,255,0.96); border-color: rgba(0,0,0,0.1); }
html.light .nav-burger span { background: var(--text); }
html.light .nav-cta { color: #fff; background: var(--accent); }
html.light .nav-cta:hover { background: #00D4A0; }
html.light .mobile-menu { background: rgba(255,255,255,0.98); }
html.light .mobile-cta { color: #fff; }
html.light .btn-primary { color: #fff; }
html.light .btn-primary:hover { background: #00D4A0; }
html.light .btn-ghost { color: var(--text); border-color: rgba(0,0,0,0.2); }
html.light .btn-ghost:hover { border-color: rgba(0,0,0,0.35); background: rgba(0,0,0,0.03); color: var(--text); }
html.light .btn-outline { color: var(--text); }
html.light .btn-outline:hover { color: var(--accent); }
html.light .hero-bg { opacity: 0.35; }
html.light .hero-grid-canvas canvas { filter: brightness(3.5) saturate(2.5); }
html.light .hero-glow-1 { background: var(--accent); opacity: 0.04; }
html.light .hero-glow-2 { background: #7B61FF; opacity: 0.03; }
html.light .hero-badge { background: var(--bg-elevated); border-color: rgba(0,0,0,0.06); color: var(--text-secondary); }
html.light .hero-stats { background: var(--bg-elevated); border-color: rgba(0,0,0,0.06); }
html.light .phone-frame { background: #e5e7eb; box-shadow: 0 0 0 1px rgba(0,0,0,0.08), 0 25px 80px rgba(0,0,0,0.12); }
html.light .phone-notch { background: #e5e7eb; }
html.light .phone-glow { opacity: 0.06; }
html.light .mock-footer { background: rgba(10,10,10,0.75); }
html.light .status { border-bottom-color: rgba(0,0,0,0.06); }
html.light .status-card { background: var(--bg-elevated); }
html.light .trial-card { background: linear-gradient(135deg, rgba(0,184,141,0.04) 0%, rgba(0,145,180,0.02) 100%); border-color: rgba(0,184,141,0.15); }
html.light .trial-card-bg { background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(0,184,141,0.06), transparent 70%); }
html.light .trial-step-item { background: var(--bg-elevated); border-color: rgba(0,0,0,0.06); color: var(--text); }
html.light .trial-step-num { color: #fff; }
html.light .feature-card { background: rgba(0,0,0,0.02); border-color: rgba(0,0,0,0.06); }
html.light .feature-card:hover { background: rgba(0,184,141,0.03); border-color: rgba(0,184,141,0.15); box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
html.light .feature-card-num { color: rgba(0,184,141,0.3); }
html.light .feature-card-desc { color: rgba(0,0,0,0.5); }
html.light .features-blob-1 { background: rgba(0,184,141,0.05); }
html.light .features-blob-2 { background: rgba(0,180,216,0.04); }
html.light .speed-header-label { color: #374151; font-weight: 700; }
html.light .speed-header-accent { color: #00B88D; }
html.light .speed-metric-label { color: rgba(0,0,0,0.55); }
html.light .speed-metric-hint { color: rgba(0,0,0,0.35); }
html.light .speed-val-dim { color: rgba(0,0,0,0.5); }
html.light .speed-track { background: rgba(0,0,0,0.07); }
html.light .speed-fill-dim { background: rgba(0,0,0,0.18); }
html.light .speed-badge { color: rgba(0,0,0,0.55); }
html.light .map-container { background: #1a1b2e; border-color: rgba(255,255,255,0.08); box-shadow: 0 4px 60px rgba(0,0,0,0.2); }
html.light .map-fade { background: linear-gradient(to right, #1a1b2e 0%, transparent 6%, transparent 94%, #1a1b2e 100%), linear-gradient(to bottom, #1a1b2e 0%, transparent 8%, transparent 92%, #1a1b2e 100%); }
html.light .map-bg { opacity: 0.5; }
html.light .map-stat { background: rgba(0,0,0,0.02); border-color: rgba(0,0,0,0.06); }
html.light .map-stat:hover { border-color: rgba(0,184,141,0.2); background: var(--accent-dim); }
html.light .mockup-laptop-screen { background: #f0f0f2; border-color: #d1d5db; box-shadow: 0 -2px 40px rgba(0,0,0,0.06), inset 0 0 0 1px rgba(0,0,0,0.04); }
html.light .mockup-laptop-screen::before { background: #e5e7eb; border-bottom-color: rgba(0,0,0,0.06); }
html.light .mockup-laptop-base { background: linear-gradient(180deg, #d1d5db 0%, #c0c4cc 100%); }
html.light .mockup-laptop-base::before { background: #b0b4bc; }
html.light .mockup-laptop-hinge { background: linear-gradient(180deg, #c0c4cc 0%, #b8bcc4 100%); }
html.light .mockup-laptop::after { background: radial-gradient(ellipse, rgba(0,0,0,0.1) 0%, transparent 70%); }
html.light .mockup-phone-body { background: #e5e7eb; border-color: #d1d5db; box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
html.light .mockup-phone-body::before { background: #d1d5db; }
html.light .mockup-phone-screen { background: #f0f0f2; }
html.light .dui { background: #f8f9fa; }
html.light .dui-sidebar { background: #f0f1f3; border-right-color: rgba(0,0,0,0.06); }
html.light .dui-sidebar-logo { color: var(--accent); }
html.light .dui-sidebar-logo .dui-r { background: var(--accent); color: #fff; }
html.light .dui-nav-item { color: var(--text-secondary); }
html.light .dui-nav-item.active { background: var(--accent-dim); color: var(--accent); }
html.light .dui-main-title { color: var(--text); }
html.light .dui-status { color: var(--accent); }
html.light .dui-status-sub { color: var(--text-muted); }
html.light .dui-big-btn { background: var(--accent); }
html.light .dui-big-btn svg { stroke: #fff; }
html.light .dui-server { background: rgba(0,0,0,0.02); border-color: rgba(0,0,0,0.06); }
html.light .dui-server.active { border-color: rgba(0,184,141,0.25); background: var(--accent-dim); }
html.light .dui-server-bar { background: rgba(0,0,0,0.06); }
html.light .dui-mob-pill { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.06); }
html.light .dui-mob-btn { background: var(--accent); }
html.light .dui-mob-btn svg { stroke: #fff; }
html.light .dui-mob-nav { border-top-color: rgba(0,0,0,0.06); }
html.light .dui-mob-brand { color: var(--accent); }
html.light .dui-mob-status { color: var(--accent); }
html.light .platform-icon { color: #9ca3af; }
html.light .platform-icon:hover { color: var(--accent); }
html.light .download-card { background: #fff; border-color: rgba(0,0,0,0.08); box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
html.light .download-card:hover { background: #fff; border-color: rgba(0,0,0,0.12); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
html.light .download-btn.btn-primary { color: #fff; }
html.light .pricing { background: var(--bg-elevated); }
html.light .price-card { background: #fff; border-color: rgba(0,0,0,0.08); box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
html.light .price-card:hover { border-color: rgba(0,0,0,0.12); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
html.light .price-card-popular { border-color: var(--accent); background: linear-gradient(180deg, rgba(0,184,141,0.04) 0%, #fff 100%); }
html.light .price-card-popular:hover { border-color: var(--accent); }
html.light .price-popular-badge { color: #fff; }
html.light .btn-crypto { background: rgba(247,147,26,0.03); color: rgba(0,0,0,0.45); }
html.light .btn-crypto::before { background: linear-gradient(135deg, rgba(247,147,26,0.3), rgba(247,147,26,0.05) 40%, rgba(0,229,160,0.05) 60%, rgba(0,229,160,0.2)); }
html.light .btn-crypto:hover { background: rgba(247,147,26,0.06); color: rgba(0,0,0,0.8); }
html.light .btn-crypto:hover::before { background: linear-gradient(135deg, #f7931a, rgba(247,147,26,0.1) 40%, rgba(0,229,160,0.1) 60%, #00E5A0); }
html.light .price-features li::before { background: var(--accent-dim); border-color: var(--accent); }
html.light .faq-item { border-bottom-color: rgba(0,0,0,0.06); }
html.light .faq-question { color: var(--text); }
html.light .faq-question:hover { color: var(--accent); }
html.light .ft-visual { background: #f7f8fa; }
html.light .ft-body { background: #fff; border-color: rgba(0,0,0,0.08); }
html.light .ft-card:hover .ft-body { border-color: rgba(0,229,160,0.2); }
html.light .ft-card:hover { box-shadow: 0 20px 60px rgba(0,229,160,0.08), 0 8px 24px rgba(0,0,0,0.06); }
html.light .ft-carousel-wrap::before { background: linear-gradient(90deg, #fff 0%, transparent 100%); }
html.light .ft-carousel-wrap::after { background: linear-gradient(-90deg, #fff 0%, transparent 100%); }
html.light .ft-arrow { background: #fff; border-color: rgba(0,0,0,0.08); color: #1a1a2e; }
html.light .ft-arrow:hover { background: #f7f8fa; border-color: rgba(0,229,160,0.3); }
html.light .cta-card { background: var(--bg-elevated); border-color: rgba(0,0,0,0.06); }
html.light .cta-glow { opacity: 0.04; }
html.light .cta-card .btn-primary { color: #fff; }
html.light .footer { border-top-color: rgba(0,0,0,0.06); }
html.light .footer-bottom { border-top-color: rgba(0,0,0,0.06); }
html.light .scroll-line { background: linear-gradient(to bottom, var(--accent), transparent); }
html.light .logo-icon svg path { fill: var(--accent); }
html.light .nav-logo .logo-text { color: var(--text); }
html.light .nav-dropdown-menu { background: rgba(255,255,255,0.96); border-color: rgba(0,0,0,0.08); }
html.light .nav-dd-item:hover { background: rgba(0,0,0,0.04); }
html.light .tool-footer a { color: var(--accent); }

/* ============================================
   Exit-intent Popup
   ============================================ */

.exit-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    padding: 20px;
}

.exit-overlay.active {
    opacity: 1;
    visibility: visible;
}

.exit-popup {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 48px 40px;
    max-width: 440px;
    width: 100%;
    text-align: center;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    backface-visibility: hidden;
    will-change: transform;
}

.exit-overlay.active .exit-popup {
    transform: translateY(0) scale(1);
}

.exit-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 28px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s, color 0.2s;
}

.exit-close:hover {
    background: rgba(255,255,255,0.06);
    color: var(--text);
}

.exit-icon {
    margin-bottom: 20px;
}

.exit-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.exit-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 24px;
}

.exit-desc strong {
    color: var(--accent);
    font-weight: 600;
}

.exit-form {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.exit-input {
    flex: 1;
    padding: 14px 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: var(--font);
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s;
    -moz-appearance: none;
}

.exit-input:focus {
    border-color: var(--accent);
}

.exit-input::placeholder {
    color: var(--text-muted);
}

.exit-submit {
    padding: 14px 24px;
    font-size: 15px;
    white-space: nowrap;
    flex-shrink: 0;
}

.exit-note {
    font-size: 12px;
    color: var(--text-muted);
}

.exit-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.exit-success p {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent);
}

@media (max-width: 600px) {
    .exit-overlay { align-items: flex-end; padding: 0; }
    .exit-popup {
        padding: 32px 20px calc(24px + env(safe-area-inset-bottom));
        border-radius: 20px 20px 0 0;
        max-width: 100%;
    }
    .exit-form { flex-direction: column; }
    .exit-submit { width: 100%; }
}

html.light .exit-overlay { background: rgba(255,255,255,0.7); }
html.light .exit-popup { background: #fff; border-color: rgba(0,0,0,0.08); box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
html.light .exit-close:hover { background: rgba(0,0,0,0.04); }
html.light .exit-input { background: rgba(0,0,0,0.03); border-color: rgba(0,0,0,0.1); color: var(--text); }
html.light .exit-input:focus { border-color: var(--accent); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    
    [data-animate] {
        opacity: 1;
        transform: none;
    }
}

/* ============================================
   PAYMENT MODAL
   ============================================ */
.pay-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,.7);
    backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
}
.pay-overlay.active { display: flex; }

.pay-modal {
    background: #141414;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    padding: 2rem;
    max-width: 420px;
    width: 90%;
    position: relative;
}
.pay-close {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    background: none;
    border: none;
    color: rgba(255,255,255,.5);
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
}
.pay-close:hover { color: #fff; }
.pay-modal-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 .4rem;
}
.pay-modal-plan {
    font-size: .9rem;
    color: rgba(255,255,255,.5);
    margin: 0 0 1.5rem;
}
.pay-options { display: flex; flex-direction: column; gap: .75rem; }
.pay-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    padding: 1rem 1.2rem;
    cursor: pointer;
    transition: background .2s, border-color .2s;
    text-align: left;
    color: #fff;
}
.pay-option:hover {
    background: rgba(0,229,160,.08);
    border-color: rgba(0,229,160,.3);
}
.pay-option-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pay-option-icon svg { width: 28px; height: 28px; }
.pay-option-text { flex: 1; min-width: 0; }
.pay-option-title {
    display: block;
    font-weight: 600;
    font-size: .95rem;
    color: #fff;
    line-height: 1.3;
}
.pay-option-desc {
    display: block;
    font-size: .8rem;
    color: rgba(255,255,255,.45);
    margin-top: .2rem;
    line-height: 1.3;
}

@media (max-width: 600px) {
    .pay-overlay { align-items: flex-end; }
    .pay-modal {
        width: 100%;
        max-width: 100%;
        border-radius: 20px 20px 0 0;
        padding: 1.5rem 1.2rem calc(1.5rem + env(safe-area-inset-bottom));
    }
    .pay-option {
        padding: .9rem 1rem;
        gap: .75rem;
    }
    .pay-option-icon svg { width: 24px; height: 24px; }
}
