@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("/assets/fonts/space-grotesk-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --ink: #07110f;
  --ink-2: #0b1714;
  --panel: #101e1a;
  --line: rgba(220, 238, 228, .14);
  --line-strong: rgba(220, 238, 228, .25);
  --paper: #eef4ef;
  --muted: #92a39b;
  --acid: #b8ff3d;
  --acid-dark: #7bb516;
  --max: 1240px;
  --pad: clamp(22px, 4vw, 64px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body { margin: 0; color: var(--paper); background: var(--ink); font-family: "Manrope", "Helvetica Neue", Arial, sans-serif; -webkit-font-smoothing: antialiased; overflow-x: clip; }
body::selection { color: var(--ink); background: var(--acid); }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.skip-link { position: fixed; top: -80px; left: 20px; z-index: 100; color: var(--ink); background: var(--acid); padding: 12px 18px; font-weight: 700; transition: top .2s; }
.skip-link:focus { top: 20px; }
.noise { position: fixed; inset: 0; z-index: 20; pointer-events: none; opacity: .035; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E"); }

.site-header { position: fixed; z-index: 30; top: 0; left: 0; width: 100%; height: 84px; padding: 0 var(--pad); display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid transparent; transition: background .3s, border-color .3s, height .3s; }
.site-header.scrolled { height: 70px; background: rgba(7, 17, 15, .88); border-color: var(--line); backdrop-filter: blur(18px); }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: "Space Grotesk", sans-serif; font-size: 21px; font-weight: 700; letter-spacing: -.04em; }
.brand > span span, .footer-brand span { color: var(--acid); }
.brand-mark { width: 33px; height: 33px; fill: var(--ink); stroke: var(--acid); stroke-width: 1.8; }
.navigation { display: flex; align-items: center; gap: clamp(22px, 3vw, 48px); color: #c9d3ce; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.navigation > a { position: relative; transition: color .2s; }
.navigation > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 0; height: 1px; background: var(--acid); transition: width .25s; }
.navigation > a:hover { color: var(--paper); }
.navigation > a:hover::after { width: 100%; }
.navigation .nav-cta { color: var(--ink); background: var(--acid); padding: 13px 17px; font-weight: 800; }
.navigation .nav-cta:hover { color: var(--ink); background: #ccff72; }
.navigation .nav-cta span { margin-left: 8px; }
.navigation .lang-switch { color: var(--acid); font-weight: 800; }
.navigation .lang-switch::after { width: 100%; opacity: .55; }
.menu-toggle { display: none; border: 0; background: none; color: white; padding: 8px; }
.menu-toggle > span:not(.sr-only) { display: block; width: 24px; height: 1px; background: currentColor; margin: 5px 0; }

.hero { position: relative; min-height: 100svh; padding: 160px var(--pad) 90px; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .55fr); align-items: center; gap: 8vw; isolation: isolate; border-bottom: 1px solid var(--line); }
.network-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -2; opacity: .75; }
.hero-grid { position: absolute; inset: 0; z-index: -3; background-image: linear-gradient(rgba(184,255,61,.038) 1px, transparent 1px), linear-gradient(90deg, rgba(184,255,61,.038) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to right, black, transparent 82%); }
.hero::before { content: ""; position: absolute; z-index: -3; width: 60vw; height: 60vw; max-width: 860px; max-height: 860px; left: -20vw; top: -25vw; border-radius: 50%; background: radial-gradient(circle, rgba(72, 141, 82, .19), transparent 65%); }
.hero-copy { max-width: 890px; }
.home-hero h1 { font-size: clamp(48px, 5.75vw, 88px); }
.eyebrow, .section-index { margin: 0 0 30px; color: var(--muted); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10px; line-height: 1.4; letter-spacing: .14em; text-transform: uppercase; }
.status-dot { display: inline-block; width: 7px; height: 7px; margin-right: 9px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 15px var(--acid); animation: pulse 2s infinite; }
@keyframes pulse { 50% { opacity: .4; box-shadow: 0 0 4px var(--acid); } }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: "Space Grotesk", sans-serif; font-weight: 600; letter-spacing: -.055em; }
h1 { max-width: 980px; margin-bottom: 30px; font-size: clamp(58px, 7.35vw, 118px); line-height: .9; text-transform: uppercase; }
h1 em { color: var(--acid); font-style: normal; font-weight: 300; }
.hero-lead { max-width: 680px; margin: 0 0 44px; color: #b6c2bc; font-size: clamp(17px, 1.7vw, 22px); line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 38px; }
.button { display: inline-flex; align-items: center; justify-content: space-between; gap: 42px; min-width: 230px; padding: 17px 20px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; transition: transform .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--ink); background: var(--acid); }
.button-primary:hover { background: #ccff72; }
.text-link { display: inline-flex; gap: 18px; align-items: center; padding: 9px 0; border-bottom: 1px solid var(--line-strong); color: #d6dfda; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; transition: color .2s, border-color .2s; }
.text-link:hover { color: var(--acid); border-color: var(--acid); }
.signal-card { align-self: center; width: 100%; max-width: 380px; justify-self: end; padding: 22px; border: 1px solid var(--line-strong); background: rgba(11, 23, 20, .58); backdrop-filter: blur(12px); box-shadow: 0 25px 90px rgba(0,0,0,.25); }
.signal-head { display: flex; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--line); color: var(--muted); font: 9px/1 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .13em; }
.signal-head .live { color: var(--acid); }
.signal-route { display: flex; align-items: center; padding: 35px 0; }
.route-node { flex: 0 0 34px; height: 34px; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--muted); font: 9px ui-monospace, monospace; }
.route-node.active { color: var(--ink); background: var(--acid); border-color: var(--acid); box-shadow: 0 0 30px rgba(184,255,61,.28); }
.signal-route i { flex: 1; height: 1px; background: linear-gradient(90deg, var(--line-strong), var(--acid), var(--line-strong)); }
.signal-card dl { margin: 0; }
.signal-card dl div { display: flex; justify-content: space-between; padding: 11px 0; border-top: 1px solid var(--line); font: 10px ui-monospace, monospace; text-transform: uppercase; letter-spacing: .1em; }
.signal-card dt { color: var(--muted); }.signal-card dd { margin: 0; color: #dbe4df; }
.scroll-cue { position: absolute; left: var(--pad); bottom: 26px; display: flex; align-items: center; gap: 15px; color: #697a72; font: 8px ui-monospace, monospace; letter-spacing: .2em; }
.scroll-cue i { width: 60px; height: 1px; background: var(--line-strong); position: relative; overflow: hidden; }
.scroll-cue i::after { content: ""; position: absolute; inset: 0; background: var(--acid); transform: translateX(-100%); animation: scan 2.8s infinite; }
@keyframes scan { 60%,100% { transform: translateX(100%); } }

.section-pad { padding: clamp(90px, 12vw, 180px) var(--pad); }
.statement { max-width: var(--max); margin: auto; display: grid; grid-template-columns: 1fr 3fr; gap: 60px; }
.statement h2 { max-width: 950px; margin-bottom: 28px; font-size: clamp(40px, 6.1vw, 86px); line-height: .98; }
.statement div > p { max-width: 760px; color: var(--muted); font-size: clamp(18px, 2vw, 26px); line-height: 1.55; }

.expertise { border-top: 1px solid var(--line); background: #0a1512; }
.expertise > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.section-heading { display: grid; grid-template-columns: 1fr 3fr; gap: 60px; margin-bottom: 70px; }
.section-heading h2, .approach h2, .about h2 { font-size: clamp(48px, 6.5vw, 92px); line-height: .94; }
.section-heading h2 span, .approach h2 span, .about h2 span { color: var(--acid); font-weight: 300; }
.service-list { border-top: 1px solid var(--line-strong); }
.service { position: relative; display: grid; grid-template-columns: 60px 76px 1fr 35px; gap: 32px; align-items: center; padding: 42px 10px; border-bottom: 1px solid var(--line); transition: background .25s, padding .25s; }
.service:hover { padding-left: 24px; padding-right: 24px; background: rgba(184,255,61,.035); }
.service-no { margin: 0; color: #65756d; font: 10px ui-monospace, monospace; }
.service-icon { width: 60px; height: 60px; display: grid; place-items: center; border: 1px solid var(--line); }
.service-icon svg { width: 36px; height: 36px; fill: none; stroke: var(--acid); stroke-width: 1.2; }
.service h3 { margin-bottom: 10px; font-size: clamp(24px, 3vw, 38px); letter-spacing: -.03em; }
.service div p { max-width: 650px; margin: 0; color: var(--muted); line-height: 1.6; }
.service-arrow { justify-self: end; color: var(--acid); font-size: 22px; opacity: .35; transition: opacity .2s, transform .2s; }
.service:hover .service-arrow { opacity: 1; transform: translate(4px,-4px); }
.service-featured { color: inherit; background: linear-gradient(90deg, rgba(184,255,61,.07), transparent 72%); }
.service-featured .service-no, .service-featured h3 { color: var(--acid); }

.approach { max-width: var(--max); margin: auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(70px, 10vw, 150px); }
.approach-copy > p:not(.section-index) { max-width: 560px; color: var(--muted); font-size: 18px; line-height: 1.7; margin-bottom: 38px; }
.process { margin: 40px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line-strong); }
.process li { display: grid; grid-template-columns: 70px 1fr; gap: 22px; padding: 35px 0; border-bottom: 1px solid var(--line); }
.process li > span { width: 36px; height: 36px; display: grid; place-items: center; color: var(--acid); border: 1px solid var(--line-strong); border-radius: 50%; font: 9px ui-monospace, monospace; }
.process h3 { margin: 0 0 8px; font-size: 24px; }.process p { color: var(--muted); line-height: 1.55; margin: 0; }

.about { background: var(--paper); color: var(--ink); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(70px, 11vw, 160px); align-items: center; }
.about-visual, .about-copy { width: 100%; min-width: 0; max-width: 610px; }.about-visual { justify-self: end; }
.profile-card { position: relative; width: 100%; max-width: 100%; margin: 0; background: var(--ink); box-shadow: 35px 35px 0 #d7dfd9; overflow: hidden; }
.profile-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(7,17,15,.8)); pointer-events: none; }
.profile-card img { display: block; width: 100%; max-width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; filter: contrast(1.04); }
.profile-card figcaption { position: absolute; z-index: 1; right: 0; bottom: 0; left: 0; display: flex; justify-content: space-between; gap: 24px; padding: 22px 25px; color: var(--paper); font: 9px ui-monospace, monospace; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.profile-card figcaption span:last-child { color: var(--acid); text-align: right; }
.terminal { position: relative; color: #c5d1cb; background: var(--ink); box-shadow: 35px 35px 0 #d7dfd9; }
.terminal::after { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(255,255,255,.015) 4px); pointer-events: none; }
.terminal-bar { height: 48px; display: flex; align-items: center; gap: 8px; padding: 0 18px; border-bottom: 1px solid var(--line); }
.terminal-bar i { width: 8px; height: 8px; border-radius: 50%; background: #3d4b45; }.terminal-bar i:first-child { background: var(--acid); }
.terminal-bar span { margin-left: auto; color: #677970; font: 8px ui-monospace, monospace; letter-spacing: .1em; text-transform: uppercase; }
.terminal pre { min-height: 380px; margin: 0; padding: 44px clamp(24px, 5vw, 60px); white-space: pre-wrap; font: 14px/1.8 ui-monospace, SFMono-Regular, Menlo, monospace; }
.terminal code span, .terminal code b { color: var(--acid); font-weight: 400; }
.about .section-index { color: #607169; }
.about h2 { margin-bottom: 36px; }.about h2 span { color: var(--acid-dark); }
.about-lead { font-size: clamp(20px, 2vw, 28px); line-height: 1.45; letter-spacing: -.02em; }
.about-copy > p:not(.section-index):not(.about-lead) { color: #53645c; line-height: 1.7; }
.experience-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; }
.experience-stats p { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 13px; margin: 0; padding-top: 18px; border-top: 1px solid #aebbb4; }
.experience-stats strong { color: var(--acid-dark); font: 500 clamp(30px, 3vw, 44px)/1 "Space Grotesk", sans-serif; letter-spacing: -.06em; }
.experience-stats span { color: #53645c; font: 9px/1.5 ui-monospace, monospace; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.linkedin-link { display: inline-flex; justify-content: space-between; gap: 60px; margin-top: 18px; padding: 15px 0; border-bottom: 1px solid #aebbb4; font: 10px ui-monospace, monospace; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }

.contact { position: relative; min-height: 650px; display: grid; grid-template-columns: 1fr 3fr; gap: 60px; align-content: center; overflow: hidden; border-bottom: 1px solid var(--line); }
.contact-copy { z-index: 1; }.contact h2 { max-width: 1000px; font-size: clamp(48px, 7.5vw, 108px); line-height: .93; }.contact h2 span { color: var(--acid); font-weight: 300; }
.mail-link { display: inline-flex; align-items: center; gap: 28px; margin-top: 30px; padding-bottom: 9px; border-bottom: 1px solid var(--acid); color: var(--acid); font-size: clamp(17px, 2vw, 25px); }
.contact-orbit { position: absolute; right: -10vw; top: 50%; width: 50vw; height: 50vw; min-width: 520px; min-height: 520px; transform: translateY(-50%); opacity: .35; }
.contact-orbit i { position: absolute; inset: 0; border: 1px solid var(--line-strong); border-radius: 50%; }.contact-orbit i:nth-child(2) { inset: 15%; }.contact-orbit i:nth-child(3) { inset: 32%; background: radial-gradient(circle, rgba(184,255,61,.25), transparent 65%); border-color: var(--acid); }

.site-footer { min-height: 170px; padding: 45px var(--pad); display: grid; grid-template-columns: 1.2fr 1.4fr 1fr 1fr; align-items: center; gap: 30px; color: #71837a; font: 9px/1.6 ui-monospace, monospace; letter-spacing: .08em; text-transform: uppercase; }
.footer-brand { color: var(--paper); font-size: 20px; }.site-footer p { margin: 0; }.site-footer div { display: flex; gap: 20px; }.site-footer a:hover { color: var(--acid); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }.reveal.visible { opacity: 1; transform: none; }.delay-1 { transition-delay: .15s; }

.legal-page { background: var(--paper); color: var(--ink); min-height: 100vh; }
.legal-page .site-header { position: static; background: var(--ink); }
.legal-wrap { width: min(920px, calc(100% - 44px)); margin: 0 auto; padding: clamp(80px, 11vw, 150px) 0; }
.legal-wrap .section-index { color: #607169; }.legal-wrap h1 { margin-bottom: 55px; font-size: clamp(55px, 9vw, 110px); }.legal-wrap h1 span { color: var(--acid-dark); font-weight: 300; }
.legal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; }.legal-block { border-top: 1px solid #b7c2bc; padding-top: 25px; }
.legal-block h2 { font-size: 27px; letter-spacing: -.03em; }.legal-block dl { margin: 0; }.legal-block dl div { padding: 12px 0; border-bottom: 1px solid #d3dbd6; }
.legal-block dt { color: #68786f; font: 9px ui-monospace, monospace; letter-spacing: .1em; text-transform: uppercase; }.legal-block dd { margin: 4px 0 0; line-height: 1.45; }.legal-block a { border-bottom: 1px solid #9ba9a1; }
.legal-note { grid-column: 1/-1; color: #63736b; line-height: 1.7; }.legal-back { display: inline-block; margin-top: 55px; padding-bottom: 7px; border-bottom: 1px solid #98a69f; font: 10px ui-monospace, monospace; letter-spacing: .1em; text-transform: uppercase; }

.ai-page { background: var(--ink); }
.ai-hero { min-height: 92svh; grid-template-columns: minmax(0, 1.15fr) minmax(310px, .65fr); }
.ai-hero h1 { font-size: clamp(55px, 7vw, 108px); }
.ai-stack { width: min(100%, 430px); justify-self: end; display: grid; gap: 10px; }
.ai-stack-row { position: relative; padding: 18px 20px; display: flex; justify-content: space-between; align-items: center; border: 1px solid var(--line-strong); background: rgba(11,23,20,.7); font: 10px ui-monospace, monospace; letter-spacing: .1em; text-transform: uppercase; }
.ai-stack-row::before { content: ""; position: absolute; left: -5px; top: 50%; width: 9px; height: 9px; transform: translateY(-50%); border-radius: 50%; background: var(--acid); box-shadow: 0 0 15px rgba(184,255,61,.6); }
.ai-stack-row span:first-child { color: var(--muted); }.ai-stack-row span:last-child { color: var(--acid); }
.ai-intro { max-width: var(--max); margin: auto; display: grid; grid-template-columns: 1fr 3fr; gap: 60px; }
.ai-intro h2 { max-width: 960px; margin-bottom: 35px; font-size: clamp(43px, 6vw, 84px); line-height: .98; }
.ai-intro h2 span { color: var(--acid); font-weight: 300; }
.ai-intro-copy > p { max-width: 790px; color: var(--muted); font-size: clamp(18px, 1.8vw, 24px); line-height: 1.65; }
.ai-capabilities { border-top: 1px solid var(--line); background: #0a1512; }
.ai-capabilities-inner { max-width: var(--max); margin: auto; }
.ai-card-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line-strong); border-left: 1px solid var(--line-strong); }
.ai-card { min-height: 310px; padding: clamp(28px, 4vw, 52px); border-right: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong); }
.ai-card > span { color: var(--acid); font: 10px ui-monospace, monospace; letter-spacing: .12em; }
.ai-card h3 { margin: 62px 0 18px; font: 500 clamp(25px, 3vw, 38px)/1.05 "Space Grotesk", sans-serif; letter-spacing: -.04em; }
.ai-card p { max-width: 510px; margin: 0; color: var(--muted); line-height: 1.65; }
.ai-principles { max-width: var(--max); margin: auto; display: grid; grid-template-columns: 1fr 2fr; gap: clamp(60px, 10vw, 150px); }
.ai-principles h2 { font-size: clamp(46px, 6vw, 80px); line-height: .98; }.ai-principles h2 span { color: var(--acid); font-weight: 300; }
.principle-list { margin: 10px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line-strong); }
.principle-list li { display: grid; grid-template-columns: 45px 1fr; padding: 27px 0; border-bottom: 1px solid var(--line); }
.principle-list span { color: var(--acid); font: 10px ui-monospace, monospace; }.principle-list strong { font-size: 19px; font-weight: 600; }.principle-list p { margin: 7px 0 0; color: var(--muted); line-height: 1.55; }
.ai-contact { min-height: 560px; }

.detail-page { background: var(--ink); }
.detail-hero { min-height: 88svh; grid-template-columns: minmax(0, 1.2fr) minmax(300px, .55fr); }
.detail-hero h1 { font-size: clamp(52px, 6.7vw, 104px); }
.detail-hero .hero-lead { max-width: 760px; }
.detail-intro { max-width: var(--max); margin: auto; display: grid; grid-template-columns: 1fr 3fr; gap: 60px; }
.detail-intro h2 { max-width: 970px; margin-bottom: 28px; font-size: clamp(42px, 5.8vw, 82px); line-height: .98; }
.detail-intro h2 span { color: var(--acid); font-weight: 300; }
.detail-intro-copy > p { max-width: 790px; color: var(--muted); font-size: clamp(18px, 1.8vw, 24px); line-height: 1.65; }
.detail-services { border-top: 1px solid var(--line); background: #0a1512; }
.detail-services-inner { max-width: var(--max); margin: auto; }
.detail-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-strong); border-left: 1px solid var(--line-strong); }
.detail-card { min-height: 320px; padding: clamp(28px, 3.5vw, 46px); border-right: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong); }
.detail-card > span { color: var(--acid); font: 10px ui-monospace, monospace; letter-spacing: .12em; }
.detail-card h3 { margin: 65px 0 18px; font: 500 clamp(24px, 2.7vw, 35px)/1.08 "Space Grotesk", sans-serif; letter-spacing: -.04em; }
.detail-card p { margin: 0; color: var(--muted); line-height: 1.65; }
.detail-usecases { max-width: var(--max); margin: auto; display: grid; grid-template-columns: 1fr 2fr; gap: clamp(60px, 10vw, 150px); }
.detail-usecases h2 { font-size: clamp(44px, 5.8vw, 78px); line-height: .98; }.detail-usecases h2 span { color: var(--acid); font-weight: 300; }

@media (max-width: 850px) {
  .site-header { height: 70px; }
  .menu-toggle { display: block; z-index: 2; cursor: pointer; }
  .navigation { position: fixed; inset: 0; padding: 110px var(--pad) 50px; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 28px; background: rgba(7,17,15,.98); font-size: 17px; transform: translateX(100%); visibility: hidden; transition: transform .35s, visibility .35s; }
  .navigation.open { transform: none; visibility: visible; }
  .navigation .nav-cta { margin-top: 20px; }
}
@media (max-width: 760px) {
  .site-header { height: 70px; }
  .menu-toggle { display: block; z-index: 2; cursor: pointer; }
  .navigation { position: fixed; inset: 0; padding: 110px var(--pad) 50px; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 28px; background: rgba(7,17,15,.98); font-size: 17px; transform: translateX(100%); visibility: hidden; transition: transform .35s, visibility .35s; }
  .navigation.open { transform: none; visibility: visible; }.navigation .nav-cta { margin-top: 20px; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 150px; }.signal-card { justify-self: start; max-width: 480px; }.scroll-cue { display: none; }
  .statement, .section-heading, .contact { grid-template-columns: 1fr; gap: 25px; }
  .approach, .about { grid-template-columns: 1fr; }.about-visual { justify-self: start; order: 2; }.about-copy { order: 1; }
  .ai-hero, .ai-intro, .ai-principles, .detail-hero, .detail-intro, .detail-usecases { grid-template-columns: 1fr; }.ai-stack { justify-self: start; }
  .site-footer { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  h1 { font-size: clamp(49px, 16vw, 78px); }.hero { gap: 60px; }.hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .signal-card { padding: 18px; }.section-pad { padding-top: 90px; padding-bottom: 90px; }
  .service { grid-template-columns: 38px 1fr 22px; gap: 15px; padding: 30px 0; }.service-icon { display: none; }.service h3 { font-size: 25px; }.service div p { font-size: 14px; }
  .terminal, .profile-card { box-shadow: 15px 15px 0 #d7dfd9; }.terminal pre { min-height: 340px; font-size: 12px; }.experience-stats { grid-template-columns: 1fr; }
  .contact { min-height: 570px; }.site-footer { grid-template-columns: 1fr; }.legal-grid { grid-template-columns: 1fr; gap: 45px; }.legal-note { grid-column: auto; }
  .ai-card-grid, .detail-card-grid { grid-template-columns: 1fr; }.ai-card, .detail-card { min-height: 260px; }.ai-card h3, .detail-card h3 { margin-top: 42px; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *,*::before,*::after { animation: none !important; transition-duration: .01ms !important; } .reveal { opacity: 1; transform: none; } }
