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

:root {
    --bg-deep: #0a0a0c;
    --bg-card: #111115;
    --bg-card-hover: #16161c;
    --bg-elevated: #1a1a22;
    --border: #222230;
    --border-hover: #333345;
    --text-primary: #e8e8ed;
    --text-secondary: #8888a0;
    --text-dim: #555568;
    --claw-red: #e63b2e;
    --claw-orange: #f07032;
    --claw-amber: #f5a623;
    --alert-red: #ff3b30;
    --safe-green: #30d158;
    --scan-blue: #5ac8fa;
    --gradient-claw: linear-gradient(135deg, #e63b2e, #f07032);
    --gradient-glow: linear-gradient(135deg, rgba(230, 59, 46, 0.15), rgba(240, 112, 50, 0.08));
    --mono: 'JetBrains Mono', monospace;
    --sans: 'DM Sans', -apple-system, sans-serif;
    --serif: 'Instrument Serif', Georgia, serif;
    --max-w: 1120px;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-deep);
    color: var(--text-primary);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

.mono {
    font-family: var(--mono);
}

.serif {
    font-family: var(--serif);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
    border: 1px solid;
}

.badge--red {
    color: var(--claw-red);
    border-color: rgba(230, 59, 46, 0.3);
    background: rgba(230, 59, 46, 0.08);
}

.badge--green {
    color: var(--safe-green);
    border-color: rgba(48, 209, 88, 0.3);
    background: rgba(48, 209, 88, 0.08);
}

.badge--amber {
    color: var(--claw-amber);
    border-color: rgba(245, 166, 35, 0.3);
    background: rgba(245, 166, 35, 0.08);
}

.badge--blue {
    color: var(--scan-blue);
    border-color: rgba(90, 200, 250, 0.3);
    background: rgba(90, 200, 250, 0.08);
}

/* ============================================================
   NAV
   ============================================================ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 24px;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    background: rgba(10, 10, 12, 0.8);
    border-bottom: 1px solid rgba(34, 34, 48, 0.5);
}

nav .nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--mono);
    font-weight: 700;
    font-size: 17px;
    color: var(--text-primary);
    text-decoration: none;
}

.nav-logo .claw-icon {
    font-size: 22px;
}

.nav-logo span {
    background: var(--gradient-claw);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

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

.nav-cta {
    font-family: var(--mono) !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #fff !important;
    background: var(--gradient-claw) !important;
    padding: 8px 18px !important;
    border-radius: 6px !important;
    transition: opacity 0.2s !important;
}

.nav-cta:hover {
    opacity: 0.9;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    padding: 140px 24px 80px;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(230, 59, 46, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    margin-bottom: 28px;
    animation: fadeUp 0.6s ease both;
}

.hero h1 {
    font-family: var(--serif);
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.02em;
    max-width: 780px;
    margin: 0 auto 24px;
    animation: fadeUp 0.6s 0.1s ease both;
}

.hero h1 em {
    font-style: italic;
    background: var(--gradient-claw);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 540px;
    margin: 0 auto 40px;
    animation: fadeUp 0.6s 0.2s ease both;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeUp 0.6s 0.3s ease both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--mono);
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: var(--gradient-claw);
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(230, 59, 46, 0.25);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--mono);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    background: var(--bg-card);
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
}

/* Terminal-style scan box */
.hero-terminal {
    max-width: 620px;
    margin: 48px auto 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    text-align: left;
    animation: fadeUp 0.6s 0.4s ease both;
}

.terminal-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: rgba(26, 26, 34, 0.6);
    border-bottom: 1px solid var(--border);
}

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

.terminal-dot--red {
    background: #ff5f57;
}

.terminal-dot--yellow {
    background: #febc2e;
}

.terminal-dot--green {
    background: #28c840;
}

.terminal-bar span {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--text-dim);
    margin-left: 8px;
}

.terminal-body {
    padding: 20px;
    font-family: var(--mono);
    font-size: 13px;
    line-height: 1.8;
}

.terminal-line {
    display: block;
}

.t-prompt {
    color: var(--safe-green);
}

.t-cmd {
    color: var(--text-primary);
}

.t-flag {
    color: var(--claw-amber);
}

.t-comment {
    color: var(--text-dim);
}

.t-danger {
    color: var(--alert-red);
}

.t-safe {
    color: var(--safe-green);
}

.t-url {
    color: var(--scan-blue);
}

/* ============================================================
   THREAT COUNTER STRIP
   ============================================================ */
.threat-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 36px 24px;
    background: linear-gradient(180deg, rgba(230, 59, 46, 0.03), transparent);
}

.threat-strip .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.threat-stat .number {
    font-family: var(--mono);
    font-size: 36px;
    font-weight: 700;
    background: var(--gradient-claw);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.threat-stat .label {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.threat-stat .source {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--text-dim);
    margin-top: 2px;
}

/* ============================================================
   SECTIONS — GENERAL
   ============================================================ */
section {
    padding: 96px 24px;
}

.section-label {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--claw-orange);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--serif);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.6;
}

/* ============================================================
   THE PROBLEM
   ============================================================ */
.problem {
    background: var(--bg-deep);
}

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

.problem-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    transition: border-color 0.25s, transform 0.25s;
}

.problem-card:hover {
    border-color: rgba(230, 59, 46, 0.3);
    transform: translateY(-2px);
}

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

.problem-card h3 {
    font-family: var(--mono);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.problem-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.problem-card .stat {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--alert-red);
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

/* ============================================================
   QUOTES / SOCIAL PROOF STRIP
   ============================================================ */
.quotes-strip {
    padding: 64px 24px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-card);
}

.quotes-grid {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.quote-card {
    padding: 24px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg-deep);
}

.quote-card blockquote {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-secondary);
    font-style: italic;
}

.quote-card .attribution {
    margin-top: 14px;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--text-dim);
}

.quote-card .attribution strong {
    color: var(--claw-orange);
    font-weight: 600;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
    background: var(--bg-deep);
}

.steps {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step {
    position: relative;
}

.step-number {
    font-family: var(--mono);
    font-size: 48px;
    font-weight: 700;
    background: var(--gradient-claw);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.25;
    line-height: 1;
    margin-bottom: 16px;
}

.step h3 {
    font-family: var(--mono);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
}

.step p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.step code {
    display: block;
    margin-top: 14px;
    font-family: var(--mono);
    font-size: 12px;
    color: var(--safe-green);
    background: rgba(48, 209, 88, 0.06);
    border: 1px solid rgba(48, 209, 88, 0.15);
    padding: 10px 14px;
    border-radius: 6px;
    word-break: break-all;
}

/* ============================================================
   WHAT YOU GET
   ============================================================ */
.features {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.feature-card {
    background: var(--bg-deep);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    display: flex;
    gap: 18px;
    transition: border-color 0.25s;
}

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

.feature-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.feature-icon--scan {
    background: rgba(90, 200, 250, 0.1);
}

.feature-icon--monitor {
    background: rgba(48, 209, 88, 0.1);
}

.feature-icon--alert {
    background: rgba(230, 59, 46, 0.1);
}

.feature-icon--harden {
    background: rgba(245, 166, 35, 0.1);
}

.feature-icon--intel {
    background: rgba(175, 130, 255, 0.1);
}

.feature-icon--fleet {
    background: rgba(255, 214, 102, 0.1);
}

.feature-body h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
}

.feature-body p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.55;
}

.feature-body .tag {
    display: inline-block;
    margin-top: 8px;
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
}

.tag--free {
    color: var(--safe-green);
    background: rgba(48, 209, 88, 0.08);
}

.tag--pro {
    color: var(--claw-orange);
    background: rgba(240, 112, 50, 0.08);
}

.tag--enterprise {
    color: var(--scan-blue);
    background: rgba(90, 200, 250, 0.08);
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
    background: var(--bg-deep);
}

.pricing-grid {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 32px 28px;
    position: relative;
    transition: border-color 0.25s, transform 0.25s;
}

.pricing-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.pricing-card.featured {
    border-color: rgba(230, 59, 46, 0.4);
    background: linear-gradient(180deg, rgba(230, 59, 46, 0.04), var(--bg-card));
}

.pricing-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fff;
    background: var(--gradient-claw);
    padding: 4px 14px;
    border-radius: 100px;
}

.pricing-name {
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

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

.pricing-price .currency {
    font-size: 20px;
    color: var(--text-secondary);
    font-weight: 500;
}

.pricing-price .amount {
    font-family: var(--mono);
    font-size: 44px;
    font-weight: 700;
    line-height: 1;
}

.pricing-price .period {
    font-size: 14px;
    color: var(--text-dim);
}

.pricing-annual {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--text-dim);
    margin-bottom: 20px;
}

.pricing-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.5;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.pricing-features li {
    font-size: 13px;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}

.pricing-features li::before {
    content: '✓';
    color: var(--safe-green);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.pricing-features li.coming::before {
    content: '◦';
    color: var(--text-dim);
}

.pricing-btn {
    display: block;
    width: 100%;
    text-align: center;
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 600;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
}

.pricing-btn--primary {
    color: #fff;
    background: var(--gradient-claw);
}

.pricing-btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(230, 59, 46, 0.2);
}

.pricing-btn--secondary {
    color: var(--text-primary);
    background: var(--bg-elevated);
    border: 1px solid var(--border);
}

.pricing-btn--secondary:hover {
    border-color: var(--border-hover);
}

.pricing-note {
    text-align: center;
    margin-top: 32px;
    font-size: 14px;
    color: var(--text-dim);
}

.pricing-note a {
    color: var(--claw-orange);
    text-decoration: underline;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
}

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

.faq-item {
    padding: 24px;
    background: var(--bg-deep);
    border: 1px solid var(--border);
    border-radius: 10px;
}

.faq-item h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

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

/* ============================================================
   CTA FOOTER
   ============================================================ */
.cta-section {
    padding: 96px 24px;
    text-align: center;
    position: relative;
    border-top: 1px solid var(--border);
}

.cta-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(230, 59, 46, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section h2 {
    font-family: var(--serif);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 460px;
    margin: 0 auto 32px;
}

.cta-terminal {
    max-width: 480px;
    margin: 0 auto 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 18px 22px;
    font-family: var(--mono);
    font-size: 14px;
    text-align: left;
}

.cta-terminal .t-prompt {
    color: var(--safe-green);
}

.cta-terminal .t-cmd {
    color: var(--text-primary);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    padding: 40px 24px;
    border-top: 1px solid var(--border);
    text-align: center;
}

footer p {
    font-size: 13px;
    color: var(--text-dim);
}

footer a {
    color: var(--text-secondary);
    text-decoration: none;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
}

.footer-links a {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--text-dim);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

.cursor-blink {
    animation: blink 1s infinite;
    color: var(--text-primary);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {

    .problem-grid,
    .steps,
    .features-grid,
    .pricing-grid,
    .faq-grid,
    .quotes-grid {
        grid-template-columns: 1fr;
    }

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

    .nav-links a:not(.nav-cta) {
        display: none;
    }
}

@media (max-width: 600px) {
    .threat-strip .container {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}