:root {
  --black: #07040a;
  --ink: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.12);
  --panel: rgba(255, 255, 255, 0.045);
  --magenta: #ff2fb3;
  --soft-magenta: #ff7bd2;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

h1,
h2,
h3,
p,
strong,
a {
  overflow-wrap: anywhere;
}

.site-header {
  position: fixed;
  z-index: 10;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 17px clamp(20px, 5vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 4, 10, 0.82);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 950;
}

.brand img {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand span span {
  color: var(--soft-magenta);
}

.hero-logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
  color: #fff;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 950;
  line-height: 1;
}

.hero-logo-lockup img {
  width: clamp(64px, 7vw, 82px);
  height: clamp(64px, 7vw, 82px);
  object-fit: contain;
}

.hero-logo-lockup span span {
  color: var(--soft-magenta);
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-header.has-phone-assistant .nav {
  margin-left: 0;
}

.phone-assistant-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  margin-left: auto;
  padding: 7px 10px;
  border: 1px solid rgba(255, 47, 179, 0.75);
  background: rgba(18, 6, 20, 0.92);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.phone-assistant-trigger:hover,
.phone-assistant-trigger:focus-visible {
  border-color: var(--soft-magenta);
  background: var(--magenta);
  color: var(--black);
  outline: none;
}

.phone-assistant-mark {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.95rem;
  line-height: 1;
}

.phone-assistant-dialog {
  position: relative;
  width: min(100% - 32px, 540px);
  margin: auto;
  padding: clamp(28px, 5vw, 38px);
  border: 1px solid rgba(255, 47, 179, 0.72);
  background: #0b060e;
  color: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.78);
}

.phone-assistant-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(5px);
}

.phone-assistant-dialog p {
  margin: 0;
  padding-right: 40px;
  color: var(--soft-magenta);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.phone-assistant-dialog h2 {
  max-width: 360px;
  margin: 16px 0 0;
  font-size: clamp(1.75rem, 3vw, 2.25rem) !important;
  line-height: 1.05 !important;
}

.phone-assistant-dialog > div {
  max-width: 460px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.phone-assistant-dialog a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding: 12px 20px;
  background: var(--magenta);
  color: var(--black);
  font-weight: 900;
  transition: background 160ms ease;
}

.phone-assistant-dialog a:hover,
.phone-assistant-dialog a:focus-visible {
  background: #fff;
  outline: none;
}

.phone-assistant-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: rgba(255, 255, 255, 0.74);
  cursor: pointer;
  font: inherit;
  font-size: 1.35rem;
  line-height: 1;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.phone-assistant-close:hover,
.phone-assistant-close:focus-visible {
  border-color: var(--magenta);
  background: var(--magenta);
  color: var(--black);
  outline: none;
}

.nav a:hover,
.section-heading a:hover,
.footer a:hover {
  color: #fff;
}

.more-menu {
  position: relative;
}

.more-menu summary {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.more-menu summary::-webkit-details-marker {
  display: none;
}

.more-menu summary span {
  color: var(--soft-magenta);
  transition: transform 160ms ease;
}

.more-menu[open] summary span {
  transform: rotate(180deg);
}

.more-menu-panel {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  z-index: 35;
  display: grid;
  width: 240px;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 47, 179, 0.48);
  background: rgba(7, 4, 10, 0.98);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.58);
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
}

.mega-menu {
  position: relative;
}

.mega-menu summary {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 12px;
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
  transition: background 160ms ease, color 160ms ease;
}

.mega-menu summary::-webkit-details-marker {
  display: none;
}

.mega-menu summary:hover,
.mega-menu[open] summary {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.mega-menu summary > b {
  color: var(--soft-magenta);
  font-size: 1.08rem;
  line-height: 1;
  transition: transform 160ms ease;
}

.mega-menu[open] summary > b {
  transform: rotate(45deg);
}

.menu-spark {
  display: grid;
  grid-template-columns: repeat(2, 4px);
  gap: 2px;
  width: 20px;
  height: 20px;
  padding: 4px;
  border: 1px solid rgba(255, 47, 179, 0.64);
}

.menu-spark i {
  display: block;
  background: rgba(255, 255, 255, 0.5);
}

.menu-spark i:first-child,
.menu-spark i:last-child {
  background: var(--soft-magenta);
}

.mega-menu-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 35;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 20px;
  width: 510px;
  padding: 20px;
  border: 1px solid rgba(255, 47, 179, 0.48);
  background: rgba(9, 5, 13, 0.98);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.68);
  max-height: calc(100vh - 112px);
  overflow-y: auto;
}

.mega-menu:nth-child(-n + 2) .mega-menu-panel {
  right: auto;
  left: 0;
}

.mega-menu-intro {
  padding-right: 18px;
  border-right: 1px solid var(--line);
}

.mega-menu-intro span {
  color: var(--soft-magenta);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.18em;
}

.mega-menu-intro strong {
  display: block;
  margin-top: 14px;
  color: #fff;
  font-size: 1.22rem;
  line-height: 1.16;
}

.mega-menu-links {
  display: grid;
  align-content: start;
  gap: 8px;
}

.mega-menu-links a {
  display: block;
  padding: 10px 12px;
  border: 1px solid transparent;
  transition: border-color 160ms ease, background 160ms ease;
}

.mega-menu-links a:hover {
  border-color: rgba(255, 47, 179, 0.44);
  background: rgba(255, 47, 179, 0.1);
}

.mega-menu-links strong {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #fff;
}

.mega-menu-links strong::after {
  color: var(--soft-magenta);
  content: "↗";
}

.mega-menu-links span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.76rem;
  line-height: 1.45;
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 47, 179, 0.72);
  font-weight: 800;
}

.header-action:hover,
.button.primary,
.magenta-band {
  background: var(--magenta);
  color: var(--black);
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 47, 179, 0.78);
  background: rgba(0, 0, 0, 0.42);
  color: #fff;
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.hamburger-lines {
  display: grid;
  gap: 5px;
  width: 20px;
}

.hamburger-lines span {
  display: block;
  height: 2px;
  background: currentColor;
}

.mobile-menu summary:hover,
.mobile-menu[open] summary {
  background: var(--magenta);
  color: var(--black);
}

.mobile-menu-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  max-height: calc(100vh - 104px);
  width: min(82vw, 352px);
  display: grid;
  gap: 12px;
  overflow-y: auto;
  padding: 16px;
  border: 1px solid rgba(255, 47, 179, 0.5);
  background: rgba(7, 4, 10, 0.97);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.55);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.mobile-menu-panel a {
  padding: 2px 0;
}

.mobile-menu-section {
  display: grid;
  gap: 8px;
}

.mobile-menu-section p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--soft-magenta);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mobile-menu-section .menu-spark {
  width: 18px;
  height: 18px;
}

.mobile-menu-panel a:hover {
  color: #fff;
}

.mobile-menu-panel .mobile-action {
  margin-top: 4px;
  border: 1px solid var(--magenta);
  background: var(--magenta);
  color: var(--black);
  padding: 12px 14px;
  text-align: center;
  font-weight: 950;
}

.button.primary:hover {
  background: #fff;
}

.button.secondary:hover {
  border-color: #fff;
}

.hero {
  min-height: 86vh;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  align-items: end;
  gap: clamp(28px, 5vw, 64px);
  padding: 130px clamp(20px, 5vw, 56px) 58px;
  background:
    linear-gradient(90deg, rgba(7, 4, 10, 0.96) 0%, rgba(24, 0, 20, 0.88) 42%, rgba(255, 47, 179, 0.26) 100%),
    url("/assets/elan-hero.png") center / cover no-repeat;
}

.homepage-hero {
  position: relative;
  min-height: 78vh;
  grid-template-columns: minmax(0, 1fr);
}

.homepage-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: clamp(110px, 14vw, 190px);
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent, #120614);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.homepage-hero .hero-copy {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
}

.homepage-content-container {
  max-width: 1220px;
  margin: 0 auto;
}

.homepage-content-container .section-heading,
.homepage-content-container .card-grid {
  max-width: none;
}

.story-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #120614;
}

.architecture-section {
  position: relative;
  overflow: hidden;
  padding: 66px clamp(20px, 5vw, 56px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 72% 35%, rgba(255, 47, 179, 0.16), transparent 28%),
    radial-gradient(circle at 20% 70%, rgba(109, 74, 255, 0.14), transparent 25%),
    var(--black);
}

.architecture-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1220px;
  margin: 34px auto 0;
}

.architecture-card {
  position: relative;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  padding: 24px;
}

.architecture-card:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -28px;
  z-index: 2;
  color: var(--soft-magenta);
  font-size: 1.9rem;
  content: "→";
}

.architecture-card.bff-card {
  border-color: rgba(255, 47, 179, 0.65);
  background: rgba(255, 47, 179, 0.12);
  box-shadow: 0 0 48px rgba(255, 47, 179, 0.18);
}

.architecture-card span,
.mcp-home-panel > span {
  color: var(--soft-magenta);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.architecture-card h3,
.mcp-home-panel h3 {
  margin: 18px 0 0;
  font-size: 1.5rem;
}

.architecture-card p,
.mcp-home-panel p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.mcp-home-panel {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 28px;
  max-width: 1220px;
  margin: 14px auto 0;
  padding: 24px;
  border: 1px solid rgba(255, 47, 179, 0.42);
  background: rgba(0, 0, 0, 0.35);
}

.tool-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tool-pills span {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.84);
  font: 0.83rem "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.security-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 5vw, 68px);
  max-width: 1220px;
  margin: 0 auto;
  align-items: center;
}

.security-feature-media {
  position: relative;
}

.security-feature-media::before {
  position: absolute;
  inset: -18px;
  z-index: 0;
  background: rgba(255, 47, 179, 0.16);
  content: "";
  filter: blur(32px);
}

.security-feature-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 1.84 / 1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  object-fit: cover;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.6);
}

.security-feature-copy > p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.security-checks {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.security-checks li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.security-checks li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 47, 179, 0.18);
  color: var(--soft-magenta);
  content: "✓";
  font-size: 0.72rem;
  font-weight: 950;
}

.security-hero {
  padding: 130px clamp(20px, 5vw, 56px) 66px;
  background:
    radial-gradient(circle at 72% 35%, rgba(255, 47, 179, 0.18), transparent 28%),
    radial-gradient(circle at 18% 70%, rgba(102, 75, 255, 0.16), transparent 24%),
    var(--black);
}

.security-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 68px);
  max-width: 1220px;
  margin: 0 auto;
  align-items: center;
}

.security-hero-inner .hero-text {
  max-width: 640px;
}

.security-hero-media {
  position: relative;
}

.security-hero-media::before {
  position: absolute;
  inset: -24px;
  background: rgba(255, 47, 179, 0.16);
  content: "";
  filter: blur(34px);
}

.security-hero-media img {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1.84 / 1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  object-fit: cover;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.6);
}

.security-diagram-section {
  border-top: 1px solid rgba(255, 47, 179, 0.28);
  border-bottom: 1px solid rgba(255, 47, 179, 0.28);
  padding: 66px clamp(20px, 5vw, 56px);
  background:
    radial-gradient(circle at 74% 20%, rgba(255, 47, 179, 0.16), transparent 28%),
    #09050d;
}

.security-diagram-inner {
  max-width: 1220px;
  margin: 0 auto;
}

.security-diagram-copy {
  max-width: 760px;
}

.security-diagram-copy > p:last-child {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.security-diagram-frame {
  margin: 34px 0 0;
  border: 1px solid rgba(255, 47, 179, 0.38);
  background: rgba(0, 0, 0, 0.46);
  padding: 16px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.45);
}

.security-diagram-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.security-diagram-frame figcaption {
  padding: 14px 8px 2px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  line-height: 1.55;
}

.security-layer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.security-layer-grid article {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  padding: 18px;
}

.security-layer-grid h3 {
  margin: 0;
  color: #fff;
  font-size: 1.15rem;
}

.security-layer-grid p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  line-height: 1.55;
}

.industry-hero {
  padding: 130px clamp(20px, 5vw, 56px) 66px;
  background:
    linear-gradient(90deg, rgba(255, 47, 179, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 47, 179, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 75% 30%, rgba(255, 47, 179, 0.2), transparent 30%),
    var(--black);
  background-size: 48px 48px, 48px 48px, auto, auto;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--soft-magenta);
  font-size: 0.88rem;
  font-weight: 850;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(1.85rem, 2.9vw, 2.95rem);
  line-height: 1.12;
  font-weight: 850;
  letter-spacing: -0.03em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.45rem, 2.05vw, 2.1rem);
  line-height: 1.18;
  font-weight: 850;
  letter-spacing: -0.02em;
}

h3 {
  margin-bottom: 16px;
  font-size: clamp(1.2rem, 1.5vw, 1.45rem);
  line-height: 1.22;
}

.hero-text {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.02rem, 1.45vw, 1.16rem);
  line-height: 1.6;
}

.hero-text.secondary {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.hero-note {
  max-width: 610px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.92rem;
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.partner-panel {
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.48);
  padding: 26px;
  backdrop-filter: blur(12px);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.partner-grid div,
.card-grid article,
.target-card,
.demo-grid strong,
.detail-card {
  border: 1px solid var(--line);
  background: var(--panel);
}

.partner-grid div {
  padding: 20px;
}

.partner-grid strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.partner-grid span,
.partner-panel p,
.section-grid p,
.card-grid p,
.detail-card p {
  color: var(--muted);
  line-height: 1.7;
}

.intro-band,
.detail-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #120614;
  padding: 52px clamp(20px, 5vw, 56px);
}

.section,
.detail-section {
  padding: 66px clamp(20px, 5vw, 56px);
}

.site-header + main [id] {
  scroll-margin-top: 104px;
}

.industry-group {
  border-top: 1px solid var(--line);
}

.video-section {
  padding: 66px clamp(20px, 5vw, 56px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #120614;
}

.video-heading {
  align-items: end;
}

.video-heading > p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 1220px;
  margin: 0 auto;
}

.video-card {
  display: block;
  min-height: 292px;
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.4);
  transition: border-color 160ms ease, background 160ms ease;
}

.video-card:hover {
  border-color: var(--magenta);
  background: rgba(255, 47, 179, 0.1);
}

.video-play {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--magenta);
  background: var(--magenta);
  color: var(--black);
  font-size: 1.1rem;
  font-weight: 950;
}

.video-card > span:not(.video-play) {
  display: block;
  margin-top: 26px;
  color: var(--soft-magenta);
  font-size: 0.84rem;
  font-weight: 950;
  text-transform: uppercase;
}

.video-card h3 {
  margin: 12px 0 0;
  font-size: 1.45rem;
}

.video-card strong {
  display: block;
  margin-top: 24px;
  color: var(--muted);
}

.video-card:hover .video-play {
  background: #fff;
}

.video-card:hover strong {
  color: #fff;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 5vw, 68px);
  max-width: 1220px;
  margin: 0 auto;
}

.card-grid {
  display: grid;
  gap: 14px;
  max-width: 1220px;
  margin: 0 auto;
}

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

.card-grid.five {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.card-grid article,
.target-card {
  padding: 24px;
}

.story-heading {
  display: block;
  max-width: 780px;
}

.story-grid h3 {
  margin: 18px 0 0;
  font-size: 1.5rem;
}

.step-number {
  color: var(--soft-magenta);
  font-size: 0.88rem;
  font-weight: 950;
}

.target-card span {
  color: var(--soft-magenta);
  font-size: 0.86rem;
  font-weight: 800;
}

.target-card:hover {
  border-color: var(--magenta);
}

.magenta-band {
  padding: 58px clamp(20px, 5vw, 56px);
}

.lab-button {
  border-color: var(--magenta);
  background: rgba(0, 0, 0, 0.42);
}

.customer-callout {
  padding: 62px clamp(20px, 5vw, 56px);
  border-top: 1px solid rgba(255, 47, 179, 0.3);
  border-bottom: 1px solid rgba(255, 47, 179, 0.3);
  background: var(--magenta);
  color: var(--black);
}

.customer-callout .section-grid p {
  color: rgba(7, 4, 10, 0.78);
  font-size: 1.08rem;
  line-height: 1.75;
}

.dark-button {
  border-color: var(--black);
  background: var(--black);
  color: #fff;
}

.dark-button:hover {
  background: #fff;
  color: var(--black);
}

.light-outline {
  border-color: rgba(7, 4, 10, 0.35);
  color: var(--black);
}

.light-outline:hover {
  border-color: var(--black);
}

.principle-band {
  border-top: 1px solid rgba(255, 47, 179, 0.28);
  border-bottom: 1px solid rgba(255, 47, 179, 0.28);
  background: #000;
  padding: 42px clamp(20px, 5vw, 56px);
}

.principle-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  max-width: 1220px;
  margin: 0 auto;
}

.principle-line {
  margin: 0;
  color: #fff;
  font-size: clamp(1.35rem, 2.15vw, 2.15rem);
  line-height: 1.16;
  font-weight: 950;
}

.principle-line span:first-child {
  color: rgba(255, 255, 255, 0.68);
}

.principle-line span:last-child {
  color: var(--soft-magenta);
}

.investor-signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
  width: 100%;
}

.investor-signal-card {
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.26);
  padding: 18px;
}

.investor-signal-card:hover {
  border-color: var(--magenta);
}

.investor-signal-card span {
  color: var(--soft-magenta);
  font-size: 0.84rem;
  font-weight: 950;
  text-transform: uppercase;
}

.investor-signal-card strong {
  display: block;
  margin-top: 10px;
  font-size: 1.2rem;
  line-height: 1.18;
}

.investor-signal-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
  line-height: 1.55;
}

.lab-band {
  padding: 66px clamp(20px, 5vw, 56px);
  border-top: 1px solid rgba(255, 47, 179, 0.3);
  border-bottom: 1px solid rgba(255, 47, 179, 0.3);
  background:
    linear-gradient(90deg, rgba(255, 47, 179, 0.12) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 47, 179, 0.08) 1px, transparent 1px),
    #050308;
  background-size: 44px 44px;
}

.lab-teaser {
  border: 1px solid rgba(255, 47, 179, 0.5);
  background: rgba(255, 47, 179, 0.1);
  padding: 28px;
}

.lab-teaser p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.label-dark {
  font-weight: 950;
  text-transform: uppercase;
}

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

.action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.action-grid strong,
.feature-list strong {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 18px;
}

.inline-action {
  margin-top: 24px;
}

.demo-grid strong {
  border-color: rgba(7, 4, 10, 0.22);
  background: rgba(255, 255, 255, 0.72);
  padding: 22px;
  font-size: 1.2rem;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  max-width: 1220px;
  margin: 0 auto 34px;
}

.section-heading a {
  color: var(--soft-magenta);
  font-weight: 800;
}

.detail-hero {
  padding: 140px clamp(20px, 5vw, 56px) 66px;
  background:
    linear-gradient(90deg, rgba(7, 4, 10, 0.98) 0%, rgba(19, 5, 23, 0.93) 52%, rgba(255, 47, 179, 0.30) 100%),
    url("/assets/elan-hero.png") center / cover no-repeat;
}

.feature-hero {
  min-height: 68vh;
  padding: 118px clamp(20px, 5vw, 56px) 48px;
  background:
    linear-gradient(90deg, rgba(7, 4, 10, 0.98) 0%, rgba(18, 4, 20, 0.92) 48%, rgba(255, 47, 179, 0.32) 100%),
    url("/assets/elan-hero.png") center / cover no-repeat;
}

.feature-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  max-width: 1220px;
  margin: 0 auto;
}

.feature-panel {
  border: 1px solid rgba(255, 47, 179, 0.4);
  background: rgba(0, 0, 0, 0.58);
  padding: 24px;
  backdrop-filter: blur(12px);
  max-width: 660px;
  justify-self: end;
}

.feature-panel p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.press-lead {
  color: #fff !important;
  font-size: clamp(1.3rem, 1.7vw, 1.75rem) !important;
  line-height: 1.18 !important;
  font-weight: 850;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.process-grid div {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  padding: 18px;
  font-weight: 800;
}

.process-grid span {
  display: block;
  color: var(--soft-magenta);
  font-size: 0.84rem;
  font-weight: 950;
  text-transform: uppercase;
}

.process-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 1.35rem;
}

.round-number {
  display: block;
  margin-top: 16px;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.1;
  font-weight: 850;
}

.investor-statement {
  margin-top: 24px;
  border: 1px solid rgba(255, 47, 179, 0.42);
  background: rgba(255, 47, 179, 0.1);
  padding: 22px;
}

.investor-statement strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1.25;
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1220px;
  margin: 0 auto;
}

.scenario-card {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 24px;
}

.scenario-card span {
  color: var(--soft-magenta);
  font-size: 0.86rem;
  font-weight: 950;
}

.scenario-card p {
  color: var(--muted);
  line-height: 1.7;
}

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

.feature-list.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.press-materials {
  margin-top: 28px;
}

.contact-hero {
  min-height: 78vh;
  padding: 130px clamp(20px, 5vw, 56px) 58px;
  background:
    linear-gradient(90deg, rgba(7, 4, 10, 0.98) 0%, rgba(18, 4, 20, 0.92) 52%, rgba(255, 47, 179, 0.30) 100%),
    url("/assets/elan-hero.png") center / cover no-repeat;
}

.contact-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
  align-items: end;
  gap: clamp(28px, 5vw, 64px);
  max-width: 1220px;
  margin: 0 auto;
}

.contact-console {
  border: 1px solid rgba(255, 47, 179, 0.42);
  background: rgba(0, 0, 0, 0.62);
  padding: 26px;
  backdrop-filter: blur(12px);
}

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

.topic-grid button,
.form-footer button {
  cursor: pointer;
}

.topic-grid button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
  padding: 14px;
  text-align: left;
  font: inherit;
  font-weight: 950;
}

.topic-grid button.active,
.topic-grid button:hover {
  border-color: var(--magenta);
  background: var(--magenta);
  color: var(--black);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.form-grid label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 850;
}

.form-grid .wide {
  grid-column: 1 / -1;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 14px;
  font: inherit;
  outline: none;
}

.form-grid textarea {
  resize: vertical;
  line-height: 1.55;
}

.form-grid input:focus,
.form-grid textarea:focus {
  border-color: var(--magenta);
}

.mail-preview {
  margin-top: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  padding: 16px;
}

.mail-preview pre {
  margin: 12px 0 0;
  color: var(--muted);
  white-space: pre-wrap;
  font: 0.9rem/1.55 "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
}

.form-footer p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
  line-height: 1.55;
}

.lab-hero {
  position: relative;
  overflow: hidden;
  padding: 138px clamp(20px, 5vw, 56px) 70px;
  background:
    linear-gradient(90deg, rgba(255, 47, 179, 0.18) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 47, 179, 0.11) 1px, transparent 1px),
    radial-gradient(circle at 72% 28%, rgba(255, 47, 179, 0.28), transparent 34%),
    #050308;
  background-size: 46px 46px, 46px 46px, auto, auto;
}

.lab-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  max-width: 1220px;
  margin: 0 auto;
}

.lab-hero h1 {
  margin-bottom: 26px;
}

.player-card {
  border: 1px solid rgba(255, 47, 179, 0.45);
  background: rgba(0, 0, 0, 0.72);
  padding: 28px;
  box-shadow: 0 0 60px rgba(255, 47, 179, 0.24);
}

.login-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
}

.login-grid div,
.mission-grid strong {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  padding: 20px;
}

.login-grid span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.login-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 1.65rem;
}

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

.detail-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 68px);
  max-width: 1220px;
  margin: 0 auto;
}

.detail-title {
  border-left: 4px solid var(--magenta);
  padding-left: 24px;
}

.detail-title p {
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.75;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1220px;
  margin: 0 auto;
}

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

.detail-card {
  padding: 24px;
}

.detail-card.light {
  border-color: rgba(7, 4, 10, 0.24);
  background: rgba(255, 255, 255, 0.72);
  color: var(--black);
}

.detail-card.light span,
.detail-card.light p {
  color: rgba(7, 4, 10, 0.72);
}

.detail-card span {
  color: var(--soft-magenta);
  font-size: 0.86rem;
  font-weight: 950;
}

.detail-quote {
  margin: 22px 0 0 !important;
  border-left: 2px solid var(--magenta);
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.84) !important;
  font-size: 0.92rem;
  line-height: 1.6 !important;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1220px;
  margin: 0 auto;
  border: 1px solid rgba(255, 47, 179, 0.42);
  background: rgba(255, 47, 179, 0.1);
  padding: 28px;
}

.cta p {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.7;
}

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

.legal-section p {
  max-width: 1220px;
  margin: 0 auto;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  padding: 22px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(20px, 5vw, 56px);
  border-top: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-expanded {
  display: block;
  padding-top: 42px;
  padding-bottom: 42px;
}

.footer-expanded .footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.8fr) minmax(0, 0.9fr);
  gap: 36px;
  max-width: 1220px;
  margin: 0 auto;
}

.footer-expanded .footer-grid > div {
  display: block;
}

.footer-expanded .footer-grid p {
  margin: 0;
  max-width: 330px;
  line-height: 1.65;
}

.footer-expanded .footer-title {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 950;
}

.footer-expanded .footer-label {
  margin-bottom: 12px;
  color: var(--soft-magenta);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.footer-expanded a {
  display: block;
  margin-top: 8px;
}

.campaign-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  border: 1px solid rgba(255, 47, 179, 0.55);
  background: rgba(0, 0, 0, 0.35);
  padding: 12px 14px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
  transition: border-color 160ms ease, background 160ms ease;
}

.campaign-link span,
.campaign-link b {
  color: var(--soft-magenta);
}

.campaign-link:hover {
  border-color: var(--magenta);
  background: rgba(255, 47, 179, 0.14);
}

.brand-bridge {
  padding: 66px clamp(20px, 5vw, 56px);
  border-top: 1px solid rgba(255, 47, 179, 0.28);
  border-bottom: 1px solid rgba(255, 47, 179, 0.28);
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 47, 179, 0.18), transparent 28%),
    #09050d;
}

.brand-bridge-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 68px);
  max-width: 1220px;
  margin: 0 auto;
  align-items: center;
}

.brand-bridge-copy h2 {
  margin-top: 16px;
}

.brand-bridge-copy .actions {
  margin-top: 28px;
}

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

.brand-bridge-grid article {
  min-height: 100%;
  padding: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
}

.brand-bridge-grid article > span {
  color: var(--soft-magenta);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand-bridge-grid h3 {
  margin: 20px 0 0;
  font-size: 1.22rem;
  line-height: 1.25;
}

.brand-bridge-grid p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.poweruser-teaser,
.poweruser-feature-band {
  border-top: 1px solid rgba(255, 47, 179, 0.28);
  border-bottom: 1px solid rgba(255, 47, 179, 0.28);
  padding: 66px clamp(20px, 5vw, 56px);
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 47, 179, 0.18), transparent 28%),
    #09050d;
}

.poweruser-teaser-inner,
.poweruser-hero-inner,
.poweruser-knowledge-inner,
.poweruser-autopilot-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 68px);
  max-width: 1220px;
  margin: 0 auto;
  align-items: center;
}

.poweruser-job-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.poweruser-job-grid article {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
  padding: 20px;
}

.poweruser-job-grid article > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.poweruser-job-grid article > div strong {
  color: #9cf1b8;
  white-space: nowrap;
}

.poweruser-job-grid article > p {
  min-height: 48px;
  margin: 20px 0 0;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.35;
}

.poweruser-job-grid article > i {
  display: block;
  height: 6px;
  margin-top: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.poweruser-job-grid article > i::before {
  display: block;
  width: var(--progress);
  height: 100%;
  background: var(--magenta);
  content: "";
}

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

.poweruser-explainer-grid article {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
  padding: 22px;
}

.poweruser-explainer-grid article > span {
  color: var(--soft-magenta);
  font-size: 0.85rem;
  font-weight: 950;
}

.poweruser-explainer-grid h3 {
  margin: 18px 0 0;
  font-size: 1.35rem;
}

.poweruser-explainer-grid p {
  margin: 15px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.poweruser-hero {
  position: relative;
  overflow: hidden;
  padding: 138px clamp(20px, 5vw, 56px) 70px;
  border-bottom: 1px solid rgba(255, 47, 179, 0.32);
  background:
    linear-gradient(rgba(255, 47, 179, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 47, 179, 0.11) 1px, transparent 1px),
    radial-gradient(circle at 78% 20%, rgba(255, 47, 179, 0.26), transparent 24%),
    radial-gradient(circle at 18% 74%, rgba(104, 78, 255, 0.18), transparent 27%),
    #09050d;
  background-size: 46px 46px, 46px 46px, auto, auto, auto;
}

.poweruser-hero h1 {
  margin-top: 16px;
  font-size: clamp(1.95rem, 3.6vw, 3.45rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.poweruser-hero-jobs article {
  background: rgba(7, 4, 10, 0.72);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.campaign-chip {
  display: inline-block;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 47, 179, 0.55);
  background: rgba(255, 47, 179, 0.12);
  padding: 9px 12px;
  color: var(--soft-magenta);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.poweruser-section {
  padding: 66px clamp(20px, 5vw, 56px);
}

.poweruser-section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
}

.poweruser-section-heading > p:last-child {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.poweruser-workspace-grid {
  max-width: 1220px;
  margin: 0 auto;
}

.poweruser-workspace-grid h3 {
  font-size: 1.5rem;
  line-height: 1.2;
}

.poweruser-knowledge-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 66px clamp(20px, 5vw, 56px);
  background: #120614;
}

.poweruser-workbench {
  border: 1px solid rgba(255, 47, 179, 0.42);
  background: rgba(0, 0, 0, 0.32);
  padding: 24px;
}

.poweruser-workbench > p {
  margin: 0;
  color: var(--soft-magenta);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.poweruser-workbench > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.poweruser-workbench article {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  padding: 16px;
}

.poweruser-workbench span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.poweruser-workbench strong {
  display: block;
  margin-top: 10px;
  color: #fff;
  line-height: 1.3;
}

.poweruser-autopilot {
  padding: 66px clamp(20px, 5vw, 56px);
  border-top: 1px solid rgba(255, 47, 179, 0.34);
  border-bottom: 1px solid rgba(255, 47, 179, 0.34);
  background: var(--magenta);
  color: var(--black);
}

.poweruser-autopilot-inner {
  align-items: start;
}

.poweruser-autopilot-inner > div > p:not(.label-dark) {
  margin: 20px 0 0;
  color: rgba(7, 4, 10, 0.76);
  font-size: 1.08rem;
  line-height: 1.7;
}

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

.poweruser-autopilot-grid article {
  border: 1px solid rgba(7, 4, 10, 0.24);
  background: rgba(255, 255, 255, 0.72);
  padding: 20px;
}

.poweruser-autopilot-grid span {
  font-size: 0.86rem;
  font-weight: 950;
}

.poweruser-autopilot-grid h3 {
  margin: 18px 0 0;
  font-size: 1.3rem;
}

.poweruser-autopilot-grid p {
  margin: 14px 0 0;
  color: rgba(7, 4, 10, 0.72);
  line-height: 1.6;
}

.poweruser-safety-note {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  max-width: 1220px;
  margin: 28px auto 0;
  border: 1px solid rgba(7, 4, 10, 0.28);
  background: var(--black);
  padding: 18px 20px;
  color: #fff;
  line-height: 1.55;
}

.poweruser-safety-note span {
  max-width: 300px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .phone-assistant-trigger {
    width: 44px;
    padding: 7px;
    justify-content: center;
  }

  .phone-assistant-copy {
    display: none;
  }

  .nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero,
  .feature-hero-inner,
  .contact-hero-inner,
  .section-grid,
  .principle-inner,
  .detail-hero-inner,
  .lab-hero-inner,
  .security-hero-inner,
  .security-feature,
  .mcp-home-panel {
    grid-template-columns: 1fr;
  }

  .card-grid.three,
  .card-grid.five,
  .brand-bridge-grid,
  .video-grid,
  .architecture-flow,
  .detail-grid,
  .detail-grid.two,
  .scenario-grid,
  .feature-list,
  .feature-list.four,
  .investor-signal-grid,
  .mission-grid {
    grid-template-columns: 1fr;
  }

  .poweruser-teaser-inner,
  .brand-bridge-inner,
  .poweruser-hero-inner,
  .poweruser-knowledge-inner,
  .poweruser-autopilot-inner,
  .poweruser-explainer-grid,
  .poweruser-autopilot-grid {
    grid-template-columns: 1fr;
  }

  .partner-panel {
    max-width: 680px;
  }

  .architecture-card:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: absolute;
  }

  .header-action {
    display: none;
  }

  h1 {
    font-size: clamp(1.75rem, 7vw, 2.35rem);
    line-height: 1.14;
  }

  .partner-grid,
  .demo-grid,
  .action-grid,
  .process-grid,
  .topic-grid,
  .form-grid,
  .login-grid {
    grid-template-columns: 1fr;
  }

  .poweruser-job-grid,
  .poweruser-workbench > div {
    grid-template-columns: 1fr;
  }

  .security-hero,
  .industry-hero {
    padding-top: 112px;
  }

  .section-heading,
  .cta,
  .form-footer,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .poweruser-safety-note {
    flex-direction: column;
  }

  .footer-expanded .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* Ruhige, einheitliche Hierarchie: Spezialbereiche dürfen Überschriften nicht wieder aufblasen. */
main h1 {
  font-size: clamp(1.85rem, 2.9vw, 2.95rem) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.03em !important;
}

main h2 {
  font-size: clamp(1.45rem, 2.05vw, 2.1rem) !important;
  line-height: 1.18 !important;
  letter-spacing: -0.02em !important;
}

main h3 {
  font-size: clamp(1.2rem, 1.5vw, 1.45rem) !important;
  line-height: 1.22 !important;
}

main .principle-line,
main .press-lead,
main .investor-statement strong {
  font-size: clamp(1.3rem, 1.9vw, 1.9rem) !important;
  line-height: 1.2 !important;
}

@media (max-width: 640px) {
  main h1 {
    font-size: clamp(1.75rem, 7vw, 2.25rem) !important;
  }
}
