@font-face { font-family: 'Inter'; font-style: normal; font-weight: 300; font-display: swap; src: url('/fonts/inter-300.woff2') format('woff2'), url('/fonts/inter-300.ttf') format('truetype'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('/fonts/inter-400.woff2') format('woff2'), url('/fonts/inter-400.ttf') format('truetype'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url('/fonts/inter-500.woff2') format('woff2'), url('/fonts/inter-500.ttf') format('truetype'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('/fonts/inter-600.woff2') format('woff2'), url('/fonts/inter-600.ttf') format('truetype'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 700; font-display: swap; src: url('/fonts/inter-700.woff2') format('woff2'), url('/fonts/inter-700.ttf') format('truetype'); }

:root {
    --primary-color: #7209b7;
    --primary-dark: #560bad;
    --primary-light: #9b4dca;
    --secondary-color: #b5179e;
    --accent-color: #d946ef;
    --dark-bg: #0a0618;
    --dark-paper: #110d20;
    --card-bg: rgba(17, 13, 32, 0.8);
    --light-bg: #1a1230;
    --text-primary: #f1f1f7;
    --text-secondary: #94a3b8;
    --text-dark: #f1f1f7;
    --border-color: rgba(255, 255, 255, 0.06);
    --gradient-primary: linear-gradient(135deg, #7209b7 0%, #560bad 100%);
    --gradient-accent: linear-gradient(135deg, #7209b7 0%, #b5179e 100%);
    --gradient-node: linear-gradient(135deg, #b5179e 0%, #7209b7 100%);
    --glow-primary: rgba(114, 9, 183, 0.3);
    --glow-secondary: rgba(181, 23, 158, 0.3);
    --light-section-bg: #f8fafc;
    --light-section-bg-alt: #f1f5f9;
    --light-card-bg: #ffffff;
    --light-card-border: rgba(0, 0, 0, 0.08);
    --light-card-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --text-on-light: #0f172a;
    --text-on-light-secondary: #475569;
    --text-on-light-muted: #64748b;
}

/* Light section utility class */
.section--light { background: var(--light-section-bg); }
.section--light h2 { color: var(--text-on-light); }
.section--light h3 { color: var(--text-on-light); }
.section--light p { color: var(--text-on-light-secondary); }
.section--light li { color: var(--text-on-light-secondary); }
.section--light strong { color: var(--text-on-light); }
.section--light .section-header h2 { color: var(--text-on-light); }
.section--light .section-header p { color: var(--text-on-light-secondary); }
.section--light .graph-advantages li { color: var(--text-on-light-secondary); }
.section--light .graph-advantages li strong { color: var(--text-on-light); }
.section--light .gradient-text {
    background: linear-gradient(135deg, #560bad, #86198f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--dark-bg);
}

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

/* Navigation */
.navbar {
    background: rgba(10, 14, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-svg {
    width: 240px;
    height: 60px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

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

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

.btn-secondary-nav {
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 0.4rem 1.2rem;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary-nav:hover {
    background: rgba(217, 70, 239, 0.1);
    color: var(--accent-color) !important;
    box-shadow: 0 4px 20px var(--glow-secondary);
    transform: translateY(-2px);
}

/* Buttons */
.btn-primary, .btn-primary-large {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary-large {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
}

.btn-primary:hover, .btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px var(--glow-primary);
}

.btn-secondary-large {
    background: transparent;
    color: var(--secondary-color);
    padding: 0.75rem 2rem;
    border: 2px solid var(--secondary-color);
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-secondary-large:hover {
    background: rgba(181, 23, 158, 0.1);
    box-shadow: 0 4px 20px var(--glow-secondary);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(114, 9, 183, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -20%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(181, 23, 158, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-split {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1 1 55%;
    max-width: 600px;
}

.hero-image {
    flex: 0 1 460px;
    min-width: 0;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(114, 9, 183, 0.15), 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.gradient-text {
    background: linear-gradient(135deg, #7209b7, #b5179e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Kubernetes Animation */
.hero-visual {
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.kubernetes-animation {
    position: relative;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.kube-node {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--gradient-node);
    border-radius: 50%;
    opacity: 0.8;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 4px 20px var(--glow-secondary);
}

.kube-node::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    animation: nodePulse 2s ease-in-out infinite;
}

.node-1 { top: 20%; left: 30%; animation-delay: 0s; }
.node-2 { top: 20%; right: 30%; animation-delay: 1s; }
.node-3 { bottom: 20%; left: 30%; animation-delay: 2s; }
.node-4 { bottom: 20%; right: 30%; animation-delay: 3s; }

.shield-overlay {
    position: absolute;
    width: 120px;
    height: 140px;
    background: linear-gradient(135deg, rgba(114, 9, 183, 0.15) 0%, rgba(181, 23, 158, 0.15) 100%);
    border: 3px solid var(--primary-color);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: shield-pulse 3s ease-in-out infinite;
    box-shadow: 0 0 30px var(--glow-primary), inset 0 0 30px rgba(114, 9, 183, 0.1);
}

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

@keyframes pulse-float {
    0%, 100% { transform: translateY(0px); box-shadow: 0 0 24px rgba(224, 30, 90, 0.4); }
    50% { transform: translateY(-10px); box-shadow: 0 0 32px rgba(224, 30, 90, 0.6); }
}

@keyframes dash-flow {
    to { stroke-dashoffset: -20; }
}

@keyframes nodePulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 0.4; }
}

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

/* Features Section */
.features {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(114, 9, 183, 0.3);
    box-shadow: 0 8px 30px rgba(114, 9, 183, 0.1), 0 0 0 1px rgba(114, 9, 183, 0.1);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px var(--glow-primary);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

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

/* Feature cards in light sections */
.section--light .feature-card {
    background: var(--light-card-bg);
    border: 1px solid var(--light-card-border);
    box-shadow: var(--light-card-shadow);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.section--light .feature-card:hover {
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.1), 0 0 0 1px rgba(37, 99, 235, 0.1);
}

.section--light .feature-card h3 {
    color: var(--text-on-light);
}

.section--light .feature-card p {
    color: var(--text-on-light-secondary);
}

/* Dark-to-light and light-to-dark transitions */
.product-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, var(--light-section-bg-alt), var(--dark-bg));
    pointer-events: none;
}

.section--light.how-it-works {
    background: var(--light-section-bg-alt);
}

/* Why Graph Section */
.why-graph {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.why-graph::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.08), transparent);
}

.why-graph-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-graph-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.why-graph-text > p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.graph-advantages {
    list-style: none;
}

.graph-advantages li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
}

.graph-advantages li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 10px;
    height: 10px;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--glow-primary);
}

.graph-advantages li strong {
    color: var(--text-primary);
}

.graph-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.graph-illustration {
    position: relative;
    width: 340px;
    height: 340px;
}

.graph-illustration::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(114, 9, 183, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.graph-node {
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 600;
    color: white;
    letter-spacing: 0.02em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.graph-node.primary { background: var(--primary-color); box-shadow: 0 0 20px var(--glow-primary); }
.graph-node.secondary { background: var(--secondary-color); box-shadow: 0 0 20px var(--glow-secondary); }
.graph-node.accent { background: var(--accent-color); box-shadow: 0 0 20px rgba(139, 92, 246, 0.3); }

/* Ingress (top center) - entry point, medium */
.graph-node:nth-of-type(1) { top: 6%; left: 42%; width: 52px; height: 52px; animation: float 7s ease-in-out infinite; animation-delay: 0s; }
/* Service (middle left) - routing, smaller */
.graph-node:nth-of-type(2) { top: 35%; left: 8%; width: 48px; height: 48px; animation: float 8s ease-in-out infinite; animation-delay: 0.8s; }
/* Pod (middle right) - central, largest */
.graph-node:nth-of-type(3) { top: 32%; right: 6%; width: 62px; height: 62px; font-size: 0.7rem; animation: float 6s ease-in-out infinite; animation-delay: 0.3s; }
/* CVE (lower left) - threat, pulsing */
.graph-node:nth-of-type(4) { top: 64%; left: 20%; width: 50px; height: 50px; animation: pulse-float 5s ease-in-out infinite; animation-delay: 1.2s; }
/* Secret (lower right) - sensitive, small */
.graph-node:nth-of-type(5) { top: 64%; right: 18%; width: 46px; height: 46px; animation: float 9s ease-in-out infinite; animation-delay: 1.8s; }
/* Role (bottom center) - permissions, medium */
.graph-node:nth-of-type(6) { bottom: 2%; left: 41%; width: 50px; height: 50px; animation: float 7.5s ease-in-out infinite; animation-delay: 0.5s; }

/* CVE node gets a warning accent */
.graph-node:nth-of-type(4) {
    background: linear-gradient(135deg, #b5179e, #e01e5a);
    box-shadow: 0 0 24px rgba(224, 30, 90, 0.4);
}

.graph-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, rgba(114, 9, 183, 0.4), rgba(181, 23, 158, 0.4));
    transform-origin: left center;
}

.section--light .graph-connections line {
    opacity: 0.6;
}

/* How it Works */
.how-it-works {
    padding: 80px 0;
}

.steps {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 29px;
    left: calc(50% + 30px);
    width: calc(100% - 60px);
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent 40%, transparent 60%, var(--primary-color));
    z-index: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 20px var(--glow-primary);
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

/* Security Section */
.security-section {
    padding: 80px 0;
    background: var(--dark-paper);
    position: relative;
}

.security-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(114, 9, 183, 0.2), transparent);
    pointer-events: none;
}

.security-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
}

.security-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.security-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.security-features {
    list-style: none;
}

.security-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
}

.security-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 16px;
    height: 16px;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--glow-primary);
}

.security-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.badge {
    padding: 1rem 2rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    color: var(--text-primary);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.badge:hover {
    border-color: var(--secondary-color);
    transform: translateX(-4px);
    box-shadow: 0 4px 20px var(--glow-secondary);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* Graph Connections SVG */
.graph-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.graph-node {
    z-index: 1;
}

/* Badges Label */
.badges-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Product Preview Section */
.product-preview {
    padding: 80px 0;
    background: var(--dark-bg);
    position: relative;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.preview-frame {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.preview-frame:hover {
    border-color: rgba(114, 9, 183, 0.3);
    box-shadow: 0 8px 30px rgba(114, 9, 183, 0.1);
    transform: translateY(-4px);
}

.frame-titlebar {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--border-color);
}

.frame-dots {
    display: flex;
    gap: 6px;
    margin-right: 1rem;
}

.frame-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.frame-dots .dot.red { background: #ff5f56; }
.frame-dots .dot.yellow { background: #ffbd2e; }
.frame-dots .dot.green { background: #27c93f; }

.frame-title {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.preview-badge {
    display: inline-block;
    font-size: 0.6rem;
    padding: 0.1rem 0.4rem;
    border-radius: 3px;
    background: rgba(114, 9, 183, 0.3);
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    vertical-align: middle;
    margin-left: 0.3rem;
}

.frame-content {
    padding: 1.5rem;
    min-height: 200px;
    position: relative;
}

/* Graph Mockup */
.graph-mockup {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.mockup-node {
    padding: 0.4rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    position: relative;
    z-index: 1;
}

.mockup-node.node-vuln { background: var(--primary-color); box-shadow: 0 0 12px var(--glow-primary); }
.mockup-node.node-pod { background: var(--secondary-color); box-shadow: 0 0 12px var(--glow-secondary); }
.mockup-node.node-sa { background: var(--accent-color); box-shadow: 0 0 12px rgba(139, 92, 246, 0.3); }
.mockup-node.node-ns { background: #4361ee; box-shadow: 0 0 12px rgba(67, 97, 238, 0.3); }
.mockup-node.node-svc { background: #b5179e; box-shadow: 0 0 12px var(--glow-secondary); }

.mockup-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Compliance Mockup */
.compliance-mockup {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.compliance-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.compliance-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    width: 140px;
    flex-shrink: 0;
}

.compliance-bar-wrapper {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    overflow: hidden;
}

.compliance-bar {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    transition: width 1s ease;
}

.compliance-bar.high {
    background: linear-gradient(90deg, #b5179e, #27c93f);
}

.compliance-bar.medium {
    background: linear-gradient(90deg, #ffbd2e, #7209b7);
}

.compliance-pct {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    width: 36px;
    text-align: right;
}

/* Attack Path Mockup */
.attack-mockup {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 0;
    container-type: inline-size;
}

.attack-chain {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: nowrap;
    justify-content: center;
    width: 100%;
}

.attack-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.4rem 0.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    flex: 1 1 0;
    min-width: 0;
}

.attack-step.critical { border-color: rgba(78, 201, 240, 0.5); }
.attack-step.warning { border-color: rgba(255, 214, 10, 0.5); }
.attack-step.danger { border-color: rgba(255, 107, 53, 0.5); }
.attack-step.severe { border-color: rgba(255, 45, 85, 0.6); box-shadow: 0 0 10px rgba(255, 45, 85, 0.15); }

.attack-label {
    font-size: clamp(0.45rem, 1.8cqi, 0.6rem);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.15rem;
}

.attack-detail {
    font-size: clamp(0.55rem, 2.2cqi, 0.75rem);
    font-weight: 600;
    color: var(--text-primary);
}

.attack-arrow {
    width: clamp(10px, 4cqi, 24px);
    height: 2px;
    background: linear-gradient(90deg, rgba(114, 9, 183, 0.4), rgba(181, 23, 158, 0.4));
    position: relative;
    flex-shrink: 0;
}

.attack-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid rgba(181, 23, 158, 0.4);
}

/* Legal Pages */
.legal-section {
    padding: 140px 0 80px;
    background: var(--dark-bg);
    min-height: 100vh;
}

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

.legal-content {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.legal-content .legal-date {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    list-style: none;
    margin-bottom: 1rem;
}

.legal-content ul li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.7;
}

.legal-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
    color: var(--primary-color);
}

/* Careers Page */
.careers-lead {
    font-size: 1.125rem;
    color: var(--text-primary);
    line-height: 1.8;
}

.careers-cta {
    margin-top: 2rem;
    text-align: center;
}

.careers-cta a {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s;
}

.careers-cta a:hover {
    border-bottom-color: var(--secondary-color);
}

/* 404 Page */
.error-section {
    padding: 140px 0 80px;
    background: var(--dark-bg);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.error-container {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.error-code {
    font-size: 8rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #7209b7, #b5179e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.error-container h2 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.error-container p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.error-actions a {
    text-decoration: none;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--dark-paper);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(114, 9, 183, 0.3), transparent);
}

.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Early Access Form */
.early-access-form {
    max-width: 520px;
    margin: 0 auto;
}

.interest-form-fields {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.form-row-half {
    display: flex;
    gap: 0.75rem;
}

.form-row-half input {
    flex: 1;
    min-width: 0;
}

.interest-form-fields input[type="email"],
.interest-form-fields input[type="text"] {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.interest-form-fields input::placeholder {
    color: var(--text-secondary);
}

.interest-form-fields input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(114, 9, 183, 0.15);
}

.early-access-form .btn-primary {
    width: 100%;
    padding: 0.875rem 2rem;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.form-note {
    font-size: 0.875rem;
    opacity: 0.7;
    color: var(--text-secondary);
}

.beta-login-cta {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.beta-login-cta p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.beta-login-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.beta-login-link:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

/* Footer */
.footer {
    padding: 3rem 0;
    background: var(--dark-bg);
    color: var(--text-primary);
    border-top: 1px solid var(--border-color);
}

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

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

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo .logo-svg {
    width: 150px;
    height: auto;
}

.footer-address {
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.5;
    margin: 0 0 0.5rem 0;
    opacity: 0.7;
}

.footer-trademark {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.8;
}

.footer-attribution {
    color: var(--text-secondary);
    font-size: 0.7rem;
    line-height: 1.4;
    margin: 0.5rem 0 0 0;
    opacity: 0.6;
    max-width: 400px;
}

.footer-right {
    display: flex;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.footer-links li {
    margin: 0;
    position: relative;
}

.footer-links li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 3px;
    background: var(--text-secondary);
    border-radius: 50%;
    opacity: 0.5;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.25rem 0;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

.footer-links a:hover::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-image {
        max-width: 100%;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(10, 14, 26, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border-color);
        padding: 1rem 20px;
        gap: 0;
    }

    .nav-links.mobile-open {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links li:nth-last-child(-n+2) a {
        border-bottom: none;
        text-align: center;
        margin-top: 0.5rem;
    }

    .btn-secondary-nav {
        display: block;
        text-align: center;
    }

    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .steps {
        flex-direction: column;
    }

    .step::after {
        display: none;
    }

    .security-content {
        grid-template-columns: 1fr;
    }

    .security-badges {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-right {
        width: 100%;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .footer-links li:not(:last-child)::after {
        display: none;
    }

    .why-graph-content {
        grid-template-columns: 1fr;
    }

    .graph-visual {
        order: -1;
    }

    .graph-illustration {
        width: 280px;
        height: 280px;
    }

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

    .attack-chain {
        flex-direction: row;
    }

    .attack-arrow {
        width: clamp(10px, 4cqi, 24px);
        height: 2px;
        background: linear-gradient(90deg, rgba(114, 9, 183, 0.4), rgba(181, 23, 158, 0.4));
    }

    .attack-arrow::after {
        right: 0;
        top: -3px;
        bottom: auto;
        border-top: 4px solid transparent;
        border-bottom: 4px solid transparent;
        border-left: 6px solid rgba(181, 23, 158, 0.4);
        border-right: none;
    }

    .error-code {
        font-size: 5rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--dark-paper);
}

.faq-section .section-header h2 {
    color: var(--text-primary);
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.faq-item h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Active nav link */
.nav-links a.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Logo link styling */
.logo a {
    display: inline-block;
}

/* Footer logo link */
.footer-logo a {
    display: inline-block;
}

/* Free Trial Enhancements */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(114, 9, 183, 0.1);
    border: 1px solid rgba(114, 9, 183, 0.3);
    color: var(--primary-color);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

/* Social Proof Section */
.social-proof {
    padding: 60px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.proof-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #560bad, #86198f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.proof-label {
    font-size: 0.9rem;
    color: var(--text-on-light-secondary);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Enterprise Section */
.enterprise-section {
    padding: 80px 0;
    background: var(--dark-paper);
    position: relative;
}

.enterprise-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, var(--light-section-bg), var(--dark-paper));
    pointer-events: none;
}

.enterprise-section .section-header h2 {
    color: var(--text-primary);
}

.enterprise-section .section-header p {
    color: var(--text-secondary);
}

.enterprise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.enterprise-item {
    padding: 1.5rem 2rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.enterprise-item:hover {
    border-color: rgba(114, 9, 183, 0.3);
    box-shadow: 0 4px 20px rgba(114, 9, 183, 0.08);
}

.enterprise-item h3 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.enterprise-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Explorer Mockup */
.explorer-mockup {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.explorer-search {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.explorer-icon {
    width: 14px;
    height: 14px;
    color: var(--text-secondary);
    flex-shrink: 0;
}

.explorer-query {
    font-size: 0.8rem;
    color: var(--text-primary);
    font-family: inherit;
}

.explorer-results {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.explorer-result {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.result-severity {
    font-size: 0.6rem;
    font-weight: 700;
    padding: 0.15rem 0.4rem;
    border-radius: 3px;
    letter-spacing: 0.04em;
    flex-shrink: 0;
    font-family: inherit;
}

.result-severity.critical {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.result-severity.high {
    background: rgba(249, 115, 22, 0.15);
    color: #f97316;
}

.result-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
}

.result-meta {
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-left: auto;
    white-space: nowrap;
}

/* Mobile responsiveness for additional elements */
@media (max-width: 768px) {
    .hero-badge {
        font-size: 0.875rem;
        padding: 0.4rem 1rem;
    }

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

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

    .explorer-result {
        flex-wrap: wrap;
        gap: 0.4rem;
    }

    .result-meta {
        margin-left: 0;
        width: 100%;
        padding-left: 2.5rem;
    }
}

/* Skip to content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    z-index: 10000;
    transition: top 0.3s;
    text-decoration: none;
    font-weight: 500;
}

.skip-link:focus {
    top: 0;
}

/* Focus styles for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.btn-primary:focus-visible,
.btn-primary-large:focus-visible {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(181, 23, 158, 0.3);
}

/* Footer link focus */
.footer-links a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Hero CTA */
.hero-cta {
    display: inline-block;
    text-decoration: none;
    margin-top: 0.5rem;
}

.hero-form-note {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.75rem;
    opacity: 0.8;
}

/* Tech Logos Bar */
.tech-bar {
    padding: 40px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.tech-bar-inner {
    text-align: center;
}

.tech-bar-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-on-light-muted);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.tech-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.tech-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-on-light-muted);
    transition: color 0.3s ease;
}

.tech-logo-item:hover {
    color: var(--text-on-light);
}

.tech-logo-item svg {
    width: 36px;
    height: 36px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.tech-logo-item:hover svg {
    opacity: 1;
}

.tech-logo-item span {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.025em;
}

@media (max-width: 768px) {
    .form-row-half {
        flex-direction: column;
    }

    .tech-logos {
        gap: 2rem;
    }

    .tech-logo-item svg {
        width: 28px;
        height: 28px;
    }
}

/* Honeypot field (hidden from real users) */
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* Graph edge animations (moved from inline SVG style) */
.graph-edge { stroke-dasharray: 6 4; animation: dash-flow 1.5s linear infinite; }
.graph-edge-solid { opacity: 0.18; }

/* Consent checkbox label */
.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    cursor: pointer;
}

.consent-label input[type="checkbox"] {
    margin-top: 0.2rem;
    accent-color: var(--primary-color);
    flex-shrink: 0;
}

.consent-label a {
    color: var(--primary-light);
    text-decoration: underline;
}

/* Privacy link in hero form note */
.form-privacy-link {
    color: var(--text-secondary);
    text-decoration: underline;
    font-size: inherit;
}

.form-privacy-link:hover {
    color: var(--primary-light);
}

/* Light section consent label */
.section--light .consent-label {
    color: var(--text-on-light-secondary);
}

.section--light .consent-label a {
    color: var(--primary-color);
}



/* Pricing Page */
.pricing-hero {
    padding: 140px 0 80px;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -15%;
    width: 50%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(114, 9, 183, 0.08), transparent 70%);
    pointer-events: none;
}

.pricing-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -15%;
    width: 50%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(181, 23, 158, 0.06), transparent 70%);
    pointer-events: none;
}

.pricing-hero .section-header {
    position: relative;
    z-index: 1;
}

.pricing-hero .section-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.pricing-hero .section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
}

/* Billing Toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 2.5rem 0 3rem;
    position: relative;
    z-index: 1;
}

.toggle-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.toggle-label.active {
    color: var(--text-primary);
}

.toggle-save {
    display: inline-block;
    background: rgba(114, 9, 183, 0.15);
    color: var(--primary-light);
    padding: 0.15rem 0.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.25rem;
}

.toggle-switch {
    width: 48px;
    height: 26px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    padding: 0;
}

.toggle-switch[aria-checked="true"] {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
}

.toggle-knob {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.toggle-switch[aria-checked="true"] .toggle-knob {
    transform: translateX(22px);
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(114, 9, 183, 0.2);
    box-shadow: 0 8px 30px rgba(114, 9, 183, 0.08);
}

/* Featured card */
.pricing-card--featured {
    border: none;
    transform: scale(1.06) translateY(-4px);
    z-index: 2;
    background: linear-gradient(var(--dark-paper), var(--dark-paper)) padding-box,
                linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--primary-color)) border-box;
    border: 2px solid transparent;
    box-shadow:
        0 0 40px rgba(114, 9, 183, 0.3),
        0 0 80px rgba(181, 23, 158, 0.12),
        0 24px 48px rgba(0, 0, 0, 0.35);
    animation: featured-glow 4s ease-in-out infinite;
}

.pricing-card--featured .price-amount {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-card--featured:hover {
    transform: scale(1.08) translateY(-6px);
    box-shadow:
        0 0 50px rgba(114, 9, 183, 0.35),
        0 0 100px rgba(181, 23, 158, 0.15),
        0 28px 56px rgba(0, 0, 0, 0.4);
}

@keyframes featured-glow {
    0%, 100% { box-shadow: 0 0 40px rgba(114, 9, 183, 0.3), 0 0 80px rgba(181, 23, 158, 0.12), 0 24px 48px rgba(0, 0, 0, 0.35); }
    50% { box-shadow: 0 0 50px rgba(114, 9, 183, 0.35), 0 0 100px rgba(181, 23, 158, 0.18), 0 24px 48px rgba(0, 0, 0, 0.35); }
}

.pricing-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: white;
    padding: 0.35rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(181, 23, 158, 0.4);
    text-transform: uppercase;
}

/* Dark variant (Need More) */
.pricing-card--dark {
    background: var(--dark-paper);
}

.pricing-card-header {
    margin-bottom: 1.5rem;
}

.pricing-card-header h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.pricing-card-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.pricing-price {
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.price-period {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.pricing-annual-note {
    display: none;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.pricing-annual-note.visible {
    display: block;
}

.pricing-cta.btn-primary-large,
.pricing-cta.btn-secondary-large {
    display: block;
    text-align: center;
    margin: 1rem 0 1.5rem;
}

/* Limits */
.pricing-limits {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.pricing-limits li {
    padding: 0.35rem 0;
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
}

.pricing-overage {
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 0.8rem;
}

.pricing-divider {
    height: 1px;
    background: var(--border-color);
    margin: 0.5rem 0 1rem;
}

.pricing-includes {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

/* Feature list */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.pricing-features li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.pricing-features li.included::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--primary-light);
    font-weight: 600;
}

/* Comparison Table */
.pricing-comparison {
    padding: 80px 0;
}

.comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.comparison-table th,
.comparison-table td {
    padding: 0.75rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--text-on-light);
    min-width: 200px;
}

.comparison-table thead th {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-on-light);
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.comparison-featured {
    background: rgba(114, 9, 183, 0.04);
}

.comparison-section-row td {
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-on-light-muted);
    padding-top: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.comparison-table .check {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.comparison-table .dash {
    color: var(--text-on-light-muted);
    font-size: 1.1rem;
}

/* FAQ */
.pricing-faq {
    padding: 80px 0;
    background: var(--dark-paper);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.faq-item {
    padding: 1.5rem 2rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.faq-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.faq-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.pricing-cta-section {
    padding: 80px 0;
    background: var(--dark-bg);
}

.pricing-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.pricing-cta-content p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.pricing-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Active nav link */
.nav-active {
    color: var(--primary-light) !important;
}

/* ==================== Blog ==================== */

.blog-hero {
    padding: 140px 0 60px;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -15%;
    width: 50%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(114, 9, 183, 0.08), transparent 70%);
    pointer-events: none;
}

.blog-hero .section-header {
    position: relative;
    z-index: 1;
}

.blog-hero .section-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.blog-hero .section-header p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
}

/* Blog listing */
.blog-list {
    padding: 60px 0 80px;
    background: var(--dark-bg);
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.blog-card {
    display: block;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(114, 9, 183, 0.3);
    box-shadow: 0 8px 30px rgba(114, 9, 183, 0.1);
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.blog-card-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--text-secondary);
}

.blog-card h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-card-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.blog-tag {
    display: inline-block;
    background: rgba(114, 9, 183, 0.12);
    color: var(--primary-light);
    padding: 0.2rem 0.65rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Blog post */
.blog-post-hero {
    padding: 140px 0 60px;
    background: var(--dark-bg);
    position: relative;
}

.blog-back {
    display: inline-block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    transition: color 0.2s ease;
}

.blog-back:hover {
    color: var(--primary-light);
}

.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.blog-post-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    max-width: 800px;
    margin-bottom: 1.25rem;
}

.blog-post-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.blog-post-body {
    padding: 60px 0 80px;
}

.blog-content {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-on-light);
}

.blog-content h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-on-light);
    margin: 2.5rem 0 1rem;
}

.blog-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-on-light);
    margin: 2rem 0 0.75rem;
}

.blog-content p {
    margin-bottom: 1.25rem;
    color: var(--text-on-light-secondary);
}

.blog-content a {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.blog-content a:hover {
    color: var(--primary-light);
}

.blog-content ul,
.blog-content ol {
    margin: 0 0 1.25rem 1.5rem;
    color: var(--text-on-light-secondary);
}

.blog-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.blog-content strong {
    color: var(--text-on-light);
    font-weight: 600;
}

.blog-content code {
    background: rgba(114, 9, 183, 0.08);
    color: var(--primary-color);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-size: 0.9em;
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
}

.blog-content pre {
    background: #1a1230;
    border: 1px solid rgba(114, 9, 183, 0.2);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.blog-content pre code {
    background: none;
    color: #e0d4f7;
    padding: 0;
    font-size: 0.875rem;
    line-height: 1.6;
}

.blog-content hr {
    border: none;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 2.5rem 0;
}

.blog-content blockquote {
    border-left: 3px solid var(--primary-color);
    padding: 0.5rem 0 0.5rem 1.25rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--text-on-light-secondary);
}

.blog-content em {
    color: var(--text-on-light-secondary);
}

.blog-cta-section {
    padding: 80px 0;
    background: var(--dark-bg);
}

/* Blog responsive */
@media (max-width: 768px) {
    .blog-hero {
        padding: 100px 0 40px;
    }

    .blog-hero .section-header h1 {
        font-size: 1.75rem;
    }

    .blog-list {
        padding: 40px 0 60px;
    }

    .blog-card {
        padding: 1.5rem;
    }

    .blog-card h2 {
        font-size: 1.2rem;
    }

    .blog-post-hero {
        padding: 100px 0 40px;
    }

    .blog-post-hero h1 {
        font-size: 1.75rem;
    }

    .blog-post-body {
        padding: 40px 0 60px;
    }

    .blog-content {
        font-size: 1rem;
    }

    .blog-content h2 {
        font-size: 1.35rem;
    }

    .blog-content pre {
        padding: 1rem;
        border-radius: 8px;
    }

    .blog-cta-section {
        padding: 50px 0;
    }
}

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

@media (max-width: 768px) {
    .pricing-hero {
        padding: 100px 0 50px;
    }

    .pricing-hero .section-header h1 {
        font-size: 1.75rem;
    }

    .pricing-hero .section-header p {
        font-size: 1rem;
    }

    .pricing-toggle {
        margin: 1.5rem 0 2rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
        gap: 1.25rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

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

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

    .price-amount {
        font-size: 2rem;
    }

    .pricing-cta-content h2 {
        font-size: 1.75rem;
    }

    .pricing-cta-content p {
        font-size: 1rem;
    }

    .pricing-comparison {
        padding: 50px 0;
    }

    .comparison-table {
        font-size: 0.75rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.5rem 0.35rem;
    }

    .comparison-table th:first-child,
    .comparison-table td:first-child {
        min-width: 110px;
        position: sticky;
        left: 0;
        background: var(--light-section-bg);
        z-index: 1;
    }

    .comparison-section-row td {
        background: var(--light-section-bg);
    }

    .pricing-faq {
        padding: 50px 0;
    }

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

    .faq-item {
        padding: 1.25rem 1.5rem;
    }

    .pricing-cta-section {
        padding: 50px 0;
    }
}

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