:root {
    --bg: #07080d;
    --bg-soft: #0c0f17;
    --panel: #0f1320;
    --panel-2: #121828;
    --text: #f8f8f5;
    --muted: #b6bccb;
    --muted-strong: #d7dbe5;
    --gold-1: #f6e09a;
    --gold-2: #e1bc5c;
    --gold-3: #bb7d18;
    --silver: #dfe3eb;
    --line: rgba(255, 255, 255, 0.07);
    --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
    --glow-gold: 0 0 30px rgba(246, 224, 154, 0.24);
    --glow-gold-strong: 0 0 70px rgba(225, 188, 92, 0.20);
    --glow-blue: 0 0 70px rgba(76, 116, 255, 0.12);
    --radius-xl: 30px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --container: min(1240px, calc(100% - 34px));
    --header-height: 88px;
    --transition: 320ms cubic-bezier(.2, .8, .2, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 14% 8%, rgba(246, 224, 154, 0.15), transparent 0 28%),
        radial-gradient(circle at 82% 14%, rgba(78, 112, 255, 0.12), transparent 0 26%),
        radial-gradient(circle at 50% 110%, rgba(225, 188, 92, 0.12), transparent 0 28%),
        linear-gradient(180deg, #040507 0%, #090b12 38%, #06070a 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

body::before,
body::after {
    content: "";
    position: fixed;
    pointer-events: none;
    z-index: 0;
    filter: blur(80px);
    opacity: 0.8;
}

body::before {
    width: 380px;
    height: 380px;
    left: -80px;
    top: 120px;
    background: rgba(246, 224, 154, 0.13);
}

body::after {
    width: 360px;
    height: 360px;
    right: -100px;
    top: 260px;
    background: rgba(68, 108, 255, 0.1);
}

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

img {
    display: block;
    max-width: 100%;
}

h1,
h2,
h3,
h4,
p {
    margin: 0;
}

.container {
    width: var(--container);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-shell {
    position: relative;
    padding: 40px 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    transition:
        transform var(--transition),
        background var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
    background: rgba(7, 9, 14, 0.62);
    backdrop-filter: blur(22px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.16);
}

.site-header.is-hidden {
    transform: translateY(calc(-100% - 10px));
}

.site-header.is-solid {
    background: rgba(8, 10, 16, 0.86);
    border-color: rgba(246, 224, 154, 0.09);
    box-shadow:
        0 22px 60px rgba(0, 0, 0, 0.30),
        0 0 30px rgba(246, 224, 154, 0.05);
}

.nav-shell {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-logo {
    position: relative;
    width: 58px;
    height: 58px;
    padding: 5px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(246, 224, 154, 0.16), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(246, 224, 154, 0.18);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.25),
        0 0 30px rgba(225, 188, 92, 0.18);
}

.brand-logo::before {
    content: "";
    position: absolute;
    inset: -35%;
    background: conic-gradient(from 180deg, transparent, rgba(246, 224, 154, 0.36), transparent 55%);
    animation: orbit 8.5s linear infinite;
}

.brand-logo img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.brand-copy strong,
.brand-copy span {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.brand-copy strong {
    font-size: 1.1rem;
    letter-spacing: -0.03em;
}

.brand-copy span {
    font-size: 0.83rem;
    color: var(--muted);
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(246, 224, 154, 0.16);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition);
}

.nav-toggle:hover {
    transform: translateY(-1px);
    border-color: rgba(246, 224, 154, 0.28);
    background: rgba(255, 255, 255, 0.05);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    position: relative;
    transition:
        transform var(--transition),
        opacity var(--transition);
}

.nav-toggle span::before,
.nav-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
}

.nav-toggle span::before {
    top: -6px;
}

.nav-toggle span::after {
    top: 6px;
}

.nav-toggle[aria-expanded="true"] span {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
    top: 0;
    transform: rotate(-45deg);
}

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

.nav-link,
.nav-cta {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border-radius: 15px;
    font-weight: 800;
    transition:
        transform var(--transition),
        background var(--transition),
        border-color var(--transition),
        color var(--transition),
        box-shadow var(--transition);
}

.nav-link {
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    color: var(--muted-strong);
}

.nav-link:hover,
.nav-link.is-active {
    transform: translateY(-1px);
    border-color: rgba(246, 224, 154, 0.18);
    background: rgba(246, 224, 154, 0.07);
    color: #fff7d8;
    box-shadow: 0 0 20px rgba(246, 224, 154, 0.12);
}

.nav-cta {
    border: 1px solid rgba(246, 224, 154, 0.22);
    background: linear-gradient(135deg, rgba(246, 224, 154, 0.18), rgba(225, 188, 92, 0.12));
    color: #fff3cc;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 0 24px rgba(246, 224, 154, 0.12);
}

.nav-cta:hover {
    transform: translateY(-2px);
    border-color: rgba(246, 224, 154, 0.32);
}

.hero {
    padding-top: 78px;
    padding-bottom: 44px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 30%, rgba(246, 224, 154, 0.08), transparent 0 26%),
        radial-gradient(circle at 70% 20%, rgba(72, 110, 255, 0.06), transparent 0 22%);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 28px;
    align-items: start;
}

.hero-copy,
.glass-card,
.metric-card,
.service-card,
.value-card,
.timeline-card,
.contact-card,
.faq-item,
.footer-shell,
.content-card {
    position: relative;
}

.glass-card,
.metric-card,
.service-card,
.value-card,
.timeline-card,
.contact-card,
.faq-item,
.footer-shell,
.content-card {
    overflow: hidden;
}

.hero-copy {
    overflow: visible;
    padding-right: 10px;
}

.hero-copy::before,
.glass-card::before,
.service-card::before,
.timeline-card::before,
.contact-card::before,
.footer-shell::before,
.content-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent 38%, rgba(246, 224, 154, 0.06));
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(246, 224, 154, 0.14);
    color: #fff2c7;
    font-size: 0.9rem;
    font-weight: 800;
    box-shadow: 0 0 24px rgba(246, 224, 154, 0.10);
}

.eyebrow-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(180deg, #fff4c8, var(--gold-2));
    box-shadow: 0 0 18px rgba(246, 224, 154, 0.55);
    animation: pulse 2.2s infinite;
}

.hero-brand-label {
    display: block;
    margin-top: 20px;
    margin-bottom: 12px;
    color: #fff0c8;
    opacity: 0.9;
    text-transform: uppercase;
    font-size: clamp(0.95rem, 1.4vw, 1.08rem);
    font-weight: 800;
    letter-spacing: 0.14em;
}

.hero-title {
    max-width: 780px;
    margin: 0 0 18px;
    padding-bottom: 0.18em;
    font-size: clamp(2.95rem, 6.4vw, 5.8rem);
    letter-spacing: -0.048em;
}

.hero-title .gradient {
    display: inline-block;
    background: linear-gradient(135deg, #fff4c8 0%, var(--gold-1) 35%, var(--gold-2) 72%, var(--silver) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 44px rgba(246, 224, 154, 0.15);
}

.hero-desc {
    max-width: 780px;
    font-size: clamp(1.03rem, 1.6vw, 1.16rem);
    line-height: 1.95;
    color: var(--muted);
}

.hero-note {
    max-width: 740px;
    margin-top: 20px;
    padding: 18px 20px;
    border-radius: 22px;
    border: 1px solid rgba(246, 224, 154, 0.14);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.018));
    box-shadow:
        inset 0 0 30px rgba(246, 224, 154, 0.03),
        0 0 28px rgba(246, 224, 154, 0.05);
    color: #efe8d6;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.button,
.mini-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 800;
    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition),
        background var(--transition),
        color var(--transition);
}

.button {
    min-height: 56px;
    padding: 0 22px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    letter-spacing: -0.02em;
}

.button:hover,
.mini-button:hover {
    transform: translateY(-2px);
}

.button-primary,
.mini-button.primary {
    background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
    border-color: transparent;
    color: #2b1d07;
    box-shadow:
        0 14px 34px rgba(225, 188, 92, 0.22),
        0 0 26px rgba(246, 224, 154, 0.18);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    border-color: rgba(246, 224, 154, 0.14);
    box-shadow: 0 0 24px rgba(246, 224, 154, 0.06);
}

.button-ghost,
.mini-button.secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--muted-strong);
    border-color: rgba(246, 224, 154, 0.14);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
}

.metric-card,
.glass-card,
.service-card,
.value-card,
.timeline-card,
.contact-card,
.faq-item,
.footer-shell,
.content-card {
    background: linear-gradient(180deg, rgba(18, 22, 34, 0.9), rgba(10, 12, 18, 0.98));
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.metric-card {
    padding: 18px;
    border-radius: 22px;
    box-shadow:
        0 18px 44px rgba(0, 0, 0, 0.28),
        0 0 26px rgba(246, 224, 154, 0.06);
}

.metric-card small {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 0.84rem;
}

.metric-card strong {
    display: block;
    color: #fff8e1;
    font-size: 1.12rem;
    line-height: 1.48;
}

.glass-card {
    min-height: 100%;
    padding: 30px;
    border-radius: var(--radius-xl);
    backdrop-filter: blur(22px);
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.34),
        0 0 44px rgba(72, 110, 255, 0.06),
        0 0 34px rgba(246, 224, 154, 0.07);
}

.badge-outline {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(246, 224, 154, 0.16);
    background: rgba(246, 224, 154, 0.04);
    color: #fff0c4;
    font-size: 0.83rem;
    font-weight: 800;
}

.hero-side-title {
    margin-top: 14px;
    font-size: clamp(1.8rem, 3vw, 2.65rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.hero-side-desc {
    margin-top: 14px;
    color: var(--muted);
    line-height: 1.86;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.highlight-item {
    padding: 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.highlight-item:hover {
    transform: translateY(-4px);
    border-color: rgba(246, 224, 154, 0.18);
    box-shadow: 0 0 34px rgba(246, 224, 154, 0.08);
}

.highlight-item strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
    color: #fff4d2;
}

.highlight-item span {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.66;
}

.orbital-ring {
    position: absolute;
    border-radius: 999px;
    border: 1px solid rgba(246, 224, 154, 0.12);
    box-shadow:
        inset 0 0 30px rgba(246, 224, 154, 0.02),
        0 0 34px rgba(246, 224, 154, 0.05);
    pointer-events: none;
}

.orbital-ring.one {
    width: 460px;
    height: 460px;
    right: -160px;
    top: -140px;
    animation: spin 26s linear infinite;
}

.orbital-ring.two {
    width: 320px;
    height: 320px;
    right: -88px;
    top: 32px;
    animation: spin-reverse 18s linear infinite;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1.02;
    letter-spacing: -0.06em;
}

.section-heading p {
    max-width: 740px;
    color: var(--muted);
    line-height: 1.84;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.content-card {
    padding: 28px;
    border-radius: var(--radius-xl);
}

.content-card h3 {
    margin-bottom: 14px;
    font-size: 1.58rem;
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.content-card p {
    color: var(--muted);
    line-height: 1.88;
}

.bullet-list,
.service-list {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
}

.bullet-list li,
.service-list li {
    position: relative;
    padding-left: 18px;
    color: #e4e1d5;
    line-height: 1.8;
}

.bullet-list li + li,
.service-list li + li {
    margin-top: 10px;
}

.bullet-list li::before,
.service-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--gold-1), var(--gold-2));
    box-shadow: 0 0 12px rgba(246, 224, 154, 0.4);
}

.service-grid,
.reason-grid,
.timeline-grid,
.faq-grid {
    display: grid;
    gap: 18px;
}

.service-grid,
.timeline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.reason-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.value-card,
.timeline-card,
.contact-card {
    padding: 26px;
    border-radius: var(--radius-xl);
    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.service-card:hover,
.value-card:hover,
.timeline-card:hover,
.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(246, 224, 154, 0.16);
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.34),
        0 0 36px rgba(246, 224, 154, 0.08);
}

.service-status,
.timeline-phase {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.service-status.primary,
.timeline-phase {
    color: #2c1d07;
    background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
    box-shadow: 0 0 24px rgba(246, 224, 154, 0.18);
}

.service-status.secondary {
    color: #fff0c4;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(246, 224, 154, 0.16);
}

.service-card h3,
.value-card h3,
.timeline-card h3,
.contact-card h3 {
    margin-top: 16px;
    font-size: 1.62rem;
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.service-card p,
.value-card p,
.timeline-card p,
.contact-card p {
    margin-top: 12px;
    color: var(--muted);
    line-height: 1.84;
}

.service-footer {
    margin-top: 22px;
}

.mini-button {
    min-height: 48px;
    padding: 0 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.value-card {
    min-height: 100%;
}

.value-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
    box-shadow: 0 0 24px rgba(246, 224, 154, 0.16);
    color: #2a1d08;
    font-size: 0.96rem;
    font-weight: 900;
}

.roadmap-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.roadmap-pill {
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(246, 224, 154, 0.12);
    background: rgba(255, 255, 255, 0.025);
    color: #f5ecd0;
    font-size: 0.88rem;
    box-shadow: 0 0 20px rgba(246, 224, 154, 0.05);
}

.faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-item {
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition:
        border-color var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}

.faq-item:hover {
    transform: translateY(-2px);
    border-color: rgba(246, 224, 154, 0.16);
    box-shadow: 0 0 32px rgba(246, 224, 154, 0.07);
}

.faq-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 24px;
    border: 0;
    background: transparent;
    color: var(--text);
    cursor: pointer;
    font: inherit;
    text-align: left;
}

.faq-button strong {
    display: block;
    font-size: 1rem;
    line-height: 1.5;
}

.faq-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition:
        transform var(--transition),
        background var(--transition),
        border-color var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    color: var(--muted);
    line-height: 1.84;
    transition:
        max-height var(--transition),
        padding var(--transition);
}

.faq-item.is-open .faq-answer {
    max-height: 260px;
    padding: 0 24px 22px;
}

.faq-item.is-open .faq-icon {
    transform: rotate(45deg);
    border-color: rgba(246, 224, 154, 0.16);
    background: rgba(246, 224, 154, 0.08);
}

.contact-shell {
    position: relative;
    overflow: hidden;
    padding: 32px;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(16, 19, 29, 0.9), rgba(10, 11, 17, 0.99));
    border: 1px solid rgba(246, 224, 154, 0.10);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.34),
        0 0 46px rgba(246, 224, 154, 0.08);
}

.contact-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at top right, rgba(246, 224, 154, 0.12), transparent 0 28%),
        radial-gradient(circle at bottom left, rgba(70, 110, 255, 0.06), transparent 0 24%);
}

.contact-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
    gap: 18px;
}

.contact-info-stack {
    display: grid;
    gap: 16px;
}

.contact-title {
    margin-bottom: 14px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.contact-lead {
    max-width: 720px;
    color: var(--muted);
    line-height: 1.88;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.contact-card h3 {
    margin-top: 0;
    font-size: 1.15rem;
}

.contact-meta {
    margin-top: 10px;
    color: #fff2ca;
    font-weight: 700;
    line-height: 1.68;
    word-break: break-word;
}

.contact-hint {
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer {
    padding: 18px 0 36px;
}

.footer-shell {
    padding: 26px;
    border-radius: 28px;
}

.footer-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: start;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-copy h3 {
    font-size: 2rem;
    line-height: 1;
    letter-spacing: -0.05em;
}

.footer-copy p {
    max-width: 760px;
    margin-top: 10px;
    color: var(--muted);
    line-height: 1.84;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
    align-content: flex-start;
}

.footer-links a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    color: var(--muted-strong);
    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition);
}

.footer-links a:hover {
    transform: translateY(-2px);
    border-color: rgba(246, 224, 154, 0.16);
    background: rgba(246, 224, 154, 0.05);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 16px;
    color: #a8adbe;
    font-size: 0.92rem;
}

.divider-glow {
    height: 1px;
    margin-top: 18px;
    background: linear-gradient(90deg, transparent, rgba(246, 224, 154, 0.34), transparent);
}

.cursor-glow {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 0;
    width: 320px;
    height: 320px;
    pointer-events: none;
    border-radius: 999px;
    transform: translate(-50%, -50%);
    opacity: 0.82;
    filter: blur(24px);
    transition: opacity 180ms ease;
    background: radial-gradient(
        circle,
        rgba(246, 224, 154, 0.16) 0%,
        rgba(246, 224, 154, 0.08) 24%,
        rgba(72, 110, 255, 0.06) 42%,
        transparent 70%
    );
}

.neon-grid {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 88px 88px;
    -webkit-mask-image: radial-gradient(circle at center, black 22%, transparent 78%);
    mask-image: radial-gradient(circle at center, black 22%, transparent 78%);
}

.reveal {
    opacity: 0;
    transform: translateY(48px) scale(0.985);
    filter: blur(10px);
    transition:
        opacity 820ms cubic-bezier(.2, .8, .2, 1),
        transform 820ms cubic-bezier(.2, .8, .2, 1),
        filter 820ms cubic-bezier(.2, .8, .2, 1),
        box-shadow 320ms ease,
        border-color 320ms ease;
    will-change: transform, opacity, filter;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.reveal.is-exiting-up {
    opacity: 0;
    transform: translateY(-42px) scale(0.982);
    filter: blur(9px);
}

.reveal.is-exiting-down {
    opacity: 0;
    transform: translateY(42px) scale(0.982);
    filter: blur(9px);
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.72;
    }
}

@keyframes orbit {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes spin-reverse {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

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

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    .reveal,
    .reveal.is-visible,
    .reveal.is-exiting-up,
    .reveal.is-exiting-down {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }

    .cursor-glow,
    .neon-grid {
        display: none;
    }
}

@media (max-width: 1120px) {
    .hero-grid,
    .grid-2,
    .service-grid,
    .timeline-grid,
    .contact-grid,
    .footer-top {
        grid-template-columns: 1fr;
    }

    .reason-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-links {
        justify-content: flex-start;
    }

    .hero-copy {
        padding-right: 0;
    }
}

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

    .nav-menu {
        position: absolute;
        top: calc(100% + 10px);
        left: 16px;
        right: 16px;
        display: grid;
        gap: 10px;
        padding: 14px;
        border-radius: 22px;
        border: 1px solid rgba(255, 255, 255, 0.06);
        background: rgba(8, 10, 16, 0.97);
        backdrop-filter: blur(18px);
        box-shadow: var(--shadow);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition:
            opacity var(--transition),
            transform var(--transition),
            visibility var(--transition);
    }

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

    .nav-link,
    .nav-cta {
        width: 100%;
        justify-content: flex-start;
    }

    .hero {
        padding-top: 56px;
    }

    .hero-metrics,
    .highlight-grid,
    .faq-grid,
    .reason-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    :root {
        --container: min(100% - 20px, 100% - 20px);
    }

    .site-header {
        backdrop-filter: blur(14px);
    }

    .nav-shell {
        min-height: 78px;
    }

    .brand-logo {
        width: 50px;
        height: 50px;
        border-radius: 16px;
    }

    .hero {
        padding-top: 50px;
        padding-bottom: 26px;
    }

    .hero-brand-label {
        margin-top: 16px;
        margin-bottom: 10px;
        font-size: 0.9rem;
        letter-spacing: 0.10em;
    }

    .hero-title {
        margin: 0 0 14px;
        padding-bottom: 0.14em;
        font-size: clamp(2.42rem, 12vw, 3.28rem);
        letter-spacing: -0.04em;
    }

    .glass-card,
    .content-card,
    .service-card,
    .value-card,
    .timeline-card,
    .contact-shell,
    .footer-shell {
        padding: 22px;
    }

    .section-heading h2,
    .contact-title,
    .footer-copy h3 {
        font-size: clamp(1.82rem, 8vw, 2.32rem);
    }

    .contact-actions,
    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .button,
    .mini-button {
        width: 100%;
    }

    .contact-grid {
        gap: 14px;
    }
}
