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

:root {
    /* Brand Colors - Refined Palette */
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --primary-light: #60a5fa;
    --secondary: #06b6d4;  /* Changed from purple to teal */
    --accent: #10b981;     /* Success/accent green */

    /* Neutrals - Simplified */
    --dark: #0a0a0a;
    --gray-dark: #18181b;
    --gray-mid: #27272a;
    --gray-light: #71717a;
    --white: #fafafa;

    /* Semantic Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #06b6d4;

    /* Gradients - Strategic Use Only */
    --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    --gradient-accent: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);

    /* Elevation System */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15), 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.04);

    /* Card Styles */
    --bg-card: #18181b;
    --border: #27272a;
    --border-light: #3f3f46;

    /* Spacing Scale - 8px Grid */
    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 32px;
    --space-5: 40px;
    --space-6: 48px;
    --space-7: 56px;
    --space-8: 64px;
    --space-10: 80px;
    --space-12: 96px;
    --space-16: 128px;

    /* Typography Scale */
    --text-xs: 13px;
    --text-sm: 14px;
    --text-base: 16px;
    --text-lg: 20px;
    --text-xl: 28px;
    --text-2xl: 36px;
    --text-3xl: 48px;

    /* Grid Patterns */
    --grid-gap: 24px;
    --grid-2-col: repeat(2, 1fr);
    --grid-3-col: repeat(3, 1fr);
    --grid-4-col: repeat(4, 1fr);
    --grid-safe-fit: repeat(auto-fit, minmax(min(320px, 100%), 1fr));

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Z-index Scale */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal: 1040;
    --z-tooltip: 1050;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    font-size: var(--text-base);
    color: var(--white);
    overflow-x: hidden;
    background: var(--dark);
    width: 100%;
    max-width: 100vw;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus visible for keyboard navigation */
:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
    border-radius: 4px;
}

:focus:not(:focus-visible) {
    outline: none;
}

/* Skip to content link for accessibility */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    z-index: var(--z-tooltip);
    font-weight: 600;
    border-radius: 0 0 8px 0;
    transition: top var(--transition-fast);
}

.skip-to-content:focus {
    top: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-3);
    width: 100%;
    overflow-x: clip;
}

/* Ensure all grid containers stay within bounds */
[class*="-grid"] {
    max-width: 100%;
    width: 100%;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: blur(0px);
    z-index: var(--z-fixed);
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    will-change: transform;
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 34px;
    width: auto;
    object-fit: contain;
    filter: none;
    transition: opacity 140ms cubic-bezier(.2, 0, 0, 1);
}

.logo-image:hover {
    filter: none;
    opacity: .9;
}

.nav-brand-image {
    display: block;
    width: auto;
    height: 30px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s;
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.desktop-only {
    display: inline-block;
}

/* Buttons */
.btn {
    padding: var(--space-2) var(--space-4);
    border: none;
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* Minimum touch target size for mobile accessibility */
    min-height: 44px;
    min-width: 44px;
    gap: var(--space-2);
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(0, 122, 255, 0.3);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 122, 255, 0.5), 0 0 60px rgba(0, 122, 255, 0.3);
}

.btn-arrow {
    transition: transform 0.3s;
    font-size: 20px;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.play-icon {
    font-size: 14px;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-large {
    padding: var(--space-3) var(--space-6);
    font-size: var(--text-base);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

/* Hero Section */
.hero {
    padding: 120px 0 60px;
    background: radial-gradient(ellipse 80% 60% at 60% -10%, rgba(99,102,241,0.18) 0%, transparent 60%),
                radial-gradient(ellipse 60% 50% at 10% 80%, rgba(139,92,246,0.10) 0%, transparent 55%),
                linear-gradient(180deg, var(--dark) 0%, var(--gray-dark) 100%);
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.particles {
    position: absolute;
    inset: 0;
    display: block;
    overflow: hidden;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15; /* Subtle background accent */
    animation: float 20s infinite ease-in-out;
    will-change: transform;
    pointer-events: none;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary), transparent);
    top: -300px;
    right: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--secondary), transparent);
    bottom: -250px;
    left: -150px;
    animation-delay: 7s;
}

.orb-3 {
    display: none; /* Reduced orb count for cleaner look */
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(100px, -100px) scale(1.1); }
    66% { transform: translate(-100px, 100px) scale(0.9); }
}

.hero-content {
    text-align: left;
    max-width: 560px;
    position: relative;
    z-index: 2;
}

/* Hero split layout */
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-right {
    position: relative;
    z-index: 2;
}

.hero-platform-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.hero-platform-chip {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.02em;
}

.hero-platform-chip.ios-chip {
    background: rgba(99,102,241,0.12);
    border-color: rgba(99,102,241,0.3);
    color: #a5b4fc;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(99,102,241,0.12);
    border: 1px solid rgba(99,102,241,0.3);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    color: #a5b4fc;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.03em;
    margin-bottom: var(--space-3);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(36px, 4.5vw, 58px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-3);
    color: var(--white);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-4);
    max-width: 500px;
    line-height: 1.7;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: var(--space-2);
    justify-content: flex-start;
    margin-bottom: var(--space-2);
    flex-wrap: wrap;
}

.hero-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.hero-visual {
    position: relative;
    z-index: 2;
    width: 100%;
}

.app-window {
    background: rgba(15,15,28,0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(99,102,241,0.2);
    border-radius: 20px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 80px rgba(99,102,241,0.15);
    overflow: hidden;
    animation: floatWindow 6s ease-in-out infinite;
}

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

.window-header {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.window-controls {
    display: flex;
    gap: 8px;
}

.window-title {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #FF5F57; }
.dot.yellow { background: #FFBD2E; }
.dot.green { background: #28CA42; }

.window-content {
    padding: 14px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
    gap: 10px;
}

.stat-card {
    text-align: center;
    padding: 12px 8px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s;
    position: relative;
}

.glow-card {
    position: relative;
}

.glow-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-vibrant);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.glow-card:hover::before {
    opacity: 0.6;
    animation: glow 1.5s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
}

.stat-icon {
    font-size: 20px;
    margin-bottom: 4px;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    background: var(--gradient-vibrant);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2px;
}

.stat-number::after {
    content: attr(data-suffix);
}

.stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    line-height: 1.2;
}

.stat-trend {
    font-size: 11px;
    color: #34C759;
    margin-top: 4px;
    font-weight: 600;
}

.progress-bar {
    margin-top: 12px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-vibrant);
    border-radius: 10px;
    animation: fillProgress 3s ease-out forwards;
}

@keyframes fillProgress {
    from { width: 0%; }
    to { width: 87%; }
}

/* Section Styles — use clip to prevent horizontal overflow WITHOUT creating scroll containers.
   overflow-x:hidden on sections coerces overflow-y:auto (CSS spec), causing flash scrollbars.
   overflow-x:clip does not create a scroll container so overflow-y remains normal. */
section {
    overflow-x: clip;
    width: 100%;
    max-width: 100vw;
    padding: 14px 0;
}

.section-title {
    font-size: var(--text-2xl);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--space-2);
}

/* Stats Section */
.stats-section {
    background: var(--gradient-primary);
    padding: var(--space-6) 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.stats-banner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: var(--space-6);
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number-large {
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: var(--space-2);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.stat-label-large {
    font-size: var(--text-base);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.stat-divider {
    width: 2px;
    height: 80px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
}

@media (max-width: 768px) {
    .stats-banner {
        flex-direction: column;
        gap: 30px;
    }

    .stat-divider {
        width: 60%;
        height: 2px;
        background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    }

    .stat-number-large {
        font-size: 48px;
    }

    .stat-label-large {
        font-size: 14px;
    }
}

/* Problem Section */
.problem {
    background: var(--bg-card);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
    max-width: 100%;
}

.problem-card {
    text-align: center;
    padding: var(--space-4);
}

.problem-icon {
    font-size: 36px;
    margin-bottom: var(--space-3);
}

.problem-card h3 {
    font-size: var(--text-base);
    margin-bottom: var(--space-2);
    color: var(--white);
}

.problem-card p {
    color: var(--text-secondary);
}

/* Features Section */
.features {
    background: var(--bg-dark);
    padding: var(--space-3) 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 100%;
    gap: var(--space-2);
}

.feature-card {
    background: var(--bg-card);
    padding: var(--space-3);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid var(--border);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-icon {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--primary-light);
    margin-bottom: 6px;
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
    opacity: 0.7;
}

.feature-card h3 {
    font-size: 13px;
    margin-bottom: 8px;
    color: var(--white);
    font-weight: 600;
}

.feature-card > p {
    display: none;
}

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

.feature-list li {
    padding: 3px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 18px;
    font-size: 12px;
    line-height: 1.4;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* How It Works */
.how-it-works {
    background: var(--bg-card);
    padding: var(--space-4) 0;
}

.steps {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-lg);
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    filter: blur(10px);
    opacity: 0.5;
    z-index: -1;
}

.step-content h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-1);
    color: var(--white);
}

.step-content p {
    color: var(--text-secondary);
    font-size: var(--text-base);
}

/* Benefits */
.benefits {
    background: var(--dark);
    color: var(--white);
}

.benefits .section-title {
    color: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
    max-width: 100%;
}

.benefit-card {
    text-align: center;
    padding: var(--space-5) var(--space-4);
}

.benefit-stat {
    font-size: var(--text-3xl);
    font-weight: 700;
    background: var(--accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-1);
}

.benefit-label {
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: var(--space-2);
}

.benefit-card p {
    color: var(--text-secondary);
}

/* Gallery Section */
.gallery {
    background: var(--bg-dark);
    overflow-x: clip;
}

.gallery-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
    font-size: var(--text-base);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
    gap: var(--space-4);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-md);
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: var(--space-5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    color: var(--white);
    font-size: var(--text-base);
    font-weight: 600;
}

/* Interface Showcase Section */
.interface-showcase {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    padding: var(--space-5) 0;
}

.interface-showcase .section-title {
    color: var(--white);
    background: linear-gradient(135deg, #00d4ff 0%, #7b2ff7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.interface-showcase .gallery-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.interface-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: var(--space-3);
    max-width: 100%;
}

.interface-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.interface-item:hover {
    transform: translateY(-4px);
    border-color: var(--secondary);
    box-shadow: var(--shadow-xl);
}

.interface-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.interface-item:hover img {
    transform: scale(1.01);
}

.interface-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
    padding: var(--space-6);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.interface-item:hover .interface-overlay {
    transform: translateY(0);
}

.interface-caption {
    color: var(--white);
    font-size: var(--text-base);
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Pricing Section */
.pricing {
    background: var(--bg-card);
    padding: var(--space-5) 0;
    overflow-x: clip;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.pricing-card {
    background: var(--bg-card);
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 2px solid var(--border);
    max-width: 100%;
}

.pricing-card.featured {
    border-color: var(--primary);
}

.pricing-card:hover {
    box-shadow: var(--shadow-lg);
}

.pricing-ribbon {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--accent);
    color: var(--bg-dark);
    padding: var(--space-1) var(--space-3);
    font-size: var(--text-xs);
    font-weight: 700;
    border-radius: 0 var(--radius-lg) 0 var(--radius-md);
    letter-spacing: 0.5px;
}

.pricing-ribbon.special {
    background: linear-gradient(135deg, #FF3B30 0%, #FF6B6B 100%);
    color: var(--white);
}

.pricing-badge {
    display: inline-block;
    background: #FFD60A;
    color: #1D1D1F;
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-md);
    font-size: var(--text-xs);
    font-weight: 700;
    margin-bottom: var(--space-3);
    width: fit-content;
}

.pricing-badge.early-bird {
    background: #FFD60A;
}

.pricing-icon {
    display: none;
}

.pricing-title {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-2);
    color: var(--white);
}

.pricing-description {
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
    font-size: var(--text-sm);
    line-height: 1.5;
}

.pricing-features {
    flex-grow: 1;
    margin-bottom: var(--space-4);
}

.feature-item {
    padding: var(--space-2) 0;
    color: var(--text-secondary);
    font-size: var(--text-sm);
    border-bottom: 1px solid var(--border);
}

.feature-item:last-child {
    border-bottom: none;
}

.pricing-price {
    text-align: center;
    padding: var(--space-5) 0;
    margin-bottom: var(--space-4);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.price-label {
    font-size: var(--text-xs);
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: var(--space-1);
}

.price-original {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
    font-weight: 500;
    margin-bottom: var(--space-2);
}

.price-amount {
    font-size: var(--text-2xl);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--space-1);
}

.price-period {
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.price-lifetime-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
    padding: 5px 14px;
    background: linear-gradient(135deg, rgba(99,102,241,0.18) 0%, rgba(139,92,246,0.14) 100%);
    border: 1px solid rgba(99,102,241,0.4);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #c4b5fd;
    box-shadow: 0 0 12px rgba(99,102,241,0.15);
}

.pricing-card.featured .price-lifetime-badge {
    background: linear-gradient(135deg, rgba(99,102,241,0.28) 0%, rgba(139,92,246,0.22) 100%);
    border-color: rgba(139,92,246,0.6);
    color: #e9d5ff;
    box-shadow: 0 0 18px rgba(139,92,246,0.25);
}

.pricing-btn {
    width: 100%;
    min-width: 0;
    font-size: var(--text-sm);
    padding: var(--space-3) var(--space-4);
    display: flex;
    text-align: center;
    white-space: normal;
}

/* CTA Section */
.cta {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-title {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-3);
    position: relative;
    z-index: 1;
}

.cta-subtitle {
    font-size: var(--text-base);
    margin-bottom: var(--space-5);
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: var(--space-3);
    justify-content: center;
    margin-bottom: var(--space-3);
    position: relative;
    z-index: 1;
}

.cta-note {
    font-size: var(--text-sm);
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: var(--space-4) 0 var(--space-3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
    margin-bottom: var(--space-5);
    max-width: 100%;
}

.footer-section h4 {
    margin-bottom: var(--space-3);
    font-size: var(--text-base);
}

.footer-section p {
    color: var(--text-secondary);
    font-size: var(--text-sm);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--space-2);
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--text-sm);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-5);
    text-align: center;
    color: var(--text-secondary);
    font-size: var(--text-xs);
}

.footer-bottom p {
    margin-bottom: var(--space-2);
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
}

/* Responsive - Mobile Portrait */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .desktop-only {
        display: none;
    }

    .nav-links {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        z-index: 1000;
        max-height: calc(100vh - 64px);
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-links li {
        padding: 12px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        width: 100%;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        width: 100%;
        font-size: 16px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 28px;
    }

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

    .step {
        flex-direction: column;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 20px;
    }

    .pricing-icon {
        font-size: 36px;
    }

    .pricing-title {
        font-size: 20px;
    }

    .price-amount {
        font-size: 36px;
    }

    .window-content {
        padding: 16px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .notification-stack {
        right: 12px;
        bottom: 12px;
    }

    .activity-notification {
        max-width: calc(100vw - 24px);
    }
}

/* Responsive - Mobile Landscape */
@media (max-width: 900px) and (max-height: 500px) {
    .hero {
        padding: 40px 0 30px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    section {
        padding: 30px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 30px 0 16px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    html, body {
        max-width: 100vw;
        overflow-x: hidden;
    }

    .container {
        padding: 0 16px;
        max-width: 100%;
        overflow-x: clip;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .section-title {
        font-size: 22px;
    }

    .btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .btn-large {
        padding: 12px 20px;
        font-size: 14px;
    }

    .pricing-card {
        padding: 16px;
    }

    .feature-item {
        font-size: 12px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .logo-image {
        height: 30px;
    }

    .badge {
        font-size: 11px;
        padding: 6px 12px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .notification-stack {
        left: 8px;
        right: 8px;
        bottom: 8px;
    }

    .activity-notification {
        padding: 12px;
        gap: 12px;
    }

    .notification-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .notification-stack {
        display: none;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-visual {
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.feature-icon {
    animation: none;
}

/* Enhanced Gallery Effects */
.gallery-item {
    transform-style: preserve-3d;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-neon);
    opacity: 0;
    mix-blend-mode: overlay;
    transition: opacity 0.4s;
    z-index: 2;
}

.gallery-item:hover::after {
    opacity: 0.2;
}

/* Enhance CTA Section */
.cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 212, 255, 0.15) 0%, transparent 60%),
                radial-gradient(circle at 70% 50%, rgba(241, 7, 163, 0.15) 0%, transparent 60%);
    animation: pulse 4s ease-in-out infinite;
}

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

/* Text glow effects */
.hero-title, h1 {
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3),
                 0 0 60px rgba(123, 47, 247, 0.2);
}

/* Enhanced benefit cards */
.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-neon);
}

/* Testimonials Section */
.testimonials {
    background: var(--bg-card);
    padding: var(--space-5) 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: 24px;
    margin-top: 40px;
    max-width: 100%;
}

.testimonial-card {
    background: var(--bg-dark);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid var(--border-dark);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    left: 24px;
    font-size: 80px;
    color: rgba(0, 212, 255, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-neon), var(--shadow-lg);
}

.testimonial-stars {
    font-size: 20px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-cyber);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.author-name {
    font-weight: 600;
    color: var(--white);
}

.author-role {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Integrations Section */
.integrations {
    padding: 30px 0;
    background: var(--bg-dark);
}

.integrations-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    margin-top: -20px;
    margin-bottom: 40px;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 100%;
}

.integration-card {
    text-align: center;
    padding: 32px 24px;
    border-radius: 12px;
    border: 2px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s;
    background: var(--bg-card);
}

.integration-card:hover {
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
    transform: translateY(-4px);
}

.integration-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.integration-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--white);
}

.integration-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* FAQ Section */
.faq {
    background: var(--bg-card);
    padding: var(--space-5) 0;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    margin-top: var(--space-3);
}

.faq-item {
    background: var(--bg-dark);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-2);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: var(--space-4);
    cursor: pointer;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-base);
    /* Touch target for mobile accessibility */
    min-height: 44px;
}

.faq-question:hover {
    background: rgba(59, 130, 246, 0.05);
}

.faq-question h3 {
    font-size: var(--text-base);
    margin: 0;
    color: var(--white);
    font-weight: 600;
}

.faq-icon {
    font-size: var(--text-xl);
    color: var(--primary);
    transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base) ease;
}

.faq-item.active .faq-answer {
    max-height: 1200px;
}

.faq-answer p {
    padding: 0 var(--space-4) var(--space-4);
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}
//==============================================================================
/* Typewriter Effect */
//==============================================================================
.typewriter {
    display: inline-block;
    border-right: 3px solid #00d4ff;
    animation: blink 0.7s infinite;
    min-width: 200px;
}

@keyframes blink {
    50% { border-color: transparent; }
}

//==============================================================================
/* Trust Badges */
//==============================================================================
.trust-badges {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
    padding: 25px 0;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
    width: 100%;
    max-width: 100%;
}

.trust-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    min-width: 0;
}

.trust-item:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 212, 255, 0.4);
    background: rgba(0, 212, 255, 0.05);
}

.trust-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.trust-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}

.notification-stack {
    position: fixed;
    bottom: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 9999;
    pointer-events: none;
}

.activity-notification {
    position: relative;
    background: rgba(24, 24, 27, 0.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    min-width: 0;
    max-width: 310px;
    opacity: 0;
    transform: translateX(20px);
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: auto;
}

.activity-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-icon {
    width: 28px;
    height: 28px;
    background: rgba(59, 130, 246, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    color: white;
}

.notification-content {
    flex: 1;
    min-width: 0;
}

.notification-header {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    align-items: center;
    margin-bottom: 2px;
}

.notification-name {
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.notif-badge {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 1px 5px;
    border-radius: 3px;
    line-height: 1.5;
    flex-shrink: 0;
}

.notif-badge-leader {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.35);
}

.notif-badge-agent {
    background: rgba(6, 182, 212, 0.15);
    color: #06b6d4;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.notif-badge-user {
    background: rgba(113, 113, 122, 0.2);
    color: #71717a;
    border: 1px solid rgba(113, 113, 122, 0.3);
}

.notification-email {
    color: rgba(255,255,255,0.38);
    font-size: 10px;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 1px;
}

.notification-time {
    color: rgba(255,255,255,0.35);
    font-size: 10px;
    white-space: nowrap;
    flex-shrink: 0;
}

.notification-action {
    color: rgba(255,255,255,0.55);
    font-size: 11px;
    font-weight: 400;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notification-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4px;
    gap: 6px;
}

.notification-module {
    font-size: 10px;
    color: rgba(255,255,255,0.28);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

.notification-status {
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(16, 185, 129, 0.7);
    white-space: nowrap;
    flex-shrink: 0;
}

//==============================================================================
/* Responsive */
//==============================================================================
@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .trust-item {
        padding: 16px 12px;
    }

    .trust-icon {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .trust-text {
        font-size: 12px;
    }
}

    /* Compact Stats Section */
.stats-section {
    padding: 60px 20px;
    background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
}

.stats-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.25);
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.1), transparent);
    pointer-events: none;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.35);
}

.stat-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 8px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.15));
}

.stat-value {
    font-size: 40px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 6px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.stat-suffix {
    font-size: 20px;
    opacity: 0.9;
    margin-left: 2px;
}

.stat-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .stats-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stat-item {
        padding: 20px 12px;
    }

    .stat-icon {
        font-size: 28px;
    }

    .stat-value {
        font-size: 32px;
    }

    .stat-label {
        font-size: 11px;
    }
}
            }

            .stat-mini-icon {
                font-size: 28px;
            }
        }


    <!-- Trust Badges -->


/* ============================================================
   NAV — iOS badge
   ============================================================ */
.nav-new-badge {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 1px 5px;
    border-radius: 4px;
    margin-left: 4px;
    vertical-align: middle;
    line-height: 1.6;
}

.hero-ios-link {
    color: #93c5fd;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.hero-ios-link:hover { color: #60a5fa; }

/* ============================================================
   iOS SECTION
   ============================================================ */
.ios-section {
    padding: 72px 0 80px;
    background: linear-gradient(180deg, #07071a 0%, #0d0d20 50%, #07071a 100%);
    position: relative;
    overflow: hidden;
}

.ios-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.07) 0%, transparent 65%);
    pointer-events: none;
}

.ios-header {
    text-align: center;
    margin-bottom: 52px;
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 100px;
    padding: 5px 16px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #a5b4fc;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
}

.ios-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 72px;
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
}

/* --- Phone mockup --- */
.ios-phone {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-glow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 40px;
    background: rgba(99, 102, 241, 0.25);
    filter: blur(24px);
    border-radius: 50%;
}

.phone-frame {
    width: 220px;
    height: 460px;
    background: #13131f;
    border-radius: 38px;
    border: 1.5px solid rgba(255,255,255,0.1);
    position: relative;
    box-shadow: 0 40px 80px rgba(0,0,0,0.65), inset 0 1px 0 rgba(255,255,255,0.07);
    overflow: hidden;
}

.phone-notch {
    width: 72px;
    height: 22px;
    background: #0a0a14;
    border-radius: 0 0 14px 14px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.phone-screen {
    padding: 6px 14px 18px;
}

.phone-status-bar {
    display: flex;
    justify-content: space-between;
    font-size: 8.5px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 14px;
}

.phone-app-header {
    margin-bottom: 16px;
}

.phone-logo {
    font-size: 17px;
    font-weight: 800;
    background: linear-gradient(135deg, #6366f1, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.phone-tagline {
    font-size: 8.5px;
    color: rgba(255,255,255,0.35);
    margin-top: 1px;
}

.phone-modules {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.phone-module-row {
    display: flex;
    gap: 6px;
}

.phone-module-chip {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px;
    padding: 7px 6px;
    font-size: 8.5px;
    color: rgba(255,255,255,0.4);
    text-align: center;
}

.phone-module-chip.active {
    background: rgba(99, 102, 241, 0.18);
    border-color: rgba(99, 102, 241, 0.4);
    color: #a5b4fc;
}

.phone-metric-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 10px 11px;
}

.phone-metric-label {
    font-size: 8px;
    color: rgba(255,255,255,0.38);
    margin-bottom: 7px;
}

.phone-metric-bar {
    height: 4px;
    background: rgba(255,255,255,0.07);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 5px;
}

.phone-metric-fill {
    height: 100%;
    background: linear-gradient(90deg, #6366f1, #a78bfa);
    border-radius: 2px;
}
.phone-metric-fill.gold {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.phone-metric-value {
    font-size: 10px;
    font-weight: 700;
    color: #a5b4fc;
    text-align: right;
}
.phone-metric-value.gold { color: #fbbf24; }

/* --- iOS modules list --- */
.ios-modules-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 24px;
    margin-bottom: 32px;
}

.ios-module-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.ios-module-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #6366f1;
    margin-top: 5px;
    flex-shrink: 0;
}
.ios-module-dot.gold { background: #f59e0b; }

.ios-module-item strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.88);
    line-height: 1.3;
}

.ios-module-item span {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.4;
}

/* --- iOS CTA --- */
.ios-cta-area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.ios-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #1c1c1e;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 14px;
    padding: 12px 22px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.ios-store-btn:hover {
    background: #242428;
    border-color: rgba(255,255,255,0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.apple-logo-svg {
    width: 28px;
    height: 28px;
    fill: white;
    flex-shrink: 0;
}

.ios-btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.ios-btn-sub {
    font-size: 0.62rem;
    color: rgba(255,255,255,0.5);
    line-height: 1;
}

.ios-btn-main {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    line-height: 1.5;
}

.ios-trial-note {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.32);
    margin: 0;
}

/* ============================================================
   PRICING — 2-column (primary) + iOS footnote strip
   ============================================================ */
.pricing-grid-2 {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

/* iOS companion footnote — subtle row below pricing */
.pricing-ios-footnote {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    padding: 16px 22px;
    background: rgba(99,102,241,0.04);
    border: 1px solid rgba(99,102,241,0.14);
    border-radius: 12px;
}

.pricing-ios-icon {
    font-size: 22px;
    flex-shrink: 0;
    opacity: 0.75;
    line-height: 1;
}

.pricing-ios-text {
    flex: 1;
    font-size: 13px;
    color: var(--text-secondary, #94a3b8);
    line-height: 1.5;
}

.pricing-ios-text strong {
    color: var(--text-primary, #e2e8f0);
    font-weight: 600;
}

.pricing-ios-text span {
    margin-left: 6px;
    color: rgba(148,163,184,0.65);
    font-size: 12px;
}

.pricing-ios-link {
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 600;
    color: #a5b4fc;
    text-decoration: none;
    opacity: 0.75;
    white-space: nowrap;
    transition: opacity 0.2s;
    letter-spacing: 0.02em;
}

.pricing-ios-link:hover {
    opacity: 1;
}

/* ============================================================
   iOS ADD-ON SECTION — informative but secondary
   ============================================================ */
.ios-addon-section {
    padding: 64px 0;
    background: rgba(99,102,241,0.025);
    border-top: 1px solid rgba(99,102,241,0.1);
    border-bottom: 1px solid rgba(99,102,241,0.1);
}

.ios-addon-card {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 56px;
    align-items: center;
    background: rgba(99,102,241,0.04);
    border: 1px solid rgba(99,102,241,0.15);
    border-radius: 20px;
    padding: 44px 48px;
}

/* Left column */
.ios-addon-eyebrow-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.ios-addon-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #a5b4fc;
    opacity: 0.75;
}

.ios-addon-badge-new {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6366f1;
    background: rgba(99,102,241,0.15);
    border: 1px solid rgba(99,102,241,0.3);
    border-radius: 4px;
    padding: 2px 7px;
}

.ios-addon-title {
    font-size: clamp(22px, 2.8vw, 30px);
    font-weight: 700;
    color: #e2e8f0;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 12px;
}

.ios-addon-title-accent {
    background: linear-gradient(135deg, #818cf8, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ios-addon-desc {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.65;
    margin: 0 0 24px;
    max-width: 520px;
}

/* Module pills */
.ios-addon-modules {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.ios-module-pill {
    font-size: 11px;
    font-weight: 500;
    color: #94a3b8;
    background: rgba(148,163,184,0.07);
    border: 1px solid rgba(148,163,184,0.15);
    border-radius: 20px;
    padding: 4px 12px;
    transition: color 0.2s, border-color 0.2s;
}

.ios-module-pill:hover {
    color: #c4b5fd;
    border-color: rgba(99,102,241,0.3);
}

.ios-module-pill-gold {
    color: #fbbf24 !important;
    background: rgba(251,191,36,0.07) !important;
    border-color: rgba(251,191,36,0.2) !important;
}

/* Meta info row */
.ios-addon-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    color: #64748b;
}

.ios-meta-item {
    color: #64748b;
}

.ios-meta-sep {
    color: rgba(100,116,139,0.4);
}

/* Right column */
.ios-addon-card-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

/* Real screenshot */
.ios-screenshot-wrap {
    width: 240px;
    flex-shrink: 0;
    filter: drop-shadow(0 12px 40px rgba(99,102,241,0.2)) drop-shadow(0 2px 8px rgba(0,0,0,0.6));
}

.ios-screenshot-img {
    width: 100%;
    height: auto;
    display: block;
}

/* CTA */
.ios-addon-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.ios-addon-cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 18px;
    background: rgba(15,15,28,0.8);
    border: 1px solid rgba(99,102,241,0.3);
    border-radius: 11px;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}

.ios-addon-cta-btn:hover {
    border-color: rgba(99,102,241,0.6);
    background: rgba(99,102,241,0.08);
}

.ios-apple-svg {
    width: 18px;
    height: 18px;
    fill: #e2e8f0;
    flex-shrink: 0;
    opacity: 0.85;
}

.ios-cta-sub {
    display: block;
    font-size: 8px;
    color: #64748b;
    letter-spacing: 0.04em;
    line-height: 1;
}

.ios-cta-main {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #e2e8f0;
    line-height: 1.3;
}

.ios-addon-requires {
    font-size: 10px;
    color: #475569;
    text-align: center;
    margin: 0;
}

/* Responsive */
@media (max-width: 860px) {
    .ios-addon-card {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 32px 28px;
    }
    .ios-addon-card-right {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        flex-wrap: wrap;
    }
    .ios-addon-cta {
        width: auto;
        min-width: 180px;
    }
}

@media (max-width: 640px) {
    .ios-addon-section {
        padding: 44px 0;
    }
    .ios-addon-card-right {
        flex-direction: column;
        align-items: center;
    }
    .pricing-grid-2 {
        grid-template-columns: 1fr !important;
    }
    .pricing-ios-footnote {
        flex-wrap: wrap;
    }
    .pricing-ios-link {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .ios-content {
        grid-template-columns: 1fr;
        gap: 44px;
    }
}



/* ============================================================
   MANAGED EXTRACTION SERVICE CALLOUT
   ============================================================ */
.managed-extraction-callout {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 16px;
    padding: 28px 36px;
    background: linear-gradient(135deg, rgba(16,185,129,0.05) 0%, rgba(6,182,212,0.04) 100%);
    border: 1px solid rgba(16,185,129,0.2);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.managed-extraction-callout::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(16,185,129,0.04) 0%, transparent 60%);
    pointer-events: none;
}

.mec-icon {
    font-size: 26px;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 2px;
    filter: hue-rotate(0deg);
}

.mec-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mec-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #34d399;
    opacity: 0.8;
}

.mec-title {
    font-size: 16px;
    font-weight: 700;
    color: #e2e8f0;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.mec-badge {
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #10b981;
    background: rgba(16,185,129,0.1);
    border: 1px solid rgba(16,185,129,0.25);
    border-radius: 20px;
    padding: 3px 10px;
}

.mec-desc {
    font-size: 13.5px;
    color: #94a3b8;
    line-height: 1.65;
    margin: 0;
    max-width: 620px;
}

.mec-desc strong {
    color: #d1fae5;
    font-weight: 600;
}

.mec-points {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    margin-top: 2px;
}

.mec-point {
    font-size: 12px;
    color: #6ee7b7;
    font-weight: 500;
}

.mec-cta {
    flex-shrink: 0;
    align-self: center;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #34d399;
    text-decoration: none;
    white-space: nowrap;
    padding: 8px 18px;
    border: 1px solid rgba(16,185,129,0.3);
    border-radius: 8px;
    background: rgba(16,185,129,0.07);
    transition: background 0.2s, border-color 0.2s;
}

.mec-cta:hover {
    background: rgba(16,185,129,0.14);
    border-color: rgba(16,185,129,0.5);
}

@media (max-width: 640px) {
    .managed-extraction-callout {
        flex-direction: column;
        padding: 24px 22px;
        gap: 14px;
    }
    .mec-cta {
        align-self: flex-start;
        width: 100%;
        text-align: center;
    }
    .mec-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}



/* ============================================================
   PLATFORM STRIP
   ============================================================ */
.platform-strip {
    background: rgba(255,255,255,0.02);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 16px 0;
}

.platform-strip-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.platform-strip-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
}

.platform-strip-chips {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.ps-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    padding: 5px 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px;
    transition: all 0.2s;
}

.ps-chip:hover {
    color: rgba(255,255,255,0.8);
    border-color: rgba(255,255,255,0.15);
}

.ps-chip.ios {
    background: rgba(99,102,241,0.08);
    border-color: rgba(99,102,241,0.2);
    color: #a5b4fc;
}

.ps-chip.ios:hover {
    background: rgba(99,102,241,0.14);
    border-color: rgba(99,102,241,0.35);
    color: #c4b5fd;
}

.ps-new {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 2px 6px;
    border-radius: 4px;
    line-height: 1.6;
}

.ps-divider {
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,0.08);
}

/* ============================================================
   SECTION LABEL + TITLE REDESIGN
   ============================================================ */
.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-light);
    margin-bottom: 12px;
    position: relative;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 2px;
    background: var(--gradient);
    border-radius: 2px;
    margin-right: 8px;
    vertical-align: middle;
    margin-bottom: 1px;
}

.section-title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 14px;
    text-align: center;
}

.section-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    text-align: center;
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

/* ============================================================
   FEATURE CARD COLOR VARIANTS
   ============================================================ */
.feature-card {
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 2px 2px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card.fc-blue::before  { background: linear-gradient(90deg, #6366f1, #60a5fa); }
.feature-card.fc-violet::before { background: linear-gradient(90deg, #8b5cf6, #c084fc); }
.feature-card.fc-emerald::before { background: linear-gradient(90deg, #10b981, #34d399); }
.feature-card.fc-amber::before  { background: linear-gradient(90deg, #f59e0b, #fbbf24); }

.feature-card.fc-blue .feature-icon  { color: #818cf8; }
.feature-card.fc-violet .feature-icon { color: #c084fc; }
.feature-card.fc-emerald .feature-icon { color: #34d399; }
.feature-card.fc-amber .feature-icon  { color: #fbbf24; }

/* ============================================================
   SECTION BACKGROUND RHYTHM
   ============================================================ */
.features {
    background: var(--dark);
    padding: 72px 0;
}

.how-it-works {
    background: linear-gradient(180deg, var(--gray-dark) 0%, var(--dark) 100%);
    padding: 72px 0;
}

.interface-showcase {
    background: var(--gray-dark);
    padding: 72px 0;
}

.testimonials {
    background: var(--dark);
    padding: 72px 0;
}

.faq {
    background: var(--gray-dark);
    padding: 72px 0;
}

.cta {
    background: linear-gradient(135deg, rgba(99,102,241,0.15) 0%, rgba(139,92,246,0.10) 100%);
    border-top: 1px solid rgba(99,102,241,0.15);
    border-bottom: 1px solid rgba(99,102,241,0.15);
}

/* ============================================================
   HOW IT WORKS — horizontal timeline
   ============================================================ */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    margin-top: 12px;
}

.steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(12.5%);
    right: calc(12.5%);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99,102,241,0.4), rgba(99,102,241,0.4), transparent);
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gray-dark);
    border: 1px solid rgba(99,102,241,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    background: var(--gradient);
    color: white;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 24px rgba(99,102,241,0.25);
}

.step-content h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.9);
}

.step-content p {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
}

/* ============================================================
   FEATURE CARD BASE REDESIGN
   ============================================================ */
.feature-card {
    background: rgba(15,15,28,0.7);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    background: rgba(25,25,45,0.8);
    border-color: rgba(99,102,241,0.2);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.feature-icon {
    font-size: 11px;
    font-weight: 800;
    font-family: 'Inter', monospace;
    letter-spacing: 0.04em;
    margin-bottom: 14px;
    color: rgba(255,255,255,0.25);
    transition: color 0.25s;
}

.feature-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.88);
    letter-spacing: -0.01em;
}

.feature-card p {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.65;
    margin-bottom: 14px;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.feature-list li {
    font-size: 12px;
    color: rgba(255,255,255,0.38);
    padding-left: 14px;
    position: relative;
}

.feature-list li::before {
    content: '─';
    position: absolute;
    left: 0;
    color: rgba(99,102,241,0.5);
    font-size: 10px;
}

/* ============================================================
   PRICING REDESIGN
   ============================================================ */
.pricing {
    background: var(--dark);
    padding: 72px 0;
}

.pricing-card {
    background: rgba(15,15,28,0.8);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    position: relative;
    transition: all 0.25s ease;
}

.pricing-card:hover {
    border-color: rgba(99,102,241,0.25);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transform: translateY(-2px);
}

.pricing-card.featured {
    background: linear-gradient(145deg, rgba(99,102,241,0.12) 0%, rgba(139,92,246,0.08) 100%);
    border-color: rgba(99,102,241,0.3);
    box-shadow: 0 0 0 1px rgba(99,102,241,0.15), 0 24px 60px rgba(99,102,241,0.15);
}

.pricing-ribbon {
    position: absolute;
    top: -1px;
    right: 24px;
    background: var(--gradient);
    color: white;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 5px 14px;
    border-radius: 0 0 10px 10px;
}

.pricing-title {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
}

.pricing-description {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 24px;
    line-height: 1.5;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.feature-item {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.pricing-price {
    margin-bottom: 24px;
}

.price-original {
    font-size: 14px;
    color: rgba(255,255,255,0.25);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.price-amount {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: white;
    line-height: 1;
    margin-bottom: 6px;
}

.price-period {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
}

.pricing-btn {
    width: 100%;
    justify-content: center;
    font-size: 14px;
    letter-spacing: 0.04em;
}

/* ============================================================
   FAQ REDESIGN
   ============================================================ */
.faq-grid {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
    gap: 16px;
    color: rgba(255,255,255,0.85);
}

.faq-question h3 {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(99,102,241,0.15);
    border: 1px solid rgba(99,102,241,0.25);
    color: #a5b4fc;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
    line-height: 1;
    padding-bottom: 1px;
}

.faq-question[aria-expanded="true"] .faq-icon {
    background: rgba(99,102,241,0.25);
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 0 20px;
}

.faq-answer p {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    line-height: 1.8;
}

/* ============================================================
   FOOTER REDESIGN
   ============================================================ */
.footer {
    background: #060610;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 56px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 16px;
}

.footer-section p {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-section ul li a {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section ul li a:hover {
    color: rgba(255,255,255,0.75);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255,255,255,0.2);
}

/* Mobile overrides for new layout */
@media (max-width: 960px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-left {
        align-items: center;
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-platform-row {
        justify-content: center;
    }
    .hero-right {
        max-width: 480px;
        margin: 0 auto;
    }
    .steps {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .steps::before { display: none; }
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .steps {
        grid-template-columns: 1fr;
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================================
   COOLNESS PASS — compact spacing + elevated visual fidelity
   ============================================================ */

/* --- Global tightening ------------------------------------ */
.hero            { padding: 96px 0 44px; }
.platform-strip  { padding: 10px 0; }
.features        { padding: 52px 0 48px; }
.how-it-works    { padding: 44px 0 44px; }
.interface-showcase { padding: 44px 0 48px; }
.ios-addon-section  { padding: 48px 0; }
.pricing         { padding: 48px 0 52px; }
.testimonials    { padding: 48px 0; }
.faq-section, #faq { padding: 48px 0; }
.cta             { padding: 56px 0; }

.section-subtitle, .gallery-subtitle { margin-bottom: 32px; font-size: 0.92rem; }

/* reduce gap between label → title → subtitle stack */
.section-label   { margin-bottom: 6px; }

/* tighten feature-card internals */
.feature-card    { padding: 24px; }
.feature-card h3 { margin-bottom: 6px; font-size: 1rem; }
.feature-card p  { font-size: 0.84rem; line-height: 1.52; margin-bottom: 10px; }
.feature-list li { font-size: 0.78rem; }
.features-grid   { gap: 14px; }

/* tighten how-it-works steps */
.steps           { gap: 14px; }
.step            { padding: 18px 20px; }

/* tighten interface gallery */
.interface-grid  { gap: 10px; }

/* tighten pricing card internals */
.pricing-card    { padding: 28px; }
.pricing-title   { font-size: 1.1rem; margin-bottom: 4px; }
.pricing-description { font-size: 0.82rem; margin-bottom: 16px; }
.feature-item    { font-size: 0.83rem; padding: 4px 0; }
.pricing-grid    { gap: 18px; }

/* --- Subtle dot-grid ambient background ------------------ */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -2;
    background-image: radial-gradient(circle, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

/* --- Hero: soft ambient orbs ----------------------------- */
.gradient-orb.orb-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(59,130,246,0.14) 0%, transparent 70%);
}
.gradient-orb.orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(99,102,241,0.1) 0%, transparent 70%);
}
.gradient-orb.orb-3 {
    width: 340px; height: 340px;
    background: radial-gradient(circle, rgba(6,182,212,0.09) 0%, transparent 70%);
}

/* --- Hero title: clean gradient (no text glow) ----------- */
.hero-title .gradient-text {
    background: linear-gradient(120deg, #60a5fa 0%, #a78bfa 45%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Section titles: subtle shimmer glow ----------------- */
.section-title {
    font-size: clamp(22px, 2.8vw, 34px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 8px;
    text-align: center;
    background: linear-gradient(125deg, #f1f5f9 30%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Feature cards: glassy neon border on hover ---------- */
.feature-card {
    position: relative;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    border: 1px solid rgba(255,255,255,0.06);
    background: linear-gradient(135deg, rgba(24,24,27,0.95) 0%, rgba(18,18,24,0.95) 100%);
}
.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(99,102,241,0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.22s ease;
    pointer-events: none;
}
.feature-card:hover {
    transform: translateY(-3px);
    border-color: rgba(99,102,241,0.28);
    box-shadow: 0 8px 28px rgba(0,0,0,0.45);
}
.feature-card:hover::before { opacity: 1; }

.feature-card.fc-blue:hover   { border-color: rgba(59,130,246,0.32);  box-shadow: 0 8px 28px rgba(0,0,0,0.45); }
.feature-card.fc-violet:hover { border-color: rgba(139,92,246,0.32);  box-shadow: 0 8px 28px rgba(0,0,0,0.45); }
.feature-card.fc-emerald:hover{ border-color: rgba(16,185,129,0.32);  box-shadow: 0 8px 28px rgba(0,0,0,0.45); }
.feature-card.fc-amber:hover  { border-color: rgba(245,158,11,0.32);  box-shadow: 0 8px 28px rgba(0,0,0,0.45); }

/* --- Stat cards: clean gradient numbers ------------------ */
.stat-number {
    font-size: 2.4rem;
    font-weight: 800;
    background: linear-gradient(120deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}
.stat-label { font-size: 0.72rem; color: #64748b; letter-spacing: 0.05em; }
.stat-trend { font-size: 0.7rem; color: #34d399; font-weight: 600; margin-top: 2px; }

/* --- App window: glass chrome feel ----------------------- */
.app-window {
    background: rgba(15,15,20,0.92);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.09);
    box-shadow: 0 24px 48px rgba(0,0,0,0.5);
}
/* traffic lights — no glow */

/* --- Step cards: clean left accent ----------------------- */
.step {
    border-left: 2px solid rgba(99,102,241,0.3);
    border-radius: 14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.step:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}
.step-number {
    background: linear-gradient(135deg, #6366f1, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Interface grid items: overlay on hover -------------- */
.interface-item:hover .interface-overlay {
    background: linear-gradient(to top, rgba(99,102,241,0.35) 0%, transparent 60%);
}
.interface-caption { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.03em; }

/* --- iOS section: tighter card --------------------------- */
.ios-addon-card {
    gap: 40px;
    padding: 32px 36px;
    background: linear-gradient(135deg, rgba(24,24,36,0.97) 0%, rgba(18,18,28,0.97) 100%);
    border: 1px solid rgba(99,102,241,0.15);
    box-shadow: 0 0 60px rgba(99,102,241,0.07), inset 0 0 60px rgba(99,102,241,0.02);
}
.ios-addon-title  { font-size: 1.7rem; margin-bottom: 10px; line-height: 1.25; }
.ios-addon-desc   { font-size: 0.87rem; line-height: 1.6; margin-bottom: 14px; }
.ios-addon-modules{ gap: 6px; margin-bottom: 14px; }
.ios-screenshot-wrap { width: 200px; }

/* --- Managed extraction: tighter ------------------------- */
.managed-extraction-callout { padding: 22px 28px; margin-top: 12px; }
.mec-desc  { font-size: 0.84rem; line-height: 1.55; }
.mec-point { font-size: 0.81rem; }

/* --- Pricing: featured card clean border ----------------- */
.pricing-card.featured {
    border: 1px solid rgba(99,102,241,0.35);
}

/* --- Nav: frosted glass always visible ------------------- */
.nav-container { height: 56px; }
.nav.scrolled { background: rgba(8,8,12,0.92); backdrop-filter: blur(28px); box-shadow: 0 1px 0 rgba(255,255,255,0.05), 0 4px 20px rgba(0,0,0,0.5); }

/* --- CTA section: clean elevated button ------------------ */
.cta .btn-primary {
    background: linear-gradient(120deg, #3b82f6, #6366f1);
    box-shadow: 0 4px 20px rgba(59,130,246,0.25);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.cta .btn-primary:hover {
    box-shadow: 0 6px 28px rgba(59,130,246,0.38);
    transform: translateY(-2px);
}

/* --- Lifetime badge: static pill ------------------------- */
.price-lifetime-badge {
    background: rgba(99,102,241,0.1);
    border-color: rgba(139,92,246,0.3);
    color: #c4b5fd;
}

/* --- Responsive compact adjustments ---------------------- */
@media (max-width: 768px) {
    .hero         { padding: 80px 0 36px; }
    .features     { padding: 40px 0; }
    .how-it-works { padding: 36px 0; }
    .interface-showcase, .ios-addon-section, .pricing { padding: 36px 0; }
    .ios-addon-card { padding: 20px; gap: 24px; }
    .ios-screenshot-wrap { width: 140px; }
    .section-title { font-size: 1.6rem; }
}

/* --- Accessibility / compliance helpers ------------------- */

/* Screen-reader only — visually hidden but accessible */
.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* FAQ heading wrapping the accordion button (WCAG 4.1.1) */
.faq-heading {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

/* Public RynoxX typography mirrors the desktop product hierarchy. */
body, button, input, select, textarea {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI Variable Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
h1, h2, .section-title {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI Variable Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    letter-spacing: -0.018em;
    line-height: 1.15;
}

/* =====================================================================
   LIVE INSIGHTS SECTION
   ===================================================================== */
.live-insights {
    padding: var(--space-12) 0 var(--space-10);
    background: var(--dark);
}

.live-insights-header {
    text-align: center;
    margin-bottom: var(--space-8);
}

.live-insights-header .section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: var(--space-2);
}

/* Pulsing live dot */
.live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
    animation: livePulse 1.8s ease-in-out infinite;
}

@keyframes livePulse {
    0%   { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
    70%  { box-shadow: 0 0 0 7px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Insights grid — 3 columns top, 2 columns bottom */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

/* Card 4 (momentum) spans 1 col, card 5 (CPU) spans 2 cols */
.insight-momentum { grid-column: 1 / 2; }
.insight-cpu      { grid-column: 2 / 4; }

.insight-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 22px;
    transition: border-color 0.2s;
}

.insight-card:hover { border-color: var(--border-light); }

.insight-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 16px;
}

.insight-header h3 {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-light);
}

.insight-total {
    font-size: 12px;
    color: var(--gray-light);
}

.insight-total b { color: var(--white); }

/* Bar rows */
.insight-bars { display: flex; flex-direction: column; gap: 10px; }

.ins-bar-row {
    display: grid;
    grid-template-columns: 90px 1fr 44px;
    align-items: center;
    gap: 10px;
}

.ins-bar-label {
    font-size: 13px;
    color: var(--white);
    white-space: nowrap;
}

.ins-bar-track {
    height: 7px;
    background: var(--gray-mid);
    border-radius: 99px;
    overflow: hidden;
}

.ins-bar-fill {
    height: 100%;
    border-radius: 99px;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.ins-bar-pct {
    font-size: 12px;
    color: var(--gray-light);
    text-align: right;
    font-variant-numeric: tabular-nums;
}

/* Bar color variants */
.ins-macos   { background: linear-gradient(90deg, #f59e0b, #d97706); }
.ins-windows { background: linear-gradient(90deg, #3b82f6, #2563eb); }
.ins-silicon { background: linear-gradient(90deg, #a78bfa, #7c3aed); }
.ins-x64     { background: linear-gradient(90deg, #64748b, #475569); }
.ins-leaders { background: linear-gradient(90deg, #f59e0b, #d97706); }
.ins-agents  { background: linear-gradient(90deg, #06b6d4, #0891b2); }

/* RynoxX Midnight public-surface authority */
:root {
    --primary:#1684F8;
    --primary-dark:#096DD9;
    --primary-light:#63ADFF;
    --dark:#0B0D19;
    --gray-dark:#151523;
    --gray-mid:#282A3A;
    --gray-light:#7781A6;
    --white:#F2F3F7;
    --bg-card:#151523;
    --border:#282A3A;
    --border-light:#383A4D;
    --success:#18B76A;
    --warning:#E69A22;
    --error:#F04444;
    --info:#1684F8;
    --gradient-primary:linear-gradient(135deg,#1684F8,#096DD9);
}
body { background:var(--dark); color:var(--white); }
.hero { background:var(--dark); }
.nav.scrolled { background:rgba(11,13,25,.96); border-bottom-color:var(--border); backdrop-filter:none; }
.glow-card,
.feature-card,
.pricing-card,
.insight-card,
.app-window { box-shadow:none !important; }
.hero-platform-chip,
.ps-chip { border-color:var(--border-strong,var(--border-light)); }
.btn-primary { background:var(--primary); box-shadow:none; }
.btn-primary:hover { background:var(--primary-light); box-shadow:none; }

/* Sub count row */
.ins-counts {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
    padding-top: 8px;
    border-top: 1px solid var(--border);
    font-size: 12px;
    color: var(--gray-light);
}

.ins-counts b { color: var(--white); }

/* Growth momentum card */
.momentum-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 12px;
}

.momentum-stat {
    flex: 1;
    text-align: center;
}

.momentum-val {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}

.momentum-val.ins-zero { color: var(--accent); }

.momentum-lbl {
    font-size: 11px;
    color: var(--gray-light);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.momentum-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
    flex-shrink: 0;
}

.momentum-since {
    font-size: 12px;
    color: var(--gray-light);
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid var(--border);
}

.momentum-since span { color: var(--white); font-weight: 500; }

/* CPU landscape card */
.cpu-bar-track {
    height: 12px;
    border-radius: 99px;
    overflow: hidden;
    display: flex;
    margin-bottom: 14px;
    gap: 2px;
}

.cpu-seg {
    height: 100%;
    border-radius: 2px;
    transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

/* CPU colors */
.cpu-seg.cpu-m4, .cpu-dot.cpu-m4     { background: #f59e0b; }
.cpu-seg.cpu-intel, .cpu-dot.cpu-intel { background: #3b82f6; }
.cpu-seg.cpu-m1, .cpu-dot.cpu-m1     { background: #a78bfa; }
.cpu-seg.cpu-amd, .cpu-dot.cpu-amd   { background: #ef4444; }
.cpu-seg.cpu-m2, .cpu-dot.cpu-m2     { background: #10b981; }
.cpu-seg.cpu-m3, .cpu-dot.cpu-m3     { background: #06b6d4; }

.cpu-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
}

.cpu-leg-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--gray-light);
}

.cpu-dot {
    width: 8px;
    height: 8px;
    border-radius: 2px;
    flex-shrink: 0;
}

.cpu-leg-item b { color: var(--white); }

/* Responsive */
@media (max-width: 900px) {
    .insights-grid {
        grid-template-columns: 1fr 1fr;
    }
    .insight-momentum { grid-column: 1 / 2; }
    .insight-cpu      { grid-column: 1 / 3; }
}

@media (max-width: 600px) {
    .insights-grid {
        grid-template-columns: 1fr;
    }
    .insight-momentum,
    .insight-cpu { grid-column: 1 / 2; }
}

/* ========================================================================== */
/* Consolidated from landing-page/testimonials.css */
/* ========================================================================== */
/* Testimonials — Marquee carousel */
.testimonials {
    padding: 48px 0;
}

.testimonials-wrapper {
    overflow: hidden; /* clips the scrolling track — no page scrollbar since this is a div not section */
    margin-top: 36px;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.testimonials-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: marqueeScroll 50s linear infinite;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

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

.testimonial-card {
    min-width: 340px;
    max-width: 340px;
    flex-shrink: 0;
    background: rgba(24,24,32,0.9);
    padding: 28px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    left: 24px;
    font-size: 80px;
    color: rgba(0, 212, 255, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.testimonial-stars {
    font-size: 20px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.82);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-cyber);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.author-name {
    font-weight: 600;
    color: rgba(255,255,255,0.92);
}

.author-role {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .testimonial-card {
        min-width: 280px;
        max-width: 280px;
        padding: 20px;
    }

    .testimonial-text {
        font-size: 14px;
    }
}


/* ========================================================================== */
/* Landing admin route */
/* ========================================================================== */
/* RygonN support route */
.landing-route-rygonn-support {
    --bg: #0d0a1a;
    --surface: #1a1030;
    --border: #2d1f5e;
    --purple: #7c3aed;
    --purple-light: #a78bfa;
    --gold: #c9a84c;
    --gold-light: #e8c96a;
    --white: #fafafa;
    --muted: #9ca3af;
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--white);
    font-family: InterVariable, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.7;
}

.landing-route-rygonn-support *,
.landing-route-rygonn-support *::before,
.landing-route-rygonn-support *::after {
    box-sizing: border-box;
}

.landing-route-rygonn-support .nav {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    padding: 0 24px;
    border-bottom: 1px solid var(--border);
    background: rgba(13, 10, 26, 0.9);
    backdrop-filter: blur(20px);
}

.landing-route-rygonn-support .nav-brand {
    color: var(--purple-light);
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
}

.landing-route-rygonn-support .nav-back {
    color: var(--muted);
    font-size: 13px;
    text-decoration: none;
}

.landing-route-rygonn-support .nav-back:hover {
    color: var(--white);
}

.landing-route-rygonn-support .doc-wrap {
    max-width: 800px;
    margin: 0 auto;
    padding: 64px 24px 100px;
}

.landing-route-rygonn-support .doc-product-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 5px 14px;
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 9999px;
    background: rgba(124, 58, 237, 0.15);
    color: var(--purple-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.landing-route-rygonn-support h1 {
    margin-bottom: 8px;
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
}

.landing-route-rygonn-support .doc-date {
    margin-bottom: 48px;
    color: var(--muted);
    font-size: 14px;
}

.landing-route-rygonn-support .doc-intro {
    margin-bottom: 48px;
    padding: 24px;
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 12px;
    background: rgba(124, 58, 237, 0.08);
    color: #c4b5fd;
    font-size: 15px;
    line-height: 1.8;
}

.landing-route-rygonn-support h2 {
    margin: 40px 0 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
    font-size: 20px;
    font-weight: 700;
}

.landing-route-rygonn-support h3 {
    margin: 24px 0 8px;
    color: var(--purple-light);
    font-size: 16px;
    font-weight: 700;
}

.landing-route-rygonn-support p {
    margin-bottom: 14px;
    color: var(--muted);
    font-size: 15px;
}

.landing-route-rygonn-support ul {
    margin-bottom: 16px;
    padding-left: 20px;
}

.landing-route-rygonn-support ul li {
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 15px;
}

.landing-route-rygonn-support ul li strong {
    color: var(--white);
}

.landing-route-rygonn-support a {
    color: var(--purple-light);
    text-decoration: none;
}

.landing-route-rygonn-support a:hover {
    text-decoration: underline;
}

.landing-route-rygonn-support .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 20px 0;
}

.landing-route-rygonn-support .contact-card,
.landing-route-rygonn-support .topic-card {
    border: 1px solid var(--border);
    background: var(--surface);
}

.landing-route-rygonn-support .contact-card {
    padding: 24px;
    border-radius: 14px;
}

.landing-route-rygonn-support .contact-card .cc-icon {
    margin-bottom: 12px;
    font-size: 28px;
}

.landing-route-rygonn-support .contact-card .cc-label {
    margin-bottom: 6px;
    color: var(--purple-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.landing-route-rygonn-support .contact-card .cc-value {
    margin-bottom: 4px;
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
}

.landing-route-rygonn-support .contact-card .cc-desc {
    color: var(--muted);
    font-size: 13px;
}

.landing-route-rygonn-support .contact-card a {
    color: var(--gold);
    font-weight: 600;
}

.landing-route-rygonn-support .contact-card .cc-badge {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 8px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 999px;
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold-light);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
}

.landing-route-rygonn-support .topic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin: 20px 0;
}

.landing-route-rygonn-support .topic-card {
    padding: 20px;
    border-radius: 12px;
}

.landing-route-rygonn-support .topic-card h4 {
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
}

.landing-route-rygonn-support .topic-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 13px;
}

.landing-route-rygonn-support .faq-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.landing-route-rygonn-support .faq-item:first-child {
    padding-top: 0;
}

.landing-route-rygonn-support .faq-item:last-child {
    border-bottom: 0;
}

.landing-route-rygonn-support .faq-q {
    margin-bottom: 8px;
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
}

.landing-route-rygonn-support .faq-a {
    color: var(--muted);
    font-size: 14px;
}

.landing-route-rygonn-support .response-table {
    width: 100%;
    margin: 16px 0;
    border-collapse: collapse;
}

.landing-route-rygonn-support .response-table th,
.landing-route-rygonn-support .response-table td {
    padding: 10px 16px;
    border: 1px solid var(--border);
}

.landing-route-rygonn-support .response-table th {
    background: rgba(124, 58, 237, 0.12);
    color: var(--purple-light);
    font-size: 13px;
    font-weight: 600;
    text-align: left;
}

.landing-route-rygonn-support .response-table td {
    color: var(--muted);
    font-size: 14px;
}

.landing-route-rygonn-support .doc-footer {
    margin-top: 80px;
    color: var(--muted);
    font-size: 12px;
    text-align: center;
    opacity: 0.6;
}

.landing-route-rygonn-support .doc-nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 16px;
}

.landing-route-rygonn-support .doc-nav-links a {
    color: var(--muted);
    font-size: 13px;
    text-decoration: none;
}

.landing-route-rygonn-support .doc-nav-links a:hover {
    color: var(--white);
}

@media (max-width: 600px) {
    .landing-route-rygonn-support .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================================================== */
/* Landing page migrated static inline declarations */
/* ========================================================================== */



/* ========================================================================== */
/* Landing route privacy.html */
/* ========================================================================== */
@scope (html.landing-route-privacy) {
:scope {
            --bg: #0a0a0a; --surface: #18181b; --border: #27272a;
            --blue: #3b82f6; --blue-light: #60a5fa;
            --white: #fafafa; --muted: #71717a;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: var(--bg); color: var(--white); line-height: 1.7; font-size: 16px;
        }
        .nav {
            position: sticky; top: 0; background: rgba(10,10,10,0.9);
            backdrop-filter: blur(20px); border-bottom: 1px solid var(--border);
            padding: 0 24px; height: 60px;
            display: flex; align-items: center; justify-content: space-between; z-index: 10;
        }
        .nav-brand { font-weight: 800; font-size: 16px; color: var(--blue-light); text-decoration: none; }
        .nav-back { font-size: 13px; color: var(--muted); text-decoration: none; }
        .nav-back:hover { color: var(--white); }
        .doc-wrap { max-width: 760px; margin: 0 auto; padding: 64px 24px 100px; }
        .doc-badge {
            display: inline-flex; align-items: center; gap: 8px;
            background: rgba(59,130,246,0.12); border: 1px solid rgba(59,130,246,0.25);
            padding: 5px 14px; border-radius: 9999px;
            font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
            text-transform: uppercase; color: var(--blue-light); margin-bottom: 20px;
        }
        h1 { font-size: 40px; font-weight: 800; letter-spacing: -1px; line-height: 1.2; margin-bottom: 8px; }
        .doc-date { font-size: 14px; color: var(--muted); margin-bottom: 32px; }
        .notice-box {
            background: rgba(59,130,246,0.08); border: 1px solid rgba(59,130,246,0.2);
            border-radius: 12px; padding: 20px;
            font-size: 14px; color: #93c5fd; line-height: 1.8; margin-bottom: 40px;
        }
        .notice-box a { color: #60a5fa; }
        h2 { font-size: 20px; font-weight: 700; margin: 40px 0 12px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
        p { font-size: 15px; color: var(--muted); margin-bottom: 14px; }
        ul { padding-left: 20px; margin-bottom: 14px; }
        ul li { font-size: 15px; color: var(--muted); margin-bottom: 8px; }
        ul li strong { color: var(--white); }
        a { color: var(--blue-light); text-decoration: none; }
        a:hover { text-decoration: underline; }
        .contact-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 24px; margin-top: 16px; }
        .contact-card a { color: #60a5fa; }
        .doc-footer { text-align: center; margin-top: 80px; font-size: 12px; color: var(--muted); opacity: 0.6; }
        .doc-nav-links { display: flex; gap: 20px; justify-content: center; margin-top: 16px; flex-wrap: wrap; }
        .doc-nav-links a { font-size: 13px; color: var(--muted); text-decoration: none; }
        .doc-nav-links a:hover { color: var(--white); }
}


/* ========================================================================== */
/* Landing route rygonn-privacy.html */
/* ========================================================================== */
@scope (html.landing-route-rygonn-privacy) {
:scope {
            --bg: #0d0a1a;
            --surface: #1a1030;
            --border: #2d1f5e;
            --purple: #7c3aed;
            --purple-light: #a78bfa;
            --gold: #c9a84c;
            --white: #fafafa;
            --muted: #9ca3af;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: var(--bg); color: var(--white);
            line-height: 1.7; font-size: 16px;
        }
        /* NAV */
        .nav {
            position: sticky; top: 0; background: rgba(13,10,26,0.9);
            backdrop-filter: blur(20px); border-bottom: 1px solid var(--border);
            padding: 0 24px; height: 60px;
            display: flex; align-items: center; justify-content: space-between;
            z-index: 10;
        }
        .nav-brand { font-weight: 800; font-size: 16px; color: var(--purple-light); text-decoration: none; }
        .nav-back { font-size: 13px; color: var(--muted); text-decoration: none; }
        .nav-back:hover { color: var(--white); }
        /* CONTENT */
        .doc-wrap {
            max-width: 760px; margin: 0 auto;
            padding: 64px 24px 100px;
        }
        .doc-product-badge {
            display: inline-flex; align-items: center; gap: 8px;
            background: rgba(124,58,237,0.15); border: 1px solid rgba(124,58,237,0.3);
            padding: 5px 14px; border-radius: 9999px;
            font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
            text-transform: uppercase; color: var(--purple-light); margin-bottom: 20px;
        }
        h1 {
            font-size: 40px; font-weight: 800; letter-spacing: -1px;
            line-height: 1.2; margin-bottom: 8px;
        }
        .doc-date { font-size: 14px; color: var(--muted); margin-bottom: 48px; }
        .doc-intro {
            background: rgba(124,58,237,0.08); border: 1px solid rgba(124,58,237,0.2);
            border-radius: 12px; padding: 24px;
            font-size: 15px; color: #c4b5fd; line-height: 1.8;
            margin-bottom: 48px;
        }
        h2 {
            font-size: 20px; font-weight: 700; color: var(--white);
            margin: 40px 0 12px; padding-bottom: 10px;
            border-bottom: 1px solid var(--border);
        }
        h3 { font-size: 16px; font-weight: 700; color: var(--purple-light); margin: 24px 0 8px; }
        p { font-size: 15px; color: var(--muted); margin-bottom: 14px; }
        ul { padding-left: 20px; margin-bottom: 14px; }
        ul li { font-size: 15px; color: var(--muted); margin-bottom: 8px; }
        ul li strong { color: var(--white); }
        table { width: 100%; border-collapse: collapse; margin: 20px 0; }
        th { background: rgba(124,58,237,0.12); padding: 10px 16px; text-align: left; font-size: 13px; font-weight: 600; color: var(--purple-light); border: 1px solid var(--border); }
        td { padding: 10px 16px; font-size: 14px; color: var(--muted); border: 1px solid var(--border); vertical-align: top; }
        a { color: var(--purple-light); text-decoration: none; }
        a:hover { text-decoration: underline; }
        .contact-card {
            background: var(--surface); border: 1px solid var(--border);
            border-radius: 12px; padding: 24px; margin-top: 20px;
        }
        .contact-card p { margin-bottom: 8px; }
        .contact-card a { color: var(--gold); }
        /* FOOTER */
        .doc-footer {
            text-align: center; margin-top: 80px;
            font-size: 12px; color: var(--muted); opacity: 0.6;
        }
        .doc-nav-links { display: flex; gap: 20px; justify-content: center; margin-top: 16px; flex-wrap: wrap; }
        .doc-nav-links a { font-size: 13px; color: var(--muted); text-decoration: none; }
        .doc-nav-links a:hover { color: var(--white); }
}


/* ========================================================================== */
/* Landing route support.html */
/* ========================================================================== */
@scope (html.landing-route-support) {
:scope {
            --bg: #0a0a0a; --surface: #18181b; --border: #27272a;
            --blue: #3b82f6; --blue-light: #60a5fa;
            --purple-light: #a78bfa;
            --gold: #c9a84c;
            --white: #fafafa; --muted: #71717a;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: var(--bg); color: var(--white); line-height: 1.7; font-size: 16px;
        }
        .nav {
            position: sticky; top: 0; background: rgba(10,10,10,0.9);
            backdrop-filter: blur(20px); border-bottom: 1px solid var(--border);
            padding: 0 24px; height: 60px;
            display: flex; align-items: center; justify-content: space-between; z-index: 10;
        }
        .nav-brand { font-weight: 800; font-size: 16px; color: var(--blue-light); text-decoration: none; }
        .nav-back { font-size: 13px; color: var(--muted); text-decoration: none; }
        .nav-back:hover { color: var(--white); }
        .doc-wrap { max-width: 800px; margin: 0 auto; padding: 64px 24px 100px; }
        .doc-badge {
            display: inline-flex; align-items: center; gap: 8px;
            background: rgba(59,130,246,0.12); border: 1px solid rgba(59,130,246,0.25);
            padding: 5px 14px; border-radius: 9999px;
            font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
            text-transform: uppercase; color: var(--blue-light); margin-bottom: 20px;
        }
        h1 { font-size: 40px; font-weight: 800; letter-spacing: -1px; line-height: 1.2; margin-bottom: 8px; }
        .doc-date { font-size: 14px; color: var(--muted); margin-bottom: 32px; }
        .notice-box {
            background: rgba(124,58,237,0.08); border: 1px solid rgba(124,58,237,0.25);
            border-radius: 12px; padding: 20px;
            font-size: 14px; color: #c4b5fd; line-height: 1.8; margin-bottom: 40px;
        }
        .notice-box a { color: var(--purple-light); font-weight: 600; }
        h2 { font-size: 20px; font-weight: 700; margin: 40px 0 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
        h3 { font-size: 16px; font-weight: 700; color: var(--blue-light); margin: 24px 0 8px; }
        p { font-size: 15px; color: var(--muted); margin-bottom: 14px; }
        ul { padding-left: 20px; margin-bottom: 16px; }
        ul li { font-size: 15px; color: var(--muted); margin-bottom: 8px; }
        ul li strong { color: var(--white); }
        a { color: var(--blue-light); text-decoration: none; }
        a:hover { text-decoration: underline; }
        .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 20px 0; }
        .contact-card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 24px; }
        .contact-card .cc-icon { font-size: 28px; margin-bottom: 12px; }
        .contact-card .cc-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--blue-light); margin-bottom: 6px; }
        .contact-card .cc-value { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
        .contact-card .cc-desc { font-size: 13px; color: var(--muted); }
        .contact-card a { color: var(--gold); font-weight: 600; }
        .cc-badge { display: inline-block; font-size: 9px; font-weight: 700; text-transform: uppercase; background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3); color: #e8c96a; padding: 2px 8px; border-radius: 999px; margin-left: 8px; }
        .doc-footer { text-align: center; margin-top: 80px; font-size: 12px; color: var(--muted); opacity: 0.6; }
        .doc-nav-links { display: flex; gap: 20px; justify-content: center; margin-top: 16px; flex-wrap: wrap; }
        .doc-nav-links a { font-size: 13px; color: var(--muted); text-decoration: none; }
        .doc-nav-links a:hover { color: var(--white); }
        @media (max-width: 600px) { .contact-grid { grid-template-columns: 1fr; } }


.rynoxx-landing-support__inline-001 { color: #7f8c8d; font-size: 0.9em; margin-top: 40px; }
}


/* ========================================================================== */
/* Landing route terms.html */
/* ========================================================================== */
@scope (html.landing-route-terms) {
:scope {
            --bg: #0a0a0a; --surface: #18181b; --border: #27272a;
            --blue: #3b82f6; --blue-light: #60a5fa;
            --purple-light: #a78bfa;
            --white: #fafafa; --muted: #71717a;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: var(--bg); color: var(--white); line-height: 1.7; font-size: 16px;
        }
        .nav {
            position: sticky; top: 0; background: rgba(10,10,10,0.9);
            backdrop-filter: blur(20px); border-bottom: 1px solid var(--border);
            padding: 0 24px; height: 60px;
            display: flex; align-items: center; justify-content: space-between; z-index: 10;
        }
        .nav-brand { font-weight: 800; font-size: 16px; color: var(--blue-light); text-decoration: none; }
        .nav-back { font-size: 13px; color: var(--muted); text-decoration: none; }
        .nav-back:hover { color: var(--white); }
        .doc-wrap { max-width: 800px; margin: 0 auto; padding: 64px 24px 100px; }
        .doc-badge {
            display: inline-flex; align-items: center; gap: 8px;
            background: rgba(59,130,246,0.12); border: 1px solid rgba(59,130,246,0.25);
            padding: 5px 14px; border-radius: 9999px;
            font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
            text-transform: uppercase; color: var(--blue-light); margin-bottom: 20px;
        }
        h1 { font-size: 40px; font-weight: 800; letter-spacing: -1px; line-height: 1.2; margin-bottom: 8px; }
        .doc-date { font-size: 14px; color: var(--muted); margin-bottom: 32px; }
        .notice-box {
            background: rgba(124,58,237,0.08); border: 1px solid rgba(124,58,237,0.25);
            border-radius: 12px; padding: 20px;
            font-size: 14px; color: #c4b5fd; line-height: 1.8; margin-bottom: 40px;
        }
        .notice-box a { color: var(--purple-light); font-weight: 600; }
        h2 { font-size: 20px; font-weight: 700; margin: 40px 0 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
        p { font-size: 15px; color: var(--muted); margin-bottom: 14px; }
        ul { padding-left: 20px; margin-bottom: 16px; }
        ul li { font-size: 15px; color: var(--muted); margin-bottom: 8px; }
        a { color: var(--blue-light); text-decoration: none; }
        a:hover { text-decoration: underline; }
        .doc-footer { text-align: center; margin-top: 80px; font-size: 12px; color: var(--muted); opacity: 0.6; }
        .doc-nav-links { display: flex; gap: 20px; justify-content: center; margin-top: 16px; flex-wrap: wrap; }
        .doc-nav-links a { font-size: 13px; color: var(--muted); text-decoration: none; }
        .doc-nav-links a:hover { color: var(--white); }


.rynoxx-landing-terms__inline-001 { color:#fafafa }
}


/* ========================================================================== */
/* Landing route rygonn.html */
/* ========================================================================== */
@scope (html.landing-route-rygonn) {
*, *::before, *::after { box-sizing: border-box; }
        :scope {
            color-scheme: dark;
            --ink: #fbfafc;
            --muted: #b7adbf;
            --soft: #7f758c;
            --panel: rgba(255,255,255,0.065);
            --panel-strong: rgba(255,255,255,0.105);
            --line: rgba(255,255,255,0.14);
            --purple: #8b5cf6;
            --purple-deep: #160826;
            --violet: #4c1d95;
            --gold: #e2b74f;
            --teal: #28d5c3;
            --red: #f87171;
            --green: #46d18b;
            --page: #090711;
            --radius: 8px;
            --shadow: 0 28px 80px rgba(0,0,0,0.38);
        }
        html { scroll-behavior: smooth; scroll-padding-top: 86px; }
        body {
            margin: 0;
            font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            color: var(--ink);
            background:
                linear-gradient(145deg, rgba(83,27,126,0.42) 0%, rgba(16,8,28,0.96) 34%, rgba(6,7,14,1) 78%),
                #090711;
            line-height: 1.55;
            overflow-x: hidden;
        }
        body::before {
            content: "";
            position: fixed;
            inset: 0;
            pointer-events: none;
            background-image:
                linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 44px 44px;
            mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent 70%);
        }
        body::after {
            content: "";
            position: fixed;
            inset: 0;
            pointer-events: none;
            background:
                linear-gradient(118deg, transparent 0 22%, rgba(40,213,195,0.08) 22% 22.4%, transparent 22.4% 46%, rgba(226,183,79,0.07) 46% 46.35%, transparent 46.35%),
                linear-gradient(35deg, rgba(124,58,237,0.12), transparent 34%, rgba(40,213,195,0.05) 66%, transparent);
            opacity: 0.78;
        }
        a { color: inherit; }
        img { display: block; max-width: 100%; }
        figure { margin: 0; }
        .container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

        .nav {
            position: fixed;
            inset: 0 0 auto;
            z-index: 30;
            height: 70px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            background: rgba(9,7,17,0.82);
            backdrop-filter: blur(22px);
            -webkit-backdrop-filter: blur(22px);
            box-shadow: 0 18px 48px rgba(0,0,0,0.24);
        }
        .nav-inner {
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
        }
        .brand {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            min-width: 0;
        }
        .brand-logo {
            width: 124px;
            height: auto;
            filter: drop-shadow(0 12px 28px rgba(124,58,237,0.22));
        }
        .brand-name { display: grid; line-height: 1.05; }
        .brand-name span { color: var(--muted); font-size: 12px; }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 24px;
        }
        .nav-links a {
            color: var(--muted);
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
        }
        .nav-links a:hover { color: var(--ink); }
        .nav-action {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 40px;
            padding: 0 16px;
            border: 1px solid rgba(226,183,79,0.35);
            border-radius: var(--radius);
            color: #fff3c7;
            text-decoration: none;
            font-size: 13px;
            font-weight: 800;
            background: rgba(226,183,79,0.12);
            transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
        }
        .nav-action:hover {
            transform: translateY(-1px);
            border-color: rgba(226,183,79,0.58);
            background: rgba(226,183,79,0.18);
        }

        .hero {
            min-height: 96vh;
            display: flex;
            align-items: center;
            padding: 118px 0 56px;
            position: relative;
        }
        .hero::before {
            content: "";
            position: absolute;
            inset: 94px 0 auto;
            height: min(72vh, 760px);
            background:
                linear-gradient(116deg, rgba(124,58,237,0.22), rgba(40,213,195,0.08) 48%, transparent 48%),
                linear-gradient(180deg, rgba(255,255,255,0.05), transparent);
            clip-path: polygon(0 10%, 100% 0, 100% 68%, 0 100%);
            opacity: 0.9;
            pointer-events: none;
        }
        .hero-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.03fr) minmax(330px, 0.97fr);
            gap: 54px;
            align-items: center;
        }
        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            min-height: 34px;
            padding: 0 12px;
            border: 1px solid rgba(255,255,255,0.15);
            background: rgba(255,255,255,0.06);
            border-radius: var(--radius);
            color: #d8c7ff;
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }
        .eyebrow::before {
            content: "";
            width: 8px;
            height: 8px;
            border-radius: 999px;
            background: var(--green);
            box-shadow: 0 0 20px rgba(70,209,139,0.7);
        }
        h1 {
            margin: 24px 0 18px;
            font-size: clamp(42px, 7vw, 76px);
            line-height: 0.95;
            letter-spacing: 0;
            max-width: 830px;
        }
        .gradient-word {
            background: linear-gradient(90deg, #ffffff, #d8c7ff 46%, #f3cc66);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .lead {
            max-width: 690px;
            color: var(--muted);
            font-size: clamp(17px, 2vw, 20px);
            margin: 0 0 28px;
        }
        .hero-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }
        .button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 48px;
            padding: 0 19px;
            border-radius: var(--radius);
            text-decoration: none;
            font-weight: 850;
            font-size: 14px;
            border: 1px solid transparent;
            transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
        }
        .button.primary {
            background: linear-gradient(135deg, #7c3aed, #4c1d95);
            box-shadow: 0 18px 46px rgba(124,58,237,0.3);
        }
        .button.secondary {
            border-color: rgba(255,255,255,0.16);
            background: rgba(255,255,255,0.06);
            color: var(--ink);
        }
        .button:hover { transform: translateY(-2px); }
        .button.secondary:hover {
            border-color: rgba(255,255,255,0.28);
            background: rgba(255,255,255,0.095);
        }
        .proof-row {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }
        .proof-item {
            min-width: 128px;
            padding: 14px 16px;
            border: 1px solid rgba(255,255,255,0.12);
            background: rgba(255,255,255,0.055);
            border-radius: var(--radius);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
        }
        .proof-item strong {
            display: block;
            font-size: 19px;
            line-height: 1;
        }
        .proof-item span {
            color: var(--soft);
            font-size: 12px;
            font-weight: 650;
        }

        .hero-visual {
            position: relative;
            min-height: 640px;
            display: flex;
            align-items: center;
        }
        .hero-showcase {
            position: relative;
            width: 100%;
            border: 1px solid rgba(255,255,255,0.15);
            background:
                linear-gradient(135deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04)),
                rgba(255,255,255,0.055);
            border-radius: var(--radius);
            padding: 8px;
            box-shadow: var(--shadow);
            overflow: hidden;
            transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
        }
        .hero-showcase::after {
            content: "";
            position: absolute;
            inset: 8px;
            border-radius: 6px;
            pointer-events: none;
            background: linear-gradient(120deg, rgba(255,255,255,0.22), transparent 26%, transparent 72%, rgba(40,213,195,0.12));
            mix-blend-mode: screen;
        }
        .hero-showcase img {
            width: 100%;
            border-radius: 6px;
        }
        .iphone-layer {
            position: relative;
            min-height: 500px;
            width: 100%;
        }
        .phone-card {
            position: relative;
            width: min(300px, 100%);
            padding: 8px;
            border: 1px solid rgba(255,255,255,0.16);
            border-radius: 28px;
            background:
                linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.035)),
                rgba(255,255,255,0.055);
            box-shadow: 0 26px 72px rgba(0,0,0,0.34);
            overflow: hidden;
        }
        .phone-card img {
            width: 100%;
            height: auto;
            border-radius: 24px;
            border: 1px solid rgba(0,0,0,0.45);
        }
        .phone-card span {
            display: inline-flex;
            position: absolute;
            left: 18px;
            bottom: 18px;
            max-width: calc(100% - 36px);
            padding: 10px 12px;
            border-radius: var(--radius);
            border: 1px solid rgba(255,255,255,0.15);
            background: rgba(7,6,12,0.74);
            color: var(--ink);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            font-size: 12px;
            font-weight: 850;
        }
        .hero-phone {
            position: absolute;
            transform-origin: center;
        }
        .hero-phone.main {
            right: 27%;
            top: 18px;
            z-index: 3;
            width: 292px;
            transform: rotate(-1.8deg);
        }
        .hero-phone.side {
            right: 0;
            top: 86px;
            z-index: 2;
            width: 264px;
            transform: rotate(2.4deg);
            opacity: 1;
        }
        .hero-phone.back {
            left: 8%;
            top: 138px;
            z-index: 1;
            width: 238px;
            transform: rotate(-3.2deg);
            opacity: 1;
        }
        .command-section {
            padding: 0 0 92px;
            margin-top: -26px;
        }
        .command-strip {
            position: relative;
            z-index: 3;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 12px;
            padding: 12px;
            border: 1px solid rgba(255,255,255,0.14);
            border-radius: var(--radius);
            background: rgba(9,7,17,0.72);
            box-shadow: 0 24px 70px rgba(0,0,0,0.3);
            backdrop-filter: blur(22px);
            -webkit-backdrop-filter: blur(22px);
        }
        .command-pill {
            display: grid;
            grid-template-columns: 44px minmax(0, 1fr);
            gap: 12px;
            align-items: center;
            min-height: 92px;
            padding: 14px;
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: var(--radius);
            background:
                linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.035)),
                rgba(255,255,255,0.04);
        }
        .command-pill i {
            width: 44px;
            height: 44px;
            display: grid;
            place-items: center;
            border-radius: var(--radius);
            font-style: normal;
            font-weight: 900;
            color: #fff;
            background: linear-gradient(135deg, rgba(124,58,237,0.55), rgba(40,213,195,0.22));
            border: 1px solid rgba(255,255,255,0.16);
        }
        .command-pill b { display: block; line-height: 1.1; }
        .command-pill span { color: var(--muted); font-size: 13px; }

        section { padding: 92px 0; position: relative; }
        .section-head {
            display: flex;
            justify-content: space-between;
            gap: 28px;
            align-items: end;
            margin-bottom: 32px;
            padding-left: 18px;
            border-left: 3px solid rgba(40,213,195,0.58);
        }
        .section-kicker {
            color: var(--teal);
            font-size: 12px;
            font-weight: 850;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }
        h2 {
            margin: 8px 0 0;
            font-size: clamp(30px, 5vw, 50px);
            line-height: 1.04;
            letter-spacing: 0;
            max-width: 780px;
        }
        .section-copy {
            color: var(--muted);
            max-width: 470px;
            margin: 0;
        }
        .band {
            border-top: 1px solid rgba(255,255,255,0.1);
            border-bottom: 1px solid rgba(255,255,255,0.1);
            background: rgba(255,255,255,0.035);
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 14px;
        }
        .feature {
            position: relative;
            overflow: hidden;
            padding: 22px;
            border: 1px solid var(--line);
            border-radius: var(--radius);
            background: var(--panel);
            min-height: 210px;
            transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
        }
        .feature::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent 34%);
            opacity: 0;
            transition: opacity 180ms ease;
            pointer-events: none;
        }
        .feature:hover {
            transform: translateY(-4px);
            border-color: rgba(255,255,255,0.24);
            background: var(--panel-strong);
        }
        .feature:hover::after { opacity: 1; }
        .feature .icon {
            width: 42px;
            height: 42px;
            border-radius: var(--radius);
            display: grid;
            place-items: center;
            font-weight: 900;
            margin-bottom: 18px;
            border: 1px solid rgba(255,255,255,0.14);
        }
        .feature:nth-child(1) .icon { background: rgba(139,92,246,0.2); color: #d8c7ff; }
        .feature:nth-child(2) .icon { background: rgba(40,213,195,0.16); color: #92fff2; }
        .feature:nth-child(3) .icon { background: rgba(226,183,79,0.16); color: #ffe39d; }
        .feature:nth-child(4) .icon { background: rgba(248,113,113,0.14); color: #ffc2c2; }
        .feature:nth-child(5) .icon { background: rgba(70,209,139,0.15); color: #b7ffd7; }
        .feature:nth-child(6) .icon { background: rgba(255,255,255,0.1); color: #fff; }
        .feature h3 {
            margin: 0 0 10px;
            font-size: 18px;
            letter-spacing: 0;
        }
        .feature p { margin: 0; color: var(--muted); font-size: 14px; }

        .screens-grid {
            display: grid;
            grid-template-columns: 0.92fr 1.08fr;
            gap: 52px;
            align-items: center;
        }
        .screen-collage {
            position: relative;
            min-height: 560px;
        }
        .screen-collage::before {
            content: "";
            position: absolute;
            inset: 68px 38px 46px 26px;
            border: 1px solid rgba(255,255,255,0.12);
            background:
                linear-gradient(135deg, rgba(124,58,237,0.18), rgba(40,213,195,0.07)),
                rgba(255,255,255,0.035);
            clip-path: polygon(11% 0, 100% 8%, 91% 100%, 0 88%);
            box-shadow: 0 30px 90px rgba(0,0,0,0.28);
        }
        .screen-strip {
            position: absolute;
            inset: 0;
            display: grid;
            grid-template-columns: repeat(12, minmax(0, 1fr));
            grid-template-rows: repeat(12, 42px);
            gap: 14px;
            align-items: stretch;
        }
        .screen-card {
            position: relative;
            width: min(292px, 100%);
            border: 1px solid rgba(255,255,255,0.15);
            background:
                linear-gradient(135deg, rgba(255,255,255,0.13), rgba(255,255,255,0.035)),
                rgba(255,255,255,0.055);
            border-radius: var(--radius);
            padding: 8px;
            box-shadow: 0 24px 70px rgba(0,0,0,0.34);
            transition: transform 180ms ease, border-color 180ms ease;
            overflow: hidden;
        }
        .screen-card:hover {
            transform: translateY(-4px);
            border-color: rgba(255,255,255,0.24);
        }
        .screen-card:nth-child(1) {
            grid-column: 1 / span 8;
            grid-row: 2 / span 6;
            transform: rotate(-1.6deg);
            z-index: 2;
        }
        .screen-card:nth-child(2) {
            grid-column: 6 / span 7;
            grid-row: 6 / span 6;
            transform: rotate(1.8deg);
            z-index: 3;
        }
        .screen-card:nth-child(3) {
            grid-column: 2 / span 5;
            grid-row: 8 / span 4;
            width: min(230px, 100%);
            transform: rotate(-0.8deg);
            z-index: 4;
        }
        .screen-card:nth-child(1):hover { transform: rotate(-1.6deg) translateY(-4px); }
        .screen-card:nth-child(2):hover { transform: rotate(1.8deg) translateY(-4px); }
        .screen-card:nth-child(3):hover { transform: rotate(-0.8deg) translateY(-4px); }
        .screen-card img { border-radius: 6px; }
        .screen-card.featured img {
            width: 100%;
            height: auto;
        }
        .screen-card.portrait img {
            width: 100%;
            height: auto;
        }
        .screen-card span {
            display: block;
            color: var(--muted);
            font-size: 12px;
            font-weight: 700;
            padding: 10px 4px 2px;
        }
        .experience-wall {
            display: grid;
            grid-template-columns: 1.12fr 0.88fr;
            gap: 22px;
            align-items: stretch;
        }
        .wide-showcase {
            position: relative;
            margin-top: 30px;
            border: 1px solid rgba(255,255,255,0.14);
            background:
                linear-gradient(135deg, rgba(255,255,255,0.13), rgba(255,255,255,0.035)),
                rgba(255,255,255,0.055);
            border-radius: var(--radius);
            padding: 8px;
            box-shadow: 0 24px 70px rgba(0,0,0,0.28);
            overflow: hidden;
        }
        .wide-showcase.tilt-left {
            transform: rotate(-1.2deg);
            margin: 44px 18px 8px;
        }
        .wide-showcase.tilt-right {
            transform: rotate(1.1deg);
            margin: 42px 20px 6px;
        }
        .wide-showcase::after {
            content: "";
            position: absolute;
            inset: 8px;
            border-radius: 6px;
            pointer-events: none;
            background: linear-gradient(125deg, rgba(255,255,255,0.18), transparent 30%, transparent 72%, rgba(226,183,79,0.12));
            mix-blend-mode: screen;
        }
        .wide-showcase img {
            width: 100%;
            border-radius: 6px;
        }
        .showcase-float {
            position: absolute;
            z-index: 3;
            display: grid;
            gap: 2px;
            min-width: 190px;
            padding: 14px 15px;
            border-radius: var(--radius);
            border: 1px solid rgba(255,255,255,0.16);
            background: rgba(7,6,12,0.78);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            box-shadow: 0 18px 50px rgba(0,0,0,0.34);
            font-size: 13px;
            font-weight: 850;
        }
        .showcase-float span {
            color: var(--muted);
            font-size: 12px;
            font-weight: 700;
        }
        .showcase-float.one { left: -16px; top: 18%; }
        .showcase-float.two { right: -14px; bottom: 14%; }
        .module-stage {
            position: relative;
            padding: 12px 0 10px;
        }
        .phone-stage {
            position: relative;
            min-height: 620px;
            margin-top: 28px;
        }
        .phone-stage .phone-card {
            position: absolute;
            width: min(282px, 24vw);
        }
        .phone-stage .phone-card:nth-child(1) {
            left: 4%;
            top: 76px;
            transform: rotate(-2.2deg);
            z-index: 2;
        }
        .phone-stage .phone-card:nth-child(2) {
            left: 30%;
            top: 0;
            transform: rotate(1.2deg);
            z-index: 4;
        }
        .phone-stage .phone-card:nth-child(3) {
            right: 24%;
            top: 92px;
            transform: rotate(-0.8deg);
            z-index: 3;
        }
        .phone-stage .phone-card:nth-child(4) {
            right: 3%;
            top: 38px;
            transform: rotate(2deg);
            z-index: 1;
        }
        .module-gallery {
            display: grid;
            grid-template-columns: 0.9fr 1.1fr 0.92fr 1.08fr;
            gap: 14px;
            margin-top: -56px;
            position: relative;
            z-index: 4;
            align-items: end;
        }
        .module-shot {
            border: 1px solid rgba(255,255,255,0.14);
            background:
                linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.035)),
                rgba(255,255,255,0.055);
            border-radius: var(--radius);
            padding: 8px;
            box-shadow: 0 18px 54px rgba(0,0,0,0.24);
            transition: transform 180ms ease, border-color 180ms ease;
        }
        .module-shot:hover {
            transform: translateY(-4px);
            border-color: rgba(255,255,255,0.24);
        }
        .module-shot:nth-child(1) { transform: translateY(22px) rotate(-2deg); }
        .module-shot:nth-child(2) { transform: translateY(-8px) rotate(1.2deg); }
        .module-shot:nth-child(3) { transform: translateY(34px) rotate(2.4deg); }
        .module-shot:nth-child(4) { transform: translateY(2px) rotate(-1.4deg); }
        .module-shot:nth-child(1):hover { transform: translateY(16px) rotate(-2deg); }
        .module-shot:nth-child(2):hover { transform: translateY(-14px) rotate(1.2deg); }
        .module-shot:nth-child(3):hover { transform: translateY(28px) rotate(2.4deg); }
        .module-shot:nth-child(4):hover { transform: translateY(-4px) rotate(-1.4deg); }
        .module-shot img {
            width: 100%;
            height: auto;
            border-radius: 6px;
        }
        .module-shot span {
            display: block;
            color: var(--muted);
            font-size: 12px;
            font-weight: 750;
            padding: 9px 4px 1px;
        }
        .image-tile {
            position: relative;
            overflow: hidden;
            width: min(292px, 100%);
            border: 1px solid rgba(255,255,255,0.14);
            background: rgba(255,255,255,0.055);
            border-radius: var(--radius);
            box-shadow: 0 24px 70px rgba(0,0,0,0.28);
            transition: transform 180ms ease, border-color 180ms ease;
        }
        .image-tile:hover {
            transform: translateY(-3px);
            border-color: rgba(255,255,255,0.24);
        }
        .image-tile img {
            width: 100%;
            height: auto;
        }
        .image-tile.tall { min-height: 0; justify-self: end; }
        .image-stack {
            display: grid;
            gap: 22px;
            padding-top: 38px;
        }
        .image-stack .image-tile:first-child {
            transform: rotate(0.8deg);
            margin-left: -18px;
        }
        .image-stack .image-tile:last-child {
            transform: rotate(-0.9deg);
            margin-right: 28px;
        }
        .image-stack .image-tile:first-child:hover { transform: rotate(0.8deg) translateY(-3px); }
        .image-stack .image-tile:last-child:hover { transform: rotate(-0.9deg) translateY(-3px); }
        .tile-label {
            position: absolute;
            left: 14px;
            right: 14px;
            bottom: 14px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 12px 14px;
            border: 1px solid rgba(255,255,255,0.13);
            background: rgba(7,6,12,0.72);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-radius: var(--radius);
            color: var(--ink);
            font-size: 13px;
            font-weight: 850;
        }
        .tile-label span {
            color: var(--muted);
            font-size: 12px;
            font-weight: 700;
        }
        .detail-list {
            display: grid;
            gap: 12px;
            margin-top: 28px;
        }
        .detail {
            display: grid;
            grid-template-columns: 44px minmax(0,1fr);
            gap: 14px;
            padding: 16px;
            border: 1px solid rgba(255,255,255,0.13);
            background: rgba(255,255,255,0.05);
            border-radius: var(--radius);
        }
        .detail b { display: block; margin-bottom: 3px; }
        .detail p { margin: 0; color: var(--muted); font-size: 14px; }
        .detail .num {
            width: 44px;
            height: 44px;
            border-radius: var(--radius);
            display: grid;
            place-items: center;
            font-weight: 900;
            background: rgba(139,92,246,0.18);
            color: #dbcafe;
        }

        .access-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0,1fr));
            gap: 14px;
        }
        .access-card {
            padding: 20px;
            border-radius: var(--radius);
            border: 1px solid rgba(255,255,255,0.13);
            background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.045));
            transition: transform 180ms ease, border-color 180ms ease;
        }
        .access-card:hover {
            transform: translateY(-3px);
            border-color: rgba(226,183,79,0.34);
        }
        .access-card small {
            color: var(--gold);
            font-weight: 850;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }
        .access-card h3 { margin: 9px 0 8px; font-size: 17px; }
        .access-card p { margin: 0; color: var(--muted); font-size: 14px; }
        .flow-showcase {
            display: grid;
            grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
            gap: 42px;
            align-items: center;
            margin-top: 34px;
        }
        .flow-copy {
            padding: 24px;
            border: 1px solid rgba(255,255,255,0.13);
            background: rgba(255,255,255,0.055);
            border-radius: var(--radius);
        }
        .flow-copy h3 {
            margin: 0 0 10px;
            font-size: clamp(24px, 3vw, 34px);
            line-height: 1.08;
        }
        .flow-copy p {
            color: var(--muted);
            margin: 0;
        }
        .flow-visuals {
            position: relative;
            display: grid;
            grid-template-columns: repeat(12, minmax(0, 1fr));
            grid-template-rows: repeat(8, 42px);
            gap: 14px;
            min-height: 398px;
        }
        .flow-card {
            position: relative;
            width: min(292px, 100%);
            border: 1px solid rgba(255,255,255,0.14);
            background: rgba(255,255,255,0.055);
            border-radius: var(--radius);
            padding: 8px;
            box-shadow: 0 18px 54px rgba(0,0,0,0.26);
            transition: transform 180ms ease, border-color 180ms ease;
            overflow: hidden;
        }
        .flow-card:hover {
            transform: translateY(-4px);
            border-color: rgba(255,255,255,0.24);
        }
        .flow-card:nth-child(1) {
            grid-column: 1 / span 7;
            grid-row: 1 / span 6;
            transform: rotate(-1.2deg);
            z-index: 3;
        }
        .flow-card:nth-child(2) {
            grid-column: 6 / span 7;
            grid-row: 3 / span 6;
            transform: rotate(1.6deg);
            z-index: 2;
        }
        .flow-card:nth-child(1):hover { transform: rotate(-1.2deg) translateY(-4px); }
        .flow-card:nth-child(2):hover { transform: rotate(1.6deg) translateY(-4px); }
        .flow-card img {
            width: 100%;
            height: auto;
            border-radius: 6px;
        }
        .flow-card span {
            display: block;
            color: var(--muted);
            font-size: 12px;
            font-weight: 750;
            padding: 9px 4px 1px;
        }

        .status {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 24px;
        }
        .status span {
            display: inline-flex;
            align-items: center;
            min-height: 34px;
            padding: 0 12px;
            border: 1px solid rgba(255,255,255,0.14);
            background: rgba(255,255,255,0.055);
            border-radius: var(--radius);
            color: var(--muted);
            font-size: 13px;
            font-weight: 700;
        }

        .cta {
            padding: 72px 0;
        }
        .cta-box {
            display: grid;
            grid-template-columns: minmax(0,1fr) auto;
            gap: 22px;
            align-items: center;
            padding: 30px;
            border: 1px solid rgba(226,183,79,0.26);
            background:
                linear-gradient(135deg, rgba(124,58,237,0.24), rgba(226,183,79,0.10)),
                rgba(255,255,255,0.055);
            border-radius: var(--radius);
            position: relative;
            overflow: hidden;
        }
        .cta-box::after {
            content: "";
            position: absolute;
            inset: auto -10% -58% auto;
            width: 62%;
            height: 130%;
            background: linear-gradient(135deg, transparent, rgba(40,213,195,0.16));
            transform: rotate(-10deg);
            pointer-events: none;
        }
        .cta-box > * { position: relative; z-index: 1; }
        .cta h2 { margin: 0; max-width: 760px; }
        .cta p { color: var(--muted); margin: 10px 0 0; max-width: 760px; }

        footer {
            padding: 34px 0 48px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: var(--soft);
            font-size: 13px;
        }
        main, footer { position: relative; z-index: 1; }
        .footer-inner {
            display: flex;
            justify-content: space-between;
            gap: 18px;
            flex-wrap: wrap;
        }
        .footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
        .footer-links a { color: var(--muted); text-decoration: none; }

        @media (max-width: 940px) {
            .nav-links a:not(.nav-action) { display: none; }
            .hero-grid,
            .screens-grid,
            .experience-wall,
            .flow-showcase,
            .cta-box { grid-template-columns: 1fr; }
            .hero-visual { min-height: auto; }
            .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
            .access-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
            .command-strip,
            .module-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
            .hero-showcase { transform: none; }
            .screen-collage { min-height: auto; }
            .screen-collage::before { inset: 28px 0 28px; }
            .screen-strip {
                position: relative;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                grid-template-rows: auto;
            }
            .screen-card:nth-child(1),
            .screen-card:nth-child(2),
            .screen-card:nth-child(3) {
                grid-column: auto;
                grid-row: auto;
            }
            .screen-card:nth-child(3) { grid-column: 1 / -1; max-width: 360px; justify-self: center; }
            .wide-showcase.tilt-left,
            .wide-showcase.tilt-right { transform: none; margin-left: 0; margin-right: 0; }
            .showcase-float { position: relative; left: auto; right: auto; top: auto; bottom: auto; margin: 12px 0 0; }
            .module-gallery { margin-top: 18px; }
            .module-shot:nth-child(n) { transform: none; }
            .image-stack { padding-top: 0; }
            .image-stack .image-tile:first-child,
            .image-stack .image-tile:last-child { transform: none; margin-left: 0; margin-right: 0; }
            .iphone-layer {
                min-height: 620px;
                display: grid;
                grid-template-columns: repeat(3, minmax(0, 1fr));
                gap: 12px;
                align-items: start;
            }
            .hero-phone,
            .hero-phone.main,
            .hero-phone.side,
            .hero-phone.back {
                position: relative;
                inset: auto;
                width: 100%;
                transform: none;
                opacity: 1;
            }
            .phone-stage {
                min-height: auto;
                display: grid;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 18px;
            }
            .phone-stage .phone-card:nth-child(n) {
                position: relative;
                inset: auto;
                width: 100%;
                transform: none;
            }
            .flow-visuals {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                grid-template-rows: auto;
                min-height: auto;
            }
            .flow-card:nth-child(1),
            .flow-card:nth-child(2) {
                grid-column: auto;
                grid-row: auto;
                transform: none;
            }
        }
        @media (max-width: 640px) {
            .container { width: min(100% - 28px, 1180px); }
            .nav { height: 64px; }
            .nav-inner { height: 64px; }
            .brand-logo { width: 106px; }
            .brand-name { display: none; }
            .nav-action { padding: 0 12px; font-size: 12px; }
            .hero { padding-top: 100px; min-height: auto; }
            .hero-visual { min-height: auto; margin-top: 10px; }
            .command-section { padding-bottom: 68px; margin-top: -10px; }
            section { padding: 68px 0; }
            .section-head { display: block; padding-left: 14px; }
            .section-copy { margin-top: 16px; }
            .feature-grid,
            .access-grid,
            .flow-visuals,
            .module-gallery,
            .screen-strip,
            .command-strip { grid-template-columns: 1fr; }
            .screen-card:nth-child(3) { grid-column: auto; }
            .screen-card:nth-child(n),
            .flow-card:nth-child(n) { transform: none; }
            .iphone-layer,
            .phone-stage { grid-template-columns: 1fr; min-height: auto; }
            .phone-card { width: min(368px, 100%); margin: 0 auto; }
            .image-tile.tall { min-height: 390px; }
            .screen-card:nth-child(2),
            .screen-card:nth-child(3) { margin-top: 0; }
            .screen-card { max-width: 310px; margin: 0 auto; }
            .proof-item { flex: 1 1 130px; }
        }
}
