:root {
  --ink: #0b0d12;
  --graphite: #151820;
  --graphite-2: #1c212c;
  --ivory: #f4f1ea;
  --ivory-dim: rgba(244, 241, 234, 0.72);
  --lime: #c8ff3d;
  --lime-dim: rgba(200, 255, 61, 0.14);
  --mint: #8fffd2;
  --muted: #9297a3;
  --line: rgba(244, 241, 234, 0.1);
  --line-strong: rgba(244, 241, 234, 0.18);

  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --fs-hero: clamp(2.7rem, 7.6vw, 7.4rem);
  --fs-h2: clamp(2.1rem, 5.2vw, 4.75rem);
  --fs-h3: clamp(1.25rem, 2vw, 1.75rem);
  --fs-body: clamp(1rem, 1.15vw, 1.125rem);
  --fs-small: 0.75rem;

  --pad: clamp(1.25rem, 4.2vw, 5rem);
  --max: 1320px;
  --radius: 999px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --header: 5.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ivory);
  background: var(--ink);
  color-scheme: dark;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--ink);
}

::-webkit-scrollbar-thumb {
  background: #2a303c;
  border-radius: 10px;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.92;
  text-wrap: balance;
}

:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

::selection {
  background: var(--lime);
  color: var(--ink);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 80;
  padding: 0.7rem 1rem;
  background: var(--lime);
  color: var(--ink);
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 70;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.cursor-glow {
  pointer-events: none;
  position: fixed;
  z-index: 60;
  width: 420px;
  height: 420px;
  margin: -210px 0 0 -210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 255, 61, 0.09), transparent 62%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

body.is-hovering .cursor-glow {
  opacity: 1;
}

.eyebrow,
.section-label,
.trust-label,
.project-cat,
.project-year,
.availability,
.service-index,
.method-index,
.footer-col h3,
.nav-links a {
  font-size: var(--fs-small);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}

.section-label {
  color: var(--lime);
  margin-bottom: 1.25rem;
}

.section-head {
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 3.15rem;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.45s var(--ease), background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

.btn .arrow {
  display: inline-block;
  transition: transform 0.45s var(--ease);
}

.btn:hover .arrow {
  transform: translate(3px, -3px);
}

.btn-primary {
  background: var(--lime);
  color: var(--ink);
}

.btn-primary:hover {
  background: #d8ff6a;
}

.btn-ghost,
.btn-nav {
  border: 1px solid var(--line-strong);
  background: rgba(11, 13, 18, 0.35);
  color: var(--ivory);
}

.btn-ghost:hover,
.btn-nav:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.site-header {
  position: sticky;
  top: 0.85rem;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding: 0 var(--pad);
  pointer-events: none;
}

.nav {
  pointer-events: auto;
  width: min(100%, calc(var(--max) + 2rem));
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 4.15rem;
  padding: 0.45rem 0.5rem 0.45rem 0.9rem;
  border: 1px solid rgba(244, 241, 234, 0.1);
  border-radius: var(--radius);
  background: rgba(11, 13, 18, 0.42);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

body.scrolled .nav {
  background: rgba(11, 13, 18, 0.82);
  border-color: rgba(244, 241, 234, 0.16);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.logo-mark {
  width: 2.05rem;
  height: 2.05rem;
  color: var(--ivory);
  transition: transform 0.7s var(--ease), filter 0.7s var(--ease);
}

.logo-orbit,
.logo-orbit-inner {
  transform-origin: 24px 24px;
}

.logo:hover .logo-mark,
.logo:focus-visible .logo-mark {
  transform: rotate(16deg);
  filter: drop-shadow(0 0 10px rgba(200, 255, 61, 0.55));
}

.logo:hover .logo-orbit,
.logo:focus-visible .logo-orbit {
  animation: orbit 5s linear infinite;
}

.logo-sat {
  transform-origin: 24px 24px;
  animation: orbit 14s linear infinite;
}

.logo-word {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(0.75rem, 2vw, 1.8rem);
}

.nav-links a {
  position: relative;
  padding: 0.4rem 0;
  color: var(--muted);
  letter-spacing: 0.14em;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--lime);
  transition: width 0.35s var(--ease);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ivory);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  width: 100%;
}

.btn-nav {
  min-height: 2.7rem;
  padding: 0.7rem 1.1rem;
  justify-self: end;
}

.nav-toggle {
  display: none;
  width: 2.7rem;
  height: 2.7rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.nav-toggle span {
  display: block;
  width: 1.05rem;
  height: 1.5px;
  background: var(--ivory);
  transition: transform 0.35s var(--ease), opacity 0.25s ease;
}

body.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

body.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

body.menu-open {
  overflow: hidden;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: grid;
  align-items: end;
  padding: 7rem var(--pad) 2.5rem;
  background: rgba(11, 13, 18, 0.96);
  backdrop-filter: blur(22px);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav-inner ul {
  display: grid;
  gap: 0.25rem;
  margin: 1.5rem 0 2.5rem;
}

.mobile-nav a {
  font-family: var(--font-display);
}

.mobile-nav ul a {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.7rem 0;
  font-size: clamp(2rem, 8vw, 3.2rem);
  letter-spacing: -0.04em;
  border-bottom: 1px solid var(--line);
}

.mobile-nav ul span {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  color: var(--lime);
}

.hero,
.intro,
.services,
.method,
.work,
.why,
.quote,
.cta,
.site-footer {
  padding-left: max(var(--pad), calc((100% - var(--max)) / 2));
  padding-right: max(var(--pad), calc((100% - var(--max)) / 2));
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  min-height: calc(100svh - var(--header));
  padding-top: clamp(2rem, 6vw, 5rem);
  padding-bottom: 3rem;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 42rem;
}

.hero h1 {
  margin: 1.1rem 0 1.4rem;
  font-size: var(--fs-hero);
  text-transform: uppercase;
}

.hero h1 .line {
  display: block;
}

.hero h1 em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1.4px var(--ivory);
}

.hero-lead {
  max-width: 34rem;
  color: var(--ivory-dim);
  margin-bottom: 2rem;
}

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

.availability {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.5rem;
  color: var(--muted);
}

.pulse {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(200, 255, 61, 0.55);
  animation: pulse 2.4s ease-out infinite;
}

.hero-visual {
  position: relative;
  height: min(78vh, 42rem);
}

.signal {
  position: absolute;
  inset: -8% -6% auto auto;
  width: min(120%, 46rem);
  height: auto;
  filter: drop-shadow(0 0 28px rgba(200, 255, 61, 0.08));
}

.signal-grid {
  animation: gridShift 22s linear infinite;
  transform-origin: 320px 320px;
}

.orbit-a {
  transform-origin: 320px 320px;
  animation: orbit 28s linear infinite;
}

.orbit-b {
  transform-origin: 320px 320px;
  animation: orbit 38s linear infinite reverse;
}

.orbit-c {
  transform-origin: 320px 320px;
  animation: orbit 48s linear infinite;
}

.sat-1 {
  transform-origin: 320px 320px;
  animation: orbit 18s linear infinite;
}

.sat-2 {
  transform-origin: 320px 320px;
  animation: orbit 24s linear infinite reverse;
}

.sat-3 {
  transform-origin: 320px 320px;
  animation: orbit 20s linear infinite;
}

.fragments {
  animation: float 8s ease-in-out infinite;
}

.hero-visual:hover .signal-z {
  filter: drop-shadow(0 0 10px rgba(200, 255, 61, 0.45));
}

.trust {
  padding: 1.25rem 0 2.5rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-label {
  text-align: center;
  color: var(--muted);
  margin-bottom: 1.1rem;
}

.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 4.5rem;
  animation: marquee 32s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  letter-spacing: 0.28em;
  color: rgba(244, 241, 234, 0.38);
  position: relative;
}

.marquee-track span::after {
  content: "";
  position: absolute;
  right: -2.4rem;
  top: 50%;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--lime);
  transform: translateY(-50%);
  opacity: 0.7;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: end;
  padding-top: clamp(5rem, 12vw, 9rem);
  padding-bottom: clamp(5rem, 12vw, 9rem);
  background: var(--ivory);
  color: var(--ink);
}

.intro .section-label {
  color: #4d6a00;
}

.intro-num {
  font-family: var(--font-display);
  font-size: clamp(8rem, 22vw, 18rem);
  line-height: 0.75;
  letter-spacing: -0.08em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(11, 13, 18, 0.22);
}

.intro h2 {
  max-width: 12ch;
  margin-bottom: 1.4rem;
  font-size: var(--fs-h2);
}

.intro p:last-child {
  max-width: 38rem;
  color: #3d4250;
}

.services {
  padding-top: clamp(5rem, 11vw, 8.5rem);
  padding-bottom: clamp(5rem, 11vw, 8.5rem);
}

.services h2,
.method h2,
.work h2,
.why h2,
.cta h2 {
  font-size: var(--fs-h2);
  text-transform: uppercase;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr) 5.5rem 3rem;
  align-items: center;
  gap: 1rem;
  padding: 1.55rem 0.4rem;
  border-bottom: 1px solid var(--line);
  transition: background 0.45s ease, padding 0.45s var(--ease);
}

.service-index {
  color: var(--muted);
  transition: color 0.35s ease;
}

.service h3 {
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  letter-spacing: -0.04em;
  margin-bottom: 0.35rem;
  transition: transform 0.45s var(--ease), color 0.35s ease;
}

.service p {
  max-width: 38rem;
  color: var(--muted);
}

.service-visual {
  justify-self: end;
  width: 3.4rem;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.4s ease, transform 0.45s var(--ease);
}

.service-visual svg {
  width: 100%;
  stroke: var(--lime);
  fill: none;
  stroke-width: 1.6;
}

.service-arrow {
  justify-self: end;
  color: var(--muted);
  transition: transform 0.45s var(--ease), color 0.35s ease;
}

.service:hover,
.service:focus-within {
  background: linear-gradient(90deg, var(--lime-dim), transparent 48%);
  padding-left: 1rem;
}

.service:hover .service-index,
.service:focus-within .service-index,
.service:hover h3,
.service:focus-within h3,
.service:hover .service-arrow,
.service:focus-within .service-arrow {
  color: var(--lime);
}

.service:hover h3,
.service:focus-within h3 {
  transform: translateX(0.65rem);
}

.service:hover .service-visual,
.service:focus-within .service-visual {
  opacity: 1;
  transform: scale(1);
}

.service:hover .service-arrow,
.service:focus-within .service-arrow {
  transform: translate(4px, -4px);
}

.method {
  padding-top: clamp(5rem, 11vw, 8.5rem);
  padding-bottom: clamp(5rem, 11vw, 8.5rem);
  background: var(--graphite);
}

.method-track {
  position: relative;
  padding-top: 1rem;
}

.method-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 1.1rem;
  width: 100%;
  height: 7rem;
  pointer-events: none;
}

.method-path {
  fill: none;
  stroke: var(--lime);
  stroke-width: 1.4;
  stroke-linecap: round;
  opacity: 0.55;
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.4rem;
}

.method-step {
  position: relative;
}

.method-icon {
  display: grid;
  place-items: center;
  width: 3.4rem;
  height: 3.4rem;
  margin-bottom: 1.1rem;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(11, 13, 18, 0.45);
}

.method-icon svg {
  width: 1.7rem;
  stroke: var(--ivory);
  fill: none;
  stroke-width: 1.5;
}

.method-index {
  display: block;
  color: var(--lime);
  margin-bottom: 0.55rem;
}

.method-step h3 {
  font-size: 1.45rem;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}

.method-step p {
  color: var(--muted);
  font-size: 0.95rem;
}

.work {
  padding-top: clamp(5rem, 11vw, 8.5rem);
  padding-bottom: clamp(5rem, 11vw, 8.5rem);
  background: var(--ivory);
  color: var(--ink);
}

.work .section-label {
  color: #4d6a00;
}

.work-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

.project-nexa {
  grid-column: 1 / -1;
}

.project-orbita {
  transform: translateY(2.5rem);
}

.project-link {
  display: block;
}

.project-visual {
  overflow: hidden;
  border-radius: 1.15rem;
  background: var(--graphite);
}

.project-nexa .project-visual {
  aspect-ratio: 16 / 7.2;
}

.project-velora .project-visual {
  aspect-ratio: 3 / 4.2;
}

.project-orbita .project-visual {
  aspect-ratio: 16 / 10;
}

.project-visual svg,
.project-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.project:hover .project-visual svg,
.project:hover .project-visual img {
  transform: scale(1.06);
}

.project-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0.15rem 0;
}

.project h3 {
  margin: 0.25rem 0 0.35rem;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  text-transform: uppercase;
}

.project-cat,
.project-year {
  color: #5d6370;
}

.project-end {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.6rem;
}

.project .arrow {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(11, 13, 18, 0.18);
  border-radius: 50%;
  transition: transform 0.45s var(--ease), background 0.35s ease, border-color 0.35s ease;
}

.project:hover .arrow {
  transform: translate(3px, -3px);
  background: var(--lime);
  border-color: var(--lime);
}

.why {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 6vw, 6rem);
  padding-top: clamp(5rem, 11vw, 8.5rem);
  padding-bottom: clamp(5rem, 11vw, 8.5rem);
  background: var(--ivory);
  color: var(--ink);
}

.why .section-label {
  color: #4d6a00;
}

.why-left {
  position: sticky;
  top: 7rem;
  align-self: start;
}

.why-list {
  border-top: 1px solid rgba(11, 13, 18, 0.12);
}

.why-list li {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  gap: 1.1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(11, 13, 18, 0.12);
}

.why-mark {
  width: 0.7rem;
  height: 0.7rem;
  margin-top: 0.45rem;
  border-radius: 50%;
  border: 1px solid var(--ink);
  position: relative;
}

.why-mark::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--lime);
  transform: scale(0);
  transition: transform 0.4s var(--ease);
}

.why-list li:hover .why-mark::after,
.why-list li:focus-within .why-mark::after {
  transform: scale(1);
}

.why h3 {
  font-size: 1.45rem;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.why p {
  color: #3d4250;
}

.quote {
  padding-top: clamp(5.5rem, 13vw, 10rem);
  padding-bottom: clamp(5.5rem, 13vw, 10rem);
  background: var(--graphite);
}

blockquote {
  position: relative;
  max-width: 52rem;
  margin: 0 auto;
}

.quote-mark {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(6rem, 14vw, 11rem);
  line-height: 0.5;
  color: var(--lime);
  margin-bottom: 1.2rem;
}

blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 3.1rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
  margin-bottom: 2rem;
}

cite {
  display: grid;
  gap: 0.2rem;
  font-style: normal;
}

cite strong {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: var(--fs-small);
}

cite span {
  color: var(--muted);
}

.cta {
  position: relative;
  overflow: hidden;
  padding-top: clamp(6rem, 14vw, 10rem);
  padding-bottom: clamp(6rem, 14vw, 10rem);
  text-align: center;
}

.cta-grid {
  position: absolute;
  inset: -20%;
  background-image:
    linear-gradient(rgba(200, 255, 61, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 255, 61, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  animation: gridMove 26s linear infinite;
}

.cta-shape {
  position: absolute;
  left: 50%;
  top: 42%;
  width: min(42vw, 28rem);
  height: min(42vw, 28rem);
  transform: translate(-50%, -50%) rotate(18deg);
  background: var(--lime);
  opacity: 0.07;
  clip-path: polygon(18% 8%, 92% 22%, 78% 92%, 8% 72%);
}

.cta h2,
.cta .section-label,
.cta-lead,
.cta-actions {
  position: relative;
}

.cta h2 {
  max-width: 16ch;
  margin: 0 auto 1.4rem;
}

.cta-lead {
  max-width: 34rem;
  margin: 0 auto 2.2rem;
  color: var(--ivory-dim);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.4rem;
}

.cta-mail {
  color: var(--muted);
  letter-spacing: 0.04em;
  border-bottom: 1px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.cta-mail:hover,
.cta-mail:focus-visible {
  color: var(--lime);
  border-color: var(--lime);
}

.site-footer {
  padding-top: 4rem;
  padding-bottom: 1.6rem;
  border-top: 1px solid var(--line);
  background: #08090d;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.7fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer-brand p {
  max-width: 24rem;
  margin-top: 1rem;
  color: var(--muted);
}

.footer-col h3 {
  color: var(--muted);
  margin-bottom: 1rem;
}

.footer-col ul {
  display: grid;
  gap: 0.55rem;
}

.footer-col a {
  color: var(--ivory-dim);
  transition: color 0.3s ease;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--lime);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.875rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.9s var(--ease) forwards;
  animation-play-state: paused;
}

.reveal.visible {
  animation-play-state: running;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.18s; }
.delay-3 { animation-delay: 0.26s; }
.delay-4 { animation-delay: 0.34s; }
.delay-5 { animation-delay: 0.42s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: none;
  }
}

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

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

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 10px rgba(200, 255, 61, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(200, 255, 61, 0);
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes gridShift {
  50% {
    transform: translate(12px, -8px);
  }
}

@keyframes gridMove {
  to {
    transform: translate3d(-72px, -72px, 0);
  }
}

@media (max-width: 1100px) {
  .nav {
    grid-template-columns: auto auto;
  }

  .nav-links {
    display: none;
  }

  .btn-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
    justify-self: end;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 1.5rem;
  }

  .hero-visual {
    height: min(58vw, 26rem);
    order: -1;
  }

  .signal {
    inset: -18% auto auto 50%;
    width: min(34rem, 120%);
    transform: translateX(-50%);
  }

  .intro,
  .why,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .why-left {
    position: static;
  }

  .method-line {
    display: none;
  }

  .method-steps {
    grid-template-columns: 1fr 1fr;
  }

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

  .project-nexa {
    grid-column: 1 / -1;
  }

  .project-orbita {
    transform: none;
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 0.55rem;
  }

  .hero h1 em {
    -webkit-text-stroke-width: 1px;
  }

  .service {
    grid-template-columns: 3rem 1fr 1.5rem;
    padding: 1.2rem 0;
  }

  .service-visual {
    display: none;
  }

  .method-steps {
    grid-template-columns: 1fr;
  }

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

  .project-nexa .project-visual,
  .project-velora .project-visual,
  .project-orbita .project-visual {
    aspect-ratio: 16 / 9;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .intro-num {
    font-size: clamp(6rem, 28vw, 9rem);
  }
}

@media (max-width: 480px) {
  .logo-word {
    letter-spacing: 0.16em;
    font-size: 0.82rem;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    justify-content: center;
  }
}

@media (pointer: coarse) {
  .cursor-glow {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .cursor-glow {
    display: none;
  }
}
