:root {
  --home-ink: #07101a;
  --home-deep: #050a12;
  --home-deep-soft: #091321;
  --home-paper: #f5f7fa;
  --home-white: #ffffff;
  --home-muted: #667486;
  --home-line: rgba(7, 16, 26, 0.12);
  --home-cyan: #23c7f4;
  --home-blue: #2f6cff;
  --home-pale-cyan: #a8efff;
  --home-green: #34d399;
  --home-radius: 24px;
  --home-shadow: 0 28px 80px rgba(5, 10, 18, 0.14);
  --home-display: "Space Grotesk", "Manrope", Arial, sans-serif;
  --home-body: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--home-ink);
  background: var(--home-paper);
  font-family: var(--home-body);
  line-height: 1.55;
  overflow-x: hidden;
}

body.site-menu-is-open {
  overflow: hidden;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  color: #03101a;
  background: var(--home-pale-cyan);
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: var(--home-deep);
  background: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px #087b9f;
}

.page-shell {
  width: min(1180px, calc(100vw - 3rem));
  margin: 0 auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  color: #177890;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 1.75rem;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
}

.eyebrow-light {
  color: var(--home-pale-cyan);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--home-display);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(2.45rem, 5vw, 5rem);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  padding: 0.78rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button span {
  font-size: 1.05rem;
  line-height: 1;
}

.button-light {
  color: var(--home-deep);
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.button-light:hover {
  background: var(--home-pale-cyan);
  border-color: var(--home-pale-cyan);
  box-shadow: 0 22px 54px rgba(18, 182, 231, 0.22);
}

.button-outline {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.2);
}

.button-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(168, 239, 255, 0.5);
}

.button-dark {
  color: #ffffff;
  background: var(--home-deep);
  border-color: var(--home-deep);
  box-shadow: 0 18px 40px rgba(5, 10, 18, 0.18);
}

.button-dark:hover {
  color: var(--home-deep);
  background: var(--home-cyan);
  border-color: var(--home-cyan);
}

/* Header */
.site-topbar.home-topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: #ffffff;
  border-bottom: 0;
  background: linear-gradient(180deg, rgba(5, 10, 18, 0.66), rgba(5, 10, 18, 0));
  transition: background 320ms ease, backdrop-filter 320ms ease;
}

.home-topbar.is-scrolled,
body.site-menu-is-open .home-topbar {
  border-bottom: 0;
  background: rgba(5, 10, 18, 0.78);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.home-topbar .site-topbar-inner {
  width: min(1180px, calc(100vw - 3rem));
  padding: 1rem 0;
  gap: 0.65rem;
}

.home-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.68rem;
  color: #ffffff;
  font-family: var(--home-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1;
  text-decoration: none;
}

.nav-brand-transfer-pending .home-topbar .home-brand {
  visibility: hidden;
  animation: nav-brand-failsafe 0s linear 12000ms forwards;
}

.nav-brand-flight.home-brand {
  position: fixed;
  z-index: 140;
  visibility: visible;
  margin: 0;
  pointer-events: none;
  will-change: opacity, filter, transform;
}

.site-brand.home-brand img,
.home-brand img {
  width: 34px;
  height: 34px;
  max-width: none;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  margin-left: auto;
}

.desktop-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.82rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
  animation: nav-link-accent 1050ms ease-in-out;
}

.desktop-nav a:first-child {
  animation-delay: 10700ms;
}

.desktop-nav a:nth-child(2) {
  animation-delay: 10900ms;
}

.desktop-nav a:nth-child(3) {
  animation-delay: 11100ms;
}

.desktop-nav a:nth-child(4) {
  animation-delay: 11300ms;
}

.desktop-nav a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
}

.home-topbar .site-nav-actions {
  margin-left: 1rem;
}

.home-topbar .site-nav-actions .site-auth-link,
.home-topbar .site-nav-actions .site-menu-toggle {
  animation: nav-secondary-accent 1500ms ease-in-out 11850ms;
}

.home-topbar .site-menu-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
}

.home-topbar .site-menu-link {
  padding: 0.55rem 0.88rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}

.home-topbar .site-menu-toggle {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.home-topbar .site-menu-toggle span {
  transition: transform 180ms ease, opacity 180ms ease;
}

.home-topbar .site-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.home-topbar .site-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.home-topbar .site-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.home-topbar .site-mobile-menu.is-open {
  padding: 0.85rem 0 0.35rem;
}

.home-topbar .site-mobile-menu .site-menu-link {
  min-height: 46px;
  padding: 0.72rem 0.9rem;
  font-size: 0.7rem;
}

/* Hero */
.home-intro.hero {
  position: relative;
  min-height: 820px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 77% 36%, rgba(35, 199, 244, 0.1), transparent 24rem),
    radial-gradient(circle at 18% 72%, rgba(47, 108, 255, 0.12), transparent 28rem),
    linear-gradient(145deg, #050a12 0%, #07111d 54%, #050912 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.17;
  background-image:
    linear-gradient(rgba(122, 200, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 200, 255, 0.12) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 42%, #000 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 42%, #000 100%);
}

.hero-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--home-deep), transparent 22%, transparent 76%, var(--home-deep));
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  width: 520px;
  height: 520px;
  right: -270px;
  top: 8%;
  border: 1px solid rgba(59, 193, 255, 0.18);
  box-shadow: inset 0 0 120px rgba(35, 199, 244, 0.09), 0 0 180px rgba(35, 199, 244, 0.08);
}

.hero-glow-two {
  width: 340px;
  height: 340px;
  left: -210px;
  bottom: 5%;
  background: rgba(47, 108, 255, 0.08);
  filter: blur(70px);
}

.hero-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.88fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  padding: 9.5rem 0 6.5rem;
}

.hero-copy {
  display: grid;
  justify-items: start;
  gap: 1.4rem;
}

.hero-copy h1 {
  max-width: 720px;
  font-size: clamp(4rem, 7.8vw, 7.5rem);
  line-height: 0.88;
  letter-spacing: -0.075em;
  text-wrap: balance;
}

.hero-copy h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(100deg, #ffffff 2%, var(--home-pale-cyan) 48%, #5c8aff 96%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lede {
  max-width: 650px;
  margin: 0.2rem 0 0;
  color: rgba(231, 241, 249, 0.72);
  font-size: clamp(1.02rem, 1.7vw, 1.2rem);
  font-weight: 600;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: -0.3rem 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  font-weight: 600;
}

.hero-note span {
  color: var(--home-cyan);
}

.hero-visual {
  min-height: 520px;
  display: grid;
  place-items: center;
}

.system-orbit {
  position: relative;
  width: min(100%, 500px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.system-orbit::before {
  content: "";
  position: absolute;
  width: 52%;
  height: 52%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(35, 199, 244, 0.18), rgba(47, 108, 255, 0.04) 55%, transparent 70%);
  filter: blur(18px);
  animation: core-pulse 5s ease-in-out infinite;
}

.orbit-ring {
  position: absolute;
  border: 1px solid rgba(130, 211, 255, 0.16);
  border-radius: 50%;
}

.orbit-ring::before,
.orbit-ring::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--home-cyan);
  box-shadow: 0 0 18px rgba(35, 199, 244, 0.9);
}

.orbit-ring-one {
  width: 93%;
  height: 93%;
  animation: orbit-spin 28s linear infinite;
}

.orbit-ring-one::before {
  top: 14%;
  right: 14%;
}

.orbit-ring-one::after {
  bottom: 8%;
  left: 24%;
  width: 5px;
  height: 5px;
}

.orbit-ring-two {
  width: 68%;
  height: 68%;
  border-color: rgba(103, 128, 255, 0.2);
  animation: orbit-spin-reverse 22s linear infinite;
}

.orbit-ring-two::before {
  bottom: 10%;
  right: 18%;
  width: 6px;
  height: 6px;
  background: #7288ff;
  box-shadow: 0 0 18px rgba(114, 136, 255, 0.9);
}

.orbit-ring-two::after {
  display: none;
}

.orbit-ring-three {
  width: 42%;
  height: 42%;
  border-style: dashed;
  border-color: rgba(168, 239, 255, 0.18);
  animation: orbit-spin 18s linear infinite;
}

.orbit-ring-three::before,
.orbit-ring-three::after {
  display: none;
}

.orbit-axis {
  position: absolute;
  width: 86%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(35, 199, 244, 0.2), transparent);
}

.orbit-axis-one {
  transform: rotate(32deg);
}

.orbit-axis-two {
  transform: rotate(-42deg);
}

.orbit-core {
  position: relative;
  z-index: 4;
  width: 128px;
  height: 128px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(168, 239, 255, 0.28);
  border-radius: 34px;
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.025)),
    rgba(5, 13, 24, 0.78);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.4), inset 0 1px rgba(255, 255, 255, 0.12), 0 0 80px rgba(35, 199, 244, 0.12);
  backdrop-filter: blur(18px);
}

.orbit-core img {
  width: 74px;
  height: 74px;
  object-fit: contain;
}

.orbit-core span {
  position: absolute;
  bottom: -2rem;
  color: rgba(255, 255, 255, 0.46);
  font-family: var(--home-display);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.orbit-card {
  position: absolute;
  z-index: 5;
  min-width: 150px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.08rem 0.55rem;
  align-items: center;
  padding: 0.78rem 0.88rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  color: #ffffff;
  background: rgba(8, 18, 31, 0.72);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.orbit-card > span {
  grid-row: span 2;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--home-pale-cyan);
  background: rgba(35, 199, 244, 0.1);
  font-size: 0.62rem;
  font-weight: 800;
}

.orbit-card strong {
  font-family: var(--home-display);
  font-size: 0.82rem;
  letter-spacing: -0.01em;
}

.orbit-card small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.63rem;
  font-weight: 600;
}

.orbit-card-web {
  top: 14%;
  left: -2%;
  animation: float-one 6s ease-in-out infinite;
}

.orbit-card-systems {
  top: 22%;
  right: -4%;
  animation: float-two 6.6s ease-in-out infinite;
}

.orbit-card-software {
  right: 7%;
  bottom: 12%;
  animation: float-one 7s ease-in-out infinite reverse;
}

.orbit-status {
  position: absolute;
  left: 6%;
  bottom: 16%;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.58);
  background: rgba(8, 18, 31, 0.65);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  backdrop-filter: blur(14px);
}

.orbit-status i,
.product-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--home-green);
  box-shadow: 0 0 14px rgba(52, 211, 153, 0.85);
}

/* Quick routes */
.quick-section {
  position: relative;
  color: #ffffff;
  background: var(--home-deep);
  padding: 1rem 0 clamp(5rem, 8vw, 8rem);
}

.quick-section::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 50%;
  background: radial-gradient(circle at 50% 100%, rgba(47, 108, 255, 0.1), transparent 40rem);
  pointer-events: none;
}

.section-intro {
  display: grid;
  gap: 0.85rem;
}

.section-intro h2 {
  text-wrap: balance;
}

.section-intro-dark h2 {
  color: #ffffff;
}

.quick-section .section-intro {
  max-width: 760px;
  margin-bottom: 2rem;
}

.quick-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.quick-card {
  position: relative;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--home-radius);
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    #08111d;
  text-decoration: none;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.quick-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -110px;
  top: -120px;
  border: 1px solid rgba(35, 199, 244, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(35, 199, 244, 0.04);
  transition: transform 300ms ease;
}

.quick-card:hover {
  transform: translateY(-6px);
  border-color: rgba(168, 239, 255, 0.32);
  background:
    linear-gradient(145deg, rgba(35, 199, 244, 0.08), rgba(255, 255, 255, 0.018)),
    #091421;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.24);
}

.quick-card:hover::before {
  transform: scale(1.35);
}

.quick-card-primary {
  color: var(--home-deep);
  border-color: var(--home-cyan);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.58), transparent 15rem),
    linear-gradient(135deg, var(--home-pale-cyan), var(--home-cyan) 58%, #57a0ff);
}

.quick-card-primary:hover {
  border-color: #ffffff;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.76), transparent 15rem),
    linear-gradient(135deg, #d0f8ff, var(--home-cyan) 58%, #6aabff);
}

.quick-card-primary::before {
  border-color: rgba(5, 10, 18, 0.17);
}

.quick-number {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  opacity: 0.55;
}

.quick-card div {
  display: grid;
  gap: 0.4rem;
}

.quick-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.76rem;
  font-weight: 700;
}

.quick-card-primary p {
  color: rgba(5, 10, 18, 0.58);
}

.quick-card h3 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.quick-arrow {
  position: absolute;
  right: 1.4rem;
  bottom: 1.4rem;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  font-size: 1.1rem;
  transition: transform 220ms ease, background 220ms ease;
}

.quick-card-primary .quick-arrow {
  border-color: rgba(5, 10, 18, 0.15);
}

.quick-card:hover .quick-arrow {
  transform: rotate(45deg);
  background: rgba(255, 255, 255, 0.1);
}

/* Custom websites */
.web-section {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 9rem) 0 clamp(4rem, 8vw, 7rem);
  background:
    radial-gradient(circle at 94% 14%, rgba(35, 199, 244, 0.11), transparent 26rem),
    var(--home-paper);
}

.web-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.87fr) minmax(480px, 1.13fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.web-copy {
  display: grid;
  justify-items: start;
  gap: 1.35rem;
}

.web-copy h2 {
  max-width: 700px;
  text-wrap: balance;
}

.section-lede {
  max-width: 630px;
  margin: 0;
  color: var(--home-muted);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.72;
}

.capability-list {
  width: 100%;
  display: grid;
  gap: 0;
  margin: 0.4rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--home-line);
}

.capability-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--home-line);
}

.capability-list li > span {
  margin-top: 0.13rem;
  color: #17819c;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.capability-list li div {
  display: grid;
  gap: 0.15rem;
}

.capability-list strong {
  font-family: var(--home-display);
  font-size: 0.98rem;
}

.capability-list small {
  color: var(--home-muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  align-items: center;
  margin-top: 0.2rem;
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border-bottom: 1px solid rgba(7, 16, 26, 0.28);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  transition: border-color 160ms ease, gap 160ms ease;
}

.text-link:hover {
  gap: 0.82rem;
  border-color: var(--home-ink);
}

.account-note {
  max-width: 560px;
  margin: -0.5rem 0 0;
  color: #7b8795;
  font-size: 0.7rem;
  line-height: 1.55;
}

.work-showcase {
  position: relative;
  display: grid;
  gap: 1rem;
}

.work-showcase::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 74%;
  height: 76%;
  top: -10%;
  right: -12%;
  border: 1px solid rgba(25, 153, 190, 0.13);
  border-radius: 50%;
  pointer-events: none;
}

.featured-work,
.mini-work,
.all-work-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(7, 16, 26, 0.12);
  color: var(--home-ink);
  background: #ffffff;
  text-decoration: none;
  box-shadow: var(--home-shadow);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.featured-work:hover,
.mini-work:hover,
.all-work-card:hover {
  transform: translateY(-5px);
  border-color: rgba(26, 153, 190, 0.38);
  box-shadow: 0 34px 90px rgba(5, 10, 18, 0.18);
}

.featured-work {
  display: block;
  border-radius: 26px;
}

.browser-bar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0 0.9rem;
  background: #0b121b;
}

.browser-bar > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.browser-bar > span:first-child {
  background: #ff6d65;
}

.browser-bar > span:nth-child(2) {
  background: #f7c24b;
}

.browser-bar > span:nth-child(3) {
  background: #48c78e;
}

.browser-bar p {
  margin: 0 auto;
  padding-right: 3.4rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.62rem;
  font-weight: 700;
}

.featured-work-image {
  height: 330px;
  overflow: hidden;
  background: #090a0d;
}

.featured-work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 600ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.featured-work:hover .featured-work-image img {
  transform: scale(1.025);
}

.featured-work-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.2rem 1.2rem;
}

.featured-work-caption div {
  display: grid;
  gap: 0.2rem;
}

.featured-work-caption span {
  color: #16829c;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured-work-caption strong {
  font-family: var(--home-display);
  font-size: 1rem;
}

.featured-work-caption i,
.mini-work i,
.all-work-card i {
  font-style: normal;
}

.featured-work-caption i {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--home-line);
  border-radius: 50%;
}

.showcase-foot {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
}

.mini-work {
  min-height: 155px;
  display: grid;
  grid-template-columns: 44% 1fr auto;
  gap: 0.9rem;
  align-items: end;
  padding: 0.8rem;
  border-radius: 20px;
}

.mini-work img {
  position: absolute;
  inset: 0 auto 0 0;
  width: 44%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.mini-work > span {
  grid-column: 2;
  display: grid;
  gap: 0.18rem;
  padding-bottom: 0.2rem;
}

.mini-work strong,
.all-work-card strong {
  font-family: var(--home-display);
  font-size: 0.87rem;
  line-height: 1.2;
}

.mini-work small {
  color: var(--home-muted);
  font-size: 0.63rem;
  font-weight: 700;
}

.mini-work i {
  grid-column: 3;
  padding-bottom: 0.25rem;
}

.all-work-card {
  min-height: 155px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.45rem;
  padding: 1rem;
  border-radius: 20px;
  color: #ffffff;
  background:
    radial-gradient(circle at 100% 0%, rgba(35, 199, 244, 0.3), transparent 12rem),
    var(--home-deep-soft);
}

.all-work-card span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.64rem;
  font-weight: 700;
}

.all-work-card i {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--home-pale-cyan);
}

.build-path {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: clamp(3.5rem, 7vw, 6.5rem);
  padding-top: 1.4rem;
  border-top: 1px solid var(--home-line);
}

.build-path p {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  color: #516071;
  font-family: var(--home-display);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.build-path p span {
  color: #18809b;
  font-size: 0.63rem;
  letter-spacing: 0.1em;
}

.build-path > i {
  height: 1px;
  flex: 1;
  background: var(--home-line);
}

/* Software */
.software-section {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 9rem) 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 0%, rgba(47, 108, 255, 0.11), transparent 28rem),
    radial-gradient(circle at 100% 55%, rgba(35, 199, 244, 0.08), transparent 32rem),
    var(--home-deep);
}

.software-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: 3rem;
  align-items: end;
  margin-bottom: 2.2rem;
}

.software-heading > p {
  margin: 0 0 0.3rem;
  color: rgba(229, 239, 248, 0.55);
  font-size: 0.94rem;
  line-height: 1.7;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.product-card {
  position: relative;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  overflow: hidden;
  padding: clamp(1.3rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--home-radius);
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    #08111d;
  text-decoration: none;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(168, 239, 255, 0.28);
  background:
    linear-gradient(145deg, rgba(35, 199, 244, 0.075), rgba(255, 255, 255, 0.018)),
    #091421;
  box-shadow: 0 30px 72px rgba(0, 0, 0, 0.25);
}

.product-topline {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.product-index {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.product-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.64rem;
  font-weight: 700;
}

.product-status i {
  display: block;
}

.product-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(168, 239, 255, 0.2);
  border-radius: 13px;
  color: var(--home-pale-cyan);
  background: rgba(35, 199, 244, 0.07);
  font-family: var(--home-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.product-icon-music {
  color: #c4b5fd;
  border-color: rgba(196, 181, 253, 0.2);
  background: rgba(124, 58, 237, 0.08);
}

.product-card-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.8rem;
  max-width: 480px;
}

.product-kicker {
  margin: 0;
  color: var(--home-pale-cyan);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.product-card h3 {
  max-width: 520px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.02;
  text-wrap: balance;
}

.product-card-copy > p:last-child,
.product-copy > p:not(.product-kicker) {
  max-width: 54ch;
  margin: 0;
  color: rgba(228, 239, 248, 0.58);
  font-size: 0.9rem;
  line-height: 1.7;
}

.product-link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  width: fit-content;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
}

.product-link i {
  color: var(--home-pale-cyan);
  font-style: normal;
  transition: transform 180ms ease;
}

.product-card:hover .product-link i {
  transform: translateX(4px);
}

.records-product {
  grid-column: 1 / -1;
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  background:
    radial-gradient(circle at 84% 10%, rgba(35, 199, 244, 0.14), transparent 24rem),
    radial-gradient(circle at 10% 100%, rgba(47, 108, 255, 0.14), transparent 22rem),
    linear-gradient(145deg, #0a1625, #060c15);
}

.records-product:hover {
  background:
    radial-gradient(circle at 84% 10%, rgba(35, 199, 244, 0.2), transparent 24rem),
    radial-gradient(circle at 10% 100%, rgba(47, 108, 255, 0.18), transparent 22rem),
    linear-gradient(145deg, #0b192a, #07101b);
}

.product-copy {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: start;
  gap: 1rem;
}

.records-product h3 {
  font-size: clamp(2.7rem, 5.7vw, 5rem);
}

.product-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.3rem 0 0.5rem;
  padding: 0;
  list-style: none;
}

.product-copy li {
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(168, 239, 255, 0.14);
  border-radius: 999px;
  color: rgba(235, 246, 255, 0.65);
  background: rgba(35, 199, 244, 0.05);
  font-size: 0.64rem;
  font-weight: 700;
}

.records-ui {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(168, 239, 255, 0.18);
  border-radius: 20px;
  background: #eef5fa;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38), 0 0 80px rgba(35, 199, 244, 0.07);
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transition: transform 380ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.records-product:hover .records-ui {
  transform: perspective(1200px) rotateY(-1deg) rotateX(0);
}

.records-ui-top {
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  color: #ffffff;
  background: #09131f;
}

.records-ui-top span {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--home-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.records-ui-top img {
  width: 24px;
  height: 24px;
}

.records-ui-top > i {
  width: 72px;
  height: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.records-ui-body {
  min-height: 318px;
  display: grid;
  grid-template-columns: 68px 1fr;
}

.records-sidebar {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 1rem;
  padding: 1.1rem 0;
  background: #101d2c;
}

.records-sidebar i {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.records-sidebar i.is-active {
  border-color: rgba(35, 199, 244, 0.4);
  background: rgba(35, 199, 244, 0.18);
}

.records-content {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 1.2rem;
}

.records-search {
  width: 100%;
  height: 38px;
  border: 1px solid rgba(7, 16, 26, 0.08);
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(7, 16, 26, 0.08) 0 28%, transparent 28%) 1rem center / 38% 6px no-repeat,
    #ffffff;
}

.records-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.records-stats i {
  height: 64px;
  border: 1px solid rgba(7, 16, 26, 0.07);
  border-radius: 11px;
  background:
    linear-gradient(rgba(47, 108, 255, 0.18), rgba(47, 108, 255, 0.18)) 0.75rem 0.8rem / 30% 7px no-repeat,
    linear-gradient(rgba(7, 16, 26, 0.08), rgba(7, 16, 26, 0.08)) 0.75rem 1.8rem / 60% 5px no-repeat,
    #ffffff;
}

.records-table {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(7, 16, 26, 0.07);
  border-radius: 11px;
  background: #ffffff;
}

.records-table span {
  height: 45px;
  border-bottom: 1px solid rgba(7, 16, 26, 0.07);
  background:
    linear-gradient(rgba(7, 16, 26, 0.08), rgba(7, 16, 26, 0.08)) 1rem center / 42% 6px no-repeat,
    linear-gradient(rgba(47, 108, 255, 0.14), rgba(47, 108, 255, 0.14)) calc(100% - 1rem) center / 14% 20px no-repeat;
}

.records-table span:last-child {
  border-bottom: 0;
}

.utilities-product::before,
.virals-product::before,
.music-product::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -130px;
  bottom: -150px;
  border: 1px solid rgba(35, 199, 244, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(35, 199, 244, 0.05);
}

.virals-product::before {
  border-color: rgba(99, 102, 241, 0.16);
  box-shadow: 0 0 80px rgba(99, 102, 241, 0.05);
}

.music-product {
  grid-column: 1 / -1;
  min-height: 320px;
}

.music-product::before {
  border-color: rgba(196, 181, 253, 0.18);
  box-shadow: 0 0 80px rgba(124, 58, 237, 0.08);
}

/* Closing and footer */
.closing-section {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 72% 42%, rgba(35, 199, 244, 0.13), transparent 24rem),
    linear-gradient(130deg, #07101b, #050a12 70%);
}

.closing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at 70% 50%, #000, transparent 55%);
  -webkit-mask-image: radial-gradient(circle at 70% 50%, #000, transparent 55%);
}

.closing-mark {
  position: absolute;
  width: min(640px, 58vw);
  right: -7%;
  top: 50%;
  opacity: 0.2;
  transform: translateY(-50%);
  filter: saturate(1.15) contrast(1.05);
}

.closing-shell {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: start;
  gap: 1.25rem;
  padding: 7rem 0;
}

.closing-shell h2 {
  max-width: 870px;
  font-size: clamp(3rem, 6.4vw, 6.7rem);
  text-wrap: balance;
}

.closing-shell > p:not(.eyebrow) {
  max-width: 600px;
  margin: 0;
  color: rgba(232, 242, 250, 0.6);
  font-size: 1rem;
}

.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.45rem;
}

.home-footer {
  padding: 2.6rem 0 1.1rem;
  color: rgba(255, 255, 255, 0.68);
  background: #03070d;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  width: min(860px, calc(100% - 3rem));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(2rem, 7vw, 5rem);
  row-gap: 1.65rem;
  margin: 0 auto;
  padding-bottom: 1.9rem;
}

.footer-brand {
  grid-column: 1 / -1;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 0.55rem;
  padding-bottom: 0;
  text-align: center;
}

.footer-brand p {
  max-width: 460px;
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.82rem;
  line-height: 1.5;
}

.footer-nav {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 0.32rem;
  text-align: center;
}

.footer-nav p {
  margin: 0 0 0.18rem;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-nav a {
  min-height: 27px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.77rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease;
}

.footer-nav a:hover,
.footer-bottom a:hover {
  color: var(--home-pale-cyan);
}

.footer-bottom {
  max-width: 860px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
}

.footer-bottom a {
  color: inherit;
  font-weight: 800;
  text-decoration: none;
}

/* Reveal motion */
.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.quick-grid [data-reveal]:nth-child(2),
.product-grid [data-reveal]:nth-child(2) {
  transition-delay: 80ms;
}

.quick-grid [data-reveal]:nth-child(3),
.product-grid [data-reveal]:nth-child(3) {
  transition-delay: 150ms;
}

@keyframes orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes orbit-spin-reverse {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes core-pulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.94);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes float-one {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes float-two {
  0%,
  100% {
    transform: translateY(-4px);
  }

  50% {
    transform: translateY(7px);
  }
}

@media (min-width: 901px) {
  .home-topbar .site-menu-toggle,
  .home-topbar .site-mobile-menu {
    display: none !important;
  }
}

@media (max-width: 1020px) {
  .page-shell,
  .home-topbar .site-topbar-inner {
    width: min(100% - 2rem, 1180px);
  }

  .desktop-nav a {
    padding-inline: 0.62rem;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.75fr);
    gap: 2rem;
  }

  .hero-copy h1 {
    font-size: clamp(4rem, 9vw, 6.5rem);
  }

  .orbit-card-web {
    left: 0;
  }

  .orbit-card-systems {
    right: 0;
  }

  .web-shell {
    grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
    gap: 3rem;
  }
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .home-topbar .site-nav-actions {
    margin-left: auto;
  }

  .home-topbar .site-menu-toggle {
    display: inline-flex;
  }

  body.site-menu-is-open .home-intro-inner,
  body.site-menu-is-open .hero-shell {
    padding-top: 9.5rem !important;
  }

  .home-topbar .site-mobile-menu.is-open {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-topbar .site-mobile-menu-head {
    grid-column: 1 / -1;
  }

  .home-topbar .site-mobile-menu .site-menu-link:last-child {
    grid-column: 2;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    padding-top: 9rem;
    text-align: center;
  }

  .hero-copy {
    justify-items: center;
  }

  .hero-lede {
    max-width: 700px;
  }

  .hero-visual {
    width: min(100%, 540px);
    min-height: auto;
    margin: -1.5rem auto 0;
  }

  .system-orbit {
    width: min(100%, 480px);
  }

  .quick-section {
    padding-top: 3rem;
  }

  .quick-section .section-intro {
    margin-inline: auto;
    text-align: center;
    justify-items: center;
  }

  .web-shell {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .web-copy {
    max-width: 720px;
  }

  .work-showcase {
    width: min(100%, 720px);
    margin: 0 auto;
  }

  .software-heading {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .software-heading > p {
    max-width: 620px;
  }

  .records-product {
    grid-template-columns: 1fr;
  }

  .records-ui {
    width: min(100%, 680px);
  }

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    padding-bottom: 1.5rem;
  }

  .home-footer {
    padding: 3rem 0 1.25rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
    justify-items: center;
    gap: 0.8rem;
    padding-bottom: 1.75rem;
    text-align: center;
  }

  .footer-brand p {
    max-width: 280px;
    line-height: 1.65;
  }

  .footer-nav {
    display: grid;
    align-content: start;
    justify-items: center;
    gap: 0.2rem;
    padding: 0;
    border: 0;
    text-align: center;
  }

  .footer-nav p {
    margin: 0 0 0.45rem;
    font-size: 0.58rem;
    letter-spacing: 0.13em;
  }

  .footer-nav a {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.72rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 160ms ease;
  }

  .footer-nav a:hover {
    color: var(--home-pale-cyan);
  }

  .footer-bottom {
    align-items: center;
    flex-direction: column;
    gap: 0.4rem;
    padding-top: 1.15rem;
    border-top: 0;
    text-align: center;
  }
}

@media (max-width: 700px) {
  html {
    scroll-padding-top: 5rem;
  }

  .page-shell,
  .home-topbar .site-topbar-inner {
    width: min(100% - 1.35rem, 1180px);
  }

  .home-topbar .site-topbar-inner {
    padding: 0.8rem 0;
  }

  .site-brand.home-brand img,
  .home-brand img {
    width: 31px;
    height: 31px;
  }

  .home-brand {
    gap: 0.55rem;
    font-size: 0.88rem;
    letter-spacing: 0.18em;
  }

  .home-topbar .site-auth-link {
    min-height: 42px;
    padding-inline: 0.7rem;
  }

  .home-topbar .site-menu-toggle {
    width: 42px;
    height: 42px;
  }

  .home-topbar .site-mobile-menu.is-open {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-height: calc(100svh - 70px);
    overflow-y: auto;
    padding-bottom: 0.5rem;
  }

  body.site-menu-is-open .home-intro-inner,
  body.site-menu-is-open .hero-shell {
    padding-top: 15.5rem !important;
  }

  .home-intro.hero {
    min-height: auto;
  }

  .hero-shell {
    gap: 3rem;
    padding: 7.8rem 0 4.5rem;
  }

  .hero-copy {
    gap: 1.15rem;
  }

  .hero-copy h1 {
    font-size: clamp(3.5rem, 18vw, 5.3rem);
    line-height: 0.9;
  }

  .hero-lede {
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-note {
    max-width: 320px;
    justify-content: center;
    line-height: 1.5;
  }

  .hero-visual {
    margin-top: -1.8rem;
  }

  .system-orbit {
    width: min(100%, 390px);
  }

  .orbit-core {
    width: 104px;
    height: 104px;
    border-radius: 28px;
  }

  .orbit-core img {
    width: 62px;
    height: 62px;
  }

  .orbit-card {
    min-width: 132px;
    padding: 0.65rem 0.7rem;
  }

  .orbit-card strong {
    font-size: 0.73rem;
  }

  .orbit-card small {
    font-size: 0.56rem;
  }

  .orbit-card-systems {
    top: 17%;
  }

  .orbit-card-software {
    right: 1%;
    bottom: 10%;
  }

  .orbit-status {
    left: 0;
    bottom: 14%;
    font-size: 0.56rem;
  }

  .hero-grid {
    background-size: 52px 52px;
  }

  .quick-section {
    padding: 3rem 0 5rem;
  }

  .quick-grid {
    grid-template-columns: 1fr;
  }

  .quick-card {
    min-height: 190px;
  }

  .quick-card h3 {
    font-size: 2.25rem;
  }

  .web-section {
    padding: 5rem 0 4rem;
  }

  .web-shell {
    gap: 3rem;
  }

  .section-actions,
  .section-actions .button {
    width: 100%;
  }

  .text-link {
    width: fit-content;
  }

  .featured-work-image {
    height: clamp(220px, 62vw, 330px);
  }

  .showcase-foot {
    grid-template-columns: 1fr;
  }

  .mini-work,
  .all-work-card {
    min-height: 145px;
  }

  .build-path {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }

  .build-path p {
    padding: 0.8rem;
    border: 1px solid var(--home-line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.55);
    white-space: normal;
  }

  .build-path > i {
    display: none;
  }

  .software-section {
    padding: 5rem 0;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card,
  .music-product {
    grid-column: auto;
    min-height: 360px;
  }

  .records-product {
    grid-column: auto;
    min-height: 650px;
    padding-bottom: 0;
  }

  .records-ui {
    align-self: end;
    width: calc(100% + 1rem);
    margin: 0 -0.5rem -1rem;
    transform: none;
  }

  .records-product:hover .records-ui {
    transform: none;
  }

  .records-ui-body {
    min-height: 250px;
    grid-template-columns: 48px 1fr;
  }

  .records-sidebar {
    gap: 0.75rem;
  }

  .records-sidebar i {
    width: 20px;
    height: 20px;
  }

  .records-content {
    gap: 0.7rem;
    padding: 0.85rem;
  }

  .records-stats i {
    height: 52px;
  }

  .records-table span {
    height: 36px;
  }

  .closing-section {
    min-height: 620px;
  }

  .closing-mark {
    width: 120vw;
    right: -45%;
    opacity: 0.13;
  }

  .closing-shell {
    justify-items: center;
    text-align: center;
    padding: 6rem 0;
  }

  .closing-shell .eyebrow {
    justify-content: center;
  }

  .closing-actions,
  .closing-actions .button {
    width: 100%;
  }

}

@media (max-width: 420px) {
  .hero-visual {
    width: calc(100% + 1rem);
  }

  .orbit-card-web {
    top: 8%;
  }

  .orbit-card-systems {
    top: 18%;
  }

  .orbit-status {
    display: none;
  }

  .featured-work-caption {
    align-items: flex-end;
  }

  .featured-work-caption strong {
    font-size: 0.88rem;
  }

  .footer-grid {
    gap: 0.3rem;
  }

  .footer-nav p {
    font-size: 0.54rem;
    letter-spacing: 0.1em;
  }

  .footer-nav a {
    font-size: 0.68rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-delay: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Logo-first homepage hero */
.home-intro.hero.minimal-hero {
  isolation: isolate;
  min-height: 100svh;
  background: #050a12;
}

.minimal-hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(180deg, #0a3657 0%, #081e34 42%, #06111f 72%, #050a12 100%);
  animation: hero-gradient-settle 6000ms ease-in-out 6800ms both;
}

.minimal-hero::after {
  display: none;
}

.hero-shell.minimal-hero-shell {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  padding: clamp(7.5rem, 11vh, 9rem) 0 clamp(4.75rem, 8vh, 6.25rem);
  text-align: center;
}

.minimal-hero-shell .minimal-hero-copy {
  width: 100%;
  max-width: 1120px;
  display: grid;
  justify-items: center;
  gap: 1.15rem;
  margin: 0 auto;
}

.hero-logo {
  position: relative;
  isolation: isolate;
  width: min(620px, 72vw);
  height: auto;
  margin-bottom: 0.65rem;
  animation: hero-logo-arrive 1600ms cubic-bezier(0.16, 1, 0.3, 1) 120ms both;
}

.hero-logo::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 12% 6%;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(18, 117, 255, 0.25), rgba(18, 117, 255, 0) 68%);
  filter: blur(28px);
  transform: scale(0.58);
  animation: hero-logo-aura 2800ms cubic-bezier(0.16, 1, 0.3, 1) 420ms both;
}

.hero-logo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 36px rgba(16, 121, 255, 0.1));
  animation:
    hero-logo-focus 2300ms ease-out 900ms both,
    hero-logo-release 1000ms ease-in-out 7200ms;
}

.hero-logo::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(105deg, transparent 44%, rgba(255, 255, 255, 0.78) 50%, transparent 56%);
  background-size: 250% 100%;
  background-position: 150% 0;
  -webkit-mask: url("./welcomen3xra.png") center / contain no-repeat;
  mask: url("./welcomen3xra.png") center / contain no-repeat;
  animation: hero-logo-sheen 2100ms cubic-bezier(0.4, 0, 0.2, 1) 1350ms both;
}

.minimal-hero-copy h1 {
  width: 100%;
  max-width: 1080px;
  color: #f4f7fb;
  font-size: clamp(2.35rem, 3.25vw, 4rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.minimal-hero-copy h1 .hero-title-line {
  display: block;
  color: inherit;
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: currentColor;
  clip-path: inset(0 0 0 0);
  animation: hero-line-arrive 1100ms cubic-bezier(0.16, 1, 0.3, 1) both;
  will-change: transform, opacity, clip-path;
}

.minimal-hero-copy h1 .hero-title-line:first-child {
  animation-delay: 2250ms;
}

.minimal-hero-copy h1 .hero-title-line:nth-child(2) {
  animation-delay: 2850ms;
}

.minimal-hero-copy .hero-lede {
  max-width: 620px;
  margin: 0.15rem 0 0;
  color: rgba(231, 241, 249, 0.56);
  font-size: clamp(0.92rem, 1.15vw, 1.04rem);
  font-weight: 500;
  line-height: 1.65;
  animation: hero-detail-arrive 900ms cubic-bezier(0.16, 1, 0.3, 1) 3800ms both;
}

.hero-quick-links {
  width: min(100%, 540px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.6rem, 2vw, 1.25rem);
  margin-top: 1rem;
  animation: hero-rail-arrive 1050ms cubic-bezier(0.16, 1, 0.3, 1) 4350ms both;
}

.hero-quick-links a {
  position: relative;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.65rem 0.35rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 180ms ease;
  animation: hero-link-arrive 700ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-quick-links a::after {
  content: "";
  position: absolute;
  right: 20%;
  bottom: 0;
  left: 20%;
  height: 1px;
  background: var(--home-pale-cyan);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.hero-quick-links a:first-child {
  animation-delay: 4850ms;
}

.hero-quick-links a:nth-child(2) {
  animation-delay: 5100ms;
}

.hero-quick-links a:nth-child(3) {
  animation-delay: 5350ms;
}

.hero-quick-links a + a {
  border-left: 0;
}

.hero-quick-links a:hover {
  color: #ffffff;
  background: transparent;
}

.hero-quick-links a:hover::after {
  transform: scaleX(1);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.45rem;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
  transition: color 180ms ease;
  animation: hero-scroll-arrive 750ms ease 6050ms both;
}

.scroll-cue:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* Skip the cinematic sequence after its first play in this tab session. */
.home-intro-seen .minimal-hero::before {
  opacity: 1;
  animation: none !important;
}

.home-intro-seen .hero-logo,
.home-intro-seen .hero-logo::before,
.home-intro-seen .hero-logo img,
.home-intro-seen .hero-logo::after,
.home-intro-seen .minimal-hero-copy h1 .hero-title-line,
.home-intro-seen .minimal-hero-copy .hero-lede,
.home-intro-seen .hero-quick-links,
.home-intro-seen .hero-quick-links a,
.home-intro-seen .scroll-cue,
.home-intro-seen .desktop-nav a,
.home-intro-seen .home-topbar .site-nav-actions .site-auth-link,
.home-intro-seen .home-topbar .site-nav-actions .site-menu-toggle {
  animation: none !important;
}

.home-intro-seen .hero-logo::before {
  opacity: 0.38;
  transform: scale(1.08);
}

.home-intro-seen .hero-logo::after {
  opacity: 0;
}

@media (max-width: 700px) {
  .hero-shell.minimal-hero-shell {
    gap: 0;
    padding: 7.2rem 0 5.5rem;
  }

  .minimal-hero-shell .minimal-hero-copy {
    gap: 1.05rem;
  }

  .hero-logo {
    width: min(100%, 480px);
    height: auto;
    margin-bottom: 0.65rem;
  }

  .hero-logo img {
    width: 100%;
    height: auto;
  }

  .minimal-hero-copy h1 {
    max-width: 560px;
    font-size: clamp(1.9rem, 7.6vw, 2.75rem);
    line-height: 1.12;
    letter-spacing: -0.045em;
  }

  .minimal-hero-copy .hero-lede {
    max-width: 400px;
    font-size: 0.9rem;
  }

  .hero-quick-links {
    margin-top: 0.8rem;
  }

  .hero-quick-links a {
    min-height: 56px;
    gap: 0.45rem;
    padding: 0.65rem 0.35rem;
    font-size: 0.68rem;
  }

}

@media (min-width: 820px) {
  .minimal-hero-copy h1 .hero-title-line:first-child {
    white-space: nowrap;
  }
}

@keyframes hero-logo-arrive {
  0% {
    opacity: 0;
    filter: blur(18px);
    transform: translateY(28px) scale(0.93);
  }

  42% {
    opacity: 0.72;
    filter: blur(7px);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes hero-logo-aura {
  0% {
    opacity: 0;
    transform: scale(0.58);
  }

  48% {
    opacity: 1;
  }

  100% {
    opacity: 0.38;
    transform: scale(1.08);
  }
}

@keyframes hero-logo-focus {
  0% {
    filter: drop-shadow(0 0 0 rgba(16, 121, 255, 0));
  }

  48% {
    filter: drop-shadow(0 20px 42px rgba(16, 121, 255, 0.24));
  }

  100% {
    filter: drop-shadow(0 18px 36px rgba(16, 121, 255, 0.1));
  }
}

@keyframes hero-logo-release {
  0%,
  100% {
    filter: drop-shadow(0 18px 36px rgba(16, 121, 255, 0.1));
    transform: scale(1);
  }

  42% {
    filter: drop-shadow(0 0 24px rgba(35, 199, 244, 0.5));
    transform: scale(0.992);
  }
}

@keyframes hero-logo-sheen {
  0%,
  12% {
    opacity: 0;
    background-position: 150% 0;
  }

  32% {
    opacity: 0.6;
  }

  88%,
  100% {
    opacity: 0;
    background-position: -150% 0;
  }
}

@keyframes hero-line-arrive {
  from {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    filter: blur(5px);
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes hero-detail-arrive {
  from {
    opacity: 0;
    filter: blur(3px);
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes hero-rail-arrive {
  from {
    opacity: 0;
    clip-path: inset(0 50% 0 50%);
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateY(0);
  }
}

@keyframes hero-link-arrive {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-scroll-arrive {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes hero-gradient-settle {
  0% {
    opacity: 0;
  }

  24% {
    opacity: 0.12;
  }

  58% {
    opacity: 0.48;
  }

  100% {
    opacity: 1;
  }
}

@keyframes nav-brand-failsafe {
  to {
    visibility: visible;
  }
}

@keyframes nav-link-accent {
  0%,
  100% {
    color: rgba(255, 255, 255, 0.74);
    text-shadow: 0 0 0 rgba(35, 199, 244, 0);
    transform: translateY(0);
  }

  48% {
    color: #ffffff;
    text-shadow: 0 0 16px rgba(35, 199, 244, 0.58);
    transform: translateY(-1px);
  }
}

@keyframes nav-secondary-accent {
  0%,
  100% {
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 0 0 rgba(35, 199, 244, 0);
  }

  48% {
    border-color: rgba(152, 233, 255, 0.54);
    box-shadow: 0 0 22px rgba(35, 199, 244, 0.16);
  }
}

/* Editorial website and software sections */
.web-section.web-editorial {
  padding: clamp(5.5rem, 9vw, 8.5rem) 0;
  background: #f2f5f6;
}

.web-editorial-shell,
.software-directory-shell {
  display: grid;
  gap: clamp(3rem, 6vw, 5.5rem);
}

.web-editorial-heading,
.software-editorial-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: end;
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--home-line);
}

.web-editorial-heading .eyebrow,
.software-editorial-heading .eyebrow {
  margin-bottom: 1.15rem;
}

.web-editorial-heading h2,
.software-editorial-heading h2 {
  max-width: 900px;
  font-size: clamp(3.1rem, 6vw, 6.4rem);
  line-height: 0.95;
  text-wrap: balance;
}

.web-editorial-intro {
  display: grid;
  justify-items: start;
  gap: 1.4rem;
}

.web-editorial-intro > p,
.software-editorial-heading > p {
  margin: 0;
  color: #5c6977;
  font-size: 0.95rem;
  line-height: 1.75;
}

.web-editorial-body {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.5fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: stretch;
}

.web-case {
  position: relative;
  min-height: 620px;
  display: block;
  overflow: hidden;
  border-radius: 28px;
  color: #ffffff;
  background: #09111a;
  text-decoration: none;
  box-shadow: 0 30px 80px rgba(5, 10, 18, 0.16);
}

.web-case > img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.web-case:hover > img {
  transform: scale(1.025);
}

.web-case-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 9, 15, 0.08) 35%, rgba(4, 9, 15, 0.9) 100%);
}

.web-case-label {
  position: absolute;
  top: 1.4rem;
  left: 1.5rem;
  padding: 0.5rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(5, 10, 18, 0.46);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.web-case-caption {
  position: absolute;
  right: 1.6rem;
  bottom: 1.5rem;
  left: 1.6rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.web-case-caption strong {
  max-width: 580px;
  font-family: var(--home-display);
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.web-case-caption i {
  flex: 0 0 auto;
  color: var(--home-pale-cyan);
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.web-method {
  display: flex;
  flex-direction: column;
  padding-left: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 1px solid var(--home-line);
}

.web-method-label {
  margin: 0 0 1.25rem;
  color: #18809b;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.web-method ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--home-line);
}

.web-method li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 0.8rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--home-line);
}

.web-method li > span {
  padding-top: 0.12rem;
  color: #18809b;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.web-method li div {
  display: grid;
  gap: 0.38rem;
}

.web-method li strong {
  font-family: var(--home-display);
  font-size: 0.95rem;
  line-height: 1.3;
}

.web-method li p {
  margin: 0;
  color: #657282;
  font-size: 0.76rem;
  line-height: 1.6;
}

.web-method-links {
  display: grid;
  gap: 0.15rem;
  margin-top: auto;
  padding-top: 1.5rem;
}

.web-method-links a {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--home-ink);
  font-size: 0.74rem;
  font-weight: 800;
  text-decoration: none;
}

.web-method-links a span {
  color: #18809b;
}

.software-section.software-directory {
  padding: clamp(5.5rem, 9vw, 8.5rem) 0;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(15, 42, 71, 0.34), rgba(5, 10, 18, 0) 46%),
    #050a12;
}

.software-editorial-heading {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.software-editorial-heading > p {
  color: rgba(230, 240, 248, 0.56);
}

.software-flagship {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(440px, 1.28fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  text-decoration: none;
}

.software-flagship-copy {
  display: grid;
  justify-items: start;
  gap: 1rem;
}

.software-product-meta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.software-flagship-copy > p:first-of-type {
  margin: 0.45rem 0 -0.35rem;
  color: var(--home-pale-cyan);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.software-flagship-copy h3 {
  max-width: 540px;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  line-height: 0.94;
  text-wrap: balance;
}

.software-flagship-copy > p:last-of-type {
  max-width: 520px;
  margin: 0;
  color: rgba(230, 240, 248, 0.58);
  font-size: 0.92rem;
  line-height: 1.72;
}

.software-product-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.55rem;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
}

.software-product-link i {
  color: var(--home-pale-cyan);
  font-style: normal;
  transition: transform 180ms ease;
}

.software-flagship:hover .software-product-link i {
  transform: translateX(4px);
}

.software-console {
  position: relative;
  min-height: 390px;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 1.2rem;
  overflow: hidden;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(18, 43, 70, 0.94), rgba(8, 18, 31, 0.96)),
    #0b1725;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  transition: border-color 220ms ease, transform 400ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.software-flagship:hover .software-console {
  border-color: rgba(134, 231, 255, 0.28);
  transform: translateY(-4px);
}

.software-console::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -100px;
  bottom: -130px;
  border-radius: 50%;
  background: rgba(35, 199, 244, 0.08);
  filter: blur(30px);
}

.software-console-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.software-console-top span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--home-display);
  font-size: 0.72rem;
  font-weight: 700;
}

.software-console-top img {
  width: 23px;
  height: 23px;
  object-fit: contain;
}

.software-console-top > i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 12px rgba(52, 211, 153, 0.7);
}

.software-console-search {
  position: relative;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
}

.software-console-search span {
  width: 38%;
  height: 6px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.15);
}

.software-console-search i {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: rgba(35, 199, 244, 0.16);
}

.software-console-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.software-console-stats span {
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
}

.software-console-lines {
  display: grid;
  gap: 0.55rem;
}

.software-console-lines span {
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.025);
}

.software-index {
  display: grid;
}

.software-index a {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 40px;
  gap: 1.25rem;
  align-items: center;
  padding: 1.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  text-decoration: none;
}

.software-index a > span {
  color: var(--home-pale-cyan);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.software-index a > div {
  display: grid;
  grid-template-columns: minmax(180px, 0.5fr) minmax(280px, 1fr);
  gap: 2rem;
  align-items: center;
}

.software-index strong {
  font-family: var(--home-display);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  letter-spacing: -0.025em;
}

.software-index p {
  margin: 0;
  color: rgba(230, 240, 248, 0.52);
  font-size: 0.78rem;
  line-height: 1.6;
}

.software-index a > i {
  color: rgba(255, 255, 255, 0.46);
  font-size: 1rem;
  font-style: normal;
  text-align: right;
  transition: color 180ms ease, transform 180ms ease;
}

.software-index a:hover > i {
  color: var(--home-pale-cyan);
  transform: translate(3px, -3px);
}

@media (max-width: 960px) {
  .web-editorial-heading,
  .software-editorial-heading {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .web-editorial-intro,
  .software-editorial-heading > p {
    max-width: 680px;
  }

  .web-editorial-body {
    grid-template-columns: 1fr;
  }

  .web-case {
    min-height: 540px;
  }

  .web-method {
    padding: 2rem 0 0;
    border-top: 1px solid var(--home-line);
    border-left: 0;
  }

  .web-method-links {
    margin-top: 0;
  }

  .software-flagship {
    grid-template-columns: 1fr;
  }

  .software-flagship-copy {
    max-width: 680px;
  }

  .software-console {
    width: min(100%, 720px);
  }
}

@media (max-width: 700px) {
  .web-section.web-editorial,
  .software-section.software-directory {
    padding: 5rem 0;
  }

  .web-editorial-shell,
  .software-directory-shell {
    gap: 2.5rem;
  }

  .web-editorial-heading h2,
  .software-editorial-heading h2 {
    font-size: clamp(2.65rem, 12vw, 4rem);
    line-height: 0.98;
  }

  .web-editorial-intro .section-actions,
  .web-editorial-intro .section-actions .button {
    width: 100%;
  }

  .web-case {
    min-height: 430px;
    border-radius: 20px;
  }

  .web-case-label {
    top: 1rem;
    left: 1rem;
  }

  .web-case-caption {
    right: 1.1rem;
    bottom: 1.1rem;
    left: 1.1rem;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.65rem;
  }

  .web-method li {
    padding: 1.15rem 0;
  }

  .software-flagship {
    gap: 2rem;
    padding-bottom: 2.5rem;
  }

  .software-flagship-copy h3 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .software-console {
    min-height: 340px;
    padding: 1rem;
    border-radius: 18px;
  }

  .software-console-stats span {
    height: 58px;
  }

  .software-console-lines span {
    height: 34px;
  }

  .software-index a {
    grid-template-columns: 32px minmax(0, 1fr) 24px;
    gap: 0.75rem;
    padding: 1.25rem 0;
  }

  .software-index a > div {
    grid-template-columns: 1fr;
    gap: 0.32rem;
  }

  .software-index strong {
    font-size: 1rem;
  }

  .software-index p {
    font-size: 0.72rem;
  }
}

@media (max-width: 420px) {
  .web-case {
    min-height: 360px;
  }

  .web-case-label {
    max-width: calc(100% - 2rem);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .software-console {
    min-height: 310px;
  }
}

/* Ask N3XRA */
.ask-home {
  padding: clamp(5rem, 9vw, 8rem) 0;
  color: var(--home-ink);
  background:
    radial-gradient(circle at 8% 12%, rgba(47, 168, 255, 0.1), transparent 26rem),
    radial-gradient(circle at 92% 8%, rgba(22, 131, 111, 0.08), transparent 22rem),
    #f2f6f8;
}

.ask-home-shell {
  width: min(100% - 3rem, 1040px);
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(440px, 1.32fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
}

.ask-home-intro {
  display: grid;
  justify-items: start;
  gap: 1.1rem;
}

.ask-home-intro h2 {
  max-width: 560px;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  line-height: 0.96;
  text-wrap: balance;
}

.ask-home-intro > p:last-child {
  max-width: 440px;
  margin: 0;
  color: #5f6c79;
  font-size: 0.92rem;
  line-height: 1.7;
}

.ask-home-panel {
  padding: clamp(1.15rem, 3vw, 1.7rem);
  border: 1px solid rgba(7, 16, 26, 0.11);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 70px rgba(7, 12, 18, 0.09);
}

/* Homepage partner opportunity */
.home-growth-partners {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(2.4rem, 5vw, 4rem) 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 8% 8%, rgba(35, 199, 244, 0.16), transparent 26rem),
    radial-gradient(circle at 92% 86%, rgba(47, 108, 255, 0.13), transparent 28rem),
    linear-gradient(145deg, #050a12 0%, #08111d 55%, #07101a 100%);
}

.home-growth-partners-inner {
  width: min(1120px, calc(100vw - 2rem));
  margin: 0 auto;
}

.home-growth-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(2rem, 6vw, 5rem);
}

.home-growth-copy > div {
  max-width: 720px;
  display: grid;
  gap: 0.65rem;
}

.home-growth-copy h2 {
  font-size: clamp(2rem, 3.8vw, 3.45rem);
}

.home-growth-copy > div > p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
}

.home-growth-copy .home-growth-note {
  color: var(--home-pale-cyan);
  font-size: 0.82rem;
  font-weight: 700;
}

.home-growth-action {
  width: min(100%, 290px);
  display: grid;
  flex: 0 0 auto;
  gap: 1rem;
  padding-left: clamp(1.25rem, 3vw, 2.5rem);
  border-left: 1px solid rgba(168, 239, 255, 0.22);
}

.home-growth-action p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
}

.home-growth-button {
  min-height: 54px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  color: var(--home-deep);
  background: #ffffff;
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.home-growth-button:hover {
  background: var(--home-pale-cyan);
  box-shadow: 0 22px 54px rgba(18, 182, 231, 0.22);
  transform: translateY(-2px);
}

@media (max-width: 700px) {
  .home-growth-partners-inner {
    width: min(100% - 1.35rem, 1120px);
  }

  .home-growth-copy {
    align-items: stretch;
    flex-direction: column;
    gap: 1.35rem;
  }

  .home-growth-action {
    width: 100%;
    padding-top: 1.25rem;
    padding-left: 0;
    border-top: 1px solid rgba(168, 239, 255, 0.22);
    border-left: 0;
  }

  .home-growth-button {
    width: 100%;
  }
}

/* Founder story */
.creator-section {
  position: relative;
  min-height: 780px;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: #ffffff;
  background: #050a12;
}

.creator-section::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, #050a12 0%, #050a12 33%, rgba(5, 10, 18, 0.84) 46%, rgba(5, 10, 18, 0.14) 76%, rgba(5, 10, 18, 0.06) 100%),
    linear-gradient(180deg, rgba(5, 10, 18, 0.12) 58%, #050a12 100%);
}

.creator-portrait {
  position: absolute;
  z-index: 0;
  inset: 0 0 0 auto;
  width: min(62%, 820px);
  overflow: hidden;
}

.creator-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 36%;
  filter: saturate(0.9) contrast(1.03);
}

.creator-light {
  position: absolute;
  z-index: 1;
  width: 520px;
  height: 520px;
  right: 12%;
  bottom: -270px;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(35, 199, 244, 0.12);
  filter: blur(100px);
}

.creator-shell {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  min-height: 780px;
  padding: 7rem 0;
}

.creator-copy {
  width: min(52%, 620px);
  display: grid;
  justify-items: start;
  gap: 1.25rem;
}

.creator-copy h2 {
  max-width: 680px;
  font-size: clamp(3.5rem, 6.5vw, 6.8rem);
  line-height: 0.92;
  text-wrap: balance;
}

.creator-statement {
  max-width: 600px;
  display: grid;
  gap: 0.9rem;
}

.creator-statement p {
  margin: 0;
  color: rgba(232, 242, 250, 0.68);
  font-size: clamp(0.9rem, 1.25vw, 1rem);
  line-height: 1.72;
}

.creator-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  margin-top: 0.3rem;
  border-bottom: 1px solid rgba(168, 239, 255, 0.3);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  text-decoration: none;
  transition: color 160ms ease, border-color 160ms ease;
}

.creator-link:hover {
  border-color: var(--home-pale-cyan);
}

/* Custom projects */
.projects-promo {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 9vw, 8rem) 0;
  color: var(--home-ink);
  background: #f5f7fa;
}

.projects-promo::before {
  content: "BUILD";
  position: absolute;
  top: -0.14em;
  right: -0.04em;
  color: rgba(7, 16, 26, 0.026);
  font-family: var(--home-display);
  font-size: clamp(8rem, 22vw, 20rem);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 1;
  pointer-events: none;
}

.projects-promo-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.projects-promo-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: end;
  padding-bottom: clamp(1.8rem, 4vw, 2.8rem);
  border-bottom: 1px solid var(--home-line);
}

.projects-promo-heading .eyebrow {
  margin-bottom: 1rem;
}

.projects-promo-heading h2 {
  max-width: 880px;
  font-size: clamp(3rem, 6vw, 6.2rem);
  line-height: 0.95;
  text-wrap: balance;
}

.projects-promo-heading > p {
  margin: 0;
  color: var(--home-muted);
  font-size: 0.94rem;
  line-height: 1.75;
}

.build-offers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--home-line);
}

.build-offers > div {
  display: grid;
  align-content: start;
  gap: 0.6rem;
  padding: 0 2rem 2rem;
}

.build-offers > div:first-child {
  padding-left: 0;
}

.build-offers > div + div {
  border-left: 1px solid var(--home-line);
}

.build-offers > div > span {
  color: #16809a;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.build-offers strong {
  font-family: var(--home-display);
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  letter-spacing: -0.035em;
}

.build-offers p {
  max-width: 330px;
  margin: 0;
  color: #667486;
  font-size: 0.78rem;
  line-height: 1.62;
}

.projects-promo-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.projects-request-button {
  color: var(--home-ink);
  background: transparent;
  border-color: rgba(7, 16, 26, 0.22);
}

.projects-request-button:hover {
  color: #ffffff;
  background: var(--home-ink);
  border-color: var(--home-ink);
}

.projects-support-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-left: auto;
  color: #596777;
  font-size: 0.74rem;
  font-weight: 800;
  text-decoration: none;
}

.projects-support-link span {
  color: #16809a;
  transition: transform 160ms ease;
}

.projects-support-link:hover span {
  transform: translateX(3px);
}

@media (max-width: 900px) {
  .creator-section,
  .creator-shell {
    min-height: 720px;
  }

  .creator-portrait {
    width: 72%;
  }

  .creator-section::before {
    background:
      linear-gradient(90deg, #050a12 0%, #050a12 26%, rgba(5, 10, 18, 0.86) 48%, rgba(5, 10, 18, 0.28) 100%),
      linear-gradient(180deg, rgba(5, 10, 18, 0.12) 54%, #050a12 100%);
  }

  .creator-copy {
    width: min(64%, 600px);
  }

  .projects-promo-heading {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .projects-promo-heading > p {
    max-width: 680px;
  }
}

@media (max-width: 700px) {
  .creator-section,
  .creator-shell {
    min-height: 900px;
  }

  .creator-section {
    align-items: end;
  }

  .creator-portrait {
    inset: 0 0 auto;
    width: 100%;
    height: 62%;
  }

  .creator-portrait img {
    object-position: center 28%;
  }

  .creator-section::before {
    background:
      linear-gradient(180deg, rgba(5, 10, 18, 0.02) 0%, rgba(5, 10, 18, 0.08) 30%, #050a12 67%, #050a12 100%),
      linear-gradient(90deg, rgba(5, 10, 18, 0.28), rgba(5, 10, 18, 0.05));
  }

  .creator-shell {
    align-items: end;
    padding: 25rem 0 4.5rem;
  }

  .creator-copy {
    width: 100%;
    justify-items: center;
    text-align: center;
  }

  .creator-copy h2 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .creator-statement {
    max-width: 560px;
  }

  .projects-promo {
    padding: 5rem 0;
  }

  .projects-promo-heading h2 {
    font-size: clamp(2.7rem, 12vw, 4.1rem);
  }

  .build-offers {
    grid-template-columns: 1fr;
  }

  .build-offers > div,
  .build-offers > div:first-child {
    padding: 1.25rem 0;
  }

  .build-offers > div + div {
    border-top: 1px solid var(--home-line);
    border-left: 0;
  }

  .projects-promo-actions,
  .projects-promo-actions .button {
    width: 100%;
  }

  .projects-support-link {
    justify-content: center;
    margin: 0.35rem auto 0;
  }
}

@media (max-width: 420px) {
  .creator-section,
  .creator-shell {
    min-height: 850px;
  }

  .creator-shell {
    padding-top: 22rem;
  }
}

/* Refined custom builds */
.projects-promo-new::before {
  content: none;
}

.projects-promo-new .projects-promo-shell {
  gap: clamp(2.2rem, 5vw, 3.75rem);
}

.projects-promo-new .projects-promo-heading > p strong {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--home-ink);
  font-family: var(--home-display);
  font-size: 1rem;
  line-height: 1.35;
}

.projects-promo-new .build-offers {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
}

.projects-promo-new .build-offers article {
  display: grid;
  grid-template-columns: 52px minmax(210px, 0.58fr) minmax(280px, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center;
  padding: 1.4rem 0;
}

.projects-promo-new .build-offers article + article {
  border-top: 1px solid var(--home-line);
}

.projects-promo-new .build-offers article > span {
  color: #16809a;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.projects-promo-new .build-offers article > div {
  display: grid;
  gap: 0.2rem;
}

.projects-promo-new .build-offers article strong {
  font-family: var(--home-display);
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  letter-spacing: -0.035em;
}

.projects-promo-new .build-offers article small {
  color: #16809a;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.projects-promo-new .build-offers article > p {
  max-width: 620px;
  margin: 0;
  color: #667486;
  font-size: 0.8rem;
  line-height: 1.65;
}

.build-invitation {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(460px, 1.3fr);
  gap: 2rem;
  align-items: center;
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 24px;
  color: #ffffff;
  background:
    linear-gradient(120deg, rgba(15, 50, 82, 0.78), rgba(5, 10, 18, 0) 58%),
    #050a12;
  box-shadow: 0 24px 70px rgba(5, 10, 18, 0.16);
}

.build-invitation::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -120px;
  bottom: -180px;
  border: 1px solid rgba(168, 239, 255, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(35, 199, 244, 0.08);
  pointer-events: none;
}

.build-invitation-copy,
.build-invitation-actions {
  position: relative;
  z-index: 1;
}

.build-invitation-copy {
  display: grid;
  gap: 0.4rem;
}

.build-invitation-copy > span {
  color: var(--home-pale-cyan);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.build-invitation-copy h3 {
  max-width: 460px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.98;
  text-wrap: balance;
}

.build-invitation-actions {
  display: grid;
  justify-items: end;
  gap: 0.65rem;
}

.build-invitation .projects-promo-actions {
  justify-content: flex-end;
}

.build-projects-button {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.18);
}

.build-projects-button:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(168, 239, 255, 0.42);
}

.build-invitation .projects-support-link {
  margin-left: 0;
  color: rgba(255, 255, 255, 0.52);
}

.build-invitation .projects-support-link span {
  color: var(--home-pale-cyan);
}

@media (max-width: 900px) {
  .projects-promo-new .build-offers article {
    grid-template-columns: 42px minmax(190px, 0.65fr) minmax(240px, 1fr);
    gap: 1.25rem;
  }

  .build-invitation {
    grid-template-columns: 1fr;
  }

  .build-invitation-actions {
    justify-items: start;
  }

  .build-invitation .projects-promo-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .projects-promo-new .build-offers article {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 0.75rem;
    padding: 1.2rem 0;
  }

  .projects-promo-new .build-offers article > p {
    grid-column: 2;
  }

  .build-invitation {
    padding: 1.4rem;
    border-radius: 20px;
  }

  .build-invitation-actions,
  .build-invitation .projects-promo-actions,
  .build-invitation .projects-promo-actions .button {
    width: 100%;
  }

  .build-invitation .projects-support-link {
    justify-content: center;
    margin: 0.25rem auto 0;
  }
}

/* Selected work */
.work-proof {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 6vw, 5.5rem) 0;
  color: #ffffff;
  background: #050a12;
}

.work-proof-shell {
  display: grid;
  gap: clamp(1.75rem, 3vw, 2.5rem);
}

.work-proof-heading {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  text-align: center;
}

.work-proof-heading h2 {
  max-width: none;
  font-size: clamp(2.25rem, 3vw, 3rem);
  line-height: 1.05;
}

.work-proof-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

.work-proof-clone {
  display: none;
}

.work-proof-project {
  position: relative;
  min-width: 0;
  aspect-ratio: 1.35;
  overflow: hidden;
  padding: 1.35rem 0.42rem 0.42rem;
  border: 1px solid rgba(168, 239, 255, 0.14);
  border-radius: 12px;
  color: #ffffff;
  background: #0b131e;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.24);
  text-decoration: none;
  transition: transform 240ms ease, border-color 240ms ease;
}

.work-proof-project::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0.56rem;
  left: 0.72rem;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  box-shadow:
    9px 0 0 rgba(255, 255, 255, 0.24),
    18px 0 0 rgba(255, 255, 255, 0.14);
}

.work-proof-project::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 1.35rem 0.42rem 0.42rem;
  border-radius: 7px;
  background: linear-gradient(180deg, transparent 48%, rgba(3, 8, 14, 0.9) 100%);
  pointer-events: none;
}

.work-proof-project img {
  width: 100%;
  height: 100%;
  border-radius: 7px;
  object-fit: cover;
  object-position: top center;
  filter: saturate(0.82) brightness(0.86);
  transition: filter 240ms ease, transform 500ms ease;
}

.work-proof-project > span {
  position: absolute;
  z-index: 2;
  right: 1.25rem;
  bottom: 1.1rem;
  left: 1.25rem;
  font-family: var(--home-display);
  font-size: clamp(0.78rem, 1.1vw, 0.95rem);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.work-proof-project:hover,
.work-proof-project:focus-visible {
  border-color: rgba(168, 239, 255, 0.42);
  transform: translateY(-5px);
}

.work-proof-project:hover img,
.work-proof-project:focus-visible img {
  filter: saturate(1) brightness(1);
  transform: scale(1.018);
}

.work-proof-cta {
  width: min(100%, 720px);
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 1rem;
  margin: 0 auto;
  padding-top: 0.75rem;
  text-align: center;
}

.work-proof-cta > div:first-child {
  display: grid;
  gap: 0.4rem;
}

.work-proof-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.work-proof-cta h3 {
  font-size: clamp(1.85rem, 2.7vw, 2.65rem);
  line-height: 1.04;
}

.work-proof-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.work-proof-actions .button {
  min-height: 48px;
  padding-inline: 1.2rem;
  border-radius: 6px;
  white-space: nowrap;
}

.work-proof-actions .button-light {
  color: #ffffff;
  background: transparent;
  border-color: rgba(168, 239, 255, 0.42);
  box-shadow: none;
}

.work-proof-actions .button-light:hover,
.work-proof-actions .button-light:focus-visible {
  color: #ffffff;
  background: rgba(168, 239, 255, 0.08);
  border-color: var(--home-pale-cyan);
  box-shadow: none;
}

.work-proof-all {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: color 160ms ease;
}

.work-proof-all:hover,
.work-proof-all:focus-visible {
  color: #ffffff;
}

@media (max-width: 820px) {
  .work-proof-cta {
    gap: 1rem;
  }
}

@media (max-width: 700px) {
  .work-proof {
    padding: 4rem 0;
  }

  .work-proof-heading h2 {
    max-width: 360px;
    font-size: clamp(1.9rem, 8.5vw, 2.5rem);
    line-height: 1.08;
  }

  .work-proof-cta h3 {
    font-size: clamp(1.75rem, 7.5vw, 2.2rem);
  }

  .work-proof-gallery {
    width: calc(100% + 1rem);
    grid-auto-columns: minmax(82vw, 1fr);
    grid-template-columns: none;
    grid-auto-flow: column;
    gap: 0.8rem;
    overflow-x: auto;
    padding-right: 1rem;
    padding-bottom: 0.7rem;
    scroll-padding-inline: 1rem;
    scroll-snap-type: none;
    scrollbar-width: none;
  }

  .work-proof-gallery::-webkit-scrollbar {
    display: none;
  }

  .work-proof-project {
    aspect-ratio: 1.3;
  }

  .work-proof-clone {
    display: block;
  }

  .work-proof-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    gap: 0.65rem;
  }

  .work-proof-actions .button {
    width: 100%;
  }

  .work-proof-all {
    justify-content: center;
  }
}

/* Software projects */
.software-showcase {
  position: relative;
  padding: clamp(4rem, 6vw, 5.5rem) 0;
  color: #ffffff;
  background: linear-gradient(180deg, #050a12 0%, #081522 100%);
}

.software-showcase-shell {
  display: grid;
  gap: clamp(1.75rem, 3vw, 2.5rem);
}

.software-showcase-heading {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  text-align: center;
}

.software-showcase-heading h2 {
  font-size: clamp(2.25rem, 3vw, 3rem);
  line-height: 1.05;
}

.software-project-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.software-project-links a {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(168, 239, 255, 0.24);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.8rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.software-project-links a:hover,
.software-project-links a:focus-visible {
  color: #ffffff;
  background: rgba(168, 239, 255, 0.08);
  border-color: var(--home-pale-cyan);
}

@media (max-width: 820px) {
  .software-project-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .software-showcase {
    padding: 4rem 0;
  }

  .software-showcase-heading h2 {
    font-size: clamp(1.9rem, 8.5vw, 2.5rem);
  }

  .software-project-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .ask-home-shell {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .ask-home-intro {
    max-width: 680px;
  }
}

@media (max-width: 700px) {
  .ask-home {
    padding: 5rem 0;
  }

  .ask-home-shell {
    width: min(100% - 1.35rem, 1040px);
  }

  .ask-home-intro {
    justify-items: center;
    text-align: center;
  }

  .ask-home-intro h2 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .ask-home-panel {
    padding: 1rem;
    border-radius: 18px;
  }

  .ask-form textarea {
    min-height: 145px;
  }

  .ask-controls {
    align-items: stretch;
    flex-direction: column;
  }

  .ask-controls p {
    text-align: center;
  }

  .ask-submit {
    width: 100%;
  }
}

/* Original Ask N3XRA presentation */
.section.ask-band {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  background:
    radial-gradient(circle at 8% 14%, rgba(47, 168, 255, 0.12), transparent 26rem),
    radial-gradient(circle at 90% 10%, rgba(22, 131, 111, 0.1), transparent 22rem),
    #f4f8fb;
  border-bottom: 1px solid rgba(16, 24, 36, 0.13);
}

.section-inner {
  width: min(1120px, calc(100vw - 2rem));
  display: grid;
  gap: 1.6rem;
  margin: 0 auto;
}

.section-head {
  max-width: 780px;
  display: grid;
  gap: 0.75rem;
}

.section-head.center {
  justify-items: center;
  margin: 0 auto;
  text-align: center;
}

.section-head .eyebrow {
  color: #16836f;
}

.section-head h2 {
  font-size: clamp(2rem, 4.6vw, 4rem);
}

.section-copy {
  max-width: 68ch;
  margin: 0;
  color: #647082;
  font-size: 1.03rem;
}

.ask-shell {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.8rem);
  border: 1px solid rgba(11, 16, 22, 0.12);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(7, 12, 18, 0.09);
}

.ask-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
}

.ask-form {
  display: grid;
  gap: 0.75rem;
}

.ask-form label {
  color: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: normal;
  text-transform: none;
}

.ask-form textarea {
  width: 100%;
  min-height: 125px;
  resize: vertical;
  padding: 0.85rem 0.92rem;
  border: 1px solid rgba(11, 16, 22, 0.24);
  border-radius: 12px;
  color: var(--home-ink);
  background: #fcfdff;
  box-shadow: none;
  font: inherit;
  transition: none;
}

.ask-form textarea::placeholder {
  color: #757575;
  opacity: 1;
}

.ask-form textarea:focus {
  border-color: rgba(22, 185, 237, 0.54);
  outline: 2px solid rgba(22, 185, 237, 0.34);
  box-shadow: none;
}

.ask-controls {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.68rem;
}

.ask-submit {
  min-height: 44px;
  width: auto;
  padding: 0.68rem 1.1rem;
  border: 1px solid rgba(11, 16, 22, 0.52);
  border-radius: 6px;
  color: #0b1016;
  background: transparent;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: none;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.ask-submit:hover {
  color: #ffffff;
  background: #0b1016;
  border-color: #0b1016;
  transform: none;
}

.ask-submit[disabled] {
  opacity: 0.55;
  cursor: wait;
}

.ask-voice,
.ask-listen {
  min-height: 44px;
  padding: 0.68rem 1rem;
  border: 1px solid rgba(11, 16, 22, 0.18);
  border-radius: 6px;
  color: #31504a;
  background: #f3fbf7;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.ask-voice span {
  color: #16836f;
  font-size: 0.72rem;
}

.ask-voice.is-recording {
  color: #8b1e1e;
  border-color: rgba(185, 28, 28, 0.32);
  background: #fff2f2;
}

.ask-voice.is-recording span {
  color: #dc2626;
  animation: ask-voice-pulse 1s ease-in-out infinite;
}

.ask-voice[disabled],
.ask-listen[disabled] {
  opacity: 0.55;
  cursor: wait;
}

.ask-audio-controls {
  display: flex;
  gap: 0.5rem;
  margin: 0 0 0.75rem;
}

.ask-audio-controls[hidden],
.ask-answer[hidden] {
  display: none;
}

.ask-status {
  min-height: 1.25rem;
  margin: 0;
  color: #9a3412;
  font-size: 0.9rem;
  font-weight: 700;
}

.ask-answer {
  margin: 0;
  padding: 0.85rem 0.92rem;
  border: 1px solid rgba(22, 131, 111, 0.22);
  border-radius: 12px;
  color: #123c31;
  background: #f3fbf7;
  font-size: 0.96rem;
  line-height: inherit;
  white-space: pre-wrap;
}

.ask-answer a {
  color: inherit;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(18, 60, 49, 0.28);
}

.ask-answer a:hover,
.ask-answer a:focus-visible {
  border-bottom-color: currentColor;
}

.ask-answer .ask-route-link {
  color: #0e6658;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.ask-answer .ask-bullet {
  color: #16836f;
  font-weight: 900;
}

@keyframes ask-voice-pulse {
  50% { opacity: 0.3; }
}

@media (prefers-reduced-motion: reduce) {
  .ask-voice.is-recording span { animation: none; }
}
