/* Carito Ltd. — sleek bold design system */
:root {
    --void: #020203;
    --bg: #070709;
    --bg-2: #0c0c10;
    --surface: #111116;
    --surface-2: #18181f;
    --stroke: rgba(255, 255, 255, 0.06);
    --stroke-bright: rgba(255, 255, 255, 0.12);
    --text: #f8f8fb;
    --text-2: rgba(248, 248, 251, 0.72);
    --text-3: rgba(248, 248, 251, 0.48);
    --accent: #dfff4a;
    --accent-hot: #f5ff8a;
    --accent-dim: rgba(223, 255, 74, 0.14);
    --accent-glow: rgba(223, 255, 74, 0.45);
    --violet: #8b7cff;
    --violet-dim: rgba(139, 124, 255, 0.2);
    --font-display: "Outfit", system-ui, sans-serif;
    --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 36px;
    --shell: min(1180px, calc(100% - 40px));
    --header-h: 76px;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--text-2);
    background: var(--void);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--text);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.08;
}

a {
    color: var(--accent);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.22em;
    transition: color 0.2s var(--ease);
}

a:hover {
    color: var(--accent-hot);
}

.shell {
    width: var(--shell);
    margin-inline: auto;
}

.shell--narrow {
    max-width: 720px;
}

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

.skip-link {
    position: absolute;
    left: -9999px;
    top: 12px;
    z-index: 10000;
    padding: 12px 20px;
    background: var(--accent);
    color: var(--void);
    font-weight: 700;
    border-radius: var(--radius-sm);
}

.skip-link:focus {
    left: 16px;
}

/* — Header — */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s;
}

.site-header.is-scrolled {
    background: rgba(7, 7, 9, 0.82);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    border-bottom-color: var(--stroke);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--text);
}

.logo:hover {
    color: var(--text);
}

.logo__mark {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(145deg, var(--accent-dim), rgba(139, 124, 255, 0.08));
    border: 1px solid var(--stroke-bright);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--accent);
    box-shadow: 0 0 40px var(--accent-dim);
}

.logo__text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: -0.04em;
}

.site-nav__list {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav__list a {
    display: inline-block;
    padding: 11px 16px;
    color: var(--text-2);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 999px;
    transition: color 0.2s, background 0.2s;
}

.site-nav__list a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
}

.site-nav__list .nav-cta {
    margin-left: 12px;
    padding-inline: 22px;
    background: var(--accent);
    color: var(--void);
    font-weight: 700;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08) inset, 0 4px 24px var(--accent-dim);
}

.site-nav__list .nav-cta:hover {
    background: var(--accent-hot);
    color: var(--void);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid var(--stroke-bright);
    border-radius: 14px;
    background: var(--surface);
    cursor: pointer;
}

.nav-toggle__bar {
    display: block;
    width: 22px;
    height: 2px;
    margin: 0 auto;
    background: var(--text);
    border-radius: 1px;
}

@media (max-width: 880px) {
    .nav-toggle {
        display: flex;
    }

    .site-nav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        padding: 20px 24px 32px;
        background: rgba(7, 7, 9, 0.98);
        border-bottom: 1px solid var(--stroke);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.4s var(--ease), opacity 0.3s;
    }

    .site-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .site-nav__list {
        flex-direction: column;
        align-items: stretch;
    }

    .site-nav__list .nav-cta {
        margin-left: 0;
        text-align: center;
    }
}

/* — Hero — */
.hero {
    position: relative;
    min-height: min(100dvh, 920px);
    padding-top: calc(var(--header-h) + clamp(48px, 10vw, 100px));
    padding-bottom: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 100% 80% at 50% -30%, rgba(223, 255, 74, 0.22), transparent 55%),
        radial-gradient(ellipse 60% 50% at 100% 20%, rgba(139, 124, 255, 0.15), transparent),
        radial-gradient(ellipse 50% 40% at 0% 100%, rgba(223, 255, 74, 0.08), transparent),
        linear-gradient(180deg, var(--void) 0%, var(--bg) 100%);
}

.hero__bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse 75% 65% at 50% 35%, black 15%, transparent 75%);
    pointer-events: none;
}

.hero__accent-line {
    position: absolute;
    top: 22%;
    right: -5%;
    width: 45%;
    max-width: 520px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.5;
    transform: rotate(-8deg);
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 900px) {
    .hero__accent-line {
        display: none;
    }
}

.hero__content {
    position: relative;
    z-index: 2;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-display);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-3);
    margin: 0 0 28px;
}

.eyebrow__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 16px var(--accent-glow);
}

.eyebrow--on-dark {
    color: var(--text-3);
}

.hero__title {
    font-size: clamp(2.75rem, 10vw, 5.75rem);
    font-weight: 800;
    margin: 0 0 32px;
    max-width: 100%;
    letter-spacing: -0.045em;
    line-height: 0.98;
}

.hero__title-line {
    display: block;
}

.hero__title-line--gradient {
    background: linear-gradient(105deg, var(--text) 0%, var(--text) 35%, var(--accent) 85%, var(--accent-hot) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding-bottom: 0.06em;
}

.hero__title-line--sub {
    display: block;
    margin-top: 0.2em;
    font-size: clamp(1.25rem, 3.5vw, 2rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--text-2);
    line-height: 1.2;
}

.hero__lead {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    max-width: 38ch;
    margin: 0 0 44px;
    color: var(--text-2);
    font-weight: 400;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--text-3);
}

.hero__scroll::after {
    content: "";
    display: block;
    width: 1px;
    height: 48px;
    margin: 16px auto 0;
    background: linear-gradient(to bottom, var(--accent), transparent);
}

/* — Buttons — */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 700;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.25s var(--ease-bounce), background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.25s;
}

.btn--primary {
    background: var(--accent);
    color: var(--void);
    box-shadow: 0 4px 32px var(--accent-dim);
}

.btn--primary:hover {
    background: var(--accent-hot);
    color: var(--void);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(223, 255, 74, 0.25);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--stroke-bright);
    color: var(--text);
    backdrop-filter: blur(8px);
}

.btn--ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
    background: rgba(223, 255, 74, 0.06);
}

.btn--full {
    width: 100%;
}

/* — Sections — */
.section {
    padding: clamp(88px, 14vw, 140px) 0;
    position: relative;
}

.section__head {
    margin-bottom: 64px;
    max-width: 720px;
}

.section__head--wide {
    max-width: 900px;
}

.section__head--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section__title {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 800;
    margin: 0 0 20px;
}

.section__title--xl {
    font-size: clamp(2.25rem, 5.5vw, 4rem);
    line-height: 1.02;
}

.title--light {
    color: var(--text);
}

.section__intro {
    margin: 0;
    font-size: 1.1875rem;
    color: var(--text-2);
    max-width: 52ch;
}

.section__head--center .section__intro {
    margin-inline: auto;
}

.section__intro--muted {
    color: rgba(248, 248, 251, 0.55);
}

/* — Services — */
.section--services {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
    border-top: 1px solid var(--stroke);
}

.service-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1180px;
    margin-inline: auto;
}

@media (max-width: 1020px) {
    .service-grid {
        grid-template-columns: 1fr;
        max-width: none;
    }
}

.service-card {
    position: relative;
    padding: 40px 36px 44px;
    background: var(--surface);
    border: 1px solid var(--stroke);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: transform 0.4s var(--ease), border-color 0.35s, box-shadow 0.4s;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(223, 255, 74, 0.4), transparent 45%, rgba(139, 124, 255, 0.25));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--stroke-bright);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(223, 255, 74, 0.08);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card__watermark {
    position: absolute;
    top: -8px;
    right: 8px;
    font-family: var(--font-display);
    font-size: clamp(5rem, 14vw, 8rem);
    font-weight: 800;
    line-height: 1;
    color: rgba(255, 255, 255, 0.03);
    letter-spacing: -0.06em;
    pointer-events: none;
    user-select: none;
}

.service-card__icon {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 24px;
    letter-spacing: 0.12em;
}

.service-card__title {
    position: relative;
    z-index: 1;
    font-size: clamp(1.35rem, 2vw, 1.6rem);
    font-weight: 800;
    margin: 0 0 14px;
}

.service-card__text {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.7;
}

/* — Split / quote — */
.section--split {
    background: var(--void);
    border-top: 1px solid var(--stroke);
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 72px);
    align-items: center;
}

.split--reverse {
    grid-template-columns: 1fr 1fr;
}

.split--reverse .split__text {
    order: 2;
}

.split--reverse .seo-aside {
    order: 1;
}

@media (max-width: 880px) {
    .split,
    .split--reverse {
        grid-template-columns: 1fr;
    }

    .split--reverse .split__text,
    .split--reverse .seo-aside {
        order: unset;
    }
}

.statement-block {
    margin: 0;
    width: fit-content;
    max-width: 100%;
    padding: 24px 28px;
    background: linear-gradient(165deg, var(--surface-2) 0%, var(--surface) 100%);
    border: 1px solid var(--stroke);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.statement-block__text {
    margin: 0;
    max-width: 42ch;
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -0.025em;
    color: var(--text);
}


/* — Process — */
.section--process {
    background: var(--bg-2);
    border-top: 1px solid var(--stroke);
}

.process-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0;
    max-width: 880px;
    margin-inline: auto;
}

.process-step {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 28px;
    padding: 40px 0;
    border-bottom: 1px solid var(--stroke);
    align-items: start;
}

.process-step:first-child {
    padding-top: 0;
}

.process-step:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.process-step__num {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(180deg, var(--accent) 0%, rgba(223, 255, 74, 0.35) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.process-step__title {
    font-size: clamp(1.2rem, 2vw, 1.45rem);
    font-weight: 800;
    margin: 0 0 10px;
}

.process-step__body p {
    margin: 0;
    font-size: 1.05rem;
}

@media (max-width: 600px) {
    .process-step {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* — Aerial — */
.section--aerial {
    position: relative;
    padding: 0;
    overflow: hidden;
    min-height: 580px;
    display: flex;
    align-items: stretch;
}

.aerial__visual {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(110deg, rgba(2, 2, 3, 0.97) 0%, rgba(2, 2, 3, 0.75) 48%, rgba(2, 2, 3, 0.4) 100%),
        radial-gradient(ellipse 100% 80% at 70% 0%, rgba(223, 255, 74, 0.12), transparent 50%),
        radial-gradient(ellipse 60% 50% at 10% 90%, rgba(139, 124, 255, 0.12), transparent 50%),
        linear-gradient(195deg, #0a0a12 0%, #050508 50%, #08081a 100%);
}

.aerial__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        -12deg,
        transparent,
        transparent 80px,
        rgba(255, 255, 255, 0.02) 80px,
        rgba(255, 255, 255, 0.02) 81px
    );
    pointer-events: none;
}

.aerial__content {
    position: relative;
    z-index: 1;
    padding: clamp(88px, 12vw, 132px) 0;
    width: var(--shell);
    margin-inline: auto;
}

.aerial-grid {
    list-style: none;
    margin: 56px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 640px) {
    .aerial-grid {
        grid-template-columns: 1fr;
    }
}

.aerial-grid li {
    padding: 24px 22px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--stroke);
    border-radius: var(--radius-md);
    transition: border-color 0.3s, background 0.3s;
}

.aerial-grid li:hover {
    border-color: rgba(223, 255, 74, 0.25);
    background: rgba(223, 255, 74, 0.04);
}

.aerial-grid h3 {
    font-size: 1.0625rem;
    font-weight: 800;
    margin: 0 0 10px;
    color: var(--text);
}

.aerial-grid p {
    margin: 0;
    font-size: 0.98rem;
    color: rgba(248, 248, 251, 0.62);
}

/* — Marketing pills — */
.pill-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 700px) {
    .pill-grid {
        grid-template-columns: 1fr;
    }
}

.pill-card {
    padding: 32px 28px;
    background: var(--surface);
    border: 1px solid var(--stroke);
    border-radius: var(--radius-lg);
    transition: transform 0.35s var(--ease), border-color 0.3s, box-shadow 0.35s;
}

.pill-card:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 124, 255, 0.35);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.pill-card__title {
    font-size: 1.125rem;
    font-weight: 800;
    margin: 0 0 12px;
    color: var(--accent);
    letter-spacing: -0.02em;
}

.pill-card p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.65;
}

/* — SEO — */
.section--seo {
    background: var(--void);
    border-top: 1px solid var(--stroke);
}

.seo-aside {
    width: 100%;
    min-width: 0;
}

.seo-panel {
    position: relative;
    padding: clamp(28px, 4vw, 36px);
    background: var(--surface);
    border: 1px solid var(--stroke);
    border-radius: var(--radius-xl);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.seo-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 90% 70% at 100% 0%, rgba(223, 255, 74, 0.06), transparent 55%);
    pointer-events: none;
}

.seo-panel__kicker {
    position: relative;
    z-index: 1;
    margin: 0 0 22px;
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-3);
}

.seo-panel__grid {
    position: relative;
    z-index: 1;
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (max-width: 520px) {
    .seo-panel__grid {
        grid-template-columns: 1fr;
    }
}

.seo-panel__card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0;
    padding: 20px 18px 22px;
    background: rgba(8, 8, 12, 0.65);
    border: 1px solid var(--stroke);
    border-radius: var(--radius-md);
    transition: border-color 0.25s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.seo-panel__card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 50%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.9;
}

.seo-panel__card:hover {
    border-color: var(--stroke-bright);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.seo-panel__icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    color: var(--accent);
    opacity: 0.92;
    transition: color 0.25s var(--ease), opacity 0.25s var(--ease), transform 0.3s var(--ease);
}

.seo-panel__icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.seo-panel__card:hover .seo-panel__icon {
    opacity: 1;
    color: var(--accent-hot);
    transform: scale(1.04);
}

.seo-panel__label {
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: -0.02em;
    color: var(--text-2);
}

/* — About — */
.section--about {
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--stroke);
    background: var(--void);
}

.about__ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 55% 45% at 15% 30%, rgba(223, 255, 74, 0.06), transparent 55%),
        radial-gradient(ellipse 50% 40% at 85% 70%, rgba(139, 124, 255, 0.06), transparent 50%),
        linear-gradient(180deg, var(--bg-2) 0%, var(--void) 45%, var(--bg) 100%);
}

.about__ambient::after {
    content: "C";
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-size: min(42vw, 520px);
    font-weight: 800;
    line-height: 1;
    color: rgba(255, 255, 255, 0.02);
    letter-spacing: -0.08em;
    user-select: none;
}

@media (max-width: 880px) {
    .about__ambient::after {
        font-size: 50vw;
        right: -10%;
        opacity: 0.5;
    }
}

.about__wrap {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
    gap: clamp(40px, 7vw, 88px);
    align-items: start;
    max-width: 1080px;
    margin-inline: auto;
}

@media (max-width: 880px) {
    .about__wrap {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.about__col--meta {
    padding-top: 8px;
}

.about__eyebrow {
    margin-bottom: 20px;
}

.about__title {
    margin: 0 0 16px;
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 6vw, 4.25rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 0.95;
    color: var(--text);
}

.about__region {
    margin: 0;
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-3);
}

.about__rule {
    width: 48px;
    height: 3px;
    margin-top: 28px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--accent), rgba(223, 255, 74, 0.15));
}

.about__card {
    padding: clamp(28px, 4vw, 40px) clamp(24px, 3vw, 36px);
    background: linear-gradient(155deg, rgba(17, 17, 22, 0.9) 0%, rgba(8, 8, 12, 0.95) 100%);
    border: 1px solid var(--stroke);
    border-radius: var(--radius-xl);
    box-shadow: 0 28px 100px rgba(0, 0, 0, 0.45);
}

.about__lead {
    margin: 0 0 1.25em;
    font-size: clamp(1.125rem, 2vw, 1.3125rem);
    font-weight: 500;
    line-height: 1.65;
    color: var(--text);
}

.about__text {
    margin: 0;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-2);
}

.about__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.about__tags li {
    padding: 10px 16px;
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text-2);
    background: rgba(223, 255, 74, 0.06);
    border: 1px solid var(--stroke);
    border-radius: 999px;
    transition: border-color 0.25s var(--ease), background 0.25s;
}

.about__tags li:hover {
    border-color: rgba(223, 255, 74, 0.25);
    background: rgba(223, 255, 74, 0.09);
}

/* — Contact — */
.section--contact {
    background: linear-gradient(165deg, #050508 0%, #0a0a14 40%, #12101c 100%);
    border-top: 1px solid var(--stroke);
    position: relative;
}

.section--contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(223, 255, 74, 0.4), transparent);
}

.contact-shell {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 72px);
    align-items: start;
}

@media (max-width: 880px) {
    .contact-shell {
        grid-template-columns: 1fr;
    }
}

.flash {
    grid-column: 1 / -1;
    padding: 18px 22px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: -16px;
}

.flash--success {
    background: rgba(80, 220, 150, 0.1);
    border: 1px solid rgba(80, 220, 150, 0.35);
    color: #9cf0c4;
}

.flash--error {
    background: rgba(255, 100, 100, 0.08);
    border: 1px solid rgba(255, 120, 120, 0.35);
    color: #ffb8b8;
}

.contact__intro .section__title {
    margin-bottom: 16px;
}

.contact__direct {
    list-style: none;
    margin: 32px 0 0;
    padding: 0;
}

.contact__direct li {
    margin-bottom: 12px;
}

.contact__direct a {
    font-size: clamp(1.125rem, 2vw, 1.35rem);
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--accent);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.contact__direct a:hover {
    color: var(--accent-hot);
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.contact-form {
    padding: 40px 36px;
    background: rgba(17, 17, 22, 0.6);
    border: 1px solid var(--stroke-bright);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(12px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

.form-row {
    margin-bottom: 22px;
}

.form-row label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-display);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: 10px;
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 16px 18px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text);
    background: rgba(2, 2, 3, 0.5);
    border: 1px solid var(--stroke);
    border-radius: var(--radius-sm);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: rgba(223, 255, 74, 0.45);
    box-shadow: 0 0 0 4px var(--accent-dim);
}

.form-row textarea {
    resize: vertical;
    min-height: 140px;
}

.form-note {
    margin: 18px 0 0;
    font-size: 0.8125rem;
    color: var(--text-3);
}

/* — Footer — */
.site-footer {
    padding: 64px 0 40px;
    border-top: 1px solid var(--stroke);
    background: var(--void);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--stroke);
}

@media (max-width: 800px) {
    .footer__grid {
        grid-template-columns: 1fr;
    }
}

.logo--footer {
    pointer-events: none;
}

.footer__tagline {
    margin: 14px 0 0;
    font-size: 0.9375rem;
    color: var(--text-3);
    font-weight: 500;
}

.footer__heading {
    font-size: 0.6875rem;
    font-weight: 800;
    font-family: var(--font-display);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-3);
    margin: 0 0 18px;
}

.footer__address {
    font-style: normal;
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--text-2);
}

.footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer__links li {
    margin-bottom: 12px;
    font-size: 0.9375rem;
}

.footer__links a {
    color: var(--text-2);
    text-decoration: none;
    font-weight: 500;
}

.footer__links a:hover {
    color: var(--accent);
}

.footer__muted {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-3);
    margin-top: 6px;
}

.footer__bottom {
    padding-top: 28px;
}

.footer__copy {
    margin: 0;
    font-size: 0.8125rem;
    color: var(--text-3);
}

/* — Reveal — */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.8s var(--ease), transform 0.85s var(--ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

main {
    padding-top: 0;
}
