:root {
    --bg: #0b0f1a;
    --bg-2: #0f172a;
    --accent: #55f5ff;
    --accent-2: #f7b733;
    --text: #e8edf2;
    --muted: #a5b1c2;
    --card: rgba(17, 24, 39, 0.8);
    --stroke: rgba(255, 255, 255, 0.08);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Space Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
    color: var(--text);
    background: radial-gradient(1200px 600px at 10% -10%, #1b1f39, var(--bg));
    line-height: 1.6;
}

.noise {
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
    mix-blend-mode: soft-light;
    pointer-events: none;
    z-index: 0;
}

.wrap {
    width: min(1100px, 92vw);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 5;
    backdrop-filter: blur(8px);
    background: rgba(11, 15, 26, 0.7);
    border-bottom: 1px solid var(--stroke);
}

.site-header .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    gap: 16px;
    flex-wrap: wrap;
}

.brand {
    display: grid;
    gap: 4px;
}

.logo {
    font-family: "Fraunces", serif;
    font-size: 24px;
    letter-spacing: 2px;
}

.tag {
    color: var(--muted);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.nav a {
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn-solid {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #0a0f1a;
    box-shadow: 0 10px 30px rgba(85, 245, 255, 0.25);
}

.btn-outline {
    border: 1px solid var(--accent);
    color: var(--accent);
}

.btn-ghost {
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

.hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

#canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 120px 0 80px;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    font-size: 12px;
}

h1, h2, h3, h4 {
    font-family: "Fraunces", serif;
    line-height: 1.1;
    margin: 16px 0;
}

h1 {
    font-size: clamp(36px, 5vw, 64px);
}

h2 {
    font-size: clamp(28px, 4vw, 48px);
}

h3 {
    font-size: 24px;
}

.hero p {
    font-size: 18px;
    color: var(--muted);
    max-width: 600px;
}

.hero-actions {
    margin-top: 24px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-pills {
    margin-top: 24px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-pills span {
    border: 1px solid var(--stroke);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--muted);
}

.section {
    padding: 90px 0;
    position: relative;
    z-index: 1;
}

.dark {
    background: linear-gradient(135deg, rgba(11, 15, 26, 0.98), rgba(12, 18, 33, 0.98));
    border-top: 1px solid var(--stroke);
    border-bottom: 1px solid var(--stroke);
}

.stripe {
    background: linear-gradient(135deg, rgba(85, 245, 255, 0.08), rgba(247, 183, 51, 0.08));
}

.grid {
    display: grid;
    gap: 20px;
}

.cards {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.card {
    background: var(--card);
    border: 1px solid var(--stroke);
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, border 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    border-color: rgba(85, 245, 255, 0.35);
}

.card ul {
    padding-left: 18px;
    color: var(--muted);
}

.two-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 36px;
    align-items: center;
}

.about-list {
    display: grid;
    gap: 12px;
}

.pill {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 18px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}

blockquote {
    margin: 24px 0 0;
    padding-left: 20px;
    border-left: 3px solid var(--accent);
    color: var(--accent);
    font-weight: 600;
}

.features {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.feature {
    padding: 20px;
    border: 1px solid var(--stroke);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
}

.lead {
    color: var(--muted);
    font-size: 18px;
    max-width: 700px;
}

.chips {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.chips span {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--stroke);
    padding: 14px 18px;
    border-radius: 12px;
}

.contact {
    text-align: center;
}

.contact-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.note {
    color: var(--muted);
    font-size: 12px;
    margin-top: 20px;
}

.site-footer {
    border-top: 1px solid var(--stroke);
    padding: 30px 0 60px;
    background: #0a0f1a;
}

.site-footer .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
    margin-right: 16px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

@media (max-width: 720px) {
    .site-header .wrap {
        justify-content: center;
    }
    .nav {
        justify-content: center;
    }
    .hero-content {
        padding: 90px 0 60px;
    }
}
