:root {
  --bg: #070b12;
  --bg2: #0d1420;
  --white: #111a28;
  --navy: #050811;
  --blue: #ffd75f;
  --blue-mid: #ffe38a;
  --blue-lt: #fff2bd;
  --ink: #f7f2e5;
  --mid: #c7cfdd;
  --muted: #8290a5;
  --amber: #ffc842;
  --amber2: #fff0a8;
  --border: rgba(255, 255, 255, .1);
  --border2: rgba(255, 255, 255, .06);
  --r: 16px;
  --side: clamp(1.5rem, 4vw, 3.5rem);
  --mw: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background:
    radial-gradient(circle at 75% -10%, rgba(255, 216, 102, .13), transparent 34rem),
    radial-gradient(circle at 8% 20%, rgba(255, 255, 255, .045), transparent 28rem),
    linear-gradient(180deg, #080d16 0%, var(--bg) 55%, #050811 100%);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

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

a { color: inherit; }
.inner { max-width: var(--mw); margin: 0 auto; }

.ai-notice {
  position: fixed;
  z-index: 260;
  top: 50%;
  left: 50%;
  width: 110vw;
  margin: 0;
  padding: .78rem calc(var(--side) + 5.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(90deg, rgba(255, 200, 66, .98), rgba(255, 240, 168, .98));
  color: #080d16;
  border-top: 1px solid rgba(255, 255, 255, .28);
  border-bottom: 1px solid rgba(5, 8, 17, .2);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .34);
  font-size: .88rem;
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
  transform: translate(-50%, -50%) rotate(-2.2deg);
  transform-origin: center;
  transition: opacity .18s ease, transform .18s ease;
}

.ai-notice strong {
  font-weight: 800;
}

.ai-notice p {
  max-width: 980px;
}

.ai-notice-close {
  flex: 0 0 auto;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid rgba(5, 8, 17, .28);
  border-radius: 999px;
  background: rgba(8, 13, 22, .09);
  color: #080d16;
  font-family: inherit;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  transition: background .2s, transform .15s;
}

.ai-notice-close:hover {
  background: rgba(8, 13, 22, .16);
  transform: scale(1.04);
}

.ai-notice.is-hiding {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(-2.2deg) scale(.98);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 64px;
  padding: 0 var(--side);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .4s, border-color .4s, backdrop-filter .4s;
}

header.solid,
header.scrolled {
  background: rgba(7, 11, 18, .88);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--border);
}

.h-logo {
  font-family: 'Zilla Slab', serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -.01em;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity .35s, transform .35s;
}

header.solid .h-logo,
header.scrolled .h-logo {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.h-logo em,
.f-logo em { font-style: normal; color: var(--amber); }

nav { display: flex; align-items: center; gap: 2.5rem; }

nav a,
.nav-drop-toggle {
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue-mid);
  text-decoration: none;
  transition: color .2s;
}

header.solid nav a,
header.scrolled nav a,
header.solid .nav-drop-toggle,
header.scrolled .nav-drop-toggle { color: var(--mid); }
nav a:hover,
.nav-drop-toggle:hover { color: var(--blue-mid); }

.nav-dropdown {
  position: relative;
  padding: .8rem 0;
}

.nav-drop-toggle {
  border: 0;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
  padding: 0;
}

.nav-drop-toggle::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: .5rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav-submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 290px;
  padding: .7rem;
  background: rgba(11, 17, 28, .96);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .4), 0 0 36px rgba(255, 200, 66, .08);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity .2s, transform .2s;
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown.open .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-submenu a,
header.solid .nav-submenu a,
header.scrolled .nav-submenu a {
  display: block;
  padding: .85rem .95rem;
  color: var(--mid);
  border-radius: 10px;
  letter-spacing: .08em;
  white-space: nowrap;
}

.nav-submenu a:hover {
  color: var(--blue-mid);
  background: rgba(255, 216, 102, .08);
}

.nav-cta {
  padding: .46rem 1.4rem;
  background: var(--blue);
  color: #080d16 !important;
  border-radius: 999px;
  font-size: .72rem !important;
  transition: background .2s, transform .15s !important;
}
.nav-cta:hover { background: var(--amber2) !important; transform: translateY(-1px); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--blue-mid);
  border-radius: 99px;
  transition: transform .22s, opacity .22s;
}

.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.hero,
.subhero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 8%, rgba(255, 216, 102, .14), transparent 32rem),
    linear-gradient(168deg, #050811 0%, #0b1220 58%, var(--bg) 100%);
}

.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px var(--side) 5rem;
}

.subhero { padding: 11rem var(--side) 6rem; }

.hero-glow,
.subhero::before {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 110vw;
  max-width: 1400px;
  height: 80vh;
  border-radius: 50%;
  background: radial-gradient(ellipse at center top, rgba(255, 216, 102, .24) 0%, rgba(255, 255, 255, .07) 32%, transparent 64%);
  pointer-events: none;
}

.subhero::before { content: ''; }
.subhero .inner { position: relative; }

.beam {
  position: absolute;
  top: -5%;
  height: 108vh;
  transform-origin: top center;
  opacity: 0;
  animation: beamPulse var(--d, 3.5s) ease-in-out infinite var(--dl, 0s);
}
.beam::after { content: ''; position: absolute; inset: 0; background: inherit; filter: blur(7px); opacity: .45; }
.beam:nth-child(1) { left:18%; width:4px; --dl:0s; --d:3.2s; background:linear-gradient(to bottom,rgba(255,240,168,.72)0%,rgba(255,216,102,.18)50%,transparent 80%); }
.beam:nth-child(2) { left:32%; width:7px; --dl:.5s; --d:3.8s; background:linear-gradient(to bottom,rgba(255,216,102,.62)0%,rgba(255,255,255,.12)52%,transparent 82%); transform:rotate(-5deg); }
.beam:nth-child(3) { left:50%; width:11px; --dl:.2s; --d:3s; background:linear-gradient(to bottom,rgba(255,242,189,.82)0%,rgba(255,200,66,.25)44%,transparent 76%); }
.beam:nth-child(4) { left:64%; width:7px; --dl:.9s; --d:4s; background:linear-gradient(to bottom,rgba(255,216,102,.56)0%,rgba(255,255,255,.12)52%,transparent 82%); transform:rotate(6deg); }
.beam:nth-child(5) { left:76%; width:4px; --dl:.4s; --d:3.5s; background:linear-gradient(to bottom,rgba(255,240,168,.66)0%,rgba(255,216,102,.16)48%,transparent 80%); transform:rotate(14deg); }
.beam:nth-child(6) { left:86%; width:3px; --dl:1.4s; --d:4.2s; background:linear-gradient(to bottom,rgba(255,216,102,.42)0%,transparent 68%); transform:rotate(22deg); }
.beam:nth-child(7) { left:42%; width:3px; --dl:1.8s; --d:5.2s; background:linear-gradient(to bottom,rgba(255,255,255,.36)0%,transparent 62%); transform:rotate(-2deg); }

@keyframes beamPulse { 0%,100% { opacity:0; } 42%,58% { opacity:1; } }

.hero-content {
  position: relative;
  width: 100%;
  max-width: var(--mw);
  margin: 0 auto;
  min-height: 620px;
  display: block;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(690px, 54%);
  padding-top: clamp(4.8rem, 10vh, 7rem);
}

.hero-brand {
  font-family: 'Zilla Slab', serif;
  font-size: clamp(3rem, 6.5vw, 5.8rem);
  font-weight: 600;
  line-height: .96;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 2rem;
  opacity: 0;
  animation: slideUp .8s .08s ease forwards;
}
.hero-brand em {
  font-style: normal;
  color: var(--amber);
}

.hero-tagline {
  font-family: 'Zilla Slab', serif;
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--blue-mid);
  line-height: 1.22;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: slideUp .8s .28s ease forwards;
}

.hero-headline {
  font-family: 'Zilla Slab', serif;
  font-size: clamp(1.15rem, 2.3vw, 1.9rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.35;
  max-width: 820px;
  margin-bottom: 2.8rem;
  opacity: 0;
  animation: slideUp .8s .46s ease forwards;
}

.hero-actions { display: flex; align-items: center; gap: 1.3rem; opacity: 0; animation: slideUp .7s .62s ease forwards; }

.hero-showcase {
  position: absolute;
  top: calc(clamp(5.2rem, 11vh, 7.4rem) + 40px);
  right: 0;
  width: min(40vw, 500px);
  min-width: 340px;
  min-height: 360px;
  opacity: 0;
  transform: translateY(18px);
  animation: slideUp .9s .72s ease forwards;
  z-index: 1;
}

.hero-showcase::before {
  content: '';
  position: absolute;
  inset: 4% -12% -8% 4%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 52% 38%, rgba(255, 216, 102, .22), transparent 19rem),
    radial-gradient(circle at 64% 72%, rgba(255, 255, 255, .07), transparent 15rem);
  filter: blur(8px);
  pointer-events: none;
}

.showcase-stage {
  position: relative;
  width: 100%;
  max-width: 540px;
  height: 360px;
  margin: 0 0 0 auto;
  cursor: pointer;
  user-select: none;
  touch-action: pan-y;
}

.showcase-card {
  position: absolute;
  left: 50%;
  top: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  background: rgba(10, 16, 26, .88);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, .44),
    0 0 38px rgba(255, 200, 66, .08),
    inset 0 1px 0 rgba(255, 255, 255, .06);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px) scale(.96);
  transition: opacity .55s ease, transform .55s ease;
}

.showcase-card.is-current {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
  border-color: rgba(255, 216, 102, .42);
  box-shadow:
    0 30px 78px rgba(0, 0, 0, .48),
    0 0 54px rgba(255, 200, 66, .22),
    inset 0 1px 0 rgba(255, 255, 255, .1);
  filter: saturate(1.12) brightness(1.06);
}

.showcase-large {
  width: min(100%, 500px);
  height: 305px;
}

.showcase-portrait {
  width: 260px;
  height: 315px;
}

.showcase-wide {
  width: min(100%, 520px);
  height: 205px;
}

.showcase-small {
  width: 260px;
  height: 225px;
}

.showcase-medium {
  width: 390px;
  height: 255px;
}

.showcase-bar {
  height: 38px;
  display: flex;
  align-items: center;
  gap: .38rem;
  padding: 0 .9rem;
  border-bottom: 1px solid rgba(255, 255, 255, .075);
  background: rgba(255, 255, 255, .035);
}

.showcase-bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 216, 102, .7);
}

.showcase-bar span:nth-child(2) { background: rgba(255, 255, 255, .28); }
.showcase-bar span:nth-child(3) { background: rgba(130, 144, 165, .55); }

.showcase-bar strong {
  margin-left: auto;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue-mid);
}

.showcase-screen {
  position: relative;
  flex: 1;
  min-height: 0;
  background: #101923;
}

.vo-screen {
  background:
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.04) 1px, transparent 1px),
    radial-gradient(circle at 45% 45%, rgba(255, 216, 102, .18), transparent 11rem),
    #101923;
  background-size: 32px 32px, 32px 32px, auto, auto;
}

.screen-road {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 46%;
  height: 24%;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .055);
}

.screen-light {
  position: absolute;
  top: 28%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 30px rgba(255, 216, 102, .72);
}

.screen-light.a { left: 27%; }
.screen-light.b { left: 68%; }

.screen-light::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  width: 1px;
  height: 118px;
  background: rgba(255, 216, 102, .28);
}

.screen-curve {
  position: absolute;
  border: 2px solid;
  border-radius: 50%;
  transform: rotate(-8deg);
}

.screen-curve.c1 {
  left: 14%;
  top: 25%;
  width: 35%;
  height: 48%;
  border-color: rgba(255, 102, 204, .54);
}

.screen-curve.c2 {
  right: 12%;
  top: 27%;
  width: 38%;
  height: 46%;
  border-color: rgba(69, 210, 75, .52);
}

.cad-screen strong {
  position: absolute;
  left: 1rem;
  bottom: .85rem;
  color: var(--blue);
  font-family: 'Zilla Slab', serif;
  font-size: 1.25rem;
  font-weight: 500;
}

.vo-screen > strong {
  position: absolute;
  left: 1rem;
  bottom: .85rem;
  color: var(--blue);
  font-family: 'Zilla Slab', serif;
  font-size: 1.25rem;
  font-weight: 500;
}

.room-screen {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  padding: 1rem;
}

.room-screen span {
  display: block;
  padding: .55rem .62rem;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 7px;
  background: rgba(255, 255, 255, .045);
  color: var(--mid);
  font: .68rem/1.3 Consolas, monospace;
}

.room-screen span:nth-child(3) { color: var(--blue-mid); }

.cad-screen {
  background:
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.045) 1px, transparent 1px),
    #0d1520;
  background-size: 24px 24px;
}

.cad-screen i {
  position: absolute;
  display: block;
  border: 2px solid rgba(255, 216, 102, .54);
}

.cad-screen i:nth-child(1) { left: 16%; top: 22%; width: 34%; height: 34%; }
.cad-screen i:nth-child(2) { left: 44%; top: 38%; width: 33%; height: 26%; border-color: rgba(0, 191, 255, .52); }
.cad-screen i:nth-child(3) { left: 28%; top: 68%; width: 48%; height: 1px; border-width: 1px 0 0; border-color: rgba(255,255,255,.48); }

.calc-screen {
  display: grid;
  place-content: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 216, 102, .2), transparent 5rem),
    #101923;
}

.calc-screen span,
.calc-screen small {
  color: var(--muted);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.calc-screen strong {
  display: block;
  font-family: 'Zilla Slab', serif;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--blue);
}

.list-screen {
  display: flex;
  flex-direction: column;
  gap: .48rem;
  padding: .85rem;
}

.list-screen span {
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
}

.list-screen span:nth-child(1),
.list-screen span:nth-child(3) { width: 78%; background: rgba(255, 216, 102, .28); }
.list-screen span:nth-child(2) { width: 92%; }
.list-screen span:nth-child(4) { width: 54%; }

.showcase-dots {
  position: absolute;
  left: 50%;
  bottom: -1.4rem;
  display: flex;
  gap: .45rem;
  transform: translateX(-50%);
  z-index: 4;
}

.showcase-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  cursor: pointer;
  transition: background .25s, transform .25s;
}

.showcase-dots button.is-current {
  background: var(--blue);
  transform: scale(1.25);
}

.showcase-dots button:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

@keyframes showcaseFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
}

.btn-primary,
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .82rem 2rem;
  background: var(--blue);
  color: #080d16;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  border-radius: 5px;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.btn-primary:hover,
.btn:hover { background: var(--amber2); transform: translateY(-2px); }

.btn-ghost {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: color .2s;
}
.btn-ghost:hover { color: var(--ink); }
.btn-ghost .arr { transition: transform .2s; }
.btn-ghost:hover .arr { transform: translateX(4px); }

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  opacity: 0;
  animation: fadeIn 1s 1.1s ease forwards;
  text-decoration: none;
}
.scroll-bar { width: 1px; height: 50px; background: linear-gradient(to bottom, var(--blue-mid), transparent); animation: barDrop 2s ease-in-out infinite; }
.hero-scroll-hint span {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 216, 102, .28);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 1.1rem;
  line-height: 1;
  transition: background .2s, transform .2s, border-color .2s;
}
.hero-scroll-hint:hover span {
  background: rgba(255, 216, 102, .1);
  border-color: rgba(255, 216, 102, .42);
  transform: translateY(3px);
}
@keyframes barDrop { 0% { transform:scaleY(0); transform-origin:top; opacity:0; } 40% { transform:scaleY(1); transform-origin:top; opacity:1; } 60% { transform:scaleY(1); transform-origin:bottom; opacity:1; } 100% { transform:scaleY(0); transform-origin:bottom; opacity:0; } }

.tag {
  font-size: .69rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue-mid);
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1.1rem;
}
.tag::before { content: ''; width: 22px; height: 1.5px; background: var(--blue-mid); }

.sh2,
h1,
h2,
h3 {
  font-family: 'Zilla Slab', serif;
  font-weight: 400;
}

.subhero h1 {
  font-size: clamp(2rem, 3.4vw, 3.45rem);
  line-height: 1.13;
  max-width: 1040px;
  color: var(--ink);
  letter-spacing: -.02em;
  text-wrap: balance;
}

.lead {
  max-width: 900px;
  margin-top: 1.4rem;
  font-size: 1rem;
  color: var(--mid);
  font-weight: 300;
  text-wrap: pretty;
}

.sh2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }

.intro-section,
.tiles-section,
.cta-section,
.content-section,
.software-section,
.focus-section { padding: 7rem var(--side); }
.intro-section,
.cta-section,
.content-section.white,
.focus-section { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.tiles-section,
.software-section,
.content-section { background: var(--bg); }

.intro-grid,
.cta-grid,
.split-grid { display: grid; grid-template-columns: 55fr 45fr; gap: 5rem; align-items: start; }

.intro-left h2,
.cta-left h2,
.content-card h2 {
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  line-height: 1.2;
  margin-bottom: 1.4rem;
}
.intro-left h2 strong { color: var(--blue); font-weight: 600; }
.intro-left p,
.cta-left p,
.content-card p,
.content-card li {
  font-size: .94rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: .85rem;
}

.link-more {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: .6rem;
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1.5px solid rgba(255, 216, 102, .28);
  transition: border-color .2s;
}
.link-more:hover { border-color: var(--blue); }

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.stat { background: var(--bg); padding: 2.1rem 1.8rem; transition: background .2s; }
.stat:hover { background: var(--bg2); }
.stat-num { font-family: 'Zilla Slab', serif; font-size: 3.1rem; font-weight: 400; line-height: 1; color: var(--ink); margin-bottom: .3rem; }
.stat-num sup { font-size: 1.3rem; color: var(--amber); vertical-align: super; }
.stat-num.accent { color: var(--blue-mid); font-size: 1.85rem; line-height: 1.2; font-weight: 500; }
.stat-lbl { font-size: .71rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

.tiles-hd { margin-bottom: 2.6rem; }
.tiles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.tile {
  border-radius: var(--r);
  border: 1px solid var(--border);
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  transition: transform .3s, box-shadow .3s, border-color .3s, background .3s;
  position: relative;
}
.tile:hover {
  border-color: rgba(255, 216, 102, .38);
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 216, 102, .13), transparent 18rem),
    var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .36), 0 0 42px rgba(255, 200, 66, .14);
}
.tile::before { content: ''; display: block; height: 4px; }
.tile-sky::before { background: linear-gradient(90deg, rgba(255, 255, 255, .24), var(--blue-mid)); }
.tile-warm::before { background: linear-gradient(90deg, var(--amber), var(--amber2)); }
.tile-head { padding: 2.6rem 2.6rem 0; position: relative; overflow: hidden; }
.tile-head::after { content: attr(data-letter); position: absolute; right: 1.5rem; top: -.5rem; font-family: 'Zilla Slab', serif; font-size: 9.5rem; font-weight: 600; line-height: 1; pointer-events: none; }
.tile-sky .tile-head::after { color: rgba(255, 255, 255, .04); }
.tile-warm .tile-head::after { color: rgba(255, 216, 102, .075); }
.tile-badge { display: inline-flex; align-items: center; gap: .45rem; font-size: .67rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; padding: .28rem .85rem; border-radius: 999px; margin-bottom: 1.3rem; }
.tile-sky .tile-badge { background: rgba(255, 216, 102, .08); color: var(--blue); border: 1px solid rgba(255, 216, 102, .18); }
.tile-warm .tile-badge { background: rgba(255, 200, 66, .1); color: var(--amber); border: 1px solid rgba(255, 200, 66, .22); }
.tile:hover .tile-badge {
  background: rgba(255, 216, 102, .16);
  border-color: rgba(255, 216, 102, .34);
}
.tile h3 { font-family: 'Zilla Slab', serif; font-size: clamp(1.55rem, 2.2vw, 2.2rem); font-weight: 400; line-height: 1.18; margin-bottom: .95rem; position: relative; }
.tile-sky h3,
.tile-warm h3 { color: var(--ink); }
.tile-desc { font-size: .88rem; font-weight: 300; color: var(--mid); line-height: 1.8; position: relative; }
.tile-body { padding: 1.3rem 2.6rem 1.9rem; }
.tile-list,
.content-list { list-style: none; display: flex; flex-direction: column; gap: .48rem; }
.tile-list li,
.content-list li { font-size: .83rem; color: var(--mid); display: flex; align-items: flex-start; gap: .65rem; line-height: 1.5; }
.tile-list li::before,
.content-list li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; margin-top: .5em; flex-shrink: 0; background: var(--blue-mid); }
.tile-warm .tile-list li::before { background: var(--amber); }
.tile-foot { display: flex; align-items: center; justify-content: space-between; padding: 1rem 2.6rem; border-top: 1px solid var(--border2); background: var(--bg); }
.tile-foot-links { gap: 1rem; flex-wrap: wrap; justify-content: flex-start; }
.tile-cta { font-size: .73rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; display: flex; align-items: center; gap: .42rem; transition: gap .22s; }
.tile-sky .tile-cta { color: var(--blue); }
.tile-warm .tile-cta { color: var(--amber); }
.tile:hover .tile-cta { gap: .72rem; }

.hero-software .hero-headline { max-width: 930px; }

.hero-branch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  max-width: 720px;
  margin-top: 3.5rem;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--r);
  overflow: hidden;
  animation-delay: .82s;
}

.hero-branch a {
  min-height: 138px;
  padding: 1.35rem 1.45rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: .7rem;
  color: inherit;
  text-decoration: none;
  background: rgba(17, 26, 40, .64);
  transition: background .22s, transform .22s;
}

.hero-branch a:hover {
  background: rgba(255, 216, 102, .1);
}

.hero-branch span,
.focus-points span,
.software-kicker {
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue-mid);
}

.hero-branch strong {
  font-family: 'Zilla Slab', serif;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.1;
}

.hero-branch small {
  font-size: .78rem;
  line-height: 1.55;
  color: var(--mid);
}

.section-intro {
  max-width: 900px;
  margin-bottom: 2.7rem;
}

.section-intro p:not(.tag) {
  max-width: 840px;
  margin-top: 1rem;
  font-size: .96rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--mid);
}

.software-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.software-card {
  min-height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background:
    radial-gradient(circle at 82% 0%, rgba(255, 216, 102, .08), transparent 18rem),
    var(--white);
  overflow: hidden;
}

.software-primary {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 47fr) minmax(360px, 53fr);
  align-items: stretch;
  padding: 2.3rem;
}

.software-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 1.15rem;
}

.software-state {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(247, 242, 229, .76);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 999px;
  padding: .2rem .68rem;
  background: rgba(255, 255, 255, .04);
}

.software-copy h3 {
  font-family: 'Zilla Slab', serif;
  font-size: clamp(1.7rem, 2.7vw, 2.65rem);
  font-weight: 500;
  line-height: 1.08;
  margin-bottom: .9rem;
}

.software-copy p {
  font-size: .92rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.82;
  margin-bottom: 1.15rem;
}

.software-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.software-list li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  color: var(--mid);
  font-size: .84rem;
  line-height: 1.55;
}

.software-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  margin-top: .58em;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--blue-mid);
}

.software-shot {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 12px;
  background: #0b111c;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04), 0 24px 60px rgba(0, 0, 0, .28);
}

.compact-shot { min-height: 300px; }

.shot-toolbar {
  height: 38px;
  display: flex;
  align-items: center;
  gap: .42rem;
  padding: 0 .9rem;
  border-bottom: 1px solid rgba(255, 255, 255, .075);
  background: rgba(255, 255, 255, .035);
}

.shot-toolbar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 216, 102, .55);
}

.shot-toolbar span:nth-child(2) { background: rgba(255, 255, 255, .24); }
.shot-toolbar span:nth-child(3) { background: rgba(130, 144, 165, .45); }

.shot-canvas,
.room-lines,
.cad-preview {
  position: relative;
  flex: 1;
  min-height: 0;
}

.shot-vocko {
  background:
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.035) 1px, transparent 1px),
    radial-gradient(circle at 38% 45%, rgba(255, 216, 102, .2), transparent 13rem),
    #101923;
  background-size: 34px 34px, 34px 34px, auto, auto;
}

.road {
  position: absolute;
  left: 7%;
  right: 7%;
  top: 43%;
  height: 22%;
  border: 1px solid rgba(255, 255, 255, .16);
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(255,255,255,.18) 48% 52%, transparent 52% 100%),
    rgba(255, 255, 255, .055);
}

.pole {
  position: absolute;
  top: 27%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 28px rgba(255, 216, 102, .65);
}

.pole::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  width: 1px;
  height: 160px;
  background: rgba(255, 216, 102, .32);
}

.pole.p1 { left: 24%; }
.pole.p2 { left: 68%; }

.iso {
  position: absolute;
  border: 2px solid;
  border-radius: 50%;
  transform: rotate(-8deg);
}

.iso.i1 {
  left: 14%;
  top: 24%;
  width: 34%;
  height: 45%;
  border-color: rgba(255, 102, 204, .55);
}

.iso.i2 {
  right: 12%;
  top: 25%;
  width: 36%;
  height: 46%;
  border-color: rgba(69, 210, 75, .52);
}

.result-panel {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  min-width: 150px;
  padding: .85rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(7, 11, 18, .78);
  backdrop-filter: blur(8px);
}

.result-panel strong {
  display: block;
  color: var(--blue);
  margin-bottom: .25rem;
}

.result-panel span {
  display: block;
  font-size: .76rem;
  color: var(--mid);
}

.software-shot p {
  margin: 0;
  padding: .85rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, .075);
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.room-lines {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  padding: 1.25rem;
}

.room-lines span {
  display: block;
  padding: .72rem .85rem;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
  color: var(--mid);
  font: .78rem/1.35 Consolas, monospace;
}

.room-lines span:nth-child(3) { color: var(--blue-mid); }
.room-lines span:nth-child(4) { color: #ffb2b2; }

.cad-preview {
  background:
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.04) 1px, transparent 1px),
    #0d1520;
  background-size: 28px 28px;
  overflow: hidden;
}

.cad-preview div {
  position: absolute;
  border: 2px solid rgba(255, 216, 102, .52);
}

.cad-preview div:nth-child(1) { left: 18%; top: 20%; width: 38%; height: 38%; }
.cad-preview div:nth-child(2) { left: 44%; top: 38%; width: 32%; height: 26%; border-color: rgba(0, 191, 255, .52); }
.cad-preview div:nth-child(3) { left: 28%; top: 68%; width: 48%; height: 1px; border-width: 1px 0 0; border-color: rgba(255, 255, 255, .48); }
.cad-preview div:nth-child(4) { left: 67%; top: 19%; width: 1px; height: 62%; border-width: 0 0 0 1px; border-color: rgba(255, 102, 204, .5); }

.cad-preview strong {
  position: absolute;
  left: 1.25rem;
  bottom: 1.1rem;
  color: var(--blue);
  font-family: 'Zilla Slab', serif;
  font-size: 1.4rem;
  font-weight: 500;
}

.focus-grid {
  display: grid;
  grid-template-columns: 48fr 52fr;
  gap: 5rem;
  align-items: start;
}

.focus-copy h2 {
  font-family: 'Zilla Slab', serif;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.focus-copy p:not(.tag) {
  font-size: .95rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.85;
}

.focus-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--border);
  overflow: hidden;
}

.focus-points div {
  padding: 1.65rem 1.8rem;
  background: var(--bg);
}

.focus-points strong {
  display: block;
  margin: .55rem 0 .35rem;
  font-family: 'Zilla Slab', serif;
  font-size: 1.25rem;
  font-weight: 500;
}

.focus-points p {
  margin: 0;
  color: var(--mid);
  font-size: .84rem;
  line-height: 1.65;
}

.why-section,
.dark-section {
  padding: 7rem var(--side);
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.why-glow { position: absolute; top: -20%; left: 50%; transform: translateX(-50%); width: 800px; height: 500px; border-radius: 50%; background: radial-gradient(ellipse, rgba(255, 216, 102, .16) 0%, transparent 65%); pointer-events: none; }
.why-ray { position: absolute; top: -5%; height: 100%; transform-origin: top; background: linear-gradient(to bottom, rgba(255, 240, 168, .18) 0%, transparent 65%); }
.why-ray:nth-child(2) { left:18%; width:1px; transform:rotate(-7deg); }
.why-ray:nth-child(3) { left:50%; width:2px; opacity:.45; }
.why-ray:nth-child(4) { left:82%; width:1px; transform:rotate(7deg); }
.why-inner { position: relative; }
.why-inner .tag,
.dark-section .tag { color: rgba(255, 216, 102, .82); }
.why-inner .tag::before,
.dark-section .tag::before { background: rgba(255, 216, 102, .82); }
.why-inner .sh2,
.dark-section h2 { color: var(--ink); margin-bottom: 3rem; }
.dark-section p { color: rgba(247, 242, 229, .62); }
.dark-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .055);
  border-radius: var(--r);
  overflow: hidden;
}

.dark-steps article {
  padding: 2rem 1.7rem;
  background: rgba(255, 255, 255, .02);
  transition: background .25s, transform .25s, box-shadow .25s;
}

.dark-steps article:hover {
  background: rgba(255, 255, 255, .055);
  box-shadow: inset 0 1px 0 rgba(255, 216, 102, .18);
}

.dark-steps span {
  display: block;
  font-family: 'Zilla Slab', serif;
  font-size: 2.2rem;
  line-height: 1;
  color: rgba(255, 216, 102, .24);
  margin-bottom: 1rem;
}

.dark-steps h3 {
  font-size: 1.08rem;
  font-weight: 500;
  color: rgba(247, 242, 229, .94);
  margin-bottom: .55rem;
}

.dark-steps p {
  font-size: .84rem;
  line-height: 1.75;
  margin: 0;
}
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255, 255, 255, .055); border: 1px solid rgba(255, 255, 255, .055); border-radius: var(--r); overflow: hidden; }
.why-card { padding: 2.1rem 1.9rem; background: rgba(255, 255, 255, .02); transition: background .25s; }
.why-card:hover { background: rgba(255, 255, 255, .055); }
.why-n { font-family: 'Zilla Slab', serif; font-size: 2.4rem; font-weight: 300; color: rgba(255, 216, 102, .23); line-height: 1; margin-bottom: .95rem; }
.why-card h4 { font-family: 'Zilla Slab', serif; font-size: 1.08rem; font-weight: 500; color: rgba(247, 242, 229, .92); margin-bottom: .5rem; }
.why-card p { font-size: .82rem; font-weight: 300; color: rgba(247, 242, 229, .52); line-height: 1.75; }

.cta-right { display: flex; flex-direction: column; gap: .85rem; }
.cc { display: flex; align-items: center; gap: 1.2rem; padding: 1.45rem 1.7rem; background: var(--bg); border: 1px solid var(--border); border-radius: var(--r); text-decoration: none; color: inherit; transition: border-color .25s, transform .2s, box-shadow .25s; }
.cc:hover { border-color: rgba(255, 216, 102, .32); transform: translateX(5px); box-shadow: 0 14px 34px rgba(0, 0, 0, .22); }
.cc-icon { width: 46px; height: 46px; border-radius: 11px; background: var(--blue); color: #080d16; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.cc-lbl { font-size: .66rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: .18rem; }
.cc-val { font-family: 'Zilla Slab', serif; font-size: 1.08rem; color: var(--ink); }
.cc-arr { margin-left: auto; color: var(--muted); transition: transform .2s, color .2s; }
.cc:hover .cc-arr { transform: translateX(4px); color: var(--blue); }
.cta-note { font-size: .77rem; font-weight: 300; color: var(--muted); padding: .85rem 1.1rem; border-left: 2px solid rgba(255, 216, 102, .28); line-height: 1.65; }

.content-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 2.4rem;
}

.bio-grid {
  display: grid;
  grid-template-columns: 42fr 58fr;
  gap: 5rem;
  align-items: center;
}

.bio-photo {
  position: relative;
  min-height: 520px;
  border-radius: var(--r);
  border: 1px solid var(--border);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 216, 102, .18), transparent 38%),
    linear-gradient(160deg, #111a28 0%, #070b12 72%);
}

.bio-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: grayscale(1) brightness(.8) contrast(1.18) sepia(.14);
}

.bio-photo::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: calc(var(--r) - 4px);
}

.bio-copy h2 {
  font-family: 'Zilla Slab', serif;
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  font-weight: 400;
  line-height: 1.18;
  margin-bottom: 1.4rem;
}

.bio-copy p:not(.tag) {
  font-size: .96rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.9;
  margin-bottom: 1rem;
}

.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
.cards-3 .content-card { border: 0; border-radius: 0; }
.cards-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }

.form-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 2rem;
}
.contact-grid {
  grid-template-columns: 1fr;
  gap: 2rem;
}
.contact-grid .cta-left {
  max-width: 860px;
}
.contact-form {
  width: 100%;
}
.form-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-row { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-row label { font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--mid); }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: .9rem 1rem;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}
.form-row input[type="file"] {
  padding: .78rem 1rem;
}
.form-help {
  font-size: .76rem;
  color: var(--muted);
  margin-top: -.35rem;
  margin-bottom: 1rem;
}
.form-row input::placeholder,
.form-row textarea::placeholder { color: rgba(199, 207, 221, .45); }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 0;
  border-color: rgba(255, 216, 102, .55);
  box-shadow: 0 0 0 3px rgba(255, 216, 102, .1);
}
.form-row textarea { min-height: 150px; resize: vertical; }
.form-status { margin-bottom: 1.2rem; padding: .9rem 1rem; border-radius: 8px; font-size: .9rem; }
.form-status.success { background: rgba(68, 180, 128, .16); color: #9be7bd; }
.form-status.error { background: rgba(220, 88, 88, .16); color: #ffb2b2; }

footer {
  padding: 1.8rem var(--side);
  border-top: 1px solid var(--border);
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.f-logo { font-family: 'Zilla Slab', serif; font-size: 1.35rem; font-weight: 600; color: var(--ink); text-decoration: none; }
.f-copy { font-size: .73rem; color: var(--muted); }
.f-links { display: flex; gap: .75rem; flex-wrap: wrap; justify-content: flex-end; }
.f-links a { font-size: .72rem; color: var(--muted); text-decoration: none; transition: color .2s; }
.f-links a:hover { color: var(--blue); }

@keyframes slideUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
.reveal { opacity:0; transform:translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity:1; transform:none; }

@media (max-width: 1100px) {
  .hero-copy {
    width: min(620px, 52%);
  }

  .hero-showcase {
    width: min(39vw, 400px);
    min-width: 285px;
  }

  .showcase-stage {
    height: 330px;
  }

  .showcase-large { width: min(100%, 400px); height: 250px; }
  .showcase-portrait { width: 215px; height: 275px; }
  .showcase-wide { width: min(100%, 410px); height: 170px; }
  .showcase-small { width: 210px; height: 180px; }
  .showcase-medium { width: 310px; height: 205px; }
}

@media (max-width: 860px) {
  .hero {
    min-height: auto;
  }

  .hero-content {
    min-height: 0;
    display: block;
    padding-top: 4rem;
  }

  .hero-copy {
    width: 100%;
    padding-top: 0;
  }

  .hero-showcase {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    min-width: 0;
    min-height: 360px;
    max-width: 620px;
    margin-top: 2.6rem;
    transform: none;
    animation: slideUp .9s .72s ease forwards;
  }

  .showcase-stage {
    height: 320px;
    margin: 0 0 0 auto;
  }

  .showcase-large { width: min(100%, 420px); height: 260px; }
  .showcase-portrait { width: 215px; height: 275px; }
  .showcase-wide { width: min(100%, 430px); height: 178px; }
  .showcase-small { width: 215px; height: 185px; }
  .showcase-medium { width: 320px; height: 215px; }

  .intro-grid,
  .cta-grid,
  .split-grid,
  .bio-grid,
  .software-primary,
  .focus-grid { grid-template-columns: 1fr; gap: 3rem; }
  .tiles-grid,
  .cards-2,
  .cards-3,
  .software-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .dark-steps { grid-template-columns: 1fr 1fr; }
  .bio-photo { min-height: 440px; }
  .form-columns { grid-template-columns: 1fr; gap: 0; }
}

@media (min-width: 861px) and (max-width: 1100px) {
  .hero-brand {
    font-size: clamp(3rem, 5.4vw, 4.5rem);
  }

  .hero-tagline {
    font-size: clamp(1.3rem, 2.55vw, 2rem);
  }

  .hero-headline {
    max-width: 560px;
    font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  }
}

@media (max-width: 600px) {
  .ai-notice {
    width: 118vw;
    margin: 0;
    padding: .72rem calc(var(--side) + 8vw);
    gap: .65rem;
    font-size: .76rem;
    transform: translate(-50%, -50%) rotate(-1.4deg);
  }

  .ai-notice-close {
    width: 2rem;
    height: 2rem;
    font-size: 1.25rem;
  }

  header {
    height: 68px;
  }

  .menu-toggle {
    display: flex;
    position: relative;
    z-index: 221;
  }

  nav {
    position: fixed;
    top: 68px;
    left: var(--side);
    right: var(--side);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .8rem;
    background: rgba(11, 17, 28, .97);
    border: 1px solid var(--border);
    border-radius: var(--r);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .42), 0 0 32px rgba(255, 200, 66, .08);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .22s, transform .22s;
  }

  nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  nav a,
  .nav-drop-toggle,
  header.solid nav a,
  header.scrolled nav a,
  header.solid .nav-drop-toggle,
  header.scrolled .nav-drop-toggle {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: left;
    color: var(--ink);
    border-radius: 10px;
  }

  nav a:hover,
  .nav-drop-toggle:hover {
    background: rgba(255, 216, 102, .08);
  }

  .nav-dropdown {
    width: 100%;
    padding: 0;
  }

  .nav-drop-toggle::after {
    float: right;
    margin-top: .45rem;
  }

  .nav-submenu {
    position: static;
    left: auto;
    min-width: 0;
    width: 100%;
    max-height: 0;
    padding: 0 .4rem;
    border: 0;
    border-radius: 12px;
    box-shadow: none;
    background: rgba(255, 255, 255, .04);
    opacity: 1;
    pointer-events: auto;
    transform: none;
    overflow: hidden;
    transition: max-height .22s, padding .22s;
  }

  .nav-dropdown.open .nav-submenu {
    max-height: 240px;
    padding-top: .4rem;
    padding-bottom: .4rem;
    transform: none;
  }

  .nav-submenu a,
  header.solid .nav-submenu a,
  header.scrolled .nav-submenu a {
    padding: .85rem 1rem;
    font-size: .7rem;
    color: var(--mid);
    white-space: normal;
  }

  .nav-cta {
    margin-top: .4rem;
    text-align: center;
  }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-content {
    min-height: 0;
    display: block;
    padding-top: 2.5rem;
  }

  .hero-showcase {
    min-height: 330px;
    width: 100%;
    margin-top: 2.4rem;
  }

  .showcase-stage {
    width: 100%;
    height: 310px;
  }

  .showcase-large {
    width: 100%;
    height: 230px;
  }

  .showcase-portrait {
    width: 62%;
    height: 270px;
  }

  .showcase-wide {
    width: 100%;
    height: 160px;
  }

  .showcase-small {
    width: 58%;
    height: 170px;
  }

  .showcase-medium {
    width: 82%;
    height: 190px;
  }

  .room-screen span {
    font-size: .58rem;
    padding: .42rem .48rem;
  }

  .calc-screen strong {
    font-size: 1.8rem;
  }

  .hero-branch { grid-template-columns: 1fr; margin-top: 2.5rem; }
  .hero-branch a { min-height: 116px; }
  .why-grid { grid-template-columns: 1fr; }
  .dark-steps { grid-template-columns: 1fr; }
  .software-card,
  .software-primary { padding: 1.45rem; }
  .software-shot { min-height: 330px; }
  .compact-shot { min-height: 270px; }
  .tile-head { padding: 2rem 1.5rem 0; }
  .tile-body { padding: 1.1rem 1.5rem 1.6rem; }
  .tile-foot { padding: .9rem 1.5rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .bio-photo { min-height: 360px; }
  footer { flex-direction: column; text-align: center; }
  .f-links { justify-content: center; }
}
