:root {
  color-scheme: dark;
  --ink: #070a0f;
  --ink-soft: #0d1219;
  --panel: #111720;
  --white: #f4f7f6;
  --muted: #a8b0b8;
  --line: rgb(255 255 255 / 0.12);
  --divider: rgb(88 199 255 / 0.65);
  --cyan: #58c7ff;
  --violet: #8f7cff;
  --amber: #ffc46b;
  --font-display: "Manrope", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-brand: "Homenaje", "Manrope", system-ui, sans-serif;
  --shell: min(1280px, calc(100vw - 48px));
  --radius: 1.5rem;
}

@property --glow-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body { margin: 0; min-width: 320px; overflow-x: hidden; color: var(--white); background: var(--ink); font: 400 1rem/1.65 var(--font-body); }
body::selection { color: var(--ink); background: var(--cyan); }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img, svg { display: block; max-width: 100%; }
.shell { width: var(--shell); margin-inline: auto; }
.section-pad { padding-block: clamp(6rem, 11vw, 10rem); }
.skip-link { position: fixed; z-index: 1000; top: 1rem; left: 1rem; translate: 0 -200%; padding: .75rem 1rem; color: var(--ink); background: var(--cyan); border-radius: .5rem; }
.skip-link:focus { translate: 0; }
.page-glow { position: fixed; z-index: -1; inset: 0; pointer-events: none; background: radial-gradient(circle at 70% 20%, rgb(88 242 209 / .06), transparent 32%), radial-gradient(circle at 10% 70%, rgb(143 124 255 / .05), transparent 28%); }

.site-header { position: fixed; z-index: 100; top: 0; left: 0; width: 100%; display: grid; grid-template-columns: auto 1fr auto; column-gap: clamp(2rem, 3vw, 3.5rem); align-items: center; padding: 1.25rem max(24px, calc((100vw - 1280px) / 2)); border-bottom: 1px solid transparent; transition: .35s ease; }
.site-header.is-scrolled { padding-block: .8rem; background: rgb(7 10 15 / .74); border-color: var(--line); backdrop-filter: blur(22px) saturate(150%); }
.brand { display: inline-flex; justify-self: start; align-items: center; gap: .7rem; }
.brand-mark { display: grid; width: 5.6rem; aspect-ratio: 2 / 1; place-items: center; overflow: hidden; }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-copy { display: flex; align-items: center; line-height: 1; }
.brand-copy strong { display: inline-flex; align-items: baseline; color: var(--white); font: 400 2.1rem/.95 var(--font-brand); letter-spacing: .035em; white-space: nowrap; }
.brand-myfi { display: inline-block; margin-right: .16em; color: #67ceff; font-size: 1.1em; font-weight: 700; letter-spacing: .045em; -webkit-text-stroke: .2px currentColor; text-shadow: 0 0 16px rgb(88 199 255 / .28); }
.brand-smart, .brand-homes { font-family: var(--font-display); font-size: .88em; font-weight: 600; line-height: 1; letter-spacing: -.035em; }
.brand-smart { color: #a9e59f; text-shadow: 0 0 14px rgb(169 229 159 / .14); }
.brand-homes { margin-left: .045em; color: var(--white); text-shadow: 0 0 12px rgb(255 255 255 / .08); }
.desktop-nav { display: flex; justify-self: center; align-items: center; gap: 2rem; }
.desktop-nav a, .footer-links a { color: #d2d7db; font-size: .88rem; transition: color .25s ease; }
.desktop-nav a:hover, .footer-links a:hover { color: var(--cyan); }
.desktop-nav a[aria-current="page"] { color: var(--cyan); }
.services-menu { position: relative; }
.services-menu-trigger { display: inline-flex; align-items: center; gap: .38rem; }
.services-menu-trigger > span, .mobile-services summary > span { position: relative; width: .72rem; height: .72rem; display: inline-grid; flex: 0 0 auto; place-items: center; overflow: hidden; color: transparent; }
.services-menu-trigger > span::before, .mobile-services summary > span::before { content: ""; width: .42rem; height: .42rem; border-right: 1.5px solid var(--cyan); border-bottom: 1.5px solid var(--cyan); transform: translateY(-.11rem) rotate(45deg); transition: transform .25s ease; }
.services-menu::before { content: ""; position: absolute; top: 100%; left: -1rem; width: calc(100% + 2rem); height: 1rem; }
.services-submenu { position: absolute; top: calc(100% + .9rem); left: 50%; z-index: 10; width: 225px; display: grid; gap: .12rem; padding: .55rem; opacity: 0; visibility: hidden; transform: translate(-50%, -6px); border: 1px solid rgb(88 199 255 / .26); border-radius: .9rem; background: rgb(9 14 20 / .96); box-shadow: 0 18px 45px rgb(0 0 0 / .38), 0 0 24px rgb(88 199 255 / .1); backdrop-filter: blur(18px); transition: opacity .22s ease, visibility .22s ease, transform .22s ease; }
.services-submenu a { display: flex; align-items: center; gap: .7rem; padding: .62rem .72rem; border-radius: .58rem; color: #dce2e5; font-size: .79rem; }
.services-submenu a::before { content: ""; width: .35rem; height: .35rem; flex: 0 0 auto; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px rgb(88 199 255 / .65); }
.services-submenu a:hover, .services-submenu a[aria-current="page"] { color: var(--white); background: rgb(88 199 255 / .1); }
.services-menu:hover .services-submenu, .services-menu:focus-within .services-submenu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.services-menu:hover .services-menu-trigger > span::before, .services-menu:focus-within .services-menu-trigger > span::before { transform: translateY(.11rem) rotate(225deg); }
.desktop-nav .nav-app { display: inline-flex; align-items: center; gap: .48rem; padding: .32rem .6rem; margin-block: -.32rem; border: 1px solid #7bd9ff; border-radius: .62rem; background: linear-gradient(135deg, rgb(20 63 92 / .97), rgb(20 91 111 / .97) 52%, rgb(30 61 101 / .97)); box-shadow: 0 6px 18px rgb(0 0 0 / .24), 0 0 18px rgb(88 199 255 / .2); backdrop-filter: blur(14px); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease; }
.nav-app::before { content: "↓"; display: grid; flex: 0 0 auto; width: 1.3rem; aspect-ratio: 1; place-items: center; color: #fff; font-size: .72rem; border: 1px solid rgb(255 255 255 / .55); border-radius: 50%; background: rgb(255 255 255 / .15); box-shadow: 0 0 12px rgb(112 220 255 / .24); }
.nav-app > span { display: grid; line-height: 1.05; }
.nav-app strong { color: #fff; font: 700 .76rem/1.05 var(--font-display); }
.nav-app small { margin-top: .14rem; color: #cbd5db; font-size: .53rem; letter-spacing: .015em; }
.desktop-nav .nav-app:hover { border-color: #b5ebff; background: linear-gradient(135deg, rgb(25 79 111 / .98), rgb(24 111 128 / .98) 52%, rgb(40 77 121 / .98)); box-shadow: 0 10px 30px rgb(0 0 0 / .3), 0 0 30px rgb(88 199 255 / .34); transform: translateY(-2px); }
.header-actions { justify-self: end; display: flex; align-items: center; gap: .65rem; }
.header-cta { padding: .7rem 1rem; color: var(--white); font-size: .84rem; white-space: nowrap; border: 2px solid transparent; border-radius: 999px; background-color: #0b1017; background-image: linear-gradient(135deg, rgb(17 25 36 / .98), rgb(8 12 18 / .98)), conic-gradient(from var(--glow-angle), var(--cyan), var(--violet), #58f2d1, var(--cyan)); background-origin: border-box; background-clip: padding-box, border-box; box-shadow: 0 0 22px rgb(88 199 255 / .14); animation: spin-glow 5s linear infinite; transition: transform .25s ease, box-shadow .25s ease; }
.header-cta:hover { transform: translateY(-2px); box-shadow: 0 0 28px rgb(88 199 255 / .24), 0 0 20px rgb(143 124 255 / .16); }
.menu-button, .mobile-nav { display: none; }

.hero { position: relative; width: 100%; min-height: 100svh; display: grid; align-items: center; overflow: hidden; isolation: isolate; }
.hero-media, .hero-overlay { position: absolute; z-index: -2; inset: 0; }
.hero-media { inset: -3px; overflow: hidden; }
.hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: 57% center; transform: scale(1.03); transition: opacity .45s ease; animation: hero-breathe 14s ease-in-out infinite alternate; }
.hero-media img.is-changing { opacity: .18; }
.hero-overlay { z-index: -1; background: linear-gradient(90deg, rgb(7 10 15 / .88) 0%, rgb(7 10 15 / .7) 30%, rgb(7 10 15 / .18) 70%, rgb(7 10 15 / .1)), linear-gradient(0deg, rgb(7 10 15 / .72) 0%, transparent 25%, rgb(7 10 15 / .12)); }
.hero-content { padding-top: 10.5rem; }
.eyebrow { display: flex; align-items: center; gap: .8rem; margin: 0 0 1.6rem; color: #d6dcdf; font: 500 .72rem/1.2 var(--font-display); letter-spacing: .18em; text-transform: uppercase; }
.eyebrow > span { width: 2rem; height: 1px; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 880px; margin-bottom: 1.75rem; font: 500 clamp(4rem, 9.5vw, 9rem)/.9 var(--font-display); letter-spacing: -.065em; }
h1 em, h2 em { color: var(--cyan); font: inherit; font-style: normal; letter-spacing: -.025em; }
h1 em { display: inline-block; margin-top: .08em; color: #58c7ff; font-weight: 600; letter-spacing: -.035em; text-shadow: 0 0 28px rgb(88 199 255 / .4), 0 4px 22px rgb(0 0 0 / .9); }
.hero-intro { max-width: 35rem; margin-bottom: 2.2rem; color: #c3c9cd; font-size: clamp(1.05rem, 1.5vw, 1.25rem); }
.hero-actions { display: flex; align-items: center; gap: 2rem; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 1.3rem; padding: .95rem 1.2rem .95rem 1.4rem; font-weight: 600; border-radius: 999px; transition: transform .25s ease, box-shadow .25s ease; }
.button > span[aria-hidden="true"] { display: grid; width: 1.9rem; aspect-ratio: 1; place-items: center; border-radius: 50%; background: rgb(255 255 255 / .08); }
.button-primary { color: var(--white); border: 2px solid transparent; background-color: #0b1017; background-image: linear-gradient(135deg, rgb(17 25 36 / .98), rgb(8 12 18 / .98)), conic-gradient(from var(--glow-angle), var(--cyan), #8f7cff, #f4f7f6, #58f2d1, var(--cyan)); background-origin: border-box; background-clip: padding-box, border-box; box-shadow: 0 10px 30px rgb(0 0 0 / .28), 0 0 24px rgb(88 199 255 / .16); animation: spin-glow 5s linear infinite; }
.button-primary > span[aria-hidden="true"] { color: var(--cyan); border: 1px solid rgb(88 199 255 / .22); box-shadow: inset 0 0 14px rgb(88 199 255 / .08); }
.button-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 38px rgb(0 0 0 / .32), 0 0 32px rgb(88 242 209 / .22), 0 0 26px rgb(143 124 255 / .2); }
.text-link { display: inline-flex; align-items: center; gap: .75rem; color: #d7dcdf; font-size: .92rem; }
.hero-explore { font-size: 1.12rem; font-weight: 600; }
.text-link span { color: var(--cyan); transition: transform .25s ease; }
.text-link:hover span { transform: translate(.2rem, -.2rem); }
.hero-status { position: absolute; right: max(24px, calc((100vw - 1280px) / 2)); bottom: 7rem; width: min(350px, calc(100vw - 48px)); padding: 1rem; border: 1px solid rgb(255 255 255 / .16); border-radius: 1rem; background: rgb(9 14 20 / .58); box-shadow: 0 24px 70px rgb(0 0 0 / .3); backdrop-filter: blur(18px); }
.status-head { display: flex; justify-content: space-between; padding: .1rem .25rem .8rem; color: #e2e7e8; font-size: .75rem; border-bottom: 1px solid var(--line); }
.status-head i { display: inline-block; width: .45rem; height: .45rem; margin-right: .4rem; background: #58f2a7; border-radius: 50%; box-shadow: 0 0 12px #58f2a7; }
.status-head time { color: var(--muted); }
.status-grid { display: grid; grid-template-columns: repeat(3, 1fr); padding-top: .8rem; }
.status-grid div { display: grid; padding-inline: .5rem; border-right: 1px solid var(--line); }
.status-grid div:last-child { border: 0; }
.status-grid strong { font-size: .85rem; }
.status-grid span { color: var(--muted); font-size: .65rem; }
.scroll-cue { position: absolute; bottom: 2rem; left: 50%; display: flex; align-items: center; gap: 1rem; color: #aeb6bb; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; translate: -50% 0; writing-mode: vertical-rl; }
.scroll-cue i { width: 1px; height: 2.8rem; overflow: hidden; background: var(--line); }
.scroll-cue i::after { content: ""; display: block; width: 100%; height: 40%; background: var(--cyan); animation: scroll-line 2s ease-in-out infinite; }

.section-kicker { display: flex; align-items: center; gap: 1rem; margin-bottom: 4rem; color: #c5ccd1; font: 600 .9rem/1.2 var(--font-display); letter-spacing: .14em; text-transform: uppercase; }
.section-kicker span { color: var(--cyan); }
.statement-grid { display: grid; grid-template-columns: 1.55fr .65fr; gap: clamp(3rem, 8vw, 8rem); align-items: end; margin-bottom: 6rem; }
.statement h2, .systems h2, .approach h2, .contact h2 { margin-bottom: 0; font: 500 clamp(2.35rem, 4.5vw, 4.6rem)/1.05 var(--font-display); letter-spacing: -.04em; text-wrap: balance; }
.heading-line { display: block; }
.statement-copy { padding-bottom: .6rem; }
.statement-copy p { margin-bottom: 1.8rem; color: var(--muted); font-size: 1.08rem; }
.scene-lab { min-height: 540px; display: grid; grid-template-columns: 1.4fr .8fr; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--ink-soft); }
.scene-visual { position: relative; display: grid; place-items: center; overflow: hidden; background: #080b10; }
.scene-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgb(7 10 15 / .62), transparent 36%); pointer-events: none; }
.scene-image { width: 100%; height: 100%; max-width: none; object-fit: cover; transition: opacity .28s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.scene-visual.is-changing .scene-image { opacity: .58; transform: scale(1.025); }
.scene-caption { position: absolute; z-index: 1; bottom: 1.5rem; left: 1.5rem; display: grid; text-shadow: 0 2px 16px rgb(0 0 0 / .75); }
.scene-caption span { font: 500 1.5rem/1 var(--font-display); }
.scene-caption small { margin-top: .5rem; color: var(--muted); }
.scene-controls { display: flex; flex-direction: column; justify-content: center; padding: clamp(1.75rem, 3.5vw, 3.5rem); border-left: 1px solid var(--line); }
.scene-controls h3 { max-width: 12ch; margin-bottom: 1rem; font: 500 clamp(2rem, 3vw, 3.35rem)/1.06 var(--font-display); letter-spacing: -.04em; text-wrap: balance; }
.scene-controls > p:not(.eyebrow) { color: var(--muted); }
.scene-tabs { display: grid; gap: .65rem; margin-top: 1.25rem; }
.scene-tab { display: flex; align-items: center; gap: 1rem; padding: .85rem 1rem; color: #d7dcdf; text-align: left; border: 1px solid var(--line); border-radius: .8rem; background: rgb(255 255 255 / .035); box-shadow: 0 8px 24px rgb(0 0 0 / .14); cursor: pointer; opacity: .78; transition: opacity .25s ease, transform .25s ease, background-color .25s ease, box-shadow .25s ease; }
.scene-tab span { color: var(--cyan); font-size: .7rem; }
.scene-tab::after { content: "Preview"; margin-left: auto; color: var(--muted); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; }
.scene-tab:hover { opacity: 1; transform: translateX(.25rem); background-color: rgb(255 255 255 / .065); }
.scene-tab.is-active { opacity: 1; border: 2px solid transparent; padding: calc(.85rem - 1px) calc(1rem - 1px); background-color: rgb(11 16 23 / .96); background-image: linear-gradient(rgb(11 16 23 / .96), rgb(11 16 23 / .96)), conic-gradient(from var(--glow-angle), var(--cyan), #8f7cff, #58f2d1, var(--cyan)); background-origin: border-box; background-clip: padding-box, border-box; box-shadow: 0 10px 30px rgb(0 0 0 / .24), 0 0 22px rgb(88 199 255 / .16); animation: spin-glow 5s linear infinite; }
.scene-tab.is-active::after { content: "Viewing"; color: var(--cyan); }

.systems { background: #0a0e14; border-block: 1px solid var(--divider); }
.systems-heading { margin-bottom: 5rem; }
.systems-heading .section-kicker { margin: 0 0 clamp(2.4rem, 5vw, 4rem); }
.systems-heading h2 { max-width: 1000px; }
.capability-grid { display: grid; grid-template-columns: 1.15fr repeat(3, 1fr); border-block: 1px solid var(--line); }
.capability { position: relative; min-height: 430px; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; overflow: hidden; border-right: 1px solid var(--line); container-type: inline-size; transition: background .4s ease; }
.capability::after { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(0deg, rgb(7 10 15 / .92) 0%, rgb(7 10 15 / .52) 28%, transparent 58%); pointer-events: none; }
.capability:last-child { border-right: 0; }
.capability-image { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; transform: scale(1.01); transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.capability:hover .capability-image { transform: scale(1.045); }
.capability-number { position: absolute; z-index: 2; top: 1.5rem; left: 1.5rem; color: rgb(255 255 255 / .7); font-size: .7rem; }
.capability-content { position: relative; z-index: 2; }
.capability svg { width: 2.8rem; height: 2.8rem; margin-bottom: 1.35rem; padding: .58rem; fill: none; stroke: var(--cyan); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; border: 2px solid transparent; border-radius: .75rem; background-color: rgb(7 10 15 / .82); background-image: linear-gradient(rgb(7 10 15 / .82), rgb(7 10 15 / .82)), conic-gradient(from var(--glow-angle), var(--cyan), #8f7cff, #58f2d1, var(--cyan)); background-origin: border-box; background-clip: padding-box, border-box; box-shadow: 0 8px 28px rgb(0 0 0 / .32), 0 0 22px rgb(88 199 255 / .16); backdrop-filter: blur(10px); animation: spin-glow 5s linear infinite; }
.capability:nth-child(2) svg { animation-delay: -1.25s; }
.capability:nth-child(3) svg { animation-delay: -2.5s; }
.capability:nth-child(4) svg { animation-delay: -3.75s; }
.capability h3 { margin-bottom: .8rem; font: 500 1.25rem/1.2 var(--font-display); }
.capability p { margin: 0; color: var(--muted); font-size: .9rem; }

.approach-intro { display: grid; grid-template-columns: 1.4fr .7fr; gap: 6rem; align-items: end; margin-bottom: 3.5rem; }
.approach-intro p { max-width: 30rem; margin-bottom: .5rem; color: var(--muted); font-size: 1.08rem; }
.process-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin: 0; padding: 0; list-style: none; }
.process-list li { --step-accent: var(--cyan); position: relative; display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-content: start; align-items: center; padding: .8rem 1rem 1.4rem; overflow: hidden; border: 1px solid rgb(255 255 255 / .12); border-radius: 1.1rem; background: linear-gradient(145deg, rgb(255 255 255 / .055), rgb(255 255 255 / .018) 62%, color-mix(in srgb, var(--step-accent) 7%, transparent)); box-shadow: 0 14px 34px rgb(0 0 0 / .12); transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease; }
.process-list li:nth-child(2) { --step-accent: #a9e59f; }
.process-list li:nth-child(3) { --step-accent: #a8d9f2; }
.process-list li::before { content: ""; position: absolute; inset: 0 0 auto; width: auto; height: 3px; background: var(--step-accent); box-shadow: 0 0 18px var(--step-accent); }
.process-list li:hover { transform: translateY(-.4rem); border-color: color-mix(in srgb, var(--step-accent) 44%, transparent); box-shadow: 0 18px 44px rgb(0 0 0 / .2), 0 0 24px color-mix(in srgb, var(--step-accent) 10%, transparent); }
.process-image { grid-column: 1 / -1; width: 100%; height: auto; aspect-ratio: 16 / 10; margin: 0 0 .25rem; overflow: hidden; border-radius: .75rem; background: #0b1017; }
.process-image img { width: 100%; height: 100%; max-width: none; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.process-list li:hover .process-image img { transform: scale(1.045); }
.process-list span { display: grid; width: 2.7rem; aspect-ratio: 1; place-items: center; color: var(--step-accent); font: 600 .72rem/1 var(--font-display); border: 1px solid color-mix(in srgb, var(--step-accent) 48%, transparent); border-radius: 50%; background: color-mix(in srgb, var(--step-accent) 9%, #0b1017); box-shadow: 0 0 20px color-mix(in srgb, var(--step-accent) 14%, transparent); }
.process-list h3 { margin: 0; color: #f7faf9; font: 600 clamp(1.65rem, 3vw, 2.5rem)/1 var(--font-display); letter-spacing: -.035em; }
.process-list p { grid-column: 1 / -1; max-width: 36rem; margin: 0; color: #b9c1c7; }

.contact { position: relative; overflow: hidden; text-align: center; border-top: 1px solid var(--divider); background: #090d12; isolation: isolate; }
.contact-glow { position: absolute; z-index: -1; inset: 15% 20%; background: radial-gradient(ellipse, rgb(88 242 209 / .13), transparent 65%); filter: blur(30px); }
.contact-inner { display: grid; justify-items: center; }
.contact .eyebrow { justify-content: center; }
.contact h2 { max-width: 900px; }
.contact p:not(.eyebrow) { max-width: 560px; margin: 2rem auto; color: var(--muted); font-size: 1.08rem; }
.contact-actions { display: grid; justify-items: center; gap: 1.15rem; }
.contact-form-toggle { padding: .35rem; border: 0; background: none; cursor: pointer; }
.contact-form-toggle span { font-size: 1.1rem; transition: transform .25s ease; }
.contact-form-toggle[aria-expanded="true"] span { transform: rotate(45deg); }
.contact-form { width: min(760px, 100%); display: grid; justify-items: center; gap: 1.25rem; margin-top: 2.5rem; padding: clamp(1.25rem, 3vw, 2rem); text-align: left; border: 1px solid var(--line); border-radius: 1.25rem; background: rgb(13 18 25 / .84); box-shadow: 0 24px 70px rgb(0 0 0 / .24); backdrop-filter: blur(18px); }
.contact-form[hidden] { display: none; }
.beta-form { scroll-margin-top: 7rem; }
.form-intro { width: 100%; padding-bottom: 1.1rem; text-align: center; border-bottom: 1px solid rgb(88 199 255 / .22); }
.form-intro strong { font: 600 1.35rem/1.2 var(--font-display); }
.contact .contact-form .form-intro p { margin: .55rem auto 0; color: var(--muted); font-size: .9rem; }
.form-grid { width: 100%; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.contact-form label { display: grid; gap: .45rem; color: #d8dde0; font-size: .78rem; letter-spacing: .04em; }
.contact-form .optional { color: #74808a; font-size: .65rem; letter-spacing: 0; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: .85rem .9rem; color: var(--white); font: 400 .95rem/1.4 var(--font-body); border: 1px solid var(--line); border-radius: .65rem; outline: 0; background: rgb(255 255 255 / .045); transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgb(88 199 255 / .12); }
.contact-form textarea { resize: vertical; }
.form-message { grid-column: 1 / -1; }
.form-trap { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; clip-path: inset(50%) !important; white-space: nowrap !important; }
.contact-form .button:disabled { cursor: wait; opacity: .65; transform: none; }
.contact .contact-form .form-status { width: 100%; max-width: 36rem; margin: 0; padding: .85rem 1rem; border: 1px solid var(--line); border-radius: .7rem; font-size: .86rem; line-height: 1.5; text-align: center; }
.contact .contact-form .form-status.is-success { color: #bdf9dc; border-color: rgb(88 242 167 / .35); background: rgb(88 242 167 / .08); }
.contact .contact-form .form-status.is-error { color: #ffd0d0; border-color: rgb(255 120 120 / .35); background: rgb(255 120 120 / .08); }
.form-status a { color: var(--white); text-decoration: underline; text-underline-offset: .2em; }
.contact .contact-form .form-note { margin: 0; color: #7f8991; font-size: .75rem; text-align: center; }
footer { padding-block: 3rem; border-top: 1px solid var(--divider); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr auto; gap: 2rem; align-items: start; }
.footer-brand { display: grid; justify-items: start; gap: .75rem; }
.footer-contact { display: grid; gap: .5rem; }
.footer-contact a,
.footer-contact .footer-location { display: inline-flex; align-items: center; gap: .55rem; color: #aeb6bb; font-size: .85rem; transition: color .25s ease; }
.footer-contact a:hover { color: var(--cyan); }
.footer-contact svg { width: 1rem; flex: 0 0 1rem; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.footer-capabilities { display: flex; flex-wrap: wrap; gap: .55rem; margin: 0; }
.footer-capabilities span { display: inline-flex; align-items: center; gap: .48rem; padding: .48rem .72rem; color: #dce6eb; font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; border: 1px solid rgb(255 255 255 / .12); border-radius: 999px; background: linear-gradient(135deg, rgb(255 255 255 / .07), rgb(255 255 255 / .025)); box-shadow: inset 0 1px 0 rgb(255 255 255 / .06); }
.footer-capabilities span::before { width: .42rem; height: .42rem; content: ""; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px rgb(88 199 255 / .8); }
.footer-capabilities span:nth-child(2)::before { background: #58f2a7; box-shadow: 0 0 10px rgb(88 242 167 / .75); }
.footer-capabilities span:nth-child(3)::before { background: var(--amber); box-shadow: 0 0 10px rgb(255 196 107 / .7); }
.footer-links { display: grid; justify-items: start; gap: .55rem; }
.footer-meta { grid-column: 1 / -1; display: flex; justify-content: space-between; margin-top: 2.5rem; padding-top: 1.5rem; color: #68727a; font-size: .72rem; border-top: 1px solid var(--line); }

.reveal { opacity: 0; translate: 0 1.2rem; transition: opacity .8s ease, translate .8s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; translate: 0; }
@keyframes hero-breathe { to { transform: scale(1.08); } }
@keyframes scroll-line { from { translate: 0 -110%; } to { translate: 0 280%; } }
@keyframes status-pulse { 50% { opacity: .55; box-shadow: 0 0 18px #58f2a7; } }
@keyframes spin-glow { to { --glow-angle: 360deg; } }

@media (max-width: 1100px) {
  :root { --shell: min(100% - 32px, 760px); }
  .site-header { grid-template-columns: 1fr auto; column-gap: 1rem; padding-inline: 16px; }
  .desktop-nav, .header-actions { display: none; }
  .menu-button { display: grid; justify-self: end; width: 2.75rem; height: 2.75rem; place-content: center; gap: .35rem; border: 2px solid transparent; border-radius: 50%; background-color: #0b1017; background-image: linear-gradient(rgb(7 10 15 / .92), rgb(7 10 15 / .92)), conic-gradient(from var(--glow-angle), var(--cyan), var(--violet), #58f2d1, var(--cyan)); background-origin: border-box; background-clip: padding-box, border-box; box-shadow: 0 0 22px rgb(88 199 255 / .18); animation: spin-glow 5s linear infinite; }
  .menu-button span { width: 1rem; height: 1px; background: var(--white); transition: .25s ease; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }
  .mobile-nav { position: absolute; top: 100%; left: 16px; right: 16px; display: grid; padding: 1rem; opacity: 0; visibility: hidden; transform: translateY(-8px); border: 1px solid var(--line); border-radius: 1rem; background: rgb(10 14 20 / .96); backdrop-filter: blur(20px); transition: .25s ease; }
  .mobile-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .mobile-nav a { padding: .8rem; border-bottom: 1px solid var(--line); }
  .mobile-services { border-bottom: 1px solid var(--line); }
  .mobile-services summary { display: flex; align-items: center; justify-content: space-between; padding: .8rem; color: #d2d7db; cursor: pointer; list-style: none; }
  .mobile-services summary::-webkit-details-marker { display: none; }
  .mobile-services[open] summary > span::before { transform: translateY(.11rem) rotate(225deg); }
  .mobile-services-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .35rem; padding: 0 .45rem .7rem; }
  .mobile-nav .mobile-services-list a { min-height: 2.8rem; display: flex; align-items: center; padding: .58rem .65rem; color: #bfc7cc; font-size: .75rem; line-height: 1.25; border: 1px solid rgb(255 255 255 / .08); border-radius: .55rem; background: rgb(255 255 255 / .035); }
  .mobile-nav .mobile-services-list a:hover, .mobile-nav .mobile-services-list a[aria-current="page"] { color: var(--white); border-color: rgb(88 199 255 / .3); background: rgb(88 199 255 / .09); }
  .mobile-nav .nav-app { display: flex; align-items: center; gap: .7rem; margin: .55rem 0; padding: .78rem .85rem; color: #fff; border: 1px solid #7bd9ff; border-radius: .7rem; background: linear-gradient(135deg, rgb(20 63 92 / .98), rgb(20 91 111 / .98) 52%, rgb(30 61 101 / .98)); box-shadow: 0 8px 24px rgb(0 0 0 / .24), 0 0 22px rgb(88 199 255 / .22); }
  .mobile-nav .nav-app::before { width: 1.55rem; font-size: .85rem; }
  .mobile-nav .nav-app strong { font-size: .82rem; }
  .mobile-nav .nav-app small { font-size: .62rem; }
  .mobile-nav .mobile-plan { margin-top: .65rem; color: var(--white); border: 2px solid transparent; border-radius: .75rem; background-color: #0b1017; background-image: linear-gradient(135deg, rgb(17 25 36 / .98), rgb(8 12 18 / .98)), conic-gradient(from var(--glow-angle), var(--cyan), var(--violet), #58f2d1, var(--cyan)); background-origin: border-box; background-clip: padding-box, border-box; box-shadow: 0 0 22px rgb(88 199 255 / .14); animation: spin-glow 5s linear infinite; }
  .mobile-plan span { float: right; color: var(--cyan); }
  .hero-content { padding-top: 8.5rem; padding-bottom: 12rem; }
  .hero-media img { object-position: 65% center; }
  .hero-overlay { background: linear-gradient(90deg, rgb(7 10 15 / .82), rgb(7 10 15 / .24)), linear-gradient(0deg, rgb(7 10 15 / .55), transparent 34%); }
  .hero-status { left: 16px; right: auto; bottom: 4.5rem; }
  .scroll-cue { display: none; }
  .statement-grid, .systems-heading, .approach-intro { grid-template-columns: 1fr; gap: 2rem; }
  .scene-lab { grid-template-columns: 1fr; }
  .scene-visual { min-height: 430px; }
  .scene-controls { border-top: 1px solid var(--line); border-left: 0; }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .capability { border-bottom: 1px solid var(--line); }
  .capability:nth-child(2) { border-right: 0; }
  .approach-intro { gap: 2rem; }
}

@media (max-width: 800px) {
  .process-list { grid-template-columns: 1fr; }
  .process-image { aspect-ratio: 16 / 9; }
}

@media (max-width: 620px) {
  .brand-mark { width: 4.35rem; }
  .brand-copy strong { font-size: 1.45rem; letter-spacing: .025em; }
  .section-pad { padding-block: 5rem; }
  .hero { min-height: max(760px, 100svh); align-items: start; }
  .hero-content { padding-top: 9.5rem; padding-bottom: 9rem; text-align: center; }
  .hero-content .eyebrow { justify-content: center; margin-bottom: 1.25rem; font-size: .68rem; letter-spacing: .14em; }
  .hero-content .eyebrow > span { display: none; }
  .hero-content h1 { margin-inline: auto; margin-bottom: 1.25rem; font-size: clamp(3.15rem, 15vw, 4.5rem); line-height: .94; letter-spacing: -.045em; }
  .hero-intro { max-width: 19rem; margin-inline: auto; margin-bottom: 1.75rem; font-size: 1rem; line-height: 1.5; }
  .hero-actions { align-items: center; flex-direction: column; gap: .9rem; }
  .hero-status { left: 50%; bottom: 1.25rem; width: calc(100% - 32px); padding: .9rem 1rem; transform: translateX(-50%); border-radius: .85rem; background: rgb(9 14 20 / .82); text-align: left; }
  .hero-status .status-head { align-items: center; padding: 0 .15rem .75rem; }
  .hero-status .status-head i { animation: status-pulse 2.4s ease-in-out infinite; }
  .hero-status .status-grid { gap: .45rem; padding-top: .75rem; }
  .hero-status .status-grid div { padding: .55rem .6rem; border: 0; border-radius: .6rem; background: rgb(255 255 255 / .045); }
  .hero-status .status-grid strong { font-size: .78rem; }
  .hero-status .status-grid span { font-size: .58rem; }
  .statement h2, .systems h2, .approach h2, .contact h2 { font-size: clamp(2rem, 9vw, 2.7rem); line-height: 1.06; letter-spacing: -.035em; }
  .heading-line { display: inline; }
  .heading-line::before { content: " "; }
  h2 em { line-height: inherit; letter-spacing: inherit; }
  .section-kicker { margin-bottom: 2.4rem; }
  .statement-grid { margin-bottom: 3.5rem; }
  .scene-lab { min-height: auto; }
  .scene-visual { min-height: 350px; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability { min-height: 330px; border-right: 0; }
  .process-list li { grid-template-columns: auto 1fr; gap: 1rem; padding: .75rem 1rem 1.25rem; }
  .process-image { grid-column: 1 / -1; width: 100%; height: 190px; }
  .process-list span { width: 2.35rem; }
  .process-list p { grid-column: 2 / -1; }
  .footer-grid { grid-template-columns: 1fr; }
  footer { text-align: center; }
  .footer-grid { justify-items: center; }
  .footer-brand,
  .footer-contact,
  .footer-links { justify-items: center; }
  .footer-brand .brand { justify-self: center; }
  .footer-contact a,
  .footer-contact .footer-location { justify-content: center; }
  .footer-capabilities { justify-content: center; }
  .form-grid { grid-template-columns: 1fr; }
  .form-message { grid-column: auto; }
  .footer-meta { width: 100%; align-items: center; gap: 1rem; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .button-primary, .header-cta, .mobile-plan, .menu-button, .capability svg, .scene-tab.is-active { --glow-angle: 135deg; animation: none; }
  .reveal { opacity: 1; translate: 0; }
}
