:root {
  color-scheme: dark;
  --bg: #050914;
  --bg-deep: #08101e;
  --panel: rgba(10, 17, 31, 0.72);
  --panel-strong: rgba(11, 20, 36, 0.9);
  --panel-soft: rgba(255, 255, 255, 0.04);
  --border: rgba(134, 176, 235, 0.18);
  --border-strong: rgba(133, 228, 255, 0.28);
  --text: #eef4ff;
  --text-soft: rgba(238, 244, 255, 0.76);
  --text-muted: rgba(238, 244, 255, 0.52);
  --accent: #79e3ff;
  --accent-strong: #53d2ff;
  --accent-warm: #ffb184;
  --accent-violet: #8c91ff;
  --success: #94ffd2;
  --shadow-xl: 0 36px 90px rgba(0, 0, 0, 0.42);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 16px 34px rgba(0, 0, 0, 0.22);
  --radius-xl: 32px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1240px;
  --ease-out: cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-smooth: cubic-bezier(0.19, 1, 0.22, 1);
  --duration-fast: 180ms;
  --duration-base: 320ms;
  --duration-slow: 760ms;
  --font-display: "Syne", "Trebuchet MS", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "Consolas", monospace;
  --page-aura-a: rgba(121, 227, 255, 0.18);
  --page-aura-b: rgba(255, 177, 132, 0.16);
}

body[data-page="services"],
body[data-page="start-project"] {
  --page-aura-a: rgba(255, 177, 132, 0.18);
  --page-aura-b: rgba(121, 227, 255, 0.12);
}

body[data-page="about"],
body[data-page="examples"] {
  --page-aura-a: rgba(121, 227, 255, 0.14);
  --page-aura-b: rgba(140, 145, 255, 0.14);
}

body[data-page="contact"],
body[data-page="process"],
body[data-page="faq"] {
  --page-aura-a: rgba(121, 227, 255, 0.14);
  --page-aura-b: rgba(255, 177, 132, 0.14);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, var(--page-aura-a), transparent 32%),
    radial-gradient(circle at bottom right, var(--page-aura-b), transparent 36%),
    linear-gradient(180deg, #050914 0%, #08101d 36%, #060911 100%);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

strong {
  font-weight: 700;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

::selection {
  background: rgba(121, 227, 255, 0.24);
  color: var(--text);
}

.site-stage {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}

.site-stage__grid,
.site-stage__noise,
.site-stage__glow {
  position: absolute;
  inset: 0;
}

.site-stage__grid {
  background-image:
    linear-gradient(rgba(126, 162, 214, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 162, 214, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.9), transparent 78%);
  opacity: 0.5;
}

.site-stage__noise {
  opacity: 0.22;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.04) 18%, transparent 32%),
    linear-gradient(transparent 0%, rgba(255, 255, 255, 0.03) 50%, transparent 100%);
  mix-blend-mode: screen;
}

.site-stage__glow::before,
.site-stage__glow::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(72px);
  opacity: 0.92;
  animation: drift 18s ease-in-out infinite alternate;
}

.site-stage__glow::before {
  width: min(52vw, 580px);
  height: min(52vw, 580px);
  top: -8rem;
  left: -10rem;
  background: var(--page-aura-a);
}

.site-stage__glow::after {
  width: min(52vw, 620px);
  height: min(52vw, 620px);
  right: -12rem;
  bottom: -14rem;
  background: var(--page-aura-b);
  animation-duration: 24s;
}

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

.shell {
  width: min(var(--container), calc(100% - 1.5rem));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 2rem 0;
}

.section--tight {
  padding: 1.2rem 0;
}

.section--flush {
  padding-top: 0.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(129, 209, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-soft);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-warm));
  box-shadow: 0 0 18px rgba(121, 227, 255, 0.34);
}

.section-heading {
  max-width: 42rem;
}

.section-heading + * {
  margin-top: 1.25rem;
}

.section-title,
.hero__title,
.callout__title,
.policy-hero__title {
  margin: 1rem 0 0;
  font-family: var(--font-display);
  line-height: 0.94;
  letter-spacing: -0.05em;
  font-weight: 700;
}

.section-title {
  font-size: clamp(2rem, 7vw, 4rem);
  max-width: 12ch;
}

.callout__title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  max-width: 12ch;
}

.section-text,
.hero__lede,
.policy-hero__text {
  margin: 1rem 0 0;
  color: var(--text-soft);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  max-width: 40rem;
}

.surface {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(7, 12, 21, 0.78);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}

.surface::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, rgba(121, 227, 255, 0.12), transparent 24%),
    radial-gradient(circle at top right, rgba(255, 177, 132, 0.12), transparent 30%);
  opacity: 0.9;
  pointer-events: none;
}

.surface > * {
  position: relative;
  z-index: 1;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 52px;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition:
    transform var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out),
    background var(--duration-fast) var(--ease-out),
    color var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out);
}

.button svg {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

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

.button--primary {
  color: #07101b;
  background: linear-gradient(135deg, var(--accent), #dff7ff 54%, var(--accent-warm));
  box-shadow: 0 16px 34px rgba(121, 227, 255, 0.24);
}

.button--secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(130, 229, 255, 0.18);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.09);
}

.button--subtle {
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(130, 229, 255, 0.12);
}

.button--subtle:hover,
.button--subtle:focus-visible {
  color: var(--text);
  border-color: rgba(130, 229, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
}

.button--block {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 0.85rem 0.75rem 0;
  transition: padding var(--duration-fast) var(--ease-out);
}

.site-header.is-scrolled {
  padding-top: 0.55rem;
}

.site-header__inner {
  width: min(var(--container), calc(100% - 0.5rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(132, 194, 255, 0.16);
  border-radius: 30px;
  background: rgba(5, 10, 18, 0.8);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(20px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand-lockup__mark {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  border: 1px solid rgba(130, 229, 255, 0.18);
  background: linear-gradient(135deg, rgba(121, 227, 255, 0.14), rgba(255, 177, 132, 0.14));
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.26);
  padding: 0.45rem;
}

.brand-lockup__meta {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

.brand-lockup__title,
.footer-brand__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand-lockup__tag,
.footer-brand__tag {
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.67rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-header__toggle {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(130, 229, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.site-header__toggle svg {
  width: 1.25rem;
  height: 1.25rem;
}

.site-nav {
  position: fixed;
  inset: calc(82px + env(safe-area-inset-top, 0px)) 0 auto;
  margin: 0 0.75rem;
  padding: 1rem;
  border: 1px solid rgba(130, 229, 255, 0.14);
  border-radius: 28px;
  background: rgba(5, 10, 18, 0.94);
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(20px);
  display: grid;
  gap: 0.9rem;
  transform: translateY(-1rem);
  opacity: 0;
  pointer-events: none;
  transition:
    transform var(--duration-base) var(--ease-smooth),
    opacity var(--duration-base) var(--ease-smooth);
}

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

.site-nav__links {
  display: grid;
  gap: 0.4rem;
}

.site-nav__links a {
  padding: 0.8rem 0.95rem;
  border-radius: 18px;
  color: var(--text-soft);
  font-weight: 700;
  transition:
    background var(--duration-fast) var(--ease-out),
    color var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out);
}

.site-nav__links a:hover,
.site-nav__links a:focus-visible,
.site-nav__links a.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.site-nav__cta {
  display: grid;
  gap: 0.6rem;
}

body.has-nav-open {
  overflow: hidden;
}

.hero {
  padding-top: 1.4rem;
}

.hero__grid,
.spotlight,
.contact-grid,
.policy-grid,
.comparison,
.dual-grid {
  display: grid;
  gap: 1rem;
}

.hero__copy,
.hero__visual,
.callout,
.policy-card,
.card,
.study-card,
.service-card,
.phase-card,
.faq-shell,
.contact-card,
.form-card,
.quote-banner,
.status-card {
  padding: 1.2rem;
}

.hero__copy {
  position: relative;
}

.hero__copy,
.callout,
.contact-card,
.policy-card,
.faq-shell,
.spotlight__visual {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.hero__title {
  font-size: clamp(3rem, 14vw, 7rem);
  max-width: 10ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.hero__metric-row,
.stats-grid,
.card-grid,
.study-grid,
.service-grid,
.phase-grid,
.detail-grid,
.contact-ways,
.mini-grid {
  display: grid;
  gap: 0.9rem;
}

.metric-chip,
.status-chip,
.tag,
.signal-card,
.tool-chip {
  border: 1px solid rgba(130, 229, 255, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.metric-chip {
  padding: 1rem;
}

.metric-chip__label {
  display: block;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.metric-chip__value {
  display: block;
  margin-top: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
}

.info-strip {
  overflow: hidden;
  border: 1px solid rgba(130, 229, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.info-strip__track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}

.info-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 1.15rem;
  color: var(--text-soft);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.info-strip__item::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-warm));
}

.scene {
  position: relative;
  min-height: 420px;
  padding: 1rem;
  border: 1px solid rgba(130, 229, 255, 0.14);
  border-radius: calc(var(--radius-xl) - 8px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(6, 10, 18, 0.9);
  overflow: hidden;
  isolation: isolate;
}

.scene::before,
.scene::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 999px;
  filter: blur(42px);
  opacity: 0.85;
}

.scene::before {
  top: 0;
  left: -8%;
  width: 42%;
  height: 32%;
  background: rgba(121, 227, 255, 0.18);
}

.scene::after {
  right: -10%;
  bottom: -8%;
  width: 46%;
  height: 34%;
  background: rgba(255, 177, 132, 0.15);
}

.scene__orbit,
.scene__ring {
  position: absolute;
  border: 1px solid rgba(130, 229, 255, 0.18);
  border-radius: 50%;
}

.scene__orbit {
  width: 20rem;
  height: 20rem;
  top: 10%;
  right: 8%;
  animation: spin 20s linear infinite;
}

.scene__orbit::after {
  content: "";
  position: absolute;
  top: 46%;
  left: -6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 20px rgba(121, 227, 255, 0.5);
}

.scene__ring {
  width: 12rem;
  height: 12rem;
  bottom: 10%;
  left: 8%;
  border-color: rgba(255, 177, 132, 0.24);
  animation: pulseRing 4.8s ease-in-out infinite;
}

.scene__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(126, 162, 214, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 162, 214, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent);
  opacity: 0.4;
}

.scene__window,
.scene__chip,
.scene__note {
  position: absolute;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(130, 229, 255, 0.16);
  background: rgba(8, 14, 24, 0.8);
  box-shadow: var(--shadow-md);
}

.scene__window img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scene__window--wide {
  inset: 1.1rem 1rem auto 1rem;
  height: 58%;
}

.scene__window--tall {
  left: 1rem;
  bottom: 1rem;
  width: 34%;
  height: 34%;
}

.scene__window--card {
  right: 1rem;
  bottom: 1rem;
  width: 42%;
  height: 28%;
}

.scene__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 0.9rem;
  border-radius: 20px;
  color: var(--text-soft);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scene__chip::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-warm));
}

.scene__chip--top {
  top: 1rem;
  left: 1rem;
}

.scene__chip--bottom {
  bottom: 1rem;
  left: calc(36% + 1.5rem);
}

.scene__note {
  top: 1rem;
  right: 1rem;
  max-width: 14rem;
  padding: 0.9rem 1rem;
}

.scene__note strong {
  display: block;
  font-size: 0.95rem;
}

.scene__note span {
  display: block;
  margin-top: 0.35rem;
  color: var(--text-soft);
  font-size: 0.88rem;
}

.scene__footer {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.scene__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(130, 229, 255, 0.14);
  color: var(--text-soft);
  font-size: 0.86rem;
}

.card-grid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.card,
.service-card,
.phase-card,
.study-card,
.contact-card,
.faq-shell,
.policy-card,
.quote-banner,
.form-card,
.status-card {
  position: relative;
}

.card__title,
.service-card__title,
.phase-card__title,
.study-card__title,
.contact-card__title,
.policy-card__title,
.faq-shell__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 5vw, 1.9rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.card__text,
.service-card__text,
.phase-card__text,
.study-card__text,
.contact-card__text,
.policy-card__text {
  margin: 0.85rem 0 0;
  color: var(--text-soft);
}

.card__meta,
.study-card__meta,
.contact-card__meta,
.phase-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  color: var(--text-soft);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card__icon,
.phase-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 18px;
  border: 1px solid rgba(130, 229, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.phase-card__number {
  margin-bottom: 1rem;
}

.study-card img,
.visual-frame img {
  width: 100%;
  border-radius: calc(var(--radius-lg) - 8px);
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  border: 1px solid rgba(130, 229, 255, 0.14);
  box-shadow: var(--shadow-md);
}

.study-card__content {
  margin-top: 1rem;
}

.study-card__link,
.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  color: var(--accent);
  font-weight: 700;
}

.inline-link svg,
.study-card__link svg {
  width: 1rem;
  height: 1rem;
}

.comparison__column,
.spotlight__copy,
.spotlight__visual,
.policy-card,
.faq-shell {
  min-width: 0;
}

.spotlight__copy {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.list,
.check-list,
.icon-list,
.detail-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list,
.icon-list,
.detail-list {
  display: grid;
  gap: 0.75rem;
}

.check-list li,
.icon-list li,
.detail-list li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  color: var(--text-soft);
}

.check-list li::before,
.icon-list li::before,
.detail-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 0.65rem;
  height: 0.65rem;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-warm));
  box-shadow: 0 0 18px rgba(121, 227, 255, 0.3);
}

.detail-list strong {
  color: var(--text);
}

.quote-banner {
  display: grid;
  gap: 1rem;
  text-align: left;
}

.quote-banner blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.quote-banner p {
  margin: 0;
  color: var(--text-soft);
  max-width: 36rem;
}

.status-card {
  display: grid;
  gap: 1rem;
}

.status-card__row {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  color: var(--text-soft);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-card__bar {
  position: relative;
  height: 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.status-card__bar span {
  position: absolute;
  inset: 0;
  width: var(--value, 60%);
  border-radius: inherit;
  background: linear-gradient(135deg, var(--accent), var(--accent-warm));
}

.contact-ways {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.contact-way {
  padding: 1rem;
  border: 1px solid rgba(130, 229, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
}

.contact-way strong {
  display: block;
  font-size: 1rem;
}

.contact-way span {
  display: block;
  margin-top: 0.35rem;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.form-card {
  display: grid;
  gap: 1.15rem;
}

.form-card__head {
  display: grid;
  gap: 0.6rem;
}

.form-card__head p {
  margin: 0;
  color: var(--text-soft);
}

.form-grid {
  display: grid;
  gap: 0.9rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  color: var(--text-soft);
  font-size: 0.94rem;
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 54px;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(130, 229, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  transition:
    border-color var(--duration-fast) var(--ease-out),
    background var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out);
}

.field textarea {
  min-height: 148px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(121, 227, 255, 0.42);
  background: rgba(255, 255, 255, 0.07);
  outline: none;
}

.form-note,
.success-note {
  margin: 0;
  color: var(--text-soft);
}

.success-note {
  padding: 0.95rem 1rem;
  border: 1px solid rgba(148, 255, 210, 0.22);
  border-radius: 18px;
  background: rgba(148, 255, 210, 0.06);
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-list details {
  border: 1px solid rgba(130, 229, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.05rem;
  font-weight: 800;
  line-height: 1.35;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--accent);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 0;
  padding: 0 1.05rem 1rem;
  color: var(--text-soft);
}

.policy-main {
  padding-top: 1.4rem;
}

.policy-hero {
  padding: 1.3rem;
}

.policy-hero__title {
  font-size: clamp(2.5rem, 10vw, 4.6rem);
  max-width: 11ch;
}

.policy-card__body {
  display: grid;
  gap: 1rem;
}

.policy-card__body > * {
  margin: 0;
}

.policy-card__body h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-top: 1rem;
}

.policy-card__body p,
.policy-card__body li {
  color: var(--text-soft);
}

.policy-card__body ul {
  margin: 0;
  padding-left: 1.2rem;
}

.empty-state {
  min-height: calc(100vh - 190px);
  display: grid;
  align-items: center;
}

.site-footer {
  padding: 2rem 0 3rem;
}

.site-footer__inner {
  width: min(var(--container), calc(100% - 1.5rem));
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.site-footer__main {
  padding: 1.35rem;
}

.footer-brand {
  display: grid;
  gap: 1rem;
}

.footer-brand__lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.footer-brand__lockup img {
  width: 64px;
  height: 64px;
  padding: 0.45rem;
  border-radius: 20px;
  border: 1px solid rgba(130, 229, 255, 0.16);
  background: linear-gradient(135deg, rgba(121, 227, 255, 0.14), rgba(255, 177, 132, 0.14));
}

.footer-brand__text {
  margin: 0;
  color: var(--text-soft);
  max-width: 30rem;
}

.site-footer__columns {
  display: grid;
  gap: 1rem;
}

.footer-column {
  padding: 1.15rem;
  border: 1px solid rgba(130, 229, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
}

.footer-column strong {
  display: block;
  margin-bottom: 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-column a {
  display: block;
  margin-top: 0.55rem;
  color: var(--text-soft);
}

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

.site-footer__bottom {
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}

.floating-rail {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 28;
  display: grid;
  gap: 0.65rem;
}

.floating-action {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.75rem 0.95rem;
  border: 1px solid rgba(130, 229, 255, 0.16);
  border-radius: 999px;
  background: rgba(5, 10, 18, 0.82);
  box-shadow: var(--shadow-md);
  color: var(--text);
  backdrop-filter: blur(18px);
}

.floating-action svg {
  width: 1rem;
  height: 1rem;
}

.floating-action__label {
  font-size: 0.88rem;
  font-weight: 700;
}

.command-root {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  align-items: end;
  padding: 1rem;
}

.command-root[hidden] {
  display: none;
}

.command-root__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 14, 0.72);
  backdrop-filter: blur(12px);
}

.command-panel {
  position: relative;
  border: 1px solid rgba(130, 229, 255, 0.16);
  border-radius: 28px;
  background: rgba(6, 10, 18, 0.94);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.command-panel__header,
.command-panel__footer {
  padding: 1rem;
  border-bottom: 1px solid rgba(130, 229, 255, 0.1);
}

.command-panel__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.command-panel__header h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: -0.04em;
}

.command-panel__header p,
.command-panel__footer p {
  margin: 0.45rem 0 0;
  color: var(--text-soft);
}

.command-panel__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(130, 229, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.command-panel__body {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
}

.command-panel__suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.command-panel__suggestion {
  border: 1px solid rgba(130, 229, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-soft);
  padding: 0.65rem 0.9rem;
  cursor: pointer;
}

.command-panel__form {
  display: grid;
  gap: 0.75rem;
}

.command-panel__field {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 56px;
  padding: 0 0.95rem;
  border: 1px solid rgba(130, 229, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.command-panel__field svg {
  width: 1rem;
  height: 1rem;
  color: var(--text-muted);
}

.command-panel__field input {
  flex: 1;
  border: 0;
  background: transparent;
  color: var(--text);
  min-width: 0;
}

.command-panel__field input:focus {
  outline: none;
}

.command-panel__log {
  display: grid;
  gap: 0.75rem;
  max-height: 310px;
  padding-right: 0.25rem;
  overflow: auto;
}

.command-entry {
  padding: 0.85rem 0.95rem;
  border-radius: 18px;
  border: 1px solid rgba(130, 229, 255, 0.12);
}

.command-entry--assistant {
  background: rgba(255, 255, 255, 0.04);
}

.command-entry--user {
  background: rgba(121, 227, 255, 0.09);
  border-color: rgba(121, 227, 255, 0.22);
}

.command-entry__label {
  display: block;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.command-entry__text {
  display: block;
  margin-top: 0.45rem;
  color: var(--text-soft);
}

.command-results {
  display: grid;
  gap: 0.6rem;
  margin-top: 0.85rem;
}

.command-results a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0.95rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(130, 229, 255, 0.12);
}

.command-results strong {
  display: block;
}

.command-results small {
  display: block;
  margin-top: 0.25rem;
  color: var(--text-muted);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity var(--duration-slow) var(--ease-smooth),
    transform var(--duration-slow) var(--ease-smooth);
}

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

[data-tilt] {
  transform-style: preserve-3d;
  transition: transform var(--duration-base) var(--ease-out);
}

@media (min-width: 700px) {
  .hero__copy,
  .hero__visual,
  .callout,
  .policy-card,
  .card,
  .study-card,
  .service-card,
  .phase-card,
  .faq-shell,
  .contact-card,
  .form-card,
  .quote-banner,
  .status-card,
  .policy-hero {
    padding: 1.5rem;
  }

  .hero__metric-row,
  .stats-grid,
  .detail-grid,
  .contact-ways,
  .mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid,
  .service-grid,
  .phase-grid,
  .study-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .field--full {
    grid-column: 1 / -1;
  }

  .site-footer__columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .command-root {
    align-items: center;
    justify-items: center;
  }

  .command-panel {
    width: min(760px, 100%);
  }
}

@media (min-width: 960px) {
  .section {
    padding: 2.8rem 0;
  }

  .site-header__toggle {
    display: none;
  }

  .site-nav {
    position: static;
    inset: auto;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav__links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.3rem;
    padding: 0.3rem;
    border: 1px solid rgba(130, 229, 255, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
  }

  .site-nav__links a {
    padding: 0.7rem 0.9rem;
  }

  .site-nav__cta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }

  .hero__grid,
  .spotlight,
  .contact-grid,
  .policy-grid,
  .comparison,
  .dual-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  }

  .spotlight--wide {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  }

  .hero__metric-row,
  .stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-grid,
  .study-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .phase-grid,
  .detail-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .contact-ways {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .scene {
    min-height: 560px;
    padding: 1.2rem;
  }

  .scene__window--wide {
    inset: 1.2rem 1.2rem auto 1.2rem;
  }

  .command-panel__form {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }
}

@media (min-width: 1180px) {
  .section {
    padding: 3.2rem 0;
  }

  .shell {
    width: min(var(--container), calc(100% - 2rem));
  }

  .hero {
    padding-top: 2rem;
  }

  .hero__copy,
  .hero__visual,
  .callout,
  .policy-card,
  .card,
  .study-card,
  .service-card,
  .phase-card,
  .faq-shell,
  .contact-card,
  .form-card,
  .quote-banner,
  .status-card,
  .policy-hero {
    padding: 1.8rem;
  }

  .site-footer__main {
    padding: 1.8rem;
  }
}

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

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

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

@keyframes drift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(2rem, -1rem, 0) scale(1.08);
  }
}

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

@keyframes pulseRing {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}

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

:root {
  --accent: #5fd7ff;
  --accent-strong: #8de8ff;
  --accent-warm: #ff7b4d;
  --accent-hot: #ff4b46;
  --accent-gold: #ffd45c;
  --border: rgba(144, 180, 255, 0.16);
  --border-strong: rgba(255, 126, 83, 0.28);
  --panel: rgba(8, 13, 24, 0.74);
  --page-aura-a: rgba(255, 102, 72, 0.14);
  --page-aura-b: rgba(95, 215, 255, 0.16);
}

body[data-page="home"],
body[data-page="examples"] {
  --page-aura-a: rgba(255, 122, 84, 0.16);
  --page-aura-b: rgba(98, 215, 255, 0.18);
}

body {
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 112, 80, 0.18), transparent 28%),
    radial-gradient(circle at 84% 16%, rgba(91, 212, 255, 0.12), transparent 24%),
    radial-gradient(circle at 50% 120%, rgba(27, 43, 78, 0.5), transparent 45%),
    linear-gradient(180deg, #040711 0%, #08101d 38%, #04070f 100%);
}

.site-stage {
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 122, 84, 0.14), transparent 20%),
    radial-gradient(circle at 82% 22%, rgba(93, 216, 255, 0.1), transparent 24%);
}

.site-stage__stars,
.site-stage__comets {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.site-stage__star {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 245, 236, 0.95);
  box-shadow: 0 0 16px rgba(255, 231, 214, 0.6);
  animation: twinkle linear infinite;
}

.site-stage__star:nth-child(3n) {
  background: rgba(112, 225, 255, 0.85);
  box-shadow: 0 0 18px rgba(95, 215, 255, 0.42);
}

.site-stage__star:nth-child(5n) {
  background: rgba(255, 191, 153, 0.92);
  box-shadow: 0 0 18px rgba(255, 123, 77, 0.4);
}

.site-stage__comet {
  position: absolute;
  top: 18%;
  left: -14%;
  width: 18rem;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 221, 196, 0.94), rgba(95, 215, 255, 0));
  box-shadow: 0 0 28px rgba(95, 215, 255, 0.28);
  transform: rotate(-18deg);
  animation: comet 16s linear infinite;
  opacity: 0.72;
}

.site-stage__comet--alt {
  top: 54%;
  left: auto;
  right: -16%;
  width: 13rem;
  transform: rotate(18deg);
  animation-duration: 22s;
  animation-delay: 7s;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 152, 99, 0.95), rgba(95, 215, 255, 0));
}

.surface {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.042), rgba(255, 255, 255, 0.01)),
    linear-gradient(180deg, rgba(16, 23, 39, 0.96), rgba(7, 11, 21, 0.86));
}

.surface::before {
  background:
    linear-gradient(135deg, rgba(255, 121, 73, 0.12), transparent 22%),
    radial-gradient(circle at top right, rgba(95, 215, 255, 0.12), transparent 32%);
}

.button--primary {
  color: #fff5ef;
  background: linear-gradient(135deg, var(--accent-hot), var(--accent-warm) 52%, #ffb15d);
  box-shadow: 0 18px 40px rgba(255, 85, 68, 0.28);
}

.button--secondary {
  border-color: rgba(255, 123, 77, 0.18);
  background: rgba(255, 129, 86, 0.06);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  border-color: rgba(255, 136, 96, 0.34);
  background: rgba(255, 129, 86, 0.12);
}

.button--subtle {
  border-color: rgba(95, 215, 255, 0.16);
}

.button--bot {
  background: linear-gradient(135deg, rgba(95, 215, 255, 0.1), rgba(255, 123, 77, 0.08));
}

.site-header__inner {
  border-color: rgba(255, 126, 83, 0.16);
  background:
    linear-gradient(180deg, rgba(10, 15, 28, 0.92), rgba(6, 10, 18, 0.82));
}

.brand-lockup__mark {
  border-color: rgba(255, 128, 92, 0.24);
  background: linear-gradient(135deg, rgba(255, 101, 75, 0.18), rgba(95, 215, 255, 0.12));
  box-shadow: 0 18px 38px rgba(255, 90, 68, 0.14);
}

.brand-lockup__title,
.footer-brand__title {
  letter-spacing: 0.12em;
}

.site-nav__links {
  border-color: rgba(255, 123, 77, 0.1);
}

.site-nav__links a.is-active,
.site-nav__links a:hover,
.site-nav__links a:focus-visible {
  background: linear-gradient(135deg, rgba(255, 120, 73, 0.16), rgba(95, 215, 255, 0.08));
}

.eyebrow {
  border-color: rgba(255, 123, 77, 0.14);
  background: rgba(255, 255, 255, 0.025);
}

.eyebrow::before {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-hot));
  box-shadow: 0 0 18px rgba(255, 122, 84, 0.42);
}

.scene {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    radial-gradient(circle at 16% 16%, rgba(255, 112, 83, 0.1), transparent 20%),
    rgba(5, 9, 18, 0.94);
}

.scene__grid {
  opacity: 0.28;
}

.scene__orbit {
  border-color: rgba(255, 145, 96, 0.18);
}

.scene__orbit::after {
  background: var(--accent-warm);
  box-shadow: 0 0 20px rgba(255, 123, 77, 0.56);
}

.scene__ring {
  border-color: rgba(95, 215, 255, 0.24);
}

.scene__window::after,
.study-card img::after {
  pointer-events: none;
}

.scene__window::after,
.media-frame::after,
.image-frame::after,
.video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 86, 58, 0.22), rgba(255, 86, 58, 0.02) 38%, rgba(95, 215, 255, 0.12)),
    linear-gradient(135deg, rgba(255, 189, 118, 0.08), transparent 45%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.media-frame,
.image-frame,
.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 4px);
  border: 1px solid rgba(255, 136, 96, 0.14);
  box-shadow: var(--shadow-md);
  background: #090f19;
}

.media-frame img,
.image-frame img,
.video-frame img,
.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.96) contrast(1.04) brightness(0.92);
}

.video-frame video {
  aspect-ratio: 16 / 10;
}

.section-heading {
  max-width: 52rem;
}

.hero__title {
  max-width: 9ch;
  letter-spacing: -0.06em;
}

.hero__lede,
.section-text,
.card__text,
.study-card__text,
.service-card__text,
.phase-card__text,
.contact-card__text {
  font-size: clamp(1rem, 2.3vw, 1.14rem);
}

.metric-chip,
.tag,
.contact-way,
.footer-column,
.footer-sitemap__link,
.atlas-card,
.crosslink-card {
  border-color: rgba(255, 130, 90, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    rgba(10, 14, 24, 0.72);
}

.tag {
  border-color: rgba(95, 215, 255, 0.18);
  background: rgba(95, 215, 255, 0.08);
}

.info-strip {
  border-color: rgba(255, 127, 81, 0.16);
  background: linear-gradient(135deg, rgba(255, 102, 72, 0.06), rgba(95, 215, 255, 0.04));
}

.info-strip__item::before {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-hot));
}

.card__icon,
.phase-card__number {
  border-color: rgba(255, 123, 77, 0.24);
  background: linear-gradient(135deg, rgba(255, 123, 77, 0.08), rgba(95, 215, 255, 0.08));
}

.field input,
.field textarea,
.field select {
  border-color: rgba(255, 123, 77, 0.16);
  background: rgba(255, 255, 255, 0.03);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(255, 123, 77, 0.42);
  box-shadow: 0 0 0 4px rgba(255, 94, 69, 0.08);
}

.success-note {
  border-color: rgba(255, 138, 83, 0.24);
  background: rgba(255, 128, 84, 0.08);
}

.site-footer {
  padding: 2.2rem 0 3.2rem;
}

.footer-mega {
  display: grid;
  gap: 1.1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    radial-gradient(circle at 14% 16%, rgba(255, 110, 78, 0.12), transparent 22%),
    rgba(7, 11, 20, 0.92);
}

.footer-brand__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-sitemap {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid rgba(255, 126, 83, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.03);
}

.footer-sitemap__head {
  display: grid;
  gap: 0.35rem;
}

.footer-sitemap__head strong {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-sitemap__head p {
  margin: 0;
  color: var(--text-soft);
}

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

.footer-sitemap__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.95rem 1rem;
  border-radius: 20px;
  transition:
    transform var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out),
    background var(--duration-fast) var(--ease-out);
}

.footer-sitemap__link:hover,
.footer-sitemap__link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 126, 83, 0.28);
  background: linear-gradient(135deg, rgba(255, 102, 72, 0.08), rgba(95, 215, 255, 0.05));
}

.footer-sitemap__link svg {
  width: 1rem;
  height: 1rem;
  color: var(--accent-warm);
}

.footer-column {
  border-color: rgba(95, 215, 255, 0.12);
}

.site-footer__bottom {
  color: rgba(238, 244, 255, 0.52);
}

.floating-action {
  transition:
    transform var(--duration-fast) var(--ease-out),
    background var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out);
}

.floating-action:hover,
.floating-action:focus-visible {
  transform: translateY(-2px);
}

.floating-action--whatsapp {
  border-color: rgba(255, 123, 77, 0.28);
  background: linear-gradient(135deg, rgba(255, 85, 68, 0.94), rgba(255, 134, 82, 0.94));
  color: #fff7f1;
}

.floating-action--bot {
  gap: 0.7rem;
  border-color: rgba(95, 215, 255, 0.18);
  background: linear-gradient(135deg, rgba(12, 21, 39, 0.92), rgba(34, 16, 29, 0.92));
}

.floating-action__avatar {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  animation: botFloat 4.2s ease-in-out infinite;
}

.command-panel {
  border-color: rgba(255, 126, 83, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    radial-gradient(circle at 14% 18%, rgba(255, 112, 83, 0.08), transparent 24%),
    rgba(6, 10, 18, 0.96);
}

.command-panel__header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

.command-panel__avatar {
  width: 4rem;
  height: 4rem;
  padding: 0.2rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 126, 83, 0.18);
  background: linear-gradient(135deg, rgba(255, 99, 70, 0.1), rgba(95, 215, 255, 0.08));
}

.command-panel__avatar img {
  width: 100%;
  height: 100%;
  display: block;
  animation: botFloat 4.8s ease-in-out infinite;
}

.command-panel__suggestion {
  border-color: rgba(255, 126, 83, 0.16);
}

.command-panel__field {
  border-color: rgba(255, 126, 83, 0.16);
}

.command-entry--assistant {
  background: linear-gradient(135deg, rgba(255, 104, 75, 0.06), rgba(95, 215, 255, 0.05));
}

.command-results a {
  border-color: rgba(255, 126, 83, 0.14);
}

.atlas-grid,
.crosslink-grid,
.story-grid,
.media-grid,
.magazine-grid {
  display: grid;
  gap: 1rem;
}

.atlas-card,
.crosslink-card {
  position: relative;
  height: 100%;
  padding: 1.2rem;
  border-radius: 26px;
  overflow: hidden;
}

.atlas-card::before,
.crosslink-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 102, 72, 0.12), transparent 26%),
    radial-gradient(circle at top right, rgba(95, 215, 255, 0.12), transparent 34%);
  pointer-events: none;
}

.atlas-card > *,
.crosslink-card > * {
  position: relative;
  z-index: 1;
}

.atlas-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.atlas-card__eyebrow::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-hot));
}

.atlas-card__title,
.crosslink-card__title {
  margin: 0.85rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 2rem);
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.atlas-card__text,
.crosslink-card__text {
  margin: 0.75rem 0 0;
  color: var(--text-soft);
}

.atlas-card__action,
.crosslink-card__action {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  color: #ffd9c6;
  font-weight: 700;
}

.atlas-card__action svg,
.crosslink-card__action svg {
  width: 1rem;
  height: 1rem;
}

.atlas-card__media,
.crosslink-card__media {
  margin-top: 1rem;
}

.media-grid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.story-grid__copy,
.story-grid__media {
  min-width: 0;
}

.route-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.route-cloud a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 126, 83, 0.18);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-soft);
}

.route-cloud a:hover,
.route-cloud a:focus-visible {
  color: var(--text);
  border-color: rgba(255, 126, 83, 0.28);
}

.media-caption {
  margin: 0.8rem 0 0;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 126, 83, 0.16);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-soft);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (min-width: 700px) {
  .footer-sitemap__grid,
  .atlas-grid,
  .crosslink-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .footer-mega {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    align-items: start;
  }

  .footer-sitemap__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-footer__columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .atlas-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .crosslink-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 1.1rem;
    align-items: stretch;
  }

  .story-grid--reverse {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  }

  .story-grid--reverse .story-grid__copy {
    order: 2;
  }

  .story-grid--reverse .story-grid__media {
    order: 1;
  }

  .command-panel__header {
    grid-template-columns: auto 1fr auto;
  }
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.24;
    transform: scale(0.72);
  }
  50% {
    opacity: 1;
    transform: scale(1.18);
  }
}

@keyframes comet {
  0% {
    transform: translate3d(0, 0, 0) rotate(-18deg);
    opacity: 0;
  }
  10%,
  55% {
    opacity: 0.76;
  }
  100% {
    transform: translate3d(130vw, 24vh, 0) rotate(-18deg);
    opacity: 0;
  }
}

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