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

:root {
    --bg: #030303;
    --bg-soft: #09090b;
    --blue: #2563eb;
    --blue-light: #60a5fa;
    --blue-sky: #38bdf8;
    --indigo: #6366f1;
    --text: #f4f4f5;
    --text-muted: #a1a1aa;
    --text-dim: #71717a;
    --panel: rgba(24, 24, 27, 0.58);
    --panel-strong: rgba(24, 24, 27, 0.82);
    --panel-border: rgba(63, 63, 70, 0.52);
    --content: 1180px;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, sans-serif;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    background:
        radial-gradient(circle at 15% 15%, rgba(37, 99, 235, 0.09), transparent 30%),
        radial-gradient(circle at 85% 45%, rgba(99, 102, 241, 0.07), transparent 34%),
        var(--bg);
}

::selection {
    background: rgba(59, 130, 246, 0.35);
    color: #fff;
}

a {
    color: inherit;
}

img,
svg {
    display: block;
}

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

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #09090b; }
::-webkit-scrollbar-thumb {
    background: #27272a;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover { background: #3f3f46; }

.skip-link {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 500;
    padding: 0.65rem 1rem;
    border-radius: 0.6rem;
    background: #fff;
    color: #09090b;
    text-decoration: none;
    transform: translateY(-160%);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.container {
    width: min(var(--content), calc(100% - 3rem));
    margin-inline: auto;
}

.narrow {
    width: min(760px, 100%);
    margin-inline: auto;
}

.site-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid transparent;
    transition: background 0.35s ease, border-color 0.35s ease, padding 0.35s ease;
}

.site-nav.scrolled {
    padding: 0.75rem 1.5rem;
    border-bottom-color: var(--panel-border);
    background: rgba(3, 3, 3, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.nav-brand {
    display: inline-flex;
    line-height: 0;
}

.logo {
    width: auto;
    height: 6.3rem;
    object-fit: contain;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 22px rgba(59, 130, 246, 0.22));
    transition: height 0.35s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
}

.site-nav.scrolled .logo { height: 3.2rem; }
.logo:hover { transform: scale(1.04); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.55rem;
}

.nav-links a {
    color: #d4d4d8;
    font-size: 0.86rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    text-decoration: none;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.7);
    transition: color 0.25s ease;
}

.nav-links a:hover,
.nav-links a[aria-current='page'] {
    color: var(--blue-light);
}

.nav-links .nav-cta {
    padding: 0.55rem 1rem;
    border: 1px solid rgba(96, 165, 250, 0.35);
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.12);
    color: #dbeafe;
}

.nav-toggle {
    display: none;
    padding: 0.4rem;
    border: 0;
    background: transparent;
    color: #d4d4d8;
    cursor: pointer;
}

.page-hero {
    position: relative;
    display: grid;
    min-height: 74vh;
    place-items: center;
    overflow: hidden;
    padding: 10.5rem 1.5rem 6rem;
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -2;
    background: url('./new_backgound2.png') center 12% / cover no-repeat;
    opacity: 0.38;
    transform: scale(1.03);
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(ellipse 70% 68% at 50% 42%, rgba(37, 99, 235, 0.2), transparent 68%),
        linear-gradient(to top, var(--bg) 2%, transparent 52%, rgba(3, 3, 3, 0.24)),
        linear-gradient(to right, rgba(3, 3, 3, 0.64), transparent 32%, transparent 68%, rgba(3, 3, 3, 0.64));
}

.page-hero-content {
    width: min(920px, 100%);
    animation: fadeInUp 0.8s ease both;
}

.eyebrow,
.section-label {
    color: var(--blue-light);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    line-height: 1.5;
    text-transform: uppercase;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1.35rem;
    padding: 0.48rem 0.9rem;
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.1);
}

.eyebrow::before {
    content: '';
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 50%;
    background: var(--blue-light);
    box-shadow: 0 0 12px rgba(96, 165, 250, 0.8);
}

.page-hero h1 {
    max-width: 900px;
    margin: 0 auto 1.5rem;
    font-size: clamp(2.65rem, 6.7vw, 5.8rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 0.98;
}

.page-hero h1 .gradient-text,
.gradient-text {
    background: linear-gradient(135deg, #f4f4f5 5%, #60a5fa 54%, #6366f1 98%);
    background-clip: text;
    color: transparent;
    -webkit-background-clip: text;
}

.page-hero .hero-copy {
    max-width: 720px;
    margin: 0 auto;
    color: #c4c4cc;
    font-size: clamp(1.02rem, 2vw, 1.22rem);
    line-height: 1.7;
}

.hero-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.15rem;
    padding: 0.8rem 1.35rem;
    border: 1px solid transparent;
    border-radius: 0.75rem;
    font-size: 0.93rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: #fff;
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.24);
}

.btn-primary:hover {
    box-shadow: 0 16px 42px rgba(37, 99, 235, 0.34);
}

.btn-secondary {
    border-color: rgba(113, 113, 122, 0.55);
    background: rgba(9, 9, 11, 0.58);
    color: #e4e4e7;
}

.btn-secondary:hover {
    border-color: rgba(96, 165, 250, 0.45);
    background: rgba(24, 24, 27, 0.8);
}

.trust-line {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.4rem;
    margin-top: 2rem;
    color: var(--text-muted);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.trust-line span {
    display: inline-flex;
    align-items: center;
    gap: 0.48rem;
}

.trust-line span::before {
    content: '';
    width: 0.35rem;
    height: 0.35rem;
    border-radius: 50%;
    background: var(--blue-light);
}

.section {
    position: relative;
    overflow: hidden;
    padding: 7rem 0;
}

.section-alt {
    border-block: 1px solid rgba(63, 63, 70, 0.28);
    background: linear-gradient(180deg, rgba(9, 9, 11, 0.96), rgba(3, 3, 3, 0.98));
}

.section-header {
    max-width: 770px;
    margin-bottom: 3.25rem;
}

.section-header.centered {
    margin-inline: auto;
    text-align: center;
}

.section-title {
    margin-top: 0.85rem;
    font-size: clamp(2rem, 4.4vw, 3.65rem);
    font-weight: 750;
    letter-spacing: -0.035em;
    line-height: 1.05;
}

.section-desc {
    margin-top: 1.2rem;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.grid-2,
.grid-3,
.grid-4 {
    display: grid;
    gap: 1.25rem;
}

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

.glass-panel {
    position: relative;
    overflow: hidden;
    padding: 2rem;
    border: 1px solid var(--panel-border);
    border-radius: 1rem;
    background: linear-gradient(145deg, rgba(39, 39, 42, 0.48), rgba(9, 9, 11, 0.7));
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.glass-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 12%;
    width: 76%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.45), transparent);
}

.glass-panel:hover {
    border-color: rgba(96, 165, 250, 0.34);
    background: linear-gradient(145deg, rgba(39, 39, 42, 0.62), rgba(9, 9, 11, 0.78));
    transform: translateY(-4px);
}

.glass-panel h2,
.glass-panel h3,
.glass-panel h4 {
    margin-bottom: 0.8rem;
    font-size: 1.25rem;
    letter-spacing: -0.015em;
    line-height: 1.25;
}

.glass-panel p {
    color: var(--text-muted);
}

.panel-number {
    display: block;
    margin-bottom: 1rem;
    color: var(--blue-light);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.icon-chip {
    display: inline-grid;
    width: 2.6rem;
    height: 2.6rem;
    margin-bottom: 1.25rem;
    place-items: center;
    border: 1px solid rgba(96, 165, 250, 0.25);
    border-radius: 0.7rem;
    background: rgba(37, 99, 235, 0.11);
    color: var(--blue-light);
}

.icon-chip svg {
    width: 1.25rem;
    height: 1.25rem;
}

.pill {
    display: inline-flex;
    margin-bottom: 1rem;
    padding: 0.28rem 0.65rem;
    border: 1px solid rgba(96, 165, 250, 0.25);
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    color: #bfdbfe;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(2.5rem, 6vw, 6rem);
}

.split-copy h2 {
    margin: 0.8rem 0 1.25rem;
    font-size: clamp(2rem, 4vw, 3.4rem);
    letter-spacing: -0.035em;
    line-height: 1.05;
}

.split-copy > p {
    color: var(--text-muted);
    font-size: 1.06rem;
}

.check-list,
.plain-list {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.5rem;
    list-style: none;
}

.check-list li,
.plain-list li {
    position: relative;
    padding-left: 1.7rem;
    color: #d4d4d8;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--blue-light);
    font-weight: 800;
}

.plain-list li::before {
    content: '';
    position: absolute;
    top: 0.7rem;
    left: 0.2rem;
    width: 0.35rem;
    height: 0.35rem;
    border-radius: 50%;
    background: var(--blue-light);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.35rem;
    color: var(--blue-light);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}

.link-arrow span {
    transition: transform 0.2s ease;
}

.link-arrow:hover span {
    transform: translateX(4px);
}

.process-line {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.process-step {
    position: relative;
    padding: 1.7rem 1.5rem;
    border-top: 1px solid rgba(96, 165, 250, 0.45);
}

.process-step::before {
    content: '';
    position: absolute;
    top: -0.3rem;
    left: 0;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: var(--blue-light);
    box-shadow: 0 0 16px rgba(96, 165, 250, 0.65);
}

.process-step h3 {
    margin-bottom: 0.65rem;
    font-size: 1.05rem;
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.quote-panel {
    padding: clamp(2rem, 5vw, 4rem);
    border: 1px solid rgba(96, 165, 250, 0.23);
    border-radius: 1.25rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.13), rgba(24, 24, 27, 0.5));
}

.quote-panel blockquote {
    max-width: 900px;
    font-size: clamp(1.45rem, 3vw, 2.35rem);
    font-weight: 650;
    letter-spacing: -0.025em;
    line-height: 1.35;
}

.quote-panel cite {
    display: block;
    margin-top: 1.2rem;
    color: var(--text-muted);
    font-size: 0.86rem;
    font-style: normal;
}

.faq-list {
    display: grid;
    gap: 0.85rem;
}

.faq-list details {
    border: 1px solid var(--panel-border);
    border-radius: 0.85rem;
    background: rgba(24, 24, 27, 0.44);
}

.faq-list summary {
    position: relative;
    padding: 1.25rem 3.4rem 1.25rem 1.35rem;
    color: #e4e4e7;
    font-weight: 650;
    cursor: pointer;
    list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
    content: '+';
    position: absolute;
    top: 50%;
    right: 1.25rem;
    color: var(--blue-light);
    font-size: 1.4rem;
    transform: translateY(-50%);
}

.faq-list details[open] summary::after { content: '−'; }

.faq-list details p {
    padding: 0 1.35rem 1.35rem;
    color: var(--text-muted);
}

.cta-band {
    position: relative;
    overflow: hidden;
    padding: 7rem 0;
    text-align: center;
}

.cta-band::before {
    content: '';
    position: absolute;
    inset: 10% 15%;
    z-index: -1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.18), transparent 68%);
    filter: blur(20px);
}

.cta-band h2 {
    max-width: 850px;
    margin: 0.8rem auto 1.25rem;
    font-size: clamp(2.2rem, 5vw, 4.4rem);
    letter-spacing: -0.045em;
    line-height: 1.02;
}

.cta-band p {
    max-width: 680px;
    margin-inline: auto;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.site-footer {
    padding: 3.5rem 0 2rem;
    border-top: 1px solid rgba(63, 63, 70, 0.38);
    background: #050506;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, minmax(0, 0.7fr));
    gap: 2rem;
}

.footer-brand img {
    width: auto;
    height: 4.4rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    max-width: 340px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-group h2 {
    margin-bottom: 0.9rem;
    color: #e4e4e7;
    font-size: 0.74rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-group ul {
    display: grid;
    gap: 0.6rem;
    list-style: none;
}

.footer-group a {
    color: var(--text-muted);
    font-size: 0.88rem;
    text-decoration: none;
}

.footer-group a:hover { color: var(--blue-light); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 1.3rem;
    border-top: 1px solid rgba(63, 63, 70, 0.3);
    color: var(--text-dim);
    font-size: 0.78rem;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0s);
}

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

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 980px) {
    .grid-3,
    .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

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

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

@media (max-width: 760px) {
    .container { width: min(calc(100% - 2rem), var(--content)); }

    .site-nav { padding: 0.85rem 1rem; }
    .site-nav.scrolled { padding: 0.65rem 1rem; }
    .logo,
    .site-nav.scrolled .logo { height: 3.25rem; }

    .nav-toggle { display: inline-flex; }

    .nav-links {
        position: absolute;
        top: 100%;
        right: 0.85rem;
        left: 0.85rem;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 0.55rem;
        border: 1px solid var(--panel-border);
        border-radius: 0.9rem;
        background: rgba(9, 9, 11, 0.96);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
        backdrop-filter: blur(16px);
    }

    .nav-links.open { display: flex; }
    .nav-links a { padding: 0.78rem 0.9rem; }
    .nav-links .nav-cta { margin-top: 0.25rem; text-align: center; }

    .page-hero {
        min-height: auto;
        padding: 8.5rem 1rem 4.75rem;
    }

    .page-hero::before {
        background-position: center top;
        background-size: auto 310px;
        background-repeat: no-repeat;
        opacity: 0.44;
    }

    .page-hero::after {
        background: linear-gradient(to top, var(--bg) 8%, rgba(3, 3, 3, 0.44) 58%, rgba(3, 3, 3, 0.18));
    }

    .page-hero h1 {
        font-size: clamp(2.35rem, 12vw, 3.7rem);
        line-height: 1.02;
    }

    .section { padding: 5rem 0; }

    .grid-2,
    .grid-3,
    .grid-4,
    .split,
    .process-line,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .glass-panel { padding: 1.5rem; }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
