:root {
  --bg: #07100e;
  --bg-2: #0b1714;
  --panel: #101e1a;
  --panel-2: #14241f;
  --text: #f3f6ed;
  --muted: #a8b5ad;
  --line: rgba(255,255,255,.11);
  --accent: #c9ff3d;
  --accent-2: #76e7c2;
  --ink: #09100b;
  --shadow: 0 28px 80px rgba(0,0,0,.28);
  --radius: 30px;
  --container: 1180px;
  color-scheme: dark;
}

[data-theme="light"] {
  --bg: #f3f4ec;
  --bg-2: #e9ece2;
  --panel: #fcfdf7;
  --panel-2: #e3e8dc;
  --text: #10211b;
  --muted: #5d6d65;
  --line: rgba(12,35,27,.13);
  --accent: #9bcb18;
  --accent-2: #179b78;
  --ink: #0c1a15;
  --shadow: 0 28px 80px rgba(32,59,48,.12);
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { margin: 0; min-width: 320px; background: var(--bg); color: var(--text); font-family: "Segoe UI", Tahoma, Arial, sans-serif; line-height: 1.65; overflow-x: hidden; }
body::before { content: ""; position: fixed; inset: 0; z-index: -2; background: radial-gradient(circle at 78% 5%, rgba(107,241,191,.08), transparent 28%), radial-gradient(circle at 10% 28%, rgba(201,255,61,.04), transparent 24%); pointer-events: none; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }
::selection { background: var(--accent); color: var(--ink); }
.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.skip-link { position: fixed; inset-inline-start: 12px; top: -60px; z-index: 1000; padding: 12px 18px; background: var(--accent); color: var(--ink); border-radius: 10px; }
.skip-link:focus { top: 12px; }
.noise { position: fixed; inset: 0; z-index: 20; pointer-events: none; opacity: .035; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' 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='.8'/%3E%3C/svg%3E"); }

.site-header { position: sticky; top: 0; z-index: 100; padding: 20px 0; transition: .3s ease; }
.nav-wrap { min-height: 72px; padding: 10px 12px 10px 18px; display: flex; align-items: center; justify-content: space-between; gap: 28px; border: 1px solid var(--line); background: color-mix(in srgb, var(--bg) 78%, transparent); backdrop-filter: blur(20px); border-radius: 22px; box-shadow: 0 10px 40px rgba(0,0,0,.08); }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { width: 48px; height: 48px; display: grid; place-items: center; flex: none; border-radius: 15px; background: var(--accent); color: var(--ink); font-size: 18px; font-weight: 900; transform: rotate(-5deg); }
.brand-copy { display: grid; line-height: 1.15; }
.brand-copy b { font-size: 15px; }
.brand-copy small { margin-top: 5px; color: var(--muted); font-size: 10px; letter-spacing: .04em; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { position: relative; color: var(--muted); font-size: 14px; font-weight: 650; transition: .2s; }
.nav-links a::after { content: ""; position: absolute; right: 0; left: 0; bottom: -9px; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: right; transition: transform .25s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active::after { transform: scaleX(1); }
.nav-actions { display: flex; gap: 8px; }
.theme-toggle, .menu-toggle { width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 14px; color: var(--text); background: var(--panel); cursor: pointer; display: grid; place-items: center; }
.theme-toggle svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; }
.menu-toggle { display: none; }

.hero { min-height: 780px; display: grid; grid-template-columns: 1.04fr .96fr; gap: 72px; align-items: center; padding-top: 62px; padding-bottom: 100px; }
.eyebrow, .section-kicker { display: flex; align-items: center; gap: 10px; color: var(--accent-2); font-size: 13px; font-weight: 750; letter-spacing: .04em; }
.eyebrow i { width: 9px; height: 9px; border: 2px solid var(--accent); border-radius: 50%; box-shadow: 0 0 0 5px rgba(201,255,61,.1); }
.hero h1 { margin: 26px 0 28px; font-size: clamp(48px, 6.2vw, 88px); line-height: .98; letter-spacing: -.055em; font-weight: 850; }
.hero h1 em, .about-title em { color: var(--accent); font-style: normal; }
.hero-copy > p { max-width: 620px; margin: 0 0 34px; color: var(--muted); font-size: 19px; line-height: 1.9; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn { min-height: 54px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center; gap: 22px; border: 1px solid var(--line); border-radius: 16px; font-size: 14px; font-weight: 800; transition: transform .2s, background .2s, color .2s; }
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: var(--accent); color: var(--ink); border-color: var(--accent); }
.btn-ghost { background: var(--panel); }
.hero-proof { margin-top: 58px; display: flex; gap: 42px; }
.hero-proof div { display: grid; gap: 2px; }
.hero-proof strong { font-size: 28px; letter-spacing: -.04em; }
.hero-proof span { color: var(--muted); font-size: 11px; }

.hero-visual { position: relative; min-height: 620px; display: grid; place-items: center; perspective: 1200px; }
.visual-glow { position: absolute; width: min(480px, 100vw); height: min(480px, 100vw); border-radius: 50%; background: radial-gradient(circle, rgba(201,255,61,.22), rgba(53,155,124,.08) 45%, transparent 70%); filter: blur(8px); }
.phone-shell { position: relative; z-index: 2; width: min(354px, 82vw); padding: 10px; border: 1px solid rgba(255,255,255,.19); border-radius: 48px; background: linear-gradient(150deg, #293832, #0a110e 35%, #1c2923); box-shadow: 0 50px 100px rgba(0,0,0,.42), inset 0 0 0 1px rgba(255,255,255,.06); transform: rotateY(-8deg) rotateX(2deg) rotateZ(-2deg); }
.phone-top { height: 24px; display: grid; place-items: center; }
.phone-top span { width: 82px; height: 7px; background: #030504; border-radius: 99px; }
.phone-screen { min-height: 520px; padding: 28px 18px 18px; border-radius: 34px; overflow: hidden; background: linear-gradient(165deg, #182820, #07100d 58%); }
.screen-label { margin-bottom: 24px; color: #9eb0a7; font-size: 12px; }
.app-stack { display: grid; gap: 12px; }
.app-stack a { padding: 13px; display: grid; grid-template-columns: 56px 1fr auto; align-items: center; gap: 13px; color: #eff6ef; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.08); border-radius: 19px; transition: .25s; }
.app-stack a:hover { transform: translateX(-5px); background: rgba(255,255,255,.1); }
.app-stack img { width: 56px; aspect-ratio: 1; border-radius: 15px; }
.app-stack span { display: grid; line-height: 1.2; }
.app-stack b { font-size: 14px; }
.app-stack small { margin-top: 6px; color: #8fa198; font-size: 10px; }
.app-stack i { color: var(--accent); font-style: normal; }
.screen-footer { margin-top: 26px; padding: 18px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.08); color: #93a59c; font-size: 10px; }
.screen-footer b { color: #eff6ef; font-size: 13px; }
.float-chip { position: absolute; z-index: 3; padding: 11px 15px; display: flex; align-items: center; gap: 8px; border: 1px solid rgba(255,255,255,.14); background: rgba(15,29,24,.86); color: #e9f0eb; backdrop-filter: blur(14px); border-radius: 13px; box-shadow: var(--shadow); font-size: 11px; direction: ltr; }
.float-chip i { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px var(--accent); }
.chip-one { top: 18%; right: -1%; animation: float 4s ease-in-out infinite; }
.chip-two { bottom: 17%; left: -3%; animation: float 4s 1.2s ease-in-out infinite; }
@keyframes float { 50% { transform: translateY(-10px); } }

.ticker { overflow: hidden; border-block: 1px solid var(--line); background: var(--bg-2); transform: rotate(-1deg) scale(1.02); }
.ticker-track { width: max-content; padding: 20px 0; display: flex; align-items: center; gap: 25px; animation: marquee 28s linear infinite; direction: ltr; color: var(--muted); font-size: 13px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.ticker-track i { color: var(--accent); }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding-top: 150px; padding-bottom: 150px; }
.section-head { margin-bottom: 68px; display: grid; grid-template-columns: 1fr .7fr; gap: 72px; align-items: end; }
.section-head h2, .about-title h2, .contact-card h2 { margin: 16px 0 0; font-size: clamp(40px, 5.2vw, 68px); line-height: 1.03; letter-spacing: -.045em; }
.section-head > p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.9; }

.featured-app { min-height: 570px; display: grid; grid-template-columns: .9fr 1.1fr; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(125deg, color-mix(in srgb, #7549ff 16%, var(--panel)), var(--panel)); box-shadow: var(--shadow); }
.app-content { padding: 62px; display: flex; flex-direction: column; justify-content: center; }
.app-title-row { display: flex; align-items: center; gap: 18px; }
.app-title-row img { width: 72px; border-radius: 20px; box-shadow: 0 14px 25px rgba(0,0,0,.2); }
.app-title-row span, .app-card-top span { color: var(--accent-2); font-size: 11px; font-weight: 700; }
.app-title-row h3 { margin: 2px 0 0; font-size: 42px; line-height: 1; letter-spacing: -.04em; }
.app-content > p { margin: 30px 0; color: var(--muted); font-size: 16px; }
.feature-list { margin: 0 0 30px; padding: 0; display: grid; gap: 10px; list-style: none; color: var(--text); font-size: 13px; }
.feature-list li::before { content: "✓"; margin-left: 9px; color: var(--accent); }
.text-link { width: fit-content; display: inline-flex; align-items: center; gap: 12px; padding-bottom: 5px; border-bottom: 1px solid var(--accent); font-size: 13px; font-weight: 800; }
.app-media { position: relative; min-height: 520px; overflow: hidden; display: grid; place-items: end center; }
.media-orb { position: absolute; width: min(450px, 100vw); height: min(450px, 100vw); border-radius: 50%; background: linear-gradient(145deg, #5f37ec, #a5ff3b); filter: blur(.2px); opacity: .78; }
.shot-frame { position: relative; z-index: 2; width: 250px; padding: 9px 9px 0; border: 1px solid rgba(255,255,255,.22); border-radius: 30px 30px 0 0; background: #0c1210; box-shadow: 0 35px 70px rgba(0,0,0,.35); transform: translateY(4px) rotate(-2deg); }
.shot-frame img { width: 100%; min-height: 410px; object-fit: cover; object-position: top; border-radius: 22px 22px 0 0; }
.app-pair { margin-top: 28px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.app-card { position: relative; min-height: 610px; padding: 38px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }
.app-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 70% 20%, rgba(101,223,187,.12), transparent 35%); pointer-events: none; }
.app-kelmati::before { background: radial-gradient(circle at 70% 20%, rgba(72,119,255,.18), transparent 37%); }
.app-card-top { position: relative; display: flex; align-items: center; justify-content: space-between; }
.app-card-top img { width: 64px; border-radius: 18px; }
.mini-shot { width: 54%; height: 210px; margin: 24px auto 26px; overflow: hidden; border: 8px solid #101713; border-bottom: 0; border-radius: 26px 26px 0 0; box-shadow: 0 25px 50px rgba(0,0,0,.25); }
.mini-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.app-card h3 { margin: 0 0 10px; font-size: 34px; }
.app-card p { min-height: 78px; margin: 0 0 24px; color: var(--muted); font-size: 14px; }

.projects-section { background: var(--bg-2); border-block: 1px solid var(--line); }
.project-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.project-card { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 26px; background: var(--panel); transition: transform .3s, border-color .3s; }
a.project-card:hover { transform: translateY(-7px); border-color: color-mix(in srgb, var(--accent) 45%, var(--line)); }
.project-wide { grid-column: span 2; }
.project-image { position: relative; height: 430px; overflow: hidden; background: #0d1713; }
.project-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.project-card:hover .project-image img { transform: scale(1.025); }
.project-tall { height: 340px; }
.project-number { position: absolute; top: 20px; left: 20px; width: 50px; height: 50px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; background: rgba(4,10,8,.55); color: white; backdrop-filter: blur(10px); font-size: 12px; }
.project-body { padding: 30px 32px 34px; display: grid; grid-template-columns: 1fr minmax(160px, .7fr) auto; gap: 30px; align-items: end; }
.project-card:not(.project-wide) .project-body { grid-template-columns: 1fr auto; }
.project-card:not(.project-wide) .project-body p { grid-column: 1 / -1; grid-row: 2; }
.project-body span { color: var(--accent-2); font-size: 10px; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
.project-body h3 { margin: 4px 0 0; font-size: 30px; line-height: 1.15; }
.project-body p { margin: 0; color: var(--muted); font-size: 13px; }
.project-body > i { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--accent); font-style: normal; }
.visual-card { min-height: 540px; }
.dashboard-art, .send-art, .infra-art { position: relative; height: 340px; overflow: hidden; }
.dashboard-art { margin: 28px 28px 0; padding: 22px; background: #08120f; border: 1px solid rgba(255,255,255,.09); border-radius: 18px 18px 0 0; box-shadow: 0 28px 55px rgba(0,0,0,.35); transform: perspective(800px) rotateX(4deg); }
.dash-head { display: flex; gap: 6px; }
.dash-head span { width: 7px; height: 7px; border-radius: 50%; background: #31473e; }
.dash-metrics { margin-top: 25px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.dash-metrics b { height: 52px; border-radius: 10px; background: linear-gradient(145deg, #172a23, #0d1b16); border: 1px solid rgba(255,255,255,.05); }
.dash-chart { margin-top: 22px; padding: 18px; border-radius: 13px; background: #0d1b17; }
.dash-chart svg { width: 100%; overflow: visible; }
.dash-chart path { fill: none; stroke: var(--accent); stroke-width: 3; filter: drop-shadow(0 0 5px rgba(201,255,61,.4)); }
.dash-chart .line-two { stroke: #55d7b0; opacity: .5; }
.send-art { display: grid; place-items: center; background: radial-gradient(circle at 50% 45%, rgba(88,132,255,.25), transparent 48%), linear-gradient(145deg, #111a29, #0a101a); }
.paper { width: 250px; padding: 30px; border-radius: 20px; background: #f6f8f3; box-shadow: 0 28px 70px rgba(0,0,0,.35); transform: rotate(3deg); }
.paper > span { height: 11px; margin-bottom: 12px; display: block; border-radius: 8px; background: #dce2de; }
.paper > span:nth-child(2) { width: 72%; }
.paper button { width: 100%; margin-top: 14px; padding: 12px; border: 0; border-radius: 10px; background: #254dfa; color: white; font-size: 11px; }
.upload-bubble { position: absolute; right: 17%; top: 18%; width: 54px; height: 54px; display: grid; place-items: center; border-radius: 17px; background: var(--accent); color: var(--ink); font-size: 26px; box-shadow: 0 15px 35px rgba(0,0,0,.3); }
.infrastructure-card { min-height: 450px; }
.infra-art { height: 280px; display: flex; align-items: center; justify-content: center; direction: ltr; background: radial-gradient(circle at center, rgba(201,255,61,.11), transparent 47%), #0a1411; }
.node { position: relative; z-index: 2; width: 120px; height: 120px; display: grid; place-items: center; align-content: center; gap: 7px; border: 1px solid rgba(255,255,255,.14); background: #12231c; border-radius: 28px; box-shadow: 0 20px 45px rgba(0,0,0,.24); font-size: 35px; }
.node small { color: #a4b8ad; font-size: 9px; }
.route { width: 40%; display: flex; justify-content: space-evenly; align-items: center; border-top: 1px dashed rgba(201,255,61,.55); }
.route i { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); transform: translateY(-4px); box-shadow: 0 0 12px var(--accent); animation: routePulse 2s infinite alternate; }
.route i:nth-child(2) { animation-delay: .25s; }.route i:nth-child(3) { animation-delay: .5s;}.route i:nth-child(4) { animation-delay: .75s;}.route i:nth-child(5) { animation-delay: 1s;}
@keyframes routePulse { to { opacity: .25; transform: translateY(-4px) scale(.65); } }

.expertise-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-right: 1px solid var(--line); }
.expertise-card { min-height: 300px; padding: 38px; border-bottom: 1px solid var(--line); border-left: 1px solid var(--line); }
.expertise-card > span { color: var(--accent); font-size: 11px; }
.expertise-card h3 { margin: 38px 0 16px; font-size: 28px; }
.expertise-card p { max-width: 460px; color: var(--muted); font-size: 14px; }
.expertise-card > div { margin-top: 38px; color: var(--accent-2); font-size: 10px; font-weight: 700; letter-spacing: .05em; direction: ltr; text-align: right; }

.about-section { padding: 150px 0; background: var(--accent); color: var(--ink); }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; }
.about-section .section-kicker { color: #38500d; }
.about-title em { color: #355208; }
.about-copy { padding-top: 30px; }
.about-copy p { margin: 0 0 24px; font-size: 20px; line-height: 1.9; }
.principles { margin-top: 46px; display: flex; flex-wrap: wrap; gap: 9px; }
.principles span { padding: 9px 14px; border: 1px solid rgba(9,16,11,.25); border-radius: 99px; font-size: 11px; font-weight: 700; }

.contact-section { padding-top: 120px; padding-bottom: 120px; }
.contact-card { position: relative; min-height: 400px; padding: 70px; overflow: hidden; display: grid; grid-template-columns: 1.1fr .7fr; gap: 70px; align-items: center; border: 1px solid var(--line); border-radius: 34px; background: linear-gradient(130deg, #182820, #0c1713); color: #f3f6ed; }
.contact-card .section-kicker { color: #76e7c2; }
.contact-side { position: relative; z-index: 2; }
.contact-side p { margin: 0 0 28px; color: #a8b5ad; }
.contact-orbit { position: absolute; width: 430px; height: 430px; left: -120px; bottom: -220px; border: 1px solid rgba(201,255,61,.28); border-radius: 50%; box-shadow: 0 0 0 45px rgba(201,255,61,.025), 0 0 0 95px rgba(201,255,61,.018); }

.site-footer { padding: 28px 0 42px; border-top: 1px solid var(--line); }
.site-footer .container { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.site-footer .brand-mark { width: 40px; height: 40px; font-size: 14px; }
.site-footer p { color: var(--muted); font-size: 12px; }
.site-footer > .container > a { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; }

.reveal { opacity: 1; transform: none; transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.app-pair .reveal:nth-child(2), .project-grid .reveal:nth-child(even), .expertise-grid .reveal:nth-child(even) { transition-delay: .1s; }

@media (max-width: 920px) {
  .nav-links { position: absolute; top: calc(100% + 8px); left: 24px; right: 24px; padding: 18px; display: none; flex-direction: column; align-items: stretch; gap: 0; border: 1px solid var(--line); border-radius: 18px; background: var(--panel); box-shadow: var(--shadow); }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 12px; }
  .menu-toggle { display: grid; align-content: center; gap: 6px; }
  .menu-toggle span { width: 18px; height: 2px; background: currentColor; }
  .hero { grid-template-columns: 1fr; gap: 20px; text-align: center; padding-top: 70px; }
  .hero-copy > p { margin-inline: auto; }
  .eyebrow, .hero-actions, .hero-proof { justify-content: center; }
  .hero-visual { min-height: 580px; }
  .chip-one { right: 3%; }.chip-two { left: 3%; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .featured-app { grid-template-columns: 1fr; }
  .app-content { padding: 44px; }
  .app-media { min-height: 450px; }
  .app-pair { grid-template-columns: 1fr; }
  .project-body, .project-card:not(.project-wide) .project-body { grid-template-columns: 1fr auto; }
  .project-body p, .project-card:not(.project-wide) .project-body p { grid-column: 1 / -1; grid-row: 2; }
  .about-grid, .contact-card { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--container)); }
  .site-header { padding: 10px 0; }
  .nav-wrap { min-height: 64px; border-radius: 18px; }
  .brand-copy small { display: none; }
  .brand-mark { width: 42px; height: 42px; border-radius: 13px; }
  .theme-toggle, .menu-toggle { width: 42px; height: 42px; }
  .hero { min-height: auto; padding-top: 72px; padding-bottom: 75px; }
  .hero h1 { font-size: 48px; }
  .hero-copy > p { font-size: 16px; }
  .hero-actions .btn { width: 100%; }
  .hero-proof { gap: 22px; }
  .hero-proof strong { font-size: 23px; }
  .hero-visual { min-height: 520px; }
  .phone-shell { width: 310px; }
  .phone-screen { min-height: 470px; }
  .float-chip { display: none; }
  .section { padding-top: 100px; padding-bottom: 100px; }
  .section-head { margin-bottom: 42px; }
  .section-head h2, .about-title h2, .contact-card h2 { font-size: 42px; }
  .app-content { padding: 32px 26px; }
  .app-title-row h3 { font-size: 34px; }
  .app-media { min-height: 410px; }
  .app-card { min-height: 560px; padding: 26px; }
  .mini-shot { width: 68%; }
  .project-grid { grid-template-columns: 1fr; }
  .project-wide { grid-column: auto; }
  .project-image { height: 250px; }
  .project-body { padding: 24px; }
  .dashboard-art, .send-art { height: 280px; }
  .infra-art { height: 240px; }
  .node { width: 84px; height: 84px; border-radius: 22px; font-size: 26px; }
  .route { width: 28%; }
  .expertise-grid { grid-template-columns: 1fr; }
  .expertise-card { min-height: 270px; padding: 30px; }
  .about-section { padding: 100px 0; }
  .about-grid { gap: 35px; }
  .about-copy p { font-size: 17px; }
  .contact-section { padding-top: 80px; padding-bottom: 80px; }
  .contact-card { min-height: 450px; padding: 38px 26px; }
  .site-footer .container { align-items: flex-start; }
  .site-footer p { display: none; }
}

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