@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    --bg: #f7f8f6;
    --bg-elevated: #ffffff;
    --bg-soft: #eef1ee;
    --ink: #0b1220;
    --ink-soft: #596273;
    --ink-faint: #7e8795;
    --line: #dfe4df;
    --line-strong: #cbd2cc;
    --accent: #5c57ff;
    --accent-bright: #786fff;
    --accent-soft: #ecebff;
    --green: #4df0a2;
    --dark: #07111f;
    --dark-2: #0b1727;
    --dark-ink: #f4f7fb;
    --dark-soft: #aab7ca;
    --grid: rgba(11, 18, 32, 0.045);
    --shadow: 0 24px 70px rgba(23, 32, 48, 0.1);
    --radius: 18px;
    --radius-lg: 28px;
    --shell: 1240px;
    --transition: 220ms ease;
}

[data-theme="dark"] {
    --bg: #070d16;
    --bg-elevated: #0d1622;
    --bg-soft: #111c29;
    --ink: #f4f7fb;
    --ink-soft: #9ba8b9;
    --ink-faint: #748195;
    --line: #202c3a;
    --line-strong: #324154;
    --accent-soft: #1c1d4d;
    --grid: rgba(255, 255, 255, 0.035);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    transition: background var(--transition), color var(--transition);
}
body::selection { background: var(--accent); color: white; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { max-width: 100%; display: block; }

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

.shell { width: min(calc(100% - 48px), var(--shell)); margin: 0 auto; }
.section { padding: 118px 0; }
.section-grid {
    background-image: linear-gradient(var(--grid) 1px, transparent 1px), linear-gradient(90deg, var(--grid) 1px, transparent 1px);
    background-size: 56px 56px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: color-mix(in srgb, var(--bg) 84%, transparent);
    border-bottom: 1px solid color-mix(in srgb, var(--line) 82%, transparent);
    backdrop-filter: blur(18px);
}
.nav-shell { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; letter-spacing: -.035em; }
.brand-mark {
    width: 33px; height: 33px; display: grid; place-items: center;
    color: white; background: linear-gradient(135deg, var(--accent), #3bc8ff);
    border-radius: 9px; font-weight: 800; font-size: .93rem;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.25), 0 6px 20px rgba(92,87,255,.25);
}
.brand-name { font-size: 1.15rem; }
.desktop-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.desktop-nav a { font-size: .89rem; font-weight: 600; color: var(--ink-soft); transition: color var(--transition); }
.desktop-nav a:hover { color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.theme-toggle, .menu-toggle {
    border: 1px solid var(--line); background: var(--bg-elevated); color: var(--ink); cursor: pointer;
    height: 40px; border-radius: 11px; transition: border-color var(--transition), transform var(--transition);
}
.theme-toggle { width: 40px; display: grid; place-items: center; }
.theme-toggle:hover, .menu-toggle:hover { border-color: var(--line-strong); transform: translateY(-1px); }
.theme-icon { font-size: 1.1rem; }
.menu-toggle { display: none; padding: 0 14px; font-size: .82rem; font-weight: 700; }
.mobile-nav { display: none; }

.button {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    min-height: 50px; padding: 0 19px; border-radius: 12px; font-size: .9rem; font-weight: 700;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 40px; padding: 0 16px; border-radius: 10px; font-size: .82rem; }
.button-dark { background: var(--ink); color: var(--bg); }
.button-primary { background: var(--accent); color: white; box-shadow: 0 12px 30px rgba(92,87,255,.24); }
.button-primary:hover { background: var(--accent-bright); box-shadow: 0 16px 36px rgba(92,87,255,.32); }
.button-white { background: white; color: #0b1220; }
.text-link { display: inline-flex; align-items: center; gap: 9px; font-size: .9rem; font-weight: 700; }
.text-link span { color: var(--accent); }

.hero { position: relative; min-height: 760px; display: flex; align-items: center; overflow: hidden; }
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, var(--bg) 0%, transparent 38%, transparent 63%, var(--bg) 100%);
    pointer-events: none;
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 74px; align-items: center; padding: 112px 0 118px; }
.hero-copy { max-width: 680px; }
.eyebrow {
    display: inline-flex; align-items: center; gap: 10px; margin-bottom: 25px;
    color: var(--ink-soft); font-family: 'DM Mono', monospace; font-size: .74rem; text-transform: uppercase; letter-spacing: .075em;
}
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(77,240,162,.11); }
.hero h1 { font-size: clamp(3.55rem, 5.7vw, 6.2rem); line-height: .98; letter-spacing: -.067em; font-weight: 700; max-width: 870px; }
.gradient-text { background: linear-gradient(92deg, var(--accent) 10%, #398ce8 90%); -webkit-background-clip: text; color: transparent; }
.hero-lead { max-width: 650px; margin-top: 28px; font-size: 1.15rem; line-height: 1.75; color: var(--ink-soft); }
.hero-actions { margin-top: 36px; display: flex; align-items: center; gap: 24px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 13px 24px; margin-top: 46px; color: var(--ink-faint); font-size: .77rem; font-weight: 600; }
.hero-trust span { display: inline-flex; align-items: center; gap: 9px; }
.hero-trust span:not(:first-child)::before { content: ''; width: 3px; height: 3px; background: var(--line-strong); border-radius: 50%; }

.hero-visual { position: relative; min-width: 0; }
.system-window {
    position: relative; border: 1px solid var(--line); border-radius: 20px; overflow: hidden;
    background: color-mix(in srgb, var(--bg-elevated) 94%, transparent); box-shadow: var(--shadow);
    transform: perspective(1200px) rotateY(-4deg) rotateX(1deg);
}
.window-bar { height: 48px; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 16px; color: var(--ink-faint); font-family: 'DM Mono', monospace; font-size: .66rem; }
.window-dots { display: flex; gap: 6px; }
.window-dots i { width: 7px; height: 7px; border-radius: 50%; background: var(--line-strong); }
.window-status { justify-self: end; color: #28a96c; }
.system-content { padding: 37px 32px 32px; }
.system-kicker { font-family: 'DM Mono', monospace; font-size: .65rem; letter-spacing: .11em; color: var(--ink-faint); }
.system-title { margin-top: 10px; font-size: clamp(1.55rem, 2.4vw, 2.15rem); letter-spacing: -.045em; font-weight: 700; }
.pipeline { margin-top: 30px; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.pipeline-row { display: grid; grid-template-columns: 32px 1fr auto; gap: 12px; align-items: center; min-height: 77px; padding: 14px 17px; border-bottom: 1px solid var(--line); }
.pipeline-row:last-child { border-bottom: 0; }
.pipeline-row.active { background: var(--accent-soft); }
.pipeline-index { font-family: 'DM Mono'; font-size: .66rem; color: var(--ink-faint); }
.pipeline-row strong { display: block; font-size: .88rem; }
.pipeline-row small { display: block; margin-top: 3px; color: var(--ink-soft); font-size: .7rem; }
.pipeline-check { color: #28a96c; font-weight: 700; }
.pipeline-wave { display: flex; align-items: end; height: 21px; gap: 3px; }
.pipeline-wave i { display: block; width: 3px; background: var(--accent); border-radius: 3px; animation: wave 1.05s infinite alternate ease-in-out; }
.pipeline-wave i:nth-child(1) { height: 7px; }.pipeline-wave i:nth-child(2) { height: 16px; animation-delay: -.7s; }.pipeline-wave i:nth-child(3) { height: 11px; animation-delay: -.3s; }.pipeline-wave i:nth-child(4) { height: 19px; animation-delay: -.8s; }
@keyframes wave { to { height: 5px; opacity: .45; } }
.system-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 12px; }
.system-stats div { border: 1px solid var(--line); border-radius: 11px; padding: 13px; min-width: 0; }
.system-stats span { display: block; color: var(--accent); font-family: 'DM Mono'; font-size: .58rem; text-transform: uppercase; }
.system-stats strong { display: block; margin-top: 4px; font-size: .67rem; line-height: 1.45; }
.floating-chip { position: absolute; border: 1px solid var(--line); background: var(--bg-elevated); border-radius: 999px; padding: 8px 12px; box-shadow: 0 8px 30px rgba(0,0,0,.08); font-size: .68rem; font-weight: 700; }
.chip-one { right: -17px; top: 84px; }.chip-two { left: -20px; bottom: 72px; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; opacity: .65; }
.hero-glow-one { width: 500px; height: 500px; right: -250px; top: 80px; background: radial-gradient(circle, rgba(92,87,255,.12), transparent 65%); }
.hero-glow-two { width: 400px; height: 400px; left: 30%; bottom: -250px; background: radial-gradient(circle, rgba(69,197,255,.1), transparent 68%); }

.proof-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-elevated); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-grid > div { padding: 28px 28px 30px; border-right: 1px solid var(--line); }
.proof-grid > div:first-child { padding-left: 0; }.proof-grid > div:last-child { border-right: 0; }
.proof-grid strong { display: block; font-size: 1.45rem; letter-spacing: -.045em; }
.proof-grid span { display: block; margin-top: 3px; color: var(--ink-faint); font-size: .76rem; }

.section-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 80px; align-items: end; margin-bottom: 62px; }
.section-heading.compact { margin-bottom: 45px; }
.section-kicker { margin-bottom: 14px; color: var(--accent); font-family: 'DM Mono'; font-size: .68rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }
.section-kicker.light { color: #8f91ff; }
.section-heading h2, .ai-copy h2, .delivery-copy h2, .about-statement h2, .cta-inner h2 { font-size: clamp(2.55rem, 4vw, 4.25rem); line-height: 1.05; letter-spacing: -.055em; font-weight: 700; }
.section-heading > p { max-width: 510px; color: var(--ink-soft); font-size: .99rem; line-height: 1.78; }

.service-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 15px; }
.service-card {
    grid-column: span 2; min-height: 360px; position: relative; padding: 28px;
    background: var(--bg-elevated); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-5px); border-color: var(--line-strong); box-shadow: 0 18px 45px rgba(20,30,45,.07); }
.service-card.featured { grid-column: span 4; background: linear-gradient(130deg, var(--bg-elevated), var(--accent-soft)); }
.service-number { position: absolute; top: 23px; right: 24px; color: var(--ink-faint); font-family: 'DM Mono'; font-size: .65rem; }
.line-icon { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 60px; border: 1px solid var(--line); border-radius: 12px; color: var(--accent); font-size: 1.15rem; }
.ai-icon { position: relative; width: 52px; height: 52px; margin-bottom: 64px; }
.ai-icon span { position: absolute; width: 18px; height: 18px; border: 2px solid var(--accent); border-radius: 6px; }
.ai-icon span:nth-child(1) { left: 0; top: 0; }.ai-icon span:nth-child(2) { right: 0; top: 0; }.ai-icon span:nth-child(3) { left: 0; bottom: 0; }.ai-icon span:nth-child(4) { right: 0; bottom: 0; background: var(--accent); box-shadow: 0 0 25px rgba(92,87,255,.35); }
.service-card h3 { font-size: 1.28rem; letter-spacing: -.035em; }
.service-card p { margin-top: 11px; color: var(--ink-soft); font-size: .86rem; line-height: 1.7; max-width: 610px; }
.tag-list { list-style: none; display: flex; flex-wrap: wrap; gap: 7px; margin-top: 22px; }
.tag-list li { padding: 5px 9px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-soft); font-family: 'DM Mono'; font-size: .58rem; }
.card-link { display: inline-flex; gap: 8px; margin-top: 23px; font-size: .8rem; font-weight: 700; color: var(--accent); }

.section-dark { background: var(--dark); color: var(--dark-ink); }
.ai-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 100px; align-items: center; }
.ai-copy > p:not(.section-kicker) { max-width: 610px; margin-top: 25px; color: var(--dark-soft); font-size: 1rem; line-height: 1.8; }
.ai-capabilities { margin-top: 43px; border-top: 1px solid #263346; }
.ai-capabilities > div { display: grid; grid-template-columns: 36px 1fr; gap: 7px 13px; padding: 18px 0; border-bottom: 1px solid #263346; }
.ai-capabilities span { grid-row: span 2; font-family: 'DM Mono'; font-size: .61rem; color: #6c7d93; padding-top: 3px; }
.ai-capabilities strong { font-size: .88rem; }.ai-capabilities p { color: #8493a8; font-size: .75rem; line-height: 1.6; }
.ai-diagram { border: 1px solid #29374b; border-radius: 24px; padding: 30px; background: linear-gradient(145deg, #0d1929, #08131f); box-shadow: 0 40px 90px rgba(0,0,0,.28); }
.diagram-label { text-align: center; color: #617086; font-family: 'DM Mono'; font-size: .6rem; letter-spacing: .12em; margin-bottom: 20px; }
.diagram-box { border: 1px solid #314157; border-radius: 11px; padding: 12px 15px; background: #0d1b2c; color: #cbd5e2; text-align: center; font-family: 'DM Mono'; font-size: .65rem; }
.user-box { width: 68%; margin: 0 auto; }.accent-box { border-color: #625eff; color: white; background: rgba(92,87,255,.15); box-shadow: 0 0 30px rgba(92,87,255,.09); }
.diagram-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }.diagram-row.three { grid-template-columns: repeat(3, 1fr); }.diagram-box.small { padding: 10px; }
.diagram-arrow { text-align: center; height: 30px; display: grid; place-items: center; color: #53647c; font-family: 'DM Mono'; }
.diagram-connectors { height: 32px; display: flex; align-items: center; justify-content: space-around; color: #53647c; }
.diagram-footer { display: flex; justify-content: center; flex-wrap: wrap; gap: 7px; margin-top: 22px; }
.diagram-footer span { border: 1px solid #29374b; border-radius: 999px; padding: 5px 8px; color: #6f8097; font-family: 'DM Mono'; font-size: .52rem; }

.case-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.case-card { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-elevated); }
.case-top { display: flex; justify-content: space-between; padding: 17px 21px; border-bottom: 1px solid var(--line); color: var(--ink-faint); font-family: 'DM Mono'; font-size: .59rem; text-transform: uppercase; letter-spacing: .08em; }
.case-art { height: 280px; position: relative; overflow: hidden; display: grid; place-items: center; border-bottom: 1px solid var(--line); }
.case-content { padding: 28px 29px 31px; }.case-label { color: var(--accent); font-family: 'DM Mono'; font-size: .64rem; text-transform: uppercase; letter-spacing: .08em; }
.case-content h3 { margin-top: 11px; font-size: 1.35rem; line-height: 1.35; letter-spacing: -.035em; max-width: 530px; }.case-content > p:last-child { margin-top: 13px; color: var(--ink-soft); font-size: .82rem; line-height: 1.68; }
.simsim-art { background: linear-gradient(145deg, #ff6f67, #f4b73b); }
.simsim-art span { position: relative; z-index: 2; color: white; font-size: 4rem; font-weight: 800; letter-spacing: -.08em; transform: rotate(-3deg); }
.simsim-art i { position: absolute; width: 220px; height: 220px; border: 1px solid rgba(255,255,255,.27); border-radius: 50%; }.simsim-art i:nth-of-type(2) { width: 340px; height: 340px; }.simsim-art i:nth-of-type(3) { width: 470px; height: 470px; }
.rings-art { background: #0a1220; }
.rings-art i { position: absolute; width: 240px; height: 240px; border-radius: 50%; border: 1px solid #335172; box-shadow: 0 0 0 36px rgba(58,141,255,.04), 0 0 0 72px rgba(58,141,255,.025); }
.rings-art i:nth-child(2) { width: 145px; height: 145px; border-color: #665cff; }.rings-art i:nth-child(3) { width: 60px; height: 60px; background: #655dff; border: 0; box-shadow: 0 0 38px rgba(101,93,255,.5); }
.rings-art span { position: absolute; left: 26px; bottom: 22px; z-index: 3; color: white; font-family: 'DM Mono'; font-size: .65rem; line-height: 1.45; letter-spacing: .08em; }
.architecture-art { background-image: linear-gradient(var(--grid) 1px, transparent 1px), linear-gradient(90deg, var(--grid) 1px, transparent 1px); background-size: 28px 28px; display: flex; gap: 35px; }
.arch-node { border: 1px solid var(--line-strong); border-radius: 12px; padding: 25px 20px; font-family: 'DM Mono'; font-size: .64rem; color: var(--ink-soft); }.architecture-art > span { color: var(--accent); font-size: 1.8rem; }.arch-stack { display: grid; gap: 7px; }.arch-stack i { display: block; width: 90px; height: 39px; border: 1px solid var(--accent); border-radius: 7px; background: var(--accent-soft); }
.health-art { background: linear-gradient(145deg, #e3fbf0, #e8f4ff); }.health-art > span { position: absolute; font-size: 10rem; line-height: 1; color: rgba(29,169,116,.13); font-weight: 600; }.health-wave { position: relative; z-index: 2; width: 68%; height: 70px; background: url("data:image/svg+xml,%3Csvg width='500' height='80' viewBox='0 0 500 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 42h90l20-25 30 54 35-44 28 15h67l26-28 38 55 30-28h136' fill='none' stroke='%2320a975' stroke-width='3'/%3E%3C/svg%3E") center/contain no-repeat; }
[data-theme="dark"] .health-art { background: linear-gradient(145deg, #0d2a21, #102538); }

.industries-section { padding-top: 25px; }
.industry-list { border-top: 1px solid var(--line); }
.industry-list > div { display: grid; grid-template-columns: 50px 1fr 1fr; gap: 20px; align-items: center; padding: 23px 4px; border-bottom: 1px solid var(--line); transition: padding var(--transition), background var(--transition); }
.industry-list > div:hover { padding-left: 14px; background: color-mix(in srgb, var(--bg-elevated) 50%, transparent); }
.industry-list span { font-family: 'DM Mono'; font-size: .63rem; color: var(--ink-faint); }.industry-list strong { font-size: 1rem; }.industry-list p { color: var(--ink-soft); font-size: .81rem; }

.delivery-section { padding-top: 42px; }
.delivery-panel { position: relative; overflow: hidden; padding: 70px; border-radius: 30px; background: var(--bg-soft); border: 1px solid var(--line); display: grid; grid-template-columns: .82fr 1.18fr; gap: 90px; }
.delivery-panel::after { content: ''; position: absolute; width: 420px; height: 420px; right: -220px; bottom: -260px; border-radius: 50%; border: 1px solid var(--line-strong); box-shadow: 0 0 0 55px color-mix(in srgb, var(--line) 45%, transparent), 0 0 0 110px color-mix(in srgb, var(--line) 24%, transparent); }
.delivery-copy p:last-child { margin-top: 22px; max-width: 460px; color: var(--ink-soft); font-size: .9rem; }
.engagement-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; }
.engagement-grid > div { min-height: 170px; padding: 4px 26px 26px; }.engagement-grid > div:nth-child(odd) { border-right: 1px solid var(--line-strong); }.engagement-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line-strong); }.engagement-grid > div:nth-child(n+3) { padding-top: 25px; }
.engagement-grid span { font-family: 'DM Mono'; font-size: .59rem; color: var(--accent); }.engagement-grid h3 { margin-top: 7px; font-size: 1rem; }.engagement-grid p { margin-top: 7px; color: var(--ink-soft); font-size: .75rem; line-height: 1.55; }

.tech-section { padding-top: 35px; }
.tech-cloud { display: flex; flex-wrap: wrap; gap: 9px; }
.tech-cloud span { border: 1px solid var(--line); background: var(--bg-elevated); border-radius: 999px; padding: 9px 14px; color: var(--ink-soft); font-family: 'DM Mono'; font-size: .66rem; transition: border-color var(--transition), color var(--transition), transform var(--transition); }
.tech-cloud span:hover { color: var(--ink); border-color: var(--accent); transform: translateY(-2px); }

.about-section { border-top: 1px solid var(--line); }
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.about-statement h2 { max-width: 520px; }.about-lead { font-size: 1.25rem; line-height: 1.65; letter-spacing: -.02em; }.about-copy > p:nth-child(2) { margin-top: 24px; color: var(--ink-soft); font-size: .9rem; line-height: 1.8; }
.principles { margin-top: 35px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }.principles span { padding: 13px 15px; border: 1px solid var(--line); border-radius: 11px; color: var(--ink-soft); font-size: .76rem; font-weight: 600; }

.cta-section { position: relative; overflow: hidden; padding: 120px 0; background: var(--accent); color: white; }
.cta-section::before { content: ''; position: absolute; inset: 0; opacity: .15; background-image: linear-gradient(rgba(255,255,255,.32) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.32) 1px, transparent 1px); background-size: 52px 52px; }
.cta-inner { position: relative; z-index: 2; }.cta-inner h2 { max-width: 850px; }.cta-inner > p:not(.section-kicker) { margin-top: 24px; max-width: 650px; color: rgba(255,255,255,.75); font-size: 1rem; }
.cta-actions { margin-top: 38px; display: flex; align-items: center; gap: 24px; }.cta-actions > span { font-family: 'DM Mono'; font-size: .63rem; color: rgba(255,255,255,.66); }
.cta-orb { position: absolute; right: -160px; top: -250px; width: 650px; height: 650px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; box-shadow: 0 0 0 90px rgba(255,255,255,.04), 0 0 0 180px rgba(255,255,255,.025); }

.site-footer { background: #050a12; color: #eff4fb; padding: 72px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }.footer-brand { color: white; }.footer-grid > div:first-child > p { max-width: 390px; margin-top: 19px; color: #77869a; font-size: .8rem; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 35px; }.footer-links > div { display: flex; flex-direction: column; gap: 10px; }.footer-links strong { margin-bottom: 4px; color: #6f8096; font-family: 'DM Mono'; font-size: .6rem; text-transform: uppercase; letter-spacing: .1em; }.footer-links a { color: #b0bdce; font-size: .78rem; }.footer-links a:hover { color: white; }
.footer-bottom { margin-top: 62px; padding-top: 22px; border-top: 1px solid #1a2534; display: flex; justify-content: space-between; color: #5e6d80; font-family: 'DM Mono'; font-size: .58rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 700ms cubic-bezier(.2,.7,.2,1), transform 700ms cubic-bezier(.2,.7,.2,1); }
.reveal-delay { transition-delay: 120ms; }.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1040px) {
    .desktop-nav { display: none; }.menu-toggle { display: inline-flex; align-items: center; }
    .mobile-nav { position: absolute; top: 78px; left: 0; right: 0; display: grid; max-height: 0; overflow: hidden; background: var(--bg-elevated); border-bottom: 1px solid var(--line); transition: max-height 260ms ease; }
    .mobile-nav.open { max-height: 430px; }.mobile-nav a { padding: 16px 24px; border-top: 1px solid var(--line); font-size: .88rem; font-weight: 650; }
    .hero-grid { grid-template-columns: 1fr; gap: 65px; }.hero-copy { max-width: 820px; }.hero-visual { max-width: 720px; }
    .service-card { grid-column: span 3; }.service-card.featured { grid-column: span 6; }
    .ai-grid, .about-grid { grid-template-columns: 1fr; gap: 65px; }.ai-diagram { max-width: 720px; }.about-statement h2 { max-width: 760px; }
    .delivery-panel { grid-template-columns: 1fr; gap: 55px; padding: 55px; }
}

@media (max-width: 760px) {
    .shell { width: min(calc(100% - 30px), var(--shell)); }.section { padding: 82px 0; }
    .nav-shell { height: 70px; }.mobile-nav { top: 70px; }.nav-actions .button-small { display: none; }
    .brand-name { font-size: 1.05rem; }.brand-mark { width: 31px; height: 31px; }
    .hero { min-height: 0; }.hero-grid { padding: 84px 0 80px; gap: 52px; }.hero h1 { font-size: clamp(3rem, 14vw, 4.65rem); }.hero-lead { font-size: 1rem; }.hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }.hero-trust { gap: 9px 17px; }.hero-trust span::before { display: none !important; }
    .system-window { transform: none; }.system-content { padding: 27px 19px 20px; }.system-stats { grid-template-columns: 1fr; }.floating-chip { display: none; }
    .proof-grid { grid-template-columns: 1fr 1fr; }.proof-grid > div { padding: 22px 14px; border-bottom: 1px solid var(--line); }.proof-grid > div:nth-child(2) { border-right: 0; }.proof-grid > div:nth-child(3), .proof-grid > div:nth-child(4) { border-bottom: 0; }.proof-grid > div:first-child { padding-left: 14px; }
    .section-heading { grid-template-columns: 1fr; gap: 22px; margin-bottom: 42px; }.section-heading h2, .ai-copy h2, .delivery-copy h2, .about-statement h2, .cta-inner h2 { font-size: clamp(2.45rem, 11vw, 3.6rem); }
    .service-grid { grid-template-columns: 1fr; }.service-card, .service-card.featured { grid-column: auto; min-height: 330px; }.line-icon, .ai-icon { margin-bottom: 54px; }
    .ai-grid { gap: 50px; }.ai-diagram { padding: 20px 15px; }.diagram-row.three { gap: 6px; }.diagram-box { padding: 10px 7px; font-size: .55rem; }.user-box { width: 82%; }.diagram-footer { gap: 5px; }
    .case-grid { grid-template-columns: 1fr; }.case-art { height: 220px; }.simsim-art span { font-size: 3.3rem; }
    .industry-list > div { grid-template-columns: 38px 1fr; gap: 4px 10px; }.industry-list p { grid-column: 2; }
    .delivery-panel { padding: 38px 24px; border-radius: 22px; }.engagement-grid { grid-template-columns: 1fr; }.engagement-grid > div { border-right: 0 !important; border-bottom: 1px solid var(--line-strong); padding: 18px 3px 22px !important; min-height: 0; }.engagement-grid > div:last-child { border-bottom: 0; }
    .about-grid { gap: 40px; }.about-lead { font-size: 1.08rem; }.principles { grid-template-columns: 1fr; }
    .cta-section { padding: 85px 0; }.cta-actions { align-items: flex-start; flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; gap: 45px; }.footer-bottom { align-items: flex-start; flex-direction: column; gap: 10px; }
}

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