@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800;900&family=Fraunces:opsz,wght@9..144,600;9..144,700;9..144,800;9..144,900&display=swap");

:root {
    --bg: #05070d;
    --bg-soft: #090d18;
    --panel: rgba(12, 18, 32, 0.62);
    --panel-strong: rgba(15, 24, 42, 0.78);
    --line: rgba(142, 202, 255, 0.16);
    --line-strong: rgba(73, 210, 255, 0.36);
    --text: #eef6ff;
    --muted: #5fa8e0;
    --primary: #58e1ff;
    --secondary: #9d7cff;
    --green: #69f5bd;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
    --radius: 8px;
    --font: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-heading: "Fraunces", "DM Sans", Georgia, serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
    scroll-snap-type: none;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    position: relative;
    margin: 0;
    max-width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    background: linear-gradient(180deg, #05070d 0%, #07101c 46%, #05070d 100%);
    color: var(--text);
    font-family: var(--font);
    letter-spacing: 0;
    --break-progress: 0;
}

body::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 78%);
}

a {
    color: inherit;
    text-decoration: none;
}

img,
canvas,
video {
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

h1,
h2,
h3,
h4,
.brand,
.eyebrow,
.hero-title,
.section-copy h2,
.section-copy h3,
.section-heading h2,
.service-title-card h3,
.pricing-card h3,
.included-card h3,
.skill-card h3,
.project-card h3,
.city-hero-content h1,
.city-closing h2 {
    font-family: var(--font-heading);
    letter-spacing: 0;
}

.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;
}

#particle-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.site-shell {
    position: relative;
    z-index: 1;
    width: 100%;
    transition: transform 320ms ease;
}

body.section-gliding .site-shell {
    will-change: transform;
}

.container {
    width: min(100% - 40px, 1180px);
    margin: 0 auto;
}

.glass-panel {
    border: 1px solid var(--line);
    background: var(--panel);
    box-shadow: var(--shadow);
    backdrop-filter: blur(8px) saturate(112%);
    -webkit-backdrop-filter: blur(8px) saturate(112%);
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--green);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.eyebrow::after {
    content: "";
    display: block;
    width: 58px;
    height: 2px;
    margin-top: 12px;
    background: linear-gradient(90deg, var(--primary), transparent);
}
.mobile-break {
    display: none;
}

[data-animate] {
    opacity: 0;
    transform: translate3d(0, 34px, 0);
    transition: opacity 700ms ease, transform 900ms ease;
}

[data-animate].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}
