body {
    font-family: 'Inter', sans-serif;
    background-color: #0d0d0d;
}

html {
    scroll-behavior: smooth;
}

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

.hero { position: relative; min-height: 100vh; height: 100vh; background: #0d0d0d; border-radius: 0; overflow: hidden; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 3rem 2rem; font-family: var(--font-sans, system-ui, sans-serif); }
.nav { position: absolute; top: 0; left: 0; right: 0; display: flex; align-items: center; justify-content: space-between; padding: 1rem 2rem; border-bottom: 0.5px solid rgba(255,255,255,0.08); z-index: 10; }
.nav-logo { font-size: 15px; font-weight: 500; color: #fff; }
.nav-logo span { color: #f5a623; }
.nav-links { display: flex; align-items: center; gap: 1.5rem; font-size: 13px; color: rgba(255,255,255,0.6); }
.nav-cta { background: #f5a623; color: #1a0f00; font-size: 13px; font-weight: 500; padding: 7px 16px; border-radius: 6px; border: none; cursor: pointer; }
canvas { position: absolute; inset: 0; z-index: 1; }
.content { position: relative; z-index: 10; text-align: center; max-width: 640px; padding-top: 2rem; }
.eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: #f5a623; margin-bottom: 1rem; }
.headline { font-size: clamp(36px, 6vw, 56px); font-weight: 500; color: #fff; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 1.25rem; }

.headline-safer { color: #ffffff; }
.headline-smarter { color: #fbbf24; }
.headline-closer { color: #f97316; }

/* Optional fallback to ensure color is visible in all browsers */
.headline span { display: inline-block; }
.subhead { font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-primary { background: linear-gradient(135deg, #f97316, #fbbf24); color: #0d0d0d; font-weight: 700; padding: 0.75rem 2rem; border-radius: 0.5rem; transition: opacity 0.2s, transform 0.2s; display: inline-block; border: none; cursor: pointer; }
.btn-primary:hover { opacity: 0.9; transform: scale(1.03); }
.btn-outline { background: transparent; color: #fff; font-size: 14px; padding: 10px 22px; border-radius: 7px; border: 1px solid rgba(255,255,255,0.2); cursor: pointer; }
.btn-secondary { border: 2px solid #f97316; color: #f97316; font-weight: 600; padding: 0.75rem 2rem; border-radius: 0.5rem; transition: background 0.2s, color 0.2s; display: inline-block; background: transparent; cursor: pointer; }
.btn-secondary:hover { background: #f97316; color: #0d0d0d; }
.pillars { position: relative; z-index: 10; display: flex; gap: 12px; margin-top: 3rem; flex-wrap: wrap; justify-content: center; }
.pillar { background: rgba(255,255,255,0.04); border: 0.5px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 10px 18px; font-size: 13px; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 8px; }
.pillar-dot { width: 6px; height: 6px; border-radius: 50%; background: #f5a623; flex-shrink: 0; }

.brand-text {
    background: linear-gradient(135deg, #f97316, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card {
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 0.75rem;
    transition: border-color 0.2s, transform 0.2s;
}

.card:hover {
    border-color: #f97316;
    transform: translateY(-4px);
}

.pillar-safer {
    border-top: 3px solid #f97316;
}

.pillar-smarter {
    border-top: 3px solid #fbbf24;
}

.pillar-closer {
    border-top: 3px solid #fb923c;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

blockquote {
    border-left: 3px solid #f97316;
    padding-left: 1.5rem;
    margin: 2rem 0;
}