/* ===== Tokens ===== */
:root {
    --bg: #ffffff;
    --bg-alt: #f7f8fb;
    --bg-dark: #080a13;
    --bg-dark-2: #0e1424;
    --ink: #0a0e1a;
    --ink-soft: #2c3344;
    --muted: #5b6478;
    --muted-2: #8a93a6;
    --line: #e7eaf0;
    --line-strong: #d8dde7;
    --line-dark: rgba(255, 255, 255, 0.10);
    --line-dark-strong: rgba(255, 255, 255, 0.18);
    --accent: #3b82f6;
    --accent-2: #06b6d4;
    --accent-3: #a855f7;

    --radius: 18px;
    --radius-sm: 10px;
    --shadow-sm: 0 1px 2px rgba(8, 10, 19, 0.05);
    --shadow-md: 0 14px 38px -16px rgba(8, 10, 19, 0.20);
    --shadow-lg: 0 30px 80px -20px rgba(8, 10, 19, 0.35);

    --container: 1180px;
    --gutter: 24px;

    --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
            "Helvetica Neue", Arial, sans-serif;
    --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: none; color: #2563eb; }

h1, h2, h3, h4 {
    color: var(--ink);
    line-height: 1.15;
    margin: 0 0 0.5em;
    letter-spacing: -0.02em;
    font-weight: 700;
}
h1, .display {
    font-size: clamp(2.4rem, 5.6vw, 4.2rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.05;
}
h2 { font-size: clamp(1.85rem, 3.4vw, 2.6rem); font-weight: 700; letter-spacing: -0.025em; }
h3 { font-size: 1.05rem; font-weight: 600; letter-spacing: -0.005em; }
h4 { font-size: 0.92rem; font-weight: 600; }
p { margin: 0 0 1em; color: var(--ink-soft); }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}

.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1em;
}

.muted { color: var(--muted); }

.grad-text {
    background: linear-gradient(120deg, #60a5fa 0%, #22d3ee 50%, #a78bfa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px 6px 10px;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    margin-bottom: 28px;
}
.badge-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.15);
    animation: pulse 2.4s ease-out infinite;
}
.badge-light {
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.15); }
    50% { box-shadow: 0 0 0 8px rgba(52, 211, 153, 0); }
}

/* ===== Header ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(8, 10, 19, 0.55);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 60%, #a855f7 100%);
    color: #fff;
    box-shadow: 0 8px 24px -10px rgba(59, 130, 246, 0.65), inset 0 1px 0 rgba(255,255,255,0.25);
}
.brand-name { font-size: 1.02rem; }
.brand-suffix { color: rgba(255, 255, 255, 0.55); font-weight: 600; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav-links > a:not(.btn) {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    font-weight: 500;
    transition: color 0.15s ease;
}
.nav-links > a:not(.btn):hover { color: #fff; }

@media (max-width: 760px) {
    .nav-links { gap: 12px; }
    .nav-links > a:not(.btn) { display: none; }
    .brand-suffix { display: none; }
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.85rem 1.35rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid transparent;
    transition: transform 0.08s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
    cursor: pointer;
    white-space: nowrap;
    line-height: 1;
}
.btn:active { transform: translateY(1px); }
.btn:hover { text-decoration: none; }

.btn-primary {
    background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
    color: #fff;
    box-shadow: 0 10px 24px -10px rgba(59, 130, 246, 0.6), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn-primary:hover {
    background: linear-gradient(180deg, #4c91f8 0%, #2f6cf0 100%);
    color: #fff;
    box-shadow: 0 14px 30px -10px rgba(59, 130, 246, 0.7), inset 0 1px 0 rgba(255,255,255,0.22);
}

.btn-ghost-dark {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.92);
    border-color: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
}
.btn-ghost-dark:hover {
    background: rgba(255, 255, 255, 0.10);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.22);
}

.btn-pill {
    background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
    color: #fff;
    padding: 0.55rem 0.95rem;
    font-size: 0.88rem;
    box-shadow: 0 8px 20px -10px rgba(59, 130, 246, 0.6), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn-pill:hover { color: #fff; }

.btn-light {
    background: #fff;
    color: var(--ink);
    box-shadow: 0 14px 28px -14px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255,255,255,0.6);
}
.btn-light:hover { background: #f0f4fa; color: var(--ink); }

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 4px;
}
.link-arrow svg { transition: transform 0.18s ease; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ===== Hero ===== */
.hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    color: #fff;
    background: radial-gradient(ellipse at top, #0e1424 0%, #080a13 70%);
    padding: clamp(72px, 9vw, 130px) 0 clamp(80px, 10vw, 140px);
    margin-top: -72px; /* pulls hero under sticky transparent header */
    padding-top: calc(72px + clamp(48px, 7vw, 100px));
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
    pointer-events: none;
    will-change: transform;
}
.orb-1 {
    width: 520px; height: 520px;
    top: -120px; left: -160px;
    background: radial-gradient(circle, #3b82f6 0%, transparent 70%);
    animation: drift1 22s ease-in-out infinite;
}
.orb-2 {
    width: 480px; height: 480px;
    top: 80px; right: -140px;
    background: radial-gradient(circle, #06b6d4 0%, transparent 70%);
    animation: drift2 26s ease-in-out infinite;
}
.orb-3 {
    width: 460px; height: 460px;
    bottom: -160px; left: 20%;
    background: radial-gradient(circle, #a855f7 0%, transparent 70%);
    opacity: 0.4;
    animation: drift3 30s ease-in-out infinite;
}
@keyframes drift1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(60px, 40px); }
}
@keyframes drift2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-50px, 60px); }
}
@keyframes drift3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(40px, -40px); }
}

.grid-overlay {
    position: absolute;
    inset: 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: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 80%);
}

.noise {
    position: absolute;
    inset: 0;
    opacity: 0.5;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}
@media (max-width: 1000px) {
    .hero-layout { grid-template-columns: 1fr; gap: 60px; }
}

.hero-copy h1 { color: #fff; }
.hero-copy .lead {
    font-size: clamp(1.05rem, 1.4vw, 1.18rem);
    color: rgba(255, 255, 255, 0.72);
    max-width: 560px;
    margin: 1.2rem 0 2rem;
}
.hero-cta {
    display: flex; flex-wrap: wrap; gap: 12px;
    margin-bottom: 2.5rem;
}

.hero-trust {
    display: flex; align-items: center; gap: 16px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}
.hero-trust p { margin: 0; color: inherit; }
.avatar-stack { display: inline-flex; }
.av {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 2px solid #0e1424;
    margin-left: -10px;
    background-size: cover;
    background-position: center;
}
.av:first-child { margin-left: 0; }
.av-1 { background: linear-gradient(135deg, #3b82f6, #06b6d4); }
.av-2 { background: linear-gradient(135deg, #a855f7, #ec4899); }
.av-3 { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.av-4 { background: linear-gradient(135deg, #10b981, #06b6d4); }

/* Hero visual / code card */
.hero-visual {
    position: relative;
    perspective: 1400px;
}
.code-card {
    position: relative;
    background: linear-gradient(180deg, rgba(20, 27, 49, 0.85) 0%, rgba(14, 20, 36, 0.85) 100%);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 16px;
    box-shadow:
        0 30px 80px -20px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        0 1px 0 rgba(255, 255, 255, 0.08) inset;
    overflow: hidden;
    backdrop-filter: blur(8px);
    transform: rotate(-1.5deg);
    transition: transform 0.4s ease;
}
.hero-visual:hover .code-card { transform: rotate(0deg); }

.code-card-head {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.02);
}
.code-card-head .dot {
    width: 11px; height: 11px; border-radius: 50%;
    display: inline-block;
}
.code-card-head .d1 { background: #ef4444; }
.code-card-head .d2 { background: #f59e0b; }
.code-card-head .d3 { background: #10b981; }
.code-title {
    margin-left: auto;
    font-family: var(--mono);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
}
.code-card-body {
    margin: 0;
    padding: 22px 22px 18px;
    font-family: var(--mono);
    font-size: 0.82rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.85);
    white-space: pre;
    overflow-x: auto;
}
.tok-p { color: #94a3b8; }
.tok-k { color: #60a5fa; }
.tok-s { color: #34d399; }

.code-card-foot {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(16, 185, 129, 0.06);
}
.code-card-foot .muted { color: rgba(255, 255, 255, 0.45); }
.status-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.20);
    animation: pulse 2.4s ease-out infinite;
}

.float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(20, 27, 49, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 14px;
    padding: 12px 16px;
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 40px -14px rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 0.86rem;
}
.float-card strong { display: block; font-weight: 600; }
.float-card small { color: rgba(255, 255, 255, 0.55); font-size: 0.78rem; }
.fc-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center; justify-content: center;
    flex: 0 0 36px;
}
.float-card-1 {
    top: -22px; left: -28px;
    animation: bob 6s ease-in-out infinite;
}
.float-card-2 {
    bottom: -24px; right: -10px;
    animation: bob 7s ease-in-out infinite -2s;
}
@keyframes bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@media (max-width: 1000px) {
    .float-card-1 { left: 0; top: -18px; }
    .float-card-2 { right: 0; }
}
@media (max-width: 520px) {
    .float-card { display: none; }
}

/* ===== Marquee ===== */
.marquee {
    overflow: hidden;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 28px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
    mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}
.marquee-track {
    display: flex;
    width: max-content;
    animation: scroll-x 38s linear infinite;
}
.marquee-list {
    display: flex;
    gap: 44px;
    list-style: none;
    margin: 0;
    padding: 0 22px;
    flex-shrink: 0;
}
.marquee-list li {
    font-family: var(--mono);
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.01em;
    white-space: nowrap;
}
@keyframes scroll-x {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ===== Sections ===== */
.section {
    padding: clamp(72px, 9vw, 130px) 0;
    position: relative;
}
.section-alt {
    background: var(--bg-alt);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 4rem;
}
.section-sub { font-size: 1.05rem; color: var(--ink-soft); }

/* ===== Cards / Services ===== */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 56px; align-items: start; }
@media (max-width: 920px) {
    .grid-3 { grid-template-columns: 1fr; }
    .grid-2 { grid-template-columns: 1fr; gap: 32px; }
}

.cards .card {
    --accent: linear-gradient(135deg, #3b82f6, #06b6d4);
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px 28px 28px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}
.cards .card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: var(--accent);
    opacity: 0.95;
}
.cards .card::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: var(--accent);
    opacity: 0;
    transition: opacity 0.2s ease;
    -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;
}
.cards .card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.cards .card:hover::after { opacity: 0.5; }
.card h3 { margin-bottom: 0.45em; }
.card p { margin: 0; font-size: 0.95rem; color: var(--muted); line-height: 1.65; }

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--accent);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    box-shadow: 0 10px 22px -10px rgba(59, 130, 246, 0.5), inset 0 1px 0 rgba(255,255,255,0.2);
}
.card-icon svg { width: 22px; height: 22px; }

/* ===== Stats ===== */
.stats {
    background: var(--bg);
    padding: 0 0 8px;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, #fafbfd 0%, #ffffff 100%);
    overflow: hidden;
}
.stat {
    padding: 36px 28px;
    border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }
.stat-num {
    display: flex;
    align-items: baseline;
    gap: 2px;
    font-size: clamp(2.3rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, #0a0e1a 0%, #2563eb 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 6px;
}
.stat-suffix { font-size: 0.6em; }
.stat p { margin: 0; font-size: 0.92rem; color: var(--muted); line-height: 1.55; }

@media (max-width: 920px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat { border-right: none; border-bottom: 1px solid var(--line); }
    .stat:nth-child(odd) { border-right: 1px solid var(--line); }
    .stat:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 520px) {
    .stats-grid { grid-template-columns: 1fr; }
    .stat { border-right: none !important; border-bottom: 1px solid var(--line); }
    .stat:last-child { border-bottom: none; }
}

/* ===== Approach ===== */
.approach-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}
.approach-copy { position: sticky; top: 110px; }
@media (max-width: 1000px) {
    .approach-layout { grid-template-columns: 1fr; gap: 40px; }
    .approach-copy { position: static; }
}

.steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 16px;
    counter-reset: step;
}
.steps li {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px 28px;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.steps li:hover {
    transform: translateY(-2px);
    border-color: var(--line-strong);
    box-shadow: var(--shadow-md);
}
.step-num {
    display: inline-block;
    font-family: var(--mono);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}
.steps h3 { margin-bottom: 0.3em; }
.steps p { margin: 0; font-size: 0.95rem; color: var(--muted); }

/* ===== Industries / Pills ===== */
.pill-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.pill-list li {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 0.92rem;
    color: var(--ink-soft);
    font-weight: 500;
    transition: border-color 0.18s ease, transform 0.18s ease, color 0.18s ease;
}
.pill-list li:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

/* ===== About / Values ===== */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start;
}
@media (max-width: 920px) {
    .about-layout { grid-template-columns: 1fr; gap: 40px; }
}

.value-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.value-list li {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.value-list li:hover {
    transform: translateY(-2px);
    border-color: var(--line-strong);
    box-shadow: var(--shadow-md);
}
.value-list h3 { margin-bottom: 0.3em; }
.value-list p { margin: 0; font-size: 0.92rem; color: var(--muted); line-height: 1.6; }
.value-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(59,130,246,0.10), rgba(6,182,212,0.10));
    color: var(--accent);
    display: inline-flex;
    align-items: center; justify-content: center;
    margin-bottom: 16px;
}
@media (max-width: 600px) {
    .value-list { grid-template-columns: 1fr; }
}

/* ===== CTA ===== */
.cta {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    color: #fff;
    background: radial-gradient(ellipse at top, #0e1424 0%, #050811 80%);
    padding: clamp(80px, 9vw, 130px) 0;
    text-align: center;
}
.cta-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}
.cta-bg .orb-c1 {
    width: 560px; height: 560px;
    top: -180px; left: -100px;
    background: radial-gradient(circle, #3b82f6 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    position: absolute;
    animation: drift1 22s ease-in-out infinite;
}
.cta-bg .orb-c2 {
    width: 520px; height: 520px;
    bottom: -180px; right: -120px;
    background: radial-gradient(circle, #a855f7 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    position: absolute;
    animation: drift2 26s ease-in-out infinite;
}

.cta-inner { max-width: 720px; margin: 0 auto; }
.cta-inner h2 { color: #fff; margin-top: 8px; }
.cta-inner p {
    color: rgba(255,255,255,0.72);
    font-size: 1.08rem;
    max-width: 560px;
    margin: 1rem auto 2rem;
}
.cta-actions {
    display: flex; justify-content: center; gap: 12px; flex-wrap: wrap;
    margin: 0 0 1.2rem;
}
.cta-meta { font-size: 0.92rem; opacity: 0.6; margin: 0; }

/* ===== Footer ===== */
.site-footer {
    background: var(--bg);
    border-top: 1px solid var(--line);
    padding: 64px 0 28px;
    color: var(--ink-soft);
    font-size: 0.92rem;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--line);
}
.brand-footer { color: var(--ink); }
.brand-footer .brand-suffix { color: var(--muted); }
.footer-tag { margin: 14px 0 0; font-size: 0.92rem; color: var(--muted); }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.footer-cols h4 { color: var(--ink); margin-bottom: 0.9em; }
.footer-cols ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer-cols a { color: var(--muted); }
.footer-cols a:hover { color: var(--ink); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 22px;
}
.footer-bottom p { margin: 0; font-size: 0.85rem; color: var(--muted-2); }

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

/* ===== Reveal animation ===== */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform, opacity;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }
    .reveal { opacity: 1; transform: none; }
}
