:root {
  color-scheme: light;
  --bg: #eef5f1;
  --bg-elevated: #f6fbf8;
  --bg-soft: #dfeee6;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(251, 254, 252, 0.88);
  --surface-muted: rgba(232, 241, 236, 0.84);
  --surface-orange: linear-gradient(135deg, rgba(48, 123, 142, 0.16), rgba(54, 107, 43, 0.1));
  --text: #103a57;
  --text-soft: #295867;
  --text-muted: #4d727b;
  --border: rgba(16, 58, 87, 0.11);
  --border-strong: rgba(48, 123, 142, 0.24);
  --accent: #307b8e;
  --accent-strong: #103a57;
  --accent-deep: #366b2b;
  --accent-warm: #366b2b;
  --shadow: 0 20px 60px rgba(16, 58, 87, 0.12);
  --shadow-soft: 0 12px 30px rgba(16, 58, 87, 0.08);
  --focus-ring: #307b8e;
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 16px;
  --container: 1240px;
  --nav-height: 88px;
}

[data-theme="dark"] {
  color-scheme: dark;
  --bg: #050505;
  --bg-elevated: #0d0d0d;
  --bg-soft: #121212;
  --surface: rgba(20, 20, 20, 0.72);
  --surface-strong: rgba(28, 28, 28, 0.9);
  --surface-muted: rgba(43, 43, 43, 0.82);
  --surface-orange: linear-gradient(135deg, rgba(232, 80, 2, 0.22), rgba(193, 8, 1, 0.12));
  --text: #f9f9f9;
  --text-soft: #dbdbdb;
  --text-muted: #a7a7a7;
  --border: rgba(249, 249, 249, 0.1);
  --border-strong: rgba(232, 80, 2, 0.32);
  --accent: #e85002;
  --accent-strong: #f16001;
  --accent-deep: #c10801;
  --accent-warm: #d9c3ab;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.3);
  --focus-ring: #f9f9f9;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(241, 96, 1, 0.14), transparent 24rem),
    radial-gradient(circle at 85% 12%, rgba(193, 8, 1, 0.14), transparent 22rem),
    linear-gradient(180deg, #030303 0%, #080808 36%, #050505 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.72), transparent 100%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at center, transparent 38%, rgba(0, 0, 0, 0.34) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.22));
  pointer-events: none;
  z-index: 0;
}

body.nav-open {
  overflow: hidden;
}

body.has-modal-disclosure {
  overflow: hidden;
}

body.is-compact-motion .page-motion {
  display: none;
}

body.is-compact-motion::before {
  background-size: 96px 96px;
  opacity: 0.4;
}

body.is-compact-motion::after {
  background:
    radial-gradient(circle at center, transparent 46%, rgba(0, 0, 0, 0.22) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.16));
}

.page-motion {
  position: fixed;
  inset: 0;
  overflow: clip;
  pointer-events: none;
  z-index: 0;
}

.page-motion__columns,
.page-motion__column,
.page-motion__glow,
.page-motion__haze,
.page-motion__noise {
  position: absolute;
}

.page-motion__columns {
  inset: 0;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: clamp(0.7rem, 1vw, 1.1rem);
  padding: 0 clamp(0.9rem, 3vw, 2.2rem);
  opacity: 0.94;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.94) 8%, rgba(0, 0, 0, 0.96) 92%, transparent 100%);
}

.page-motion__column {
  position: relative;
  overflow: hidden;
  border-left: 1px solid rgba(255, 255, 255, 0.034);
  border-right: 1px solid rgba(255, 255, 255, 0.016);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.008)),
    linear-gradient(180deg, rgba(232, 80, 2, 0.02), transparent 18%, rgba(193, 8, 1, 0.03) 76%, rgba(255, 255, 255, 0.012));
  opacity: 0.58;
}

.page-motion__column::before,
.page-motion__column::after {
  content: "";
  position: absolute;
  inset: -30% 0;
}

.page-motion__column::before {
  background:
    linear-gradient(
      180deg,
      transparent 0%,
      rgba(255, 255, 255, 0.024) 16%,
      rgba(232, 80, 2, 0.18) 40%,
      rgba(241, 96, 1, 0.62) 58%,
      rgba(255, 247, 229, 0.92) 70%,
      rgba(241, 96, 1, 0.34) 82%,
      transparent 100%
    );
  filter: blur(10px);
  transform: translateY(-120%);
  animation: columnFlow 11.5s linear infinite;
}

.page-motion__column::after {
  background:
    linear-gradient(
      180deg,
      transparent 0%,
      rgba(255, 255, 255, 0.02) 18%,
      rgba(232, 80, 2, 0.1) 42%,
      rgba(232, 80, 2, 0.24) 60%,
      rgba(255, 255, 255, 0.06) 75%,
      transparent 100%
    );
  opacity: 0.55;
  transform: translateY(-135%);
  animation: columnFlowSoft 15s linear infinite;
}

.page-motion__column:nth-child(1)::before {
  animation-delay: -2.8s;
}

.page-motion__column:nth-child(2)::before {
  animation-delay: -7.2s;
}

.page-motion__column:nth-child(3)::before {
  animation-delay: -4.6s;
}

.page-motion__column:nth-child(4)::before {
  animation-delay: -9.8s;
}

.page-motion__column:nth-child(5)::before {
  animation-delay: -1.6s;
}

.page-motion__column:nth-child(6)::before {
  animation-delay: -6.4s;
}

.page-motion__column:nth-child(7)::before {
  animation-delay: -10.6s;
}

.page-motion__column:nth-child(8)::before {
  animation-delay: -3.8s;
}

.page-motion__column:nth-child(odd)::after {
  animation-delay: -5.4s;
}

.page-motion__column:nth-child(3n)::after {
  animation-delay: -9.2s;
}

.page-motion__glow,
.page-motion__haze {
  border-radius: 50%;
  filter: blur(30px);
}

.page-motion__glow {
  opacity: 0.16;
  animation: ambientFloat 18s ease-in-out infinite;
}

.page-motion__glow--one {
  top: 12%;
  left: -10%;
  width: min(30rem, 40vw);
  height: min(30rem, 40vw);
  background: radial-gradient(circle, rgba(232, 80, 2, 0.22), transparent 72%);
}

.page-motion__glow--two {
  right: -12%;
  bottom: 10%;
  width: min(24rem, 34vw);
  height: min(24rem, 34vw);
  background: radial-gradient(circle, rgba(193, 8, 1, 0.18), transparent 72%);
  animation-delay: -7s;
}

.page-motion__haze {
  width: 52vw;
  height: 8rem;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.055), transparent);
  opacity: 0.12;
  transform: rotate(-8deg);
  animation: hazeSweep 17s linear infinite;
}

.page-motion__haze--one {
  top: 16%;
  left: -8%;
}

.page-motion__haze--two {
  bottom: 18%;
  right: -12%;
  opacity: 0.08;
  animation-delay: -9s;
}

.page-motion__noise {
  inset: 0;
  opacity: 0.045;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18) 0 1px, transparent 1.2px),
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.12) 0 1px, transparent 1.2px),
    radial-gradient(circle at 36% 74%, rgba(232, 80, 2, 0.16) 0 1px, transparent 1.3px);
  background-size: 16rem 16rem, 18rem 18rem, 14rem 14rem;
  animation: noiseDrift 22s linear infinite;
}

main,
.site-header,
.site-footer {
  position: relative;
  z-index: 1;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: none;
}

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1001;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: #ffffff;
  color: #050505;
  opacity: 0;
  transform: translateY(-180%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 1rem 0;
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 4.4rem;
}

.site-header.is-scrolled .nav-shell {
  background: rgba(10, 10, 10, 0.84);
  border-color: rgba(249, 249, 249, 0.13);
  box-shadow: var(--shadow-soft);
}

.nav-shell,
.glass-card,
.flash,
.metric-band__item,
.bento-card,
.role-card,
.story-panel,
.contact-point,
.contact-card,
.footer-layout {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-shell::before,
.glass-card::before,
.flash::before,
.metric-band__item::before,
.bento-card::before,
.role-card::before,
.story-panel::before,
.contact-point::before,
.contact-card::before,
.footer-layout::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 32%);
  pointer-events: none;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1 1 auto;
  min-width: 0;
  gap: 1.5rem;
  min-height: var(--nav-height);
  padding: 1rem 1.2rem;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.7);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #050505;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(232, 80, 2, 0.2);
}

.brand-copy {
  display: grid;
  gap: 0.15rem;
}

.brand-copy strong {
  font-size: 0.98rem;
  line-height: 1;
  letter-spacing: 0.12em;
}

.brand-copy small {
  color: var(--text-muted);
  font-size: 0.78rem;
}

.nav-menu-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-drawer {
  display: none;
}

.nav-drawer[hidden] {
  display: none !important;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  color: var(--text-muted);
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu a.is-current {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-soft);
}

.theme-toggle__icon {
  display: grid;
  place-items: center;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.64);
  color: var(--accent-strong);
  flex: 0 0 auto;
}

.theme-toggle__label {
  font-size: 0.9rem;
  font-weight: 800;
}

.theme-toggle--sticky {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 2;
  width: 3.2rem;
  min-width: 3.2rem;
  min-height: 3.2rem;
  padding: 0.55rem;
  justify-content: center;
  overflow: visible;
  box-shadow: var(--shadow-soft);
  transform: translateY(-50%);
}

.theme-toggle--sticky:hover,
.theme-toggle--sticky:focus-visible {
  transform: translateY(-50%);
}

.theme-toggle--sticky .theme-toggle__label {
  position: absolute;
  top: 50%;
  right: calc(100% - 0.55rem);
  min-width: max-content;
  padding: 0.72rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface-strong);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  filter: blur(4px);
  transform: translate(0.7rem, -50%) scale(0.92);
  transition:
    opacity 0.2s ease,
    transform 0.28s ease,
    filter 0.28s ease;
}

.theme-toggle--sticky:hover .theme-toggle__label,
.theme-toggle--sticky:focus-visible .theme-toggle__label {
  opacity: 1;
  filter: blur(0);
  transform: translate(0, -50%) scale(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3.2rem;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  color: #050505;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 18px 38px rgba(232, 80, 2, 0.28);
}

.button-secondary {
  color: var(--text);
  border: 1px solid rgba(249, 249, 249, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.button-ghost {
  color: var(--text-soft);
  border: 1px solid rgba(249, 249, 249, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.button-block {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 0.28rem auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(6px);
  z-index: 30;
}

.disclosure-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 110;
}

.disclosure-overlay[hidden] {
  display: none !important;
}

.info-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 125;
}

.info-modal[hidden] {
  display: none !important;
}

.info-modal__panel {
  width: min(100%, 25rem);
  max-height: min(72vh, 34rem);
  overflow: auto;
  border: 1px solid rgba(249, 249, 249, 0.12);
  border-radius: 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(10, 10, 10, 0.98);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  color: #f4f8f6;
}

.info-modal__header {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1rem 0.35rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.info-modal__eyebrow {
  margin: 0;
  color: #8edb72;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.info-modal__close {
  display: inline-grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  border: 1px solid rgba(244, 248, 246, 0.16);
  color: #f4f8f6;
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
}

.info-modal__title {
  margin: 0;
  padding: 0 1rem 0.8rem;
  color: #f7fbf9;
  font-size: 1.2rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.info-modal__body {
  padding: 0 1rem 1rem;
}

.info-modal__body strong {
  color: #ffffff;
}

.info-modal__body p,
.info-modal__body li {
  margin: 0;
  color: rgba(241, 247, 244, 0.92);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.6;
  text-wrap: pretty;
}

.info-modal__body ul {
  margin: 0;
  padding-left: 1.05rem;
}

.info-modal__body li + li,
.info-modal__body p + p,
.info-modal__body p + ul,
.info-modal__body ul + p {
  margin-top: 0.55rem;
}

.flash-section {
  padding-top: 0;
}

.flash-stack {
  display: grid;
  gap: 0.55rem;
  width: min(100%, 46rem);
}

.flash {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.82rem 0.95rem;
  border-radius: 1.05rem;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.92rem;
}

.flash--error,
.flash--danger {
  border-color: rgba(193, 8, 1, 0.3);
}

.flash--success {
  border-color: rgba(232, 80, 2, 0.3);
}

.hero-section {
  position: relative;
  isolation: isolate;
  padding: 2.4rem 0 2.2rem;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 3rem 0 auto;
  height: clamp(20rem, 40vw, 30rem);
  background:
    radial-gradient(circle at 18% 46%, rgba(232, 80, 2, 0.1), transparent 34%),
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.05), transparent 28%);
  pointer-events: none;
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(1.4rem, 2vw, 2.25rem);
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 1.55rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: currentColor;
}

.hero-copy h1 {
  margin: 0;
  max-width: 12ch;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(3rem, 6vw, 5.7rem);
  line-height: 0.93;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.hero-text,
.section-heading p,
.proof-chip span,
.bento-card p,
.feature-list,
.role-card p,
.role-step p,
.story-panel p,
.contact-lead,
.contact-point p,
.contact-card__header p,
.footer-brand p,
.footer-bottom__inner p {
  color: var(--text-soft);
}

.hero-text {
  max-width: 42rem;
  margin: 0;
  font-size: 1.06rem;
  font-weight: 600;
}

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

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

.proof-chip {
  padding: 1.2rem 1.15rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
}

.proof-chip strong {
  display: block;
  margin-bottom: 0.3rem;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--accent-warm);
  letter-spacing: -0.04em;
}

.proof-chip span {
  display: block;
  font-size: 0.93rem;
  font-weight: 700;
}

.proof-chip__short {
  display: none;
}

.hero-showcase {
  position: relative;
  display: grid;
  gap: 1.2rem;
  min-height: 100%;
}

.showcase-window {
  padding: 1.2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.showcase-window__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 2.2rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  border: 1px solid rgba(249, 249, 249, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-soft);
  font-size: 0.84rem;
  font-weight: 700;
}

.status-dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(232, 80, 2, 0.14);
}

.showcase-window__content {
  display: grid;
  gap: 1rem;
}

.showcase-copy p,
.card-kicker {
  margin: 0 0 0.45rem;
  color: var(--accent-warm);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.showcase-copy__mobile-title {
  display: none;
}

.showcase-copy h2 {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(1.5rem, 2.4vw, 2.15rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.interface-stage {
  position: relative;
  min-height: 23rem;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(249, 249, 249, 0.08);
  background:
    radial-gradient(circle at top left, rgba(241, 96, 1, 0.16), transparent 36%),
    radial-gradient(circle at 80% 15%, rgba(193, 8, 1, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    rgba(10, 10, 10, 0.86);
  padding: 1.15rem;
  display: grid;
  align-content: space-between;
  gap: 1rem;
}

.interface-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.07) 48%, transparent 72%);
  opacity: 0.24;
  transform: translateX(-42%);
  pointer-events: none;
  animation: panelSheen 12s ease-in-out infinite;
}

.interface-stage__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(28px);
  opacity: 0.8;
}

.interface-stage__glow--one {
  inset: -8% auto auto -8%;
  width: 12rem;
  height: 12rem;
  background: rgba(241, 96, 1, 0.18);
}

.interface-stage__glow--two {
  inset: auto -8% -16% auto;
  width: 14rem;
  height: 14rem;
  background: rgba(193, 8, 1, 0.16);
}

.interface-stage__panel,
.interface-stage__card {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(249, 249, 249, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(18, 18, 18, 0.78);
  backdrop-filter: blur(14px);
}

.interface-stage__panel--hero {
  min-height: 9rem;
  padding: 1.2rem;
  border-radius: 24px;
}

.stage-label {
  display: inline-flex;
  min-height: 1.9rem;
  align-items: center;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
  background: rgba(232, 80, 2, 0.14);
  color: var(--accent-warm);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.interface-stage__panel strong,
.interface-stage__card strong {
  display: block;
  letter-spacing: -0.03em;
}

.interface-stage__panel strong {
  margin-bottom: 1rem;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

.stage-bars {
  display: grid;
  gap: 0.55rem;
}

.stage-bars__bar {
  display: block;
  height: 0.72rem;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(232, 80, 2, 0.92), rgba(241, 96, 1, 0.44)),
    rgba(255, 255, 255, 0.06);
  transform-origin: left center;
  animation: barBreath 4.8s ease-in-out infinite;
}

.stage-bars__bar--long {
  width: 82%;
}

.stage-bars__bar--mid {
  width: 58%;
  animation-delay: 0.24s;
}

.stage-bars__bar--short {
  width: 34%;
  animation-delay: 0.42s;
}

.interface-stage__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.interface-stage__card {
  min-height: 7.2rem;
  padding: 1rem;
  border-radius: 22px;
  display: grid;
  align-content: end;
  gap: 0.35rem;
}

.interface-stage__card span {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.interface-stage__card strong {
  font-size: 1rem;
}

.interface-stage__card--accent {
  background:
    linear-gradient(180deg, rgba(232, 80, 2, 0.18), rgba(255, 255, 255, 0.03)),
    rgba(20, 20, 20, 0.84);
}

.showcase-stack {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.15rem;
}

.spotlight-card,
.mini-panel {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.spotlight-card {
  padding: 1.2rem;
}

.spotlight-card strong,
.mini-panel strong,
.bento-card h3,
.role-card h3,
.story-panel h2,
.story-panel h3,
.contact-card__header h3,
.contact-copy h2 {
  display: block;
  margin: 0;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.spotlight-card strong {
  font-size: 1.25rem;
  margin-bottom: 0.65rem;
}

.spotlight-card__summary {
  display: none;
  margin: 0;
  color: var(--text-soft);
  font-size: 0.93rem;
  font-weight: 700;
}

.feature-list {
  margin: 0;
  padding-left: 1.2rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.feature-list--compact {
  padding-left: 1rem;
  font-size: 0.88rem;
}

.feature-list li + li {
  margin-top: 0.5rem;
}

.card-disclosure {
  display: none;
  margin-top: 0.35rem;
  border: 1px solid rgba(249, 249, 249, 0.1);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.card-disclosure summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.8rem 0.95rem;
  cursor: pointer;
  list-style: none;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 800;
}

.card-disclosure summary::-webkit-details-marker {
  display: none;
}

.card-disclosure summary::after {
  content: "+";
  font-size: 1rem;
  line-height: 1;
  color: var(--accent-warm);
}

.card-disclosure[open] summary::after {
  content: "-";
}

.card-disclosure > *:not(summary) {
  padding: 0 0.95rem 0.9rem;
}

.card-disclosure p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.card-disclosure--section {
  display: none;
}

.mini-panel {
  display: grid;
  gap: 1rem;
  padding: 1.1rem;
  align-content: space-between;
}

.mini-panel__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.mini-panel__metrics span,
.role-chip {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(232, 80, 2, 0.2);
  background: rgba(232, 80, 2, 0.12);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
}

.metric-band {
  padding: 0.6rem 0 2.35rem;
}

.metric-band__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.metric-band__item {
  padding: 1.35rem 1.3rem;
  border-radius: var(--radius-lg);
}

.metric-band__item span {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metric-band__item strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.34rem;
}

.metric-band__item p {
  margin: 0;
  color: var(--text-soft);
  font-weight: 700;
}

.section {
  padding: 4.35rem 0;
}

.section-heading {
  display: grid;
  gap: 0.95rem;
  max-width: 54rem;
  margin-bottom: 2rem;
}

.section-heading h2 {
  margin: 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.section-heading p {
  margin: 0;
  font-size: 1rem;
}

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

.bento-card {
  display: grid;
  gap: 1rem;
  min-height: 17rem;
  padding: 1.55rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  grid-column: span 4;
}

.bento-card--feature {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    var(--surface-orange);
}

.bento-card--highlight {
  background:
    linear-gradient(180deg, rgba(217, 195, 171, 0.22), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
}

.bento-card--wide {
  grid-column: span 8;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  align-items: stretch;
}

.bento-card h3 {
  font-size: 1.45rem;
}

.bento-card p {
  margin: 0;
  font-weight: 700;
}

.wide-card__copy {
  display: grid;
  gap: 0.8rem;
  align-content: start;
}

.wide-card__visual {
  display: flex;
  align-items: stretch;
}

.wide-card__scene {
  position: relative;
  width: 100%;
  min-height: 100%;
  border-radius: 24px;
  border: 1px solid rgba(249, 249, 249, 0.08);
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgba(241, 96, 1, 0.16), transparent 28%),
    radial-gradient(circle at 82% 72%, rgba(193, 8, 1, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(11, 11, 11, 0.88);
}

.wide-card__scene--abstract {
  padding: 1.1rem;
  display: grid;
  align-content: space-between;
  gap: 0.9rem;
}

.abstract-orbit {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(249, 249, 249, 0.07);
  pointer-events: none;
  animation: orbitDrift 12s ease-in-out infinite;
}

.abstract-orbit--one {
  inset: 12% auto auto 14%;
  width: 7rem;
  height: 7rem;
}

.abstract-orbit--two {
  inset: auto 10% 14% auto;
  width: 10rem;
  height: 10rem;
  animation-delay: -4s;
}

.abstract-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.3rem;
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(249, 249, 249, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(17, 17, 17, 0.82);
  backdrop-filter: blur(12px);
}

.abstract-panel span {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.abstract-panel strong {
  font-size: 1rem;
}

.abstract-panel--large {
  min-height: 9rem;
  align-content: end;
}

.abstract-panel--small {
  min-height: 5.7rem;
}

.abstract-panel--accent {
  background:
    linear-gradient(180deg, rgba(232, 80, 2, 0.18), rgba(255, 255, 255, 0.03)),
    rgba(17, 17, 17, 0.82);
}

.section-contrast {
  background:
    radial-gradient(circle at 8% 15%, rgba(232, 80, 2, 0.08), transparent 16rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0));
}

.roles-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.4rem;
  align-items: start;
}

.roles-copy {
  display: grid;
  gap: 1rem;
}

.roles-copy h2 {
  margin: 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.roles-copy > p {
  margin: 0;
  color: var(--text-soft);
  font-weight: 600;
}

.role-steps {
  display: grid;
  gap: 1rem;
}

.role-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.role-step span {
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: rgba(232, 80, 2, 0.14);
  color: var(--accent-warm);
  font-weight: 800;
}

.role-step strong {
  display: block;
  margin-bottom: 0.2rem;
}

.role-step p {
  margin: 0;
  font-weight: 700;
}

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

.role-card {
  display: grid;
  gap: 0.95rem;
  padding: 1.3rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.role-card--accent {
  background:
    linear-gradient(145deg, rgba(232, 80, 2, 0.16), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
}

.role-card h3 {
  font-size: 1.3rem;
}

.role-card p {
  margin: 0;
  font-weight: 700;
}

.section-story {
  padding-top: 1rem;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.25rem;
}

.story-panel {
  display: grid;
  gap: 1rem;
  padding: 1.6rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.story-panel h2 {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.story-panel p {
  margin: 0;
  font-weight: 700;
  max-width: 44rem;
}

.story-panel--side {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
}

.story-panel--visual {
  min-height: 25rem;
  padding: 1.1rem;
  align-items: stretch;
}

.story-art {
  position: relative;
  min-height: 100%;
  border-radius: calc(var(--radius-xl) - 0.4rem);
  overflow: hidden;
  border: 1px solid rgba(249, 249, 249, 0.08);
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.06), transparent 24%),
    radial-gradient(circle at 76% 78%, rgba(232, 80, 2, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(10, 10, 10, 0.9);
}

.story-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 4.8rem 4.8rem;
  opacity: 0.5;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.9), transparent 100%);
}

.story-art > span {
  position: absolute;
}

.story-art__glow {
  border-radius: 50%;
  filter: blur(24px);
  opacity: 0.22;
  animation: ambientFloat 14s ease-in-out infinite;
}

.story-art__glow--one {
  top: -8%;
  left: -6%;
  width: 14rem;
  height: 14rem;
  background: radial-gradient(circle, rgba(232, 80, 2, 0.34), transparent 72%);
}

.story-art__glow--two {
  right: -8%;
  bottom: -10%;
  width: 13rem;
  height: 13rem;
  background: radial-gradient(circle, rgba(255, 244, 225, 0.22), transparent 72%);
  animation-delay: -5s;
}

.story-art__ring {
  border-radius: 50%;
  border: 1px solid rgba(249, 249, 249, 0.08);
  animation: ringPulse 10s ease-in-out infinite;
}

.story-art__ring--one {
  inset: 17% auto auto 16%;
  width: 9rem;
  height: 9rem;
}

.story-art__ring--two {
  inset: auto 17% 16% auto;
  width: 6.5rem;
  height: 6.5rem;
  border-color: rgba(232, 80, 2, 0.14);
  animation-delay: -3.5s;
}

.story-art__pillar {
  bottom: -8%;
  width: 4.8rem;
  border-radius: 999px 999px 0 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(232, 80, 2, 0.18) 54%, rgba(255, 250, 236, 0.58) 78%, transparent 100%);
  border: 1px solid rgba(249, 249, 249, 0.06);
  filter: blur(0.2px);
  opacity: 0.72;
  animation: pillarGlow 7.6s ease-in-out infinite;
}

.story-art__pillar--one {
  left: 18%;
  height: 12rem;
}

.story-art__pillar--two {
  left: 42%;
  height: 16rem;
  animation-delay: -1.8s;
}

.story-art__pillar--three {
  right: 16%;
  height: 10rem;
  animation-delay: -3.2s;
}

.story-art__panel {
  border-radius: 1.6rem;
  border: 1px solid rgba(249, 249, 249, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(20, 20, 20, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  animation: panelDrift 8.5s ease-in-out infinite;
}

.story-art__panel--hero {
  inset: 18% 16% 22% 16%;
}

.story-art__panel--top {
  top: 14%;
  right: 12%;
  width: 9rem;
  height: 4.8rem;
  animation-delay: -2.4s;
}

.story-art__panel--bottom {
  bottom: 12%;
  left: 12%;
  width: 8rem;
  height: 4.2rem;
  animation-delay: -4.8s;
}

.story-art__core {
  inset: 50% auto auto 50%;
  width: 5.2rem;
  height: 5.2rem;
  margin: -2.6rem 0 0 -2.6rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255, 250, 238, 0.96) 0 24%, rgba(241, 96, 1, 0.96) 25% 52%, rgba(193, 8, 1, 0.36) 53% 70%, transparent 71%);
  box-shadow:
    0 0 0 1rem rgba(232, 80, 2, 0.06),
    0 0 0 2.2rem rgba(255, 255, 255, 0.03);
  animation: storyCorePulse 6.2s ease-in-out infinite;
}

.story-pulse {
  position: relative;
  width: min(11rem, 28vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.story-pulse__ring,
.story-pulse__core {
  position: absolute;
  border-radius: 50%;
}

.story-pulse__ring--one {
  inset: 10%;
  border: 1px solid rgba(249, 249, 249, 0.12);
  background: rgba(255, 255, 255, 0.02);
  animation: storyPulseOuter 5.6s ease-in-out infinite;
}

.story-pulse__ring--two {
  inset: 24%;
  border: 1px solid rgba(232, 80, 2, 0.2);
  background: rgba(232, 80, 2, 0.08);
  animation: storyPulseInner 5.6s ease-in-out infinite;
  animation-delay: 0.25s;
}

.story-pulse__core {
  inset: 38%;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 0 0 14px rgba(232, 80, 2, 0.08);
  animation: storyCoreGlow 5.6s ease-in-out infinite;
}

.story-panel--side h3 {
  margin-bottom: 0.5rem;
  font-size: 1.45rem;
}

.section-contact {
  padding-bottom: 4rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.35rem;
  align-items: start;
}

.contact-copy {
  display: grid;
  gap: 1rem;
}

.contact-copy h2 {
  margin: 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 0.98;
}

.contact-lead {
  margin: 0;
  font-weight: 600;
}

.contact-points {
  display: grid;
  gap: 0.85rem;
}

.contact-point {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem;
  border-radius: var(--radius-lg);
}

.contact-point__icon {
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 1rem;
  background: rgba(232, 80, 2, 0.14);
  color: var(--accent-warm);
  flex: 0 0 auto;
}

.contact-point strong {
  display: block;
  margin-bottom: 0.25rem;
}

.contact-point p {
  margin: 0;
  font-weight: 700;
}

.contact-card {
  padding: 1.45rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.contact-card__header {
  margin-bottom: 1rem;
}

.contact-card__header h3 {
  font-size: 1.55rem;
  margin-bottom: 0.35rem;
}

.contact-card__header p {
  margin: 0;
}

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

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

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

.form-field label {
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 800;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 1rem 1rem;
  border: 1px solid rgba(249, 249, 249, 0.14);
  border-radius: var(--radius-sm);
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04)),
    rgba(12, 12, 12, 0.88);
  -webkit-text-fill-color: currentColor;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(249, 249, 249, 0.62);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(232, 80, 2, 0.5);
  box-shadow: 0 0 0 4px rgba(232, 80, 2, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.05)),
    rgba(16, 16, 16, 0.94);
}

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

.footer-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.55fr;
  gap: 1rem;
  padding: 1.4rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.brand--footer {
  margin-bottom: 0.85rem;
}

.footer-brand p {
  margin: 0;
  max-width: 34rem;
  font-weight: 600;
}

.footer-links {
  display: grid;
  gap: 0.5rem;
  align-content: start;
}

.footer-links h3 {
  margin: 0 0 0.35rem;
  color: var(--text);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a {
  color: var(--text-soft);
  font-weight: 700;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent-warm);
  transform: translateX(2px);
}

.footer-links--access a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(249, 249, 249, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.footer-bottom {
  padding-top: 1rem;
}

.footer-bottom__inner {
  text-align: center;
}

.footer-bottom__inner p {
  margin: 0;
  font-size: 0.88rem;
}

[data-theme="light"] body {
  background:
    radial-gradient(circle at 88% 12%, rgba(48, 123, 142, 0.24), transparent 16rem),
    radial-gradient(circle at 12% 100%, rgba(54, 107, 43, 0.12), transparent 14rem),
    linear-gradient(180deg, #f7fcf9 0%, #eef5f1 52%, #dfeee6 100%);
}

[data-theme="light"] body::before {
  background:
    linear-gradient(rgba(16, 58, 87, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 58, 87, 0.05) 1px, transparent 1px);
}

[data-theme="light"] body::after {
  background:
    radial-gradient(circle at center, transparent 40%, rgba(255, 255, 255, 0.28) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(223, 238, 230, 0.24));
}

[data-theme="light"] .page-motion__column {
  border-left-color: rgba(16, 58, 87, 0.06);
  border-right-color: rgba(16, 58, 87, 0.03);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.12)),
    linear-gradient(180deg, rgba(48, 123, 142, 0.03), transparent 18%, rgba(54, 107, 43, 0.04) 76%, rgba(255, 255, 255, 0.18));
}

[data-theme="light"] .page-motion__column::before {
  background:
    linear-gradient(
      180deg,
      transparent 0%,
      rgba(255, 255, 255, 0.2) 16%,
      rgba(48, 123, 142, 0.16) 40%,
      rgba(48, 123, 142, 0.34) 58%,
      rgba(255, 255, 255, 0.84) 70%,
      rgba(54, 107, 43, 0.18) 82%,
      transparent 100%
    );
}

[data-theme="light"] .page-motion__column::after {
  background:
    linear-gradient(
      180deg,
      transparent 0%,
      rgba(255, 255, 255, 0.12) 18%,
      rgba(48, 123, 142, 0.08) 42%,
      rgba(54, 107, 43, 0.14) 60%,
      rgba(255, 255, 255, 0.28) 75%,
      transparent 100%
    );
}

[data-theme="light"] .page-motion__glow--one {
  background: radial-gradient(circle, rgba(48, 123, 142, 0.18), transparent 72%);
}

[data-theme="light"] .page-motion__glow--two {
  background: radial-gradient(circle, rgba(54, 107, 43, 0.16), transparent 72%);
}

[data-theme="light"] .page-motion__haze {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
}

[data-theme="light"] .page-motion__noise {
  background-image:
    radial-gradient(circle at 20% 20%, rgba(16, 58, 87, 0.14) 0 1px, transparent 1.2px),
    radial-gradient(circle at 80% 30%, rgba(16, 58, 87, 0.1) 0 1px, transparent 1.2px),
    radial-gradient(circle at 36% 74%, rgba(54, 107, 43, 0.12) 0 1px, transparent 1.3px);
}

[data-theme="light"] .nav-shell,
[data-theme="light"] .glass-card,
[data-theme="light"] .flash,
[data-theme="light"] .metric-band__item,
[data-theme="light"] .bento-card,
[data-theme="light"] .role-card,
[data-theme="light"] .story-panel,
[data-theme="light"] .contact-point,
[data-theme="light"] .contact-card,
[data-theme="light"] .footer-layout {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 251, 248, 0.74));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

[data-theme="light"] .nav-shell::before,
[data-theme="light"] .glass-card::before,
[data-theme="light"] .flash::before,
[data-theme="light"] .metric-band__item::before,
[data-theme="light"] .bento-card::before,
[data-theme="light"] .role-card::before,
[data-theme="light"] .story-panel::before,
[data-theme="light"] .contact-point::before,
[data-theme="light"] .contact-card::before,
[data-theme="light"] .footer-layout::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), transparent 32%),
    radial-gradient(circle at top right, rgba(48, 123, 142, 0.08), transparent 34%);
}

[data-theme="light"] .site-header.is-scrolled .nav-shell {
  background: rgba(247, 252, 249, 0.92);
  border-color: rgba(48, 123, 142, 0.18);
}

[data-theme="light"] .site-header.is-scrolled .theme-toggle {
  background: rgba(247, 252, 249, 0.92);
  border-color: rgba(48, 123, 142, 0.18);
}

[data-theme="light"] .nav-shell {
  background: rgba(255, 255, 255, 0.78);
}

[data-theme="light"] .nav-menu a:hover,
[data-theme="light"] .nav-menu a:focus-visible,
[data-theme="light"] .nav-menu a.is-current {
  background: rgba(48, 123, 142, 0.08);
}

[data-theme="light"] .button-primary {
  color: #ffffff;
}

[data-theme="light"] .theme-toggle {
  background: rgba(255, 255, 255, 0.78);
}

[data-theme="light"] .theme-toggle__icon {
  background: rgba(240, 247, 243, 0.94);
}

[data-theme="light"] .theme-toggle__label {
  background: rgba(247, 252, 249, 0.96);
  border-color: rgba(48, 123, 142, 0.16);
}

[data-theme="light"] .button-secondary,
[data-theme="light"] .button-ghost {
  border-color: rgba(16, 58, 87, 0.12);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
}

[data-theme="light"] .nav-toggle {
  background: rgba(255, 255, 255, 0.78);
}

[data-theme="light"] .nav-overlay {
  background: rgba(223, 238, 230, 0.5);
}

[data-theme="light"] .flash {
  background: rgba(255, 255, 255, 0.78);
}

[data-theme="light"] .proof-chip,
[data-theme="light"] .role-step {
  background: rgba(255, 255, 255, 0.62);
}

[data-theme="light"] .showcase-window__badge {
  border-color: rgba(16, 58, 87, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text-soft);
}

[data-theme="light"] .status-dot {
  box-shadow: 0 0 0 6px rgba(48, 123, 142, 0.12);
}

[data-theme="light"] .interface-stage {
  border-color: rgba(16, 58, 87, 0.08);
  background:
    radial-gradient(circle at top left, rgba(48, 123, 142, 0.16), transparent 36%),
    radial-gradient(circle at 80% 15%, rgba(54, 107, 43, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(244, 250, 246, 0.42)),
    rgba(255, 255, 255, 0.68);
}

[data-theme="light"] .interface-stage__glow--one {
  background: rgba(48, 123, 142, 0.18);
}

[data-theme="light"] .interface-stage__glow--two {
  background: rgba(54, 107, 43, 0.16);
}

[data-theme="light"] .interface-stage__panel,
[data-theme="light"] .interface-stage__card,
[data-theme="light"] .abstract-panel {
  border-color: rgba(16, 58, 87, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(245, 250, 247, 0.52)),
    rgba(255, 255, 255, 0.68);
}

[data-theme="light"] .stage-label,
[data-theme="light"] .mini-panel__metrics span,
[data-theme="light"] .role-chip {
  background: rgba(48, 123, 142, 0.1);
  border-color: rgba(48, 123, 142, 0.18);
  color: var(--accent-strong);
}

[data-theme="light"] .stage-bars__bar {
  background:
    linear-gradient(90deg, rgba(48, 123, 142, 0.9), rgba(54, 107, 43, 0.48)),
    rgba(16, 58, 87, 0.06);
}

[data-theme="light"] .interface-stage__card--accent,
[data-theme="light"] .abstract-panel--accent,
[data-theme="light"] .role-card--accent {
  background:
    linear-gradient(180deg, rgba(48, 123, 142, 0.16), rgba(255, 255, 255, 0.38)),
    rgba(255, 255, 255, 0.72);
}

[data-theme="light"] .wide-card__scene {
  border-color: rgba(16, 58, 87, 0.08);
  background:
    radial-gradient(circle at 18% 22%, rgba(48, 123, 142, 0.14), transparent 28%),
    radial-gradient(circle at 82% 72%, rgba(54, 107, 43, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(243, 249, 245, 0.4)),
    rgba(255, 255, 255, 0.66);
}

[data-theme="light"] .section-contrast {
  background:
    radial-gradient(circle at 8% 15%, rgba(48, 123, 142, 0.08), transparent 16rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
}

[data-theme="light"] .story-art {
  border-color: rgba(16, 58, 87, 0.08);
  background:
    radial-gradient(circle at 18% 20%, rgba(48, 123, 142, 0.12), transparent 24%),
    radial-gradient(circle at 76% 78%, rgba(54, 107, 43, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(244, 250, 246, 0.5)),
    rgba(255, 255, 255, 0.72);
}

[data-theme="light"] .story-art::before {
  background:
    linear-gradient(90deg, rgba(16, 58, 87, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(16, 58, 87, 0.04) 1px, transparent 1px);
}

[data-theme="light"] .story-art__glow--one {
  background: radial-gradient(circle, rgba(48, 123, 142, 0.26), transparent 72%);
}

[data-theme="light"] .story-art__glow--two {
  background: radial-gradient(circle, rgba(54, 107, 43, 0.18), transparent 72%);
}

[data-theme="light"] .story-art__ring {
  border-color: rgba(16, 58, 87, 0.08);
}

[data-theme="light"] .story-art__ring--two {
  border-color: rgba(48, 123, 142, 0.16);
}

[data-theme="light"] .story-art__pillar {
  border-color: rgba(16, 58, 87, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    linear-gradient(180deg, rgba(48, 123, 142, 0.08), rgba(54, 107, 43, 0.18) 54%, rgba(255, 255, 255, 0.64) 78%, transparent 100%);
}

[data-theme="light"] .story-art__panel {
  border-color: rgba(16, 58, 87, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(244, 250, 246, 0.48)),
    rgba(255, 255, 255, 0.68);
  box-shadow: 0 20px 50px rgba(16, 58, 87, 0.12);
}

[data-theme="light"] .story-art__core {
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.98) 0 24%, rgba(48, 123, 142, 0.94) 25% 52%, rgba(54, 107, 43, 0.26) 53% 70%, transparent 71%);
  box-shadow:
    0 0 0 1rem rgba(48, 123, 142, 0.08),
    0 0 0 2.2rem rgba(255, 255, 255, 0.18);
}

[data-theme="light"] .form-field input,
[data-theme="light"] .form-field textarea {
  border-color: rgba(16, 58, 87, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(247, 252, 249, 0.62)),
    rgba(255, 255, 255, 0.8);
  color: var(--text);
  caret-color: var(--text);
}

[data-theme="light"] .form-field input::placeholder,
[data-theme="light"] .form-field textarea::placeholder {
  color: rgba(77, 114, 123, 0.8);
}

[data-theme="light"] .form-field input:focus,
[data-theme="light"] .form-field textarea:focus {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 252, 249, 0.72)),
    rgba(255, 255, 255, 0.88);
}

[data-theme="light"] .nav-menu-wrap {
  background: rgba(247, 252, 249, 0.96);
  border-color: rgba(48, 123, 142, 0.14);
}

[data-theme="dark"] .theme-toggle {
  background: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .theme-toggle__icon {
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent-warm);
}

[data-theme="dark"] .theme-toggle__label {
  background: rgba(10, 10, 10, 0.94);
  border-color: rgba(249, 249, 249, 0.12);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
  transition-delay: calc(var(--reveal-delay, 0) * 95ms);
}

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

body.is-compact-motion [data-reveal] {
  opacity: 1;
  transform: none;
  transition: none;
}

@keyframes columnFlow {
  0%,
  8% {
    transform: translateY(-122%);
  }

  100% {
    transform: translateY(118%);
  }
}

@keyframes columnFlowSoft {
  0%,
  12% {
    transform: translateY(-138%);
  }

  100% {
    transform: translateY(124%);
  }
}

@keyframes ringPulse {
  0%,
  100% {
    transform: scale(0.94);
    opacity: 0.16;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.3;
  }
}

@keyframes ambientFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(1.8rem, -1.1rem, 0) scale(1.04);
  }
}

@keyframes hazeSweep {
  0% {
    transform: translate3d(-4rem, 0, 0) rotate(-8deg);
    opacity: 0;
  }

  18%,
  76% {
    opacity: 0.12;
  }

  100% {
    transform: translate3d(14rem, 1rem, 0) rotate(-8deg);
    opacity: 0;
  }
}

@keyframes noiseDrift {
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0.8rem, -1rem, 0);
  }
}

@keyframes panelSheen {
  0%,
  100% {
    transform: translateX(-42%);
    opacity: 0;
  }

  24%,
  72% {
    opacity: 0.18;
  }

  50% {
    transform: translateX(42%);
    opacity: 0.26;
  }
}

@keyframes barBreath {
  0%,
  100% {
    transform: scaleX(1);
    filter: saturate(1);
  }

  50% {
    transform: scaleX(1.03);
    filter: saturate(1.15);
  }
}

@keyframes orbitDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0.8rem, -0.6rem, 0) scale(1.05);
  }
}

@keyframes storyPulseOuter {
  0%,
  100% {
    transform: scale(0.97);
    opacity: 0.4;
  }

  50% {
    transform: scale(1.04);
    opacity: 0.72;
  }
}

@keyframes storyPulseInner {
  0%,
  100% {
    transform: scale(0.98);
    opacity: 0.56;
  }

  50% {
    transform: scale(1.06);
    opacity: 0.88;
  }
}

@keyframes storyCoreGlow {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 14px rgba(232, 80, 2, 0.08);
  }

  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 18px rgba(232, 80, 2, 0.14);
  }
}

@keyframes pillarGlow {
  0%,
  100% {
    transform: translateY(0) scaleY(1);
    opacity: 0.56;
  }

  50% {
    transform: translateY(-0.35rem) scaleY(1.03);
    opacity: 0.86;
  }
}

@keyframes panelDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -0.45rem, 0);
  }
}

@keyframes storyCorePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.94;
  }

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

@keyframes sheetUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes fadeInSoft {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 1120px) {
  .hero-grid,
  .roles-layout,
  .story-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .roles-layout,
  .story-grid,
  .contact-layout {
    gap: 1.1rem;
  }

  .metric-band__grid,
  .hero-proof,
  .footer-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bento-card,
  .bento-card--wide {
    grid-column: span 6;
  }

  .bento-card--wide {
    grid-template-columns: 1fr;
  }

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

  .hero-section {
    padding-top: 1.55rem;
  }

  .hero-copy {
    gap: 1.25rem;
  }

  .hero-copy h1 {
    max-width: 13ch;
    font-size: clamp(2.85rem, 7vw, 4.6rem);
  }

  .hero-text {
    max-width: 38rem;
    font-size: 1rem;
  }

  .proof-chip,
  .metric-band__item,
  .bento-card,
  .story-panel,
  .role-card {
    padding-inline: 1.2rem;
  }

  .showcase-copy h2 {
    max-width: 16ch;
  }

  .interface-stage {
    min-height: 20rem;
  }

  .section {
    padding: 3.55rem 0;
  }

  .section-heading {
    margin-bottom: 1.55rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

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

@media (max-width: 860px) {
  .site-header {
    padding-top: 0.7rem;
  }

  .site-header__inner {
    gap: 0;
    padding-right: 3.65rem;
  }

  .nav-shell {
    min-height: 4.5rem;
    border-radius: 1.6rem;
  }

  .nav-toggle {
    display: inline-grid;
    place-content: center;
  }

  .nav-menu-wrap {
    display: none;
  }

  .nav-drawer {
    position: fixed;
    inset: 5.55rem 1rem auto;
    display: block;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 1.6rem;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
      rgba(8, 8, 8, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.9rem) scale(0.985);
    transition: opacity 0.22s ease, transform 0.22s ease;
    z-index: 55;
  }

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

  .nav-drawer__menu {
    display: grid;
    gap: 0.55rem;
    margin: 0 0 0.95rem;
    padding: 0;
    list-style: none;
  }

  .nav-drawer__menu a,
  .nav-drawer__actions .button {
    width: 100%;
    justify-content: center;
  }

  .nav-drawer__menu a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.85rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(244, 248, 246, 0.88);
    font-weight: 800;
    background: rgba(255, 255, 255, 0.07);
    transition:
      color 0.2s ease,
      background 0.2s ease,
      border-color 0.2s ease,
      transform 0.2s ease;
  }

  .nav-drawer__menu a:hover,
  .nav-drawer__menu a:focus-visible {
    color: #ffffff;
    border-color: rgba(48, 123, 142, 0.34);
    background: rgba(48, 123, 142, 0.18);
  }

  .nav-drawer__menu a.is-current {
    color: #ffffff;
    border-color: rgba(48, 123, 142, 0.42);
    background:
      linear-gradient(135deg, rgba(48, 123, 142, 0.28), rgba(16, 58, 87, 0.34)),
      rgba(255, 255, 255, 0.1);
  }

  .nav-drawer__actions .button-ghost {
    color: #103a57;
    border-color: rgba(16, 58, 87, 0.1);
    background: rgba(255, 255, 255, 0.82);
  }

  .nav-drawer__actions {
    display: grid;
    gap: 0.7rem;
  }

  .hero-section {
    padding-top: 0.75rem;
    padding-bottom: 1.9rem;
  }

  .hero-grid {
    gap: 1rem;
  }

  .hero-copy {
    gap: 1.05rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.5rem, 9vw, 4rem);
    line-height: 0.96;
  }

  .hero-text {
    font-size: 0.98rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

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

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

  .hero-proof .proof-chip:last-child,
  .metric-band__item:last-child {
    grid-column: 1 / -1;
  }

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

  .showcase-window {
    padding: 1rem;
  }

  .showcase-window__badge {
    margin-bottom: 0.85rem;
  }

  .showcase-copy h2 {
    max-width: 17ch;
    font-size: clamp(1.45rem, 4.8vw, 1.95rem);
  }

  .interface-stage {
    min-height: auto;
    padding: 1rem;
    gap: 0.8rem;
  }

  .interface-stage__panel--hero {
    min-height: 7.9rem;
    padding: 1rem;
  }

  .interface-stage__grid {
    gap: 0.7rem;
  }

  .interface-stage__card {
    min-height: 6rem;
    padding: 0.85rem;
  }

  .spotlight-card strong {
    font-size: 1.15rem;
  }

  .feature-list {
    padding-left: 1rem;
    font-size: 0.92rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section-heading,
  .roles-copy,
  .contact-copy {
    gap: 0.85rem;
  }

  .section-heading h2,
  .roles-copy h2,
  .contact-copy h2,
  .story-panel h2 {
    font-size: clamp(1.95rem, 6.8vw, 3rem);
  }

  .bento-grid,
  .roles-grid,
  .contact-points {
    gap: 0.9rem;
  }

  .role-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .bento-card,
  .role-card,
  .story-panel,
  .contact-card {
    gap: 0.75rem;
  }

  .bento-card {
    padding: 1.25rem;
  }

  .wide-card__visual {
    min-height: 15rem;
  }

  .role-step {
    padding: 0.9rem 1rem;
  }

  .role-step span {
    width: 2.5rem;
  }

  .story-panel--visual {
    min-height: 18rem;
  }

  .contact-point {
    padding: 0.95rem;
  }

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

  .footer-brand,
  .footer-links {
    text-align: center;
    justify-items: center;
  }

  .footer-brand p {
    max-width: 32rem;
  }

  .roles-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .page-motion__columns {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
    padding: 0 0.75rem;
  }

  .story-panel--side {
    grid-template-columns: 1fr;
  }

  .story-pulse {
    width: min(9rem, 35vw);
  }

  .story-panel--visual {
    min-height: 20rem;
  }

  .theme-toggle--sticky {
    right: 0;
    width: 3rem;
    min-width: 3rem;
    min-height: 3rem;
    padding: 0.5rem;
    transform: translateY(-50%);
  }

  .theme-toggle--sticky:hover,
  .theme-toggle--sticky:focus-visible {
    transform: translateY(-50%);
  }

  .theme-toggle--sticky .theme-toggle__label,
  .theme-toggle--sticky:hover .theme-toggle__label,
  .theme-toggle--sticky:focus-visible .theme-toggle__label {
    opacity: 0;
    filter: blur(4px);
    transform: translate(0.45rem, -50%) scale(0.92);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 1rem));
  }

  .nav-toggle {
    position: relative;
    z-index: 61;
    background: rgba(255, 255, 255, 0.04);
  }

  .nav-drawer {
    inset: 5rem 0.5rem auto;
    padding: 0.8rem;
    border-radius: 1.35rem;
  }

  .site-header__inner {
    padding-right: 3.15rem;
  }

  .nav-shell {
    gap: 0.75rem;
    min-height: 4.15rem;
    padding: 0.85rem 0.95rem;
  }

  .brand {
    gap: 0.65rem;
  }

  .brand-mark {
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 0.9rem;
    font-size: 1.15rem;
  }

  .brand-copy strong {
    font-size: 0.83rem;
  }

  .hero-section {
    padding-top: 0.65rem;
    padding-bottom: 1.55rem;
  }

  .showcase-window,
  .spotlight-card,
  .mini-panel,
  .metric-band__item,
  .bento-card,
  .role-card,
  .story-panel,
  .contact-card,
  .footer-layout {
    padding: 1.15rem;
    border-radius: 1.5rem;
  }

  .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .hero-copy h1,
  .section-heading h2,
  .contact-copy h2,
  .roles-copy h2 {
    max-width: none;
  }

  .hero-copy h1 {
    font-size: clamp(2.1rem, 11vw, 3rem);
  }

  .hero-text,
  .contact-lead,
  .contact-card__header p,
  .contact-point p,
  .section-heading p {
    font-size: 0.94rem;
  }

  .hero-text,
  .bento-card p,
  .role-card p,
  .contact-point p,
  .metric-band__item p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .hero-text {
    -webkit-line-clamp: 3;
  }

  .bento-card p,
  .role-card p,
  .contact-point p,
  .metric-band__item p {
    -webkit-line-clamp: 2;
  }

  .button {
    width: 100%;
    min-height: 3rem;
    padding: 0.82rem 1rem;
    font-size: 0.95rem;
  }

  .hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .hero-proof .proof-chip:last-child {
    grid-column: auto;
  }

  .proof-chip {
    min-height: 0;
    padding: 0.85rem 0.7rem;
    text-align: center;
  }

  .proof-chip strong {
    margin-bottom: 0.2rem;
    font-size: 1.5rem;
  }

  .proof-chip__full {
    display: none;
  }

  .proof-chip__short {
    display: block;
  }

  .proof-chip span {
    font-size: 0.74rem;
    line-height: 1.25;
  }

  .hero-showcase {
    gap: 0.8rem;
  }

  .showcase-window {
    display: none;
  }

  .showcase-stack,
  .metric-band__grid,
  .bento-grid,
  .role-steps {
    display: flex;
    gap: 0.8rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .showcase-stack::-webkit-scrollbar,
  .metric-band__grid::-webkit-scrollbar,
  .bento-grid::-webkit-scrollbar,
  .role-steps::-webkit-scrollbar {
    display: none;
  }

  .showcase-stack > article,
  .metric-band__item,
  .bento-card,
  .bento-card--wide,
  .role-step {
    scroll-snap-align: start;
  }

  .showcase-stack > article {
    flex: 0 0 min(84vw, 19rem);
  }

  .showcase-stack .mini-panel {
    flex-basis: min(72vw, 15rem);
  }

  .interface-stage {
    padding: 0.9rem;
    border-radius: 1.45rem;
  }

  .interface-stage__panel--hero {
    min-height: 7rem;
    border-radius: 1.2rem;
  }

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

  .interface-stage__card:last-child {
    grid-column: 1 / -1;
  }

  .interface-stage__card {
    min-height: 5.4rem;
    border-radius: 1.15rem;
    padding: 0.8rem;
  }

  .interface-stage__card span,
  .abstract-panel span,
  .mini-panel__metrics span,
  .role-chip {
    font-size: 0.76rem;
  }

  .interface-stage__card strong,
  .abstract-panel strong {
    font-size: 0.96rem;
  }

  .metric-band {
    padding: 0.3rem 0 1.8rem;
  }

  .metric-band__grid {
    grid-template-columns: none;
  }

  .metric-band__item strong,
  .spotlight-card strong,
  .bento-card h3,
  .role-card h3,
  .story-panel h2,
  .contact-card__header h3 {
    font-size: 1.28rem;
  }

  [data-theme="dark"] .card-condensed-mobile .card-kicker,
  [data-theme="dark"] .metric-band__item span {
    color: rgba(242, 247, 244, 0.82);
  }

  [data-theme="dark"] .card-condensed-mobile strong,
  [data-theme="dark"] .card-condensed-mobile h3,
  [data-theme="dark"] .metric-band__item strong {
    color: #f7fbf9;
  }

  [data-theme="dark"] .card-condensed-mobile .spotlight-card__summary,
  [data-theme="dark"] .card-condensed-mobile > p,
  [data-theme="dark"] .metric-band__item p {
    color: rgba(237, 243, 240, 0.88);
  }

  .metric-band__item {
    flex: 0 0 min(78vw, 14.5rem);
    min-height: 0;
    padding: 1rem;
  }

  .metric-band__item p {
    font-size: 0.9rem;
  }

  .section {
    padding: 2.6rem 0;
  }

  .section-heading {
    gap: 0.75rem;
    margin-bottom: 1.25rem;
  }

  .section-heading h2,
  .contact-copy h2,
  .roles-copy h2 {
    font-size: clamp(1.7rem, 8.5vw, 2.45rem);
    line-height: 1.02;
  }

  .bento-grid {
    grid-template-columns: none;
  }

  .bento-card,
  .bento-card--wide {
    flex: 0 0 min(86vw, 19rem);
    grid-column: auto;
    min-height: auto;
  }

  .bento-card,
  .role-card,
  .story-panel,
  .contact-card {
    padding: 1.05rem;
  }

  .spotlight-card__summary {
    display: block;
  }

  .wide-card__visual {
    display: none;
  }

  .feature-list {
    font-size: 0.9rem;
  }

  .spotlight-card > .feature-list,
  .bento-card > .feature-list,
  .roles-copy > p,
  .contact-copy > .contact-lead {
    display: none;
  }

  .card-condensed-mobile .spotlight-card__summary,
  .card-condensed-mobile > p,
  .copy-condensed-mobile > p {
    display: none;
  }

  .card-condensed-mobile {
    position: relative;
    cursor: pointer;
  }

  .card-condensed-mobile::after {
    content: "Ver detalle  +";
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 3rem;
    margin-top: auto;
    padding: 0.8rem 0.95rem;
    border: 1px solid rgba(249, 249, 249, 0.1);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 800;
    box-sizing: border-box;
  }

  .card-condensed-mobile .mini-panel__metrics,
  .role-step.card-condensed-mobile p,
  .card-condensed-mobile .card-disclosure {
    display: none;
  }

  .card-disclosure,
  .card-disclosure--section {
    display: block;
  }

  .card-disclosure[open],
  .card-disclosure--section[open] {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 120;
    isolation: isolate;
    margin: 0;
    width: min(calc(100vw - 1.4rem), 24rem);
    max-height: min(72vh, 32rem);
    overflow: auto;
    border-radius: 1.45rem;
    border-color: rgba(249, 249, 249, 0.14);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
      rgba(10, 10, 10, 0.98);
    box-shadow:
      0 28px 70px rgba(0, 0, 0, 0.5),
      0 0 0 1px rgba(255, 255, 255, 0.04);
    transform: translate(-50%, -50%);
    animation: modalPopIn 0.22s ease;
  }

  .card-disclosure[open]::before,
  .card-disclosure--section[open]::before {
    display: none;
  }

  .card-disclosure[open] summary,
  .card-disclosure--section[open] summary {
    position: sticky;
    top: 0;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(249, 249, 249, 0.08);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
      rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .card-disclosure[open] > *:not(summary),
  .card-disclosure--section[open] > *:not(summary) {
    padding: 1rem 1rem 1.05rem;
  }

  .card-disclosure[open] ul,
  .card-disclosure--section[open] ul,
  .card-disclosure[open] p,
  .card-disclosure--section[open] p,
  .card-disclosure[open] li,
  .card-disclosure--section[open] li {
    display: block;
    -webkit-line-clamp: unset;
    -webkit-box-orient: initial;
    overflow: visible;
    text-wrap: pretty;
    white-space: normal;
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .card-disclosure[open] ul,
  .card-disclosure--section[open] ul {
    padding-left: 1.05rem;
  }

  .card-disclosure[open] li + li,
  .card-disclosure--section[open] li + li {
    margin-top: 0.45rem;
  }

  .role-steps {
    grid-template-columns: none;
  }

  .role-step {
    flex: 0 0 min(72vw, 14.25rem);
    grid-template-columns: 1fr;
    gap: 0.55rem;
    padding: 0.9rem;
    text-align: left;
  }

  .role-step span {
    width: 2.15rem;
    height: 2.35rem;
    font-size: 0.82rem;
    margin: 0;
  }

  .role-card p,
  .role-step p,
  .story-panel p,
  .footer-brand p {
    font-size: 0.94rem;
  }

  .role-step p {
    display: block;
    font-size: 0.82rem;
    line-height: 1.4;
  }

  .roles-grid {
    display: none;
  }

  .section-story {
    display: none;
  }

  .story-panel--visual {
    min-height: 14rem;
    padding: 0.8rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    display: none;
  }

  .contact-point {
    gap: 0.75rem;
    padding: 0.85rem;
  }

  .contact-point__icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.85rem;
  }

  .form-grid {
    gap: 0.8rem;
  }

  .form-field input,
  .form-field textarea {
    padding: 0.9rem;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 0.95rem;
    padding: 1.2rem 1rem 1rem;
  }

  .footer-brand {
    grid-column: auto;
    text-align: center;
    justify-items: center;
  }

  .footer-links {
    width: 100%;
  }

  .footer-links--nav,
  .footer-links--access {
    justify-items: center;
  }

  .footer-links--nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem;
  }

  .footer-links--nav h3,
  .footer-links--access h3 {
    display: none;
  }

  .footer-links--nav a {
    width: auto;
    padding: 0.72rem 0.95rem;
    text-align: center;
    border: 1px solid rgba(249, 249, 249, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
  }

  .footer-links--access a {
    width: 100%;
    max-width: 18rem;
  }

  .brand-copy small {
    display: none;
  }

  .page-motion__columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
    padding: 0 0.55rem;
  }

  .page-motion__haze {
    width: 75vw;
  }

  .theme-toggle--sticky {
    right: 0;
    width: 2.85rem;
    min-width: 2.85rem;
    padding: 0.42rem;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(var(--container), calc(100% - 0.9rem));
  }

  .site-header__inner {
    padding-right: 3rem;
  }

  .nav-shell {
    padding: 0.75rem 0.8rem;
    border-radius: 1.3rem;
  }

  .brand-copy strong {
    font-size: 0.78rem;
  }

  .hero-copy {
    gap: 0.9rem;
  }

  .hero-copy h1 {
    font-size: clamp(1.95rem, 10.8vw, 2.6rem);
  }

  .hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .proof-chip {
    min-height: 0;
    padding: 0.8rem 0.65rem;
    text-align: center;
  }

  .proof-chip strong {
    font-size: 1.45rem;
  }

  .proof-chip span {
    font-size: 0.72rem;
  }

  .metric-band__grid {
    grid-template-columns: 1fr;
  }

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

  .showcase-window__badge {
    width: 100%;
    justify-content: flex-start;
  }

  .interface-stage__grid {
    grid-template-columns: 1fr;
  }

  .interface-stage__card:last-child {
    grid-column: auto;
  }

  .footer-layout {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-links {
    width: 100%;
  }
}

@keyframes modalPopIn {
  from {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 14px)) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

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

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

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