:root {
  --bg: #070908;
  --forest: #1b4332;
  --accent: #6ee7a8;
  --accent-strong: #3ddc84;
  --text: #f3f7f4;
  --muted: rgba(243, 247, 244, 0.66);
  --glass: rgba(10, 16, 13, 0.55);
  --line: rgba(110, 231, 168, 0.18);
  --gold: #c6a667;
  --gold-soft: #e8d5a3;
  --font-display: "Cormorant Garamond", serif;
  --font-body: "Karla", sans-serif;
  --radius: 16px;
  --header-h: 64px;
}

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

html.lenis,
html.lenis body {
  height: auto;
}

html {
  scroll-behavior: auto;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  font-size: 15px;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

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

ul {
  list-style: none;
}

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

#fx {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: #070908;
}

.loader img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.loader-ring {
  position: absolute;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 1px solid rgba(110, 231, 168, 0.18);
  border-top-color: var(--accent);
  animation: spin 0.9s linear infinite;
}

.glass {
  background: var(--glass);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

#header {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1040px, calc(100% - 40px));
  height: 52px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 8px 0 10px;
  z-index: 20;
  background: rgba(10, 16, 13, 0.72);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.brand span {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}

.isologo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

nav a {
  font-size: 0.8rem;
  color: var(--muted);
  position: relative;
}

nav a:hover,
nav a.active {
  color: var(--text);
}

nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--accent);
}

.nav-cta {
  flex-shrink: 0;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: #07110c;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 36px;
  height: 36px;
  margin-left: auto;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  margin: 4px auto;
  background: var(--text);
}

.hero,
.section,
footer {
  position: relative;
  z-index: 1;
  width: min(1040px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 40px;
  min-height: 0;
  padding: 92px 0 36px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(10, 16, 13, 0.5);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  max-height: 28px;
  overflow: hidden;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.rotator {
  display: grid;
  height: 1.5em;
  overflow: hidden;
  margin-bottom: 14px;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
}

.rotator-item {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rotator-item.is-on {
  opacity: 1;
  transform: none;
}

.lede {
  max-width: 42ch;
  color: var(--muted);
  margin-bottom: 22px;
  font-size: 0.95rem;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #07110c;
  box-shadow: 0 8px 22px rgba(61, 220, 132, 0.22);
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(12, 20, 16, 0.4);
  border-color: var(--line);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--accent);
}

.hero-mark {
  width: min(240px, 70%);
  aspect-ratio: 1;
  margin: 0 auto;
  position: relative;
  perspective: 800px;
}

.mark-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px dashed rgba(110, 231, 168, 0.35);
  animation: spin 28s linear infinite;
}

.hero-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(7, 9, 8, 0.85), 0 0 32px rgba(61, 220, 132, 0.2);
}

.section {
  padding: 28px 0 12px;
}

.section-head {
  margin-bottom: 16px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  font-weight: 500;
}

.gold-note {
  color: var(--gold);
  font-size: 0.8rem;
  margin-top: 6px;
}

.about {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 28px;
  padding: 22px 24px;
  border-radius: var(--radius);
  align-items: center;
}

.about-text p + p {
  margin-top: 10px;
}

.about-text p,
.collab p,
.featured p,
.contact-card > .lede {
  color: var(--muted);
}

.about-text strong {
  color: var(--text);
  font-weight: 600;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stats li {
  padding: 8px 0 8px 12px;
  border-left: 1px solid var(--line);
}

.stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--accent);
  line-height: 1.1;
}

.stats span {
  color: var(--muted);
  font-size: 0.75rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.card {
  padding: 18px 18px 16px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  min-height: 0;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(110, 231, 168, 0.4);
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.card-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #07110c;
  background: var(--accent);
}

.card-num {
  font-family: var(--font-display);
  color: rgba(110, 231, 168, 0.45);
  font-size: 0.95rem;
}

.card h3,
.featured h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.card p {
  color: var(--muted);
  font-size: 0.88rem;
  flex: 1;
}

.text-cta {
  margin-top: 14px;
  color: var(--accent);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.featured {
  margin-top: 14px;
  padding: 18px 22px;
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}

.featured-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
  white-space: nowrap;
}

.collab {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 24px;
  align-items: start;
  padding: 20px 24px;
  border-radius: var(--radius);
}

.collab h2 {
  margin-bottom: 6px;
}

.collab-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.collab-services article {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(198, 166, 103, 0.28);
  background: rgba(198, 166, 103, 0.08);
}

.collab-services h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--gold-soft);
  margin-bottom: 6px;
}

.collab-services p {
  font-size: 0.82rem;
  line-height: 1.45;
}

.gold-cta {
  color: var(--gold-soft);
}

.glass.gold {
  border-color: rgba(198, 166, 103, 0.35);
  background: linear-gradient(160deg, rgba(198, 166, 103, 0.1), rgba(12, 20, 16, 0.55));
}

.gold-text,
.collab .eyebrow {
  color: var(--gold);
}

.collab-pills {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.collab-pills span {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(198, 166, 103, 0.32);
  color: var(--gold-soft);
  font-size: 0.72rem;
  white-space: nowrap;
  background: rgba(198, 166, 103, 0.08);
}

.contact {
  display: grid;
  grid-template-columns: 1.45fr 0.7fr;
  gap: 14px;
}

.contact-card,
.contact-aside {
  padding: 22px;
  border-radius: var(--radius);
}

.contact-card h2 {
  margin-bottom: 6px;
}

.hire-form {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.hire-form label {
  display: grid;
  gap: 6px;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.hire-form .full,
.form-actions.full {
  grid-column: 1 / -1;
}

.form-note,
.form-status {
  font-size: 0.8rem;
  color: var(--muted);
}

.form-status {
  color: var(--accent);
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.btn:disabled {
  opacity: 0.65;
  pointer-events: none;
}

.hire-form input,
.hire-form select,
.hire-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(7, 9, 8, 0.45);
  color: var(--text);
  border-radius: 10px;
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
}

.hire-form input:focus,
.hire-form select:focus,
.hire-form textarea:focus {
  border-color: var(--accent);
}

.contact-aside {
  display: grid;
  align-content: start;
  gap: 12px;
}

.contact-aside a {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-aside a:hover {
  color: var(--accent);
}

/* ── Orbe flotante Sofía ── */
.agent-orb-dock {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  pointer-events: none;
}

.agent-orb-dock > * {
  pointer-events: auto;
}

.agent-orb {
  position: relative;
  width: 78px;
  height: 78px;
  border: none;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  background: transparent;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.agent-orb:hover {
  transform: scale(1.04);
}

.agent-orb:active {
  transform: scale(0.96);
}

.agent-orb:disabled {
  cursor: wait;
  opacity: 0.88;
}

.agent-orb-glass {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.2), transparent 44%),
    radial-gradient(circle at 72% 78%, rgba(110, 231, 168, 0.14), transparent 50%),
    linear-gradient(145deg, rgba(27, 67, 50, 0.42), rgba(7, 9, 8, 0.72));
  border: 1px solid rgba(110, 231, 168, 0.34);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 14px 36px rgba(0, 0, 0, 0.48),
    0 0 28px rgba(110, 231, 168, 0.14);
}

.agent-orb .agent-holo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(110, 231, 168, 0.26);
  box-shadow:
    inset 0 0 16px rgba(110, 231, 168, 0.06),
    0 0 18px rgba(110, 231, 168, 0.06);
  pointer-events: none;
}

.agent-orb .agent-holo-ring--a {
  inset: 4%;
  animation: agent-spin 16s linear infinite;
}

.agent-orb .agent-holo-ring--b {
  inset: 14%;
  border-color: rgba(110, 231, 168, 0.16);
  animation: agent-spin 12s linear infinite reverse;
}

.agent-orb .agent-holo-ring--c {
  inset: 24%;
  border-style: dashed;
  border-color: rgba(110, 231, 168, 0.12);
  animation: agent-spin 20s linear infinite;
}

.agent-orb .agent-holo-scan {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0 305deg, rgba(110, 231, 168, 0.24) 330deg, transparent 360deg);
  animation: agent-scan 4.2s linear infinite;
  mix-blend-mode: screen;
  opacity: 0.55;
  pointer-events: none;
}

.agent-orb-core {
  position: absolute;
  inset: 22%;
  z-index: 2;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 38% 32%, rgba(110, 231, 168, 0.22), transparent 52%),
    radial-gradient(circle at 50% 58%, rgba(27, 67, 50, 0.55), rgba(7, 9, 8, 0.92));
  box-shadow:
    0 0 0 1px rgba(110, 231, 168, 0.24) inset,
    0 0 20px rgba(110, 231, 168, 0.12);
}

.agent-orb-core img {
  width: 92%;
  height: 92%;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 0 10px rgba(110, 231, 168, 0.38));
}

.agent-orb-label {
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(10, 16, 13, 0.78);
  border: 1px solid rgba(110, 231, 168, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: color 0.25s ease, border-color 0.25s ease;
}

.agent-orb-dock.is-live .agent-orb-glass {
  border-color: rgba(110, 231, 168, 0.52);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 14px 36px rgba(0, 0, 0, 0.48),
    0 0 36px rgba(110, 231, 168, 0.28);
}

.agent-orb-dock.is-live .agent-orb-label {
  color: var(--accent);
  border-color: rgba(110, 231, 168, 0.32);
}

.agent-orb-dock.is-listening .agent-holo-ring--b,
.agent-orb-dock.is-speaking .agent-holo-ring--a {
  border-color: rgba(110, 231, 168, 0.44);
}

.agent-orb-dock.is-speaking .agent-holo-scan {
  animation-duration: 2.6s;
  opacity: 0.85;
}

.agent-orb-dock.is-connecting .agent-orb {
  animation: agent-breathe 1.4s ease-in-out infinite;
}

.agent-orb-dock.is-error .agent-orb-glass {
  border-color: rgba(255, 120, 120, 0.35);
}

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

@keyframes agent-scan {
  to { transform: rotate(360deg); }
}

@keyframes agent-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0 28px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.78rem;
  border-top: 1px solid rgba(110, 231, 168, 0.12);
}

.foot-brand,
.foot-links,
.foot-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.foot-partner {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.foot-partner img {
  display: block;
  height: 36px;
  width: auto;
  opacity: 0.92;
}

.foot-partner:hover img {
  opacity: 1;
}

.foot-brand .isologo {
  width: 22px;
  height: 22px;
}

.foot-brand span {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--accent);
}

.foot-social a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
}

.foot-social a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.legal {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  padding: 100px 0 60px;
  position: relative;
  z-index: 1;
}

.legal .glass {
  padding: 32px 36px 36px;
  border-radius: var(--radius);
}

.legal h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  margin-bottom: 8px;
}

.legal .updated {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}

.legal h2 {
  font-size: 1.15rem;
  margin: 22px 0 8px;
}

.legal p,
.legal li {
  color: var(--muted);
  margin-bottom: 10px;
  line-height: 1.7;
  font-size: 0.92rem;
}

.legal a {
  color: var(--accent);
}

.legal ol {
  padding-left: 18px;
  margin-bottom: 8px;
}

.legal li {
  margin-bottom: 6px;
}

.legal .legal-actions {
  margin-top: 28px;
}

.ih {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  min-width: 14px;
  min-height: 14px;
  max-width: 14px;
  max-height: 14px;
  flex-shrink: 0;
  overflow: hidden;
  line-height: 0;
}

.ih svg,
.ih-svg {
  width: 14px !important;
  height: 14px !important;
  max-width: 14px !important;
  max-height: 14px !important;
  display: block;
  overflow: hidden;
}

.card-icon .ih,
.card-icon svg {
  width: 16px !important;
  height: 16px !important;
  max-width: 16px !important;
  max-height: 16px !important;
}

.card-icon .ih {
  min-width: 16px;
  min-height: 16px;
  max-width: 16px;
  max-height: 16px;
}

.foot-social .ih,
.foot-social svg {
  width: 14px !important;
  height: 14px !important;
}

.spotlight {
  position: relative;
  overflow: hidden;
}

.spotlight::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(110, 231, 168, 0.14), transparent 70%);
  transform: translate(-50%, -50%);
  left: var(--spot-x, 50%);
  top: var(--spot-y, 0%);
  pointer-events: none;
  opacity: 0;
}

.spotlight:hover::before {
  opacity: 1;
}

.ih-cpu .pins,
.ih-cpu .inner,
.ih-cpu .outer {
  transform-origin: 12px 12px;
  transition: transform 0.35s ease;
}

.card:hover .ih-cpu .pins { transform: scale(1.12); }
.card:hover .ih-cpu .inner { transform: scale(0.9); }

.ih-chart .chart-line {
  stroke-dasharray: 40;
}

.card:hover .ih-chart .chart-line {
  animation: ih-draw 0.6s ease;
}

.card:hover .ih-users .user-primary { transform: translateY(-1px); }

.collab:hover .ih-plug .plug-upper { transform: translate(-1px, 1px); }
.collab:hover .ih-plug .plug-lower { transform: translate(1px, -1px); }

.ih-plug .plug-upper,
.ih-plug .plug-lower,
.ih-users .user-primary {
  transition: transform 0.3s ease;
}

a:hover .ih-rocket .rocket-upper { transform: translate(4px, -4px); }
.ih-rocket .rocket-upper { transition: transform 0.3s ease; }

button:hover .ih-send .send-body { transform: translate(4px, -4px); }
.ih-send .send-body { transition: transform 0.25s ease; }

a:hover .ih-clock .clock-hands { transform: rotate(180deg); }
.ih-clock .clock-hands {
  transform-origin: 12px 12px;
  transition: transform 0.6s ease;
}

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

@keyframes ih-draw {
  from { stroke-dashoffset: 40; }
  to { stroke-dashoffset: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .loader { display: none; }
  .agent-live-pill { animation: none; }
  .agent-orb-dock.is-connecting .agent-orb { animation: none; }
}

@media (max-width: 900px) {
  #header,
  .hero,
  .section,
  footer,
  .legal {
    width: min(1040px, calc(100% - 24px));
  }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  nav {
    position: fixed;
    inset: 68px 12px auto;
    margin: 0;
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    border-radius: 16px;
    background: rgba(10, 16, 13, 0.96);
    border: 1px solid var(--line);
    z-index: 30;
  }
  nav.open { display: flex; }
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 84px 0 24px;
    gap: 24px;
  }
  .hero-copy-block { order: 2; }
  .hero-mark { order: 1; width: min(168px, 46%); }
  .lede, .hero-actions { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .rotator-item { white-space: normal; }
  .about,
  .cards,
  .featured,
  .collab,
  .contact,
  .stats,
  .hire-form {
    grid-template-columns: 1fr;
  }
  .featured-cta { align-items: flex-start; }
  .collab-pills { flex-direction: row; flex-wrap: wrap; }
  .collab-services { grid-template-columns: 1fr; }
  .agent-orb-dock { right: 16px; bottom: 16px; }
  .agent-orb { width: 72px; height: 72px; }
  footer { flex-direction: column; text-align: center; }
  .foot-brand, .foot-links, .foot-social, .foot-partner { justify-content: center; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 1.75rem; }
  .btn { width: 100%; }
  .hero-actions, .form-actions { flex-direction: column; }
  .brand span { letter-spacing: 0.08em; font-size: 0.62rem; }
}
