:root {
  --xalpes-red: #cc0000;
  --xalpes-red-deep: #8f0000;
  --xalpes-red-soft: rgba(204, 0, 0, 0.18);
  --white: #ffffff;
  --ink: #08090c;
  --charcoal: #0d0f14;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --line: rgba(255, 255, 255, 0.16);
  --muted: rgba(255, 255, 255, 0.72);
  --muted-strong: rgba(255, 255, 255, 0.88);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max-width: 1180px;
  --header-height: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at top left, rgba(204, 0, 0, 0.34), transparent 34rem),
    radial-gradient(circle at 90% 15%, rgba(255, 255, 255, 0.09), transparent 24rem),
    linear-gradient(145deg, #06070a 0%, #0e1118 46%, #07080a 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.95), rgba(0,0,0,0.25));
}

body::after {
  content: "";
  position: fixed;
  inset: auto -20% -45% -20%;
  height: 70vh;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(204, 0, 0, 0.18), transparent 63%);
}

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

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

button, input, textarea {
  font: inherit;
}

::selection {
  background: var(--xalpes-red);
  color: var(--white);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--white);
  background: var(--xalpes-red);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  border-bottom: 1px solid #cc0000;
  background: rgba(7, 8, 12, 0.78);
  backdrop-filter: blur(20px);
}

.header-shell {
  width: min(var(--max-width), calc(100% - 40px));
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 142px;
  outline: none;
}

.brand img {
  width: clamp(220px, 22vw, 320px);
  height: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-social {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-social {
  margin-right: 20px;
}

.header-social a {
  color: #cc0000;
  font-size: 1.6rem;
  transition: opacity 180ms ease;
}

.header-social a:hover {
  opacity: 0.7;
}

.top-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  color: rgba(255,255,255,0.82);
  background: rgba(255,255,255,0.055);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.top-link:hover,
.top-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(204,0,0,0.62);
  background: rgba(204,0,0,0.2);
}

.menu-toggle {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  color: var(--white);
  background: rgba(255,255,255,0.06);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(204,0,0,0.74);
  background: rgba(204,0,0,0.18);
}

.menu-toggle-lines {
  width: 24px;
  display: grid;
  gap: 5px;
}

.menu-toggle-lines span {
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transform-origin: center;
  transition: transform 200ms ease, opacity 200ms ease;
}

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

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

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

.menu-scrim {
  position: fixed;
  inset: 0;
  z-index: 140;
  background: rgba(0,0,0,0.48);
  backdrop-filter: blur(6px);
}

.menu-drawer {
  position: fixed;
  z-index: 150;
  top: 18px;
  right: 18px;
  width: min(430px, calc(100% - 36px));
  max-height: calc(100vh - 36px);
  overflow-y: auto;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(204,0,0,0.16), transparent 32%),
    rgba(10, 12, 17, 0.96);
  box-shadow: var(--shadow);
  padding: 22px;
}

.menu-drawer[hidden],
.menu-scrim[hidden] {
  display: none;
}

.menu-kicker {
  margin: 0 0 18px;
  color: #cc0000;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.menu-list a {
  display: block;
  min-height: auto;
  padding: 16px 0;
  border-bottom: 1px solid #cc0000;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: 0.80rem;
  font-weight: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.menu-list a::after {
  content: none;
}

.menu-list a:hover,
.menu-list a:focus-visible {
  color: #cc0000;
  background: transparent;
  transform: none;
  border-color: rgba(204,0,0,0.18);
}

.language-panel {
  margin-top: 40px;
  margin-bottom: 18px;
  color: #cc0000;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.language-panel p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.language-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.language-switcher button {
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255,255,255,0.06);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease;
  font-size: 0.80rem;
  text-transform: uppercase;
}

.language-switcher button:hover,
.language-switcher button:focus-visible,
.language-switcher button.is-active {
  border-color: rgba(204,0,0,0.7);
  background: rgba(204,0,0,0.24);
}

main {
  position: relative;
}

.section {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 50px 0;
}

.hero {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  min-height: auto;
  display: grid;
  grid-template-columns: 1.6fr 0.4fr;
  align-items: center;
  gap: 48px;
  padding: 100px 0 30px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #cc0000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.92rem;
  font-weight: 200;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: var(--xalpes-red);
}

.hero .eyebrow {
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.65;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

h1 {
  font-size: 5.5rem;
  max-width: 940px;
}

h1 .accent,
h2 .accent,
.policy-title .accent {
  color: var(--xalpes-red);
}

.section-heading {
  display: grid;
  gap: 16px;
  max-width: 810px;
  margin-bottom: 36px;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
}

.lead,
.section-heading p,
.policy-lead {
  margin-top: 40px;
  color: #15171c;
  font-weight: 200;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  color: var(--white);
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.btn-primary {
  border-color: var(--xalpes-red);
  background: linear-gradient(135deg, var(--xalpes-red), var(--xalpes-red-deep));
  box-shadow: 0 18px 42px rgba(204,0,0,0.26);
}

.btn-secondary {
  background: rgba(255,255,255,0.065);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.38);
  background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.hero-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  z-index: -1;
}

.hero-orbit {
  position: absolute;
  inset: 5%;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50%;
  animation: rotate 32s linear infinite;
}

.hero-orbit:nth-child(2) {
  inset: 16%;
  border-color: rgba(204,0,0,0.28);
  animation-duration: 22s;
  animation-direction: reverse;
}

.hero-orbit::before,
.hero-orbit::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--xalpes-red);
  box-shadow: 0 0 24px rgba(204,0,0,0.7);
}

.hero-orbit::before {
  top: 12%;
  left: 14%;
}

.hero-orbit::after {
  bottom: 8%;
  right: 22%;
}

.lab-core {
  position: relative;
  z-index: 1;
  width: min(470px, 100%);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.045)),
    linear-gradient(135deg, rgba(204,0,0,0.22), transparent 50%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.lab-core-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.13);
}

.status-dots {
  display: flex;
  gap: 7px;
}

.status-dots span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255,255,255,0.32);
}

.status-dots span:first-child {
  background: var(--xalpes-red);
}

.lab-core-label {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.lab-core-body {
  padding: 26px;
}

.scan-window {
  min-height: 220px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 24px;
  background:
    linear-gradient(90deg, transparent, rgba(204,0,0,0.20), transparent),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 12px),
    radial-gradient(circle at 50% 45%, rgba(204,0,0,0.28), transparent 43%),
    rgba(0,0,0,0.22);
  position: relative;
  overflow: hidden;
}

.scan-window::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 38%;
  height: 2px;
  background: var(--xalpes-red);
  box-shadow: 0 0 30px rgba(204,0,0,0.9);
  animation: scan 3s ease-in-out infinite;
}

.scan-window::after {
  content: "NBC-1";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.88);
  font-size: clamp(3.4rem, 7vw, 5.8rem);
  font-weight: 900;
  letter-spacing: -0.08em;
}

.lab-readouts {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.lab-readouts li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 16px;
  background: rgba(255,255,255,0.045);
  color: var(--muted-strong);
}

.lab-readouts strong {
  color: var(--white);
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.card {
  position: relative;
  overflow: hidden;
  min-height: 235px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: 0 14px 42px rgba(0,0,0,0.18);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(204,0,0,0.22), transparent 44%);
  opacity: 0;
  transition: opacity 200ms ease;
}

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

.card > * {
  position: relative;
}

.card-number,
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  margin-bottom: 26px;
  border: 1px solid rgba(204,0,0,0.52);
  border-radius: 14px;
  color: var(--white);
  background: rgba(204,0,0,0.18);
  font-weight: 500;
}

.card h3 {
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.card p,
.card li {
  color: var(--muted);
  line-height: 1.62;
}

.card p {
  margin: 0;
}

.feature-panel {
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(204,0,0,0.24), transparent 42%),
    rgba(255,255,255,0.065);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-panel-inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0;
}

.feature-media {
  min-height: 460px;
  padding: 34px;
  display: grid;
  align-content: end;
  background:
    linear-gradient(180deg, transparent, rgba(0,0,0,0.42)),
    radial-gradient(circle at 50% 34%, rgba(204,0,0,0.32), transparent 39%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 16px);
  border-right: 1px solid rgba(255,255,255,0.12);
}

.product-code {
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 0.85;
  font-weight: 950;
  letter-spacing: -0.09em;
  color: var(--white);
  text-shadow: 0 16px 46px rgba(204,0,0,0.38);
}

.product-tag {
  margin: 18px 0 0;
  color: var(--muted);
  max-width: 410px;
  line-height: 1.55;
}

.feature-content {
  padding: clamp(30px, 5vw, 54px);
}

.feature-content h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  margin-bottom: 18px;
}

.feature-content p {
  color: var(--muted);
  line-height: 1.68;
}

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

.check-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  color: var(--muted-strong);
  line-height: 1.55;
}

.check-list li::before {
  content: "";
  width: 11px;
  height: 11px;
  margin-top: 7px;
  border-radius: 4px;
  background: var(--xalpes-red);
  box-shadow: 0 0 22px rgba(204,0,0,0.64);
}

.warning-note {
  margin-top: 24px;
  padding: 16px 18px;
  border: 1px solid rgba(204,0,0,0.38);
  border-radius: 18px;
  background: rgba(204,0,0,0.12);
  color: rgba(255,255,255,0.82);
  line-height: 1.58;
}

.timeline {
  display: grid;
  gap: 14px;
  counter-reset: process;
}

.timeline-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  align-items: stretch;
}

.timeline-item::before {
  counter-increment: process;
  content: "0" counter(process);
  display: grid;
  place-items: center;
  min-height: 92px;
  border: 1px solid rgba(204,0,0,0.45);
  border-radius: 22px;
  background: rgba(204,0,0,0.15);
  color: var(--white);
  font-weight: 900;
}

.timeline-card {
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 22px;
  background: rgba(255,255,255,0.06);
}

.timeline-card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.timeline-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(204,0,0,0.24), transparent 34%),
    rgba(255,255,255,0.06);
  box-shadow: var(--shadow);
  padding: clamp(24px, 4vw, 44px);
}

.contact-copy h2 {
  font-size: clamp(2.1rem, 5vw, 4.6rem);
  margin-bottom: 18px;
}

.contact-copy p {
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  font-weight: 200;
  line-height: 1.65;
  color: #15171c;
  margin-top: 0px;
}

#contact .eyebrow {
  color: #cc0000;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  font-weight: 200;
}

.contact-card {
  margin-top: 24px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 22px;
  background: rgba(0,0,0,0.18);
}

.contact-card strong {
  display: block;
  margin-bottom: 8px;
}

.contact-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.4rem;
  font-weight: 200;
  color: #15171c;
}

.contact-card a {
  color: var(--white);
  font-weight: 400;
  text-decoration: underline;
  text-decoration-color: rgba(204,0,0,0.8);
  text-underline-offset: 5px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form .btn {
  font-size: 1.1rem;
  font-weight: 300;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--muted-strong);
  font-size: 0.95rem;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  color: var(--white);
  background: rgba(0,0,0,0.26);
  padding: 14px 15px;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.field input:focus,
.field textarea:focus {
  border-color: rgba(204,0,0,0.75);
  box-shadow: 0 0 0 4px rgba(204,0,0,0.16);
  background: rgba(0,0,0,0.34);
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.site-footer {
  margin-top: 44px;
  border-top: 1px solid rgba(255,255,255,0.12);
  background:
    linear-gradient(180deg, rgba(204,0,0,0.1), transparent 42%),
    rgba(0,0,0,0.28);
}

.footer-shell {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 44px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.8fr 0.72fr 1.25fr;
  gap: 28px;
  align-items: start;
}

.footer-section h2 {
  margin: 0 0 14px;
  font-size: 1rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--white);
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px;
}

.footer-section a,
.footer-section p,
.footer-section address {
  color: var(--muted);
  line-height: 1.58;
  font-style: normal;
}

.footer-section a:hover,
.footer-section a:focus-visible {
  color: #cc0000;
  text-decoration: underline;
  text-decoration-color: #cc0000;
  text-underline-offset: 4px;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255,255,255,0.62);
  font-size: 0.92rem;
}

.footer-bottom p {
  margin: 0;
}

.policy-main {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0 96px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--muted-strong);
}

.back-link:hover,
.back-link:focus-visible {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--xalpes-red);
  text-underline-offset: 4px;
}

.policy-title {
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  margin-bottom: 20px;
}

.policy-card {
  margin-top: 34px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.07);
  box-shadow: var(--shadow);
}

.policy-card h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin: 28px 0 12px;
}

.policy-card h2:first-child {
  margin-top: 0;
}

.policy-card p,
.policy-card li,
.policy-card address {
  color: var(--muted);
  line-height: 1.68;
  font-style: normal;
}

.policy-card ul {
  padding-left: 1.2rem;
}

.notice-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding: 16px 18px;
  border: 1px solid rgba(204,0,0,0.42);
  border-radius: 18px;
  background: rgba(204,0,0,0.14);
  color: var(--muted-strong);
  line-height: 1.58;
}

.notice-strip::before {
  content: "!";
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  height: 28px;
  border-radius: 999px;
  background: var(--xalpes-red);
  color: var(--white);
  font-weight: 900;
}

@keyframes rotate {
  to { transform: rotate(1turn); }
}

@keyframes scan {
  0%, 100% { transform: translateY(-66px); opacity: 0.35; }
  50% { transform: translateY(78px); opacity: 1; }
}

@media (max-width: 980px) {
  .hero,
  .feature-panel-inner,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 50px;
    gap: 30px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .grid-3,
  .grid-2,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-media {
    min-height: 340px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 76px;
  }

  .header-shell,
  .section,
  .hero,
  .footer-shell,
  .policy-main {
    width: min(100% - 28px, var(--max-width));
  }

  .top-link {
    display: none;
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .brand img {
    width: 180px;
  }

  .hero {
    min-height: auto;
    padding: 44px 0 50px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .lab-core-body {
    padding: 18px;
  }

  .section {
    padding: 68px 0;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

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

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .timeline-item::before {
    min-height: 56px;
    width: 76px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 440px) {
  .hero-facts li {
    width: 100%;
  }

  .lab-readouts li {
    display: grid;
  }

  .menu-drawer {
    border-radius: 24px;
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* XALPES white-base theme override */
:root {
  --xalpes-red: #cc0000;
  --xalpes-red-deep: #970000;
  --xalpes-red-soft: #fff1f1;
  --xalpes-red-softer: #fff8f8;
  --white: #ffffff;
  --ink: #15171c;
  --charcoal: #2c3038;
  --panel: #ffffff;
  --panel-strong: #fffafa;
  --line: #eadede;
  --muted: #5e6571;
  --muted-strong: #3a404a;
  --shadow: 0 24px 70px rgba(112, 0, 0, 0.12);
}

body {
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 4%, rgba(204, 0, 0, 0.10), transparent 28rem),
    radial-gradient(circle at 92% 0%, rgba(204, 0, 0, 0.07), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #fffafa 48%, #ffffff 100%);
}

body::before {
  background-image:
    linear-gradient(rgba(204, 0, 0, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(204, 0, 0, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0.06));
}

body::after {
  inset: 120px -180px auto auto;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(204, 0, 0, 0.12);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204, 0, 0, 0.055), transparent 62%);
}

.site-header {
  border-bottom: 1px solid #cc0000;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 28px rgba(112, 0, 0, 0.06);
}

.top-link,
.menu-toggle {
  border-color: rgba(204,0,0,0.22);
  color: var(--xalpes-red);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(112, 0, 0, 0.08);
}

.top-link:hover,
.top-link:focus-visible,
.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: var(--xalpes-red);
  background: var(--xalpes-red);
  color: var(--white);
}

.menu-scrim {
  background: rgba(21, 23, 28, 0.20);
}

.menu-drawer {
  border-color: rgba(204,0,0,0.18);
  background: linear-gradient(180deg, rgba(204,0,0,0.08), transparent 36%), rgba(255,255,255,0.98);
}

.menu-kicker,
.back-link {
  color: #cc0000;
}

.menu-list a {
  display: block;
  min-height: auto;
  padding: 16px 0;
  border-bottom: 1px solid #cc0000;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: 0.80rem;
  font-weight: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.menu-list a::after {
  content: none;
}

.menu-list a:hover,
.menu-list a:focus-visible {
  background: transparent;
  border-color: rgba(204,0,0,0.35);
  color: var(--xalpes-red);
}

.language-panel {
  margin-top: 40px;
  margin-bottom: 18px;
  color: #cc0000;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.language-switcher button {
  border-color: #dfbfbf;
  color: var(--ink);
  background: var(--white);
  font-size: 0.80rem;
  text-transform: uppercase;
}

.language-switcher button:hover,
.language-switcher button:focus-visible,
.language-switcher button.is-active {
  border-color: var(--xalpes-red);
  background: var(--xalpes-red);
  color: var(--white);
}

h1,
h2,
h3,
.section-heading h2,
.feature-content h2,
.contact-copy h2,
.policy-title,
.card h3,
.timeline-card h3,
.work-card h3 {
  color: var(--ink);
}

.lead,
.section-heading p,
.policy-lead,
.card p,
.card li,
.feature-content p,
.timeline-card p,
.contact-copy p,
.form-status,
.policy-card p,
.policy-card li,
.policy-card address,
.footer-section a,
.footer-section p,
.footer-section address {
  color: #15171c;
}

.hero .lead {
  color: #15171c;
  font-weight: 200;
}

.btn {
  border-color: rgba(204,0,0,0.25);
  color: var(--xalpes-red);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(112, 0, 0, 0.08);
}

.btn-primary {
  border-color: var(--xalpes-red);
  color: var(--white);
  background: linear-gradient(135deg, var(--xalpes-red), var(--xalpes-red-deep));
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--xalpes-red-soft);
}

.hero-facts li,
.lab-readouts li,
.timeline-card,
.card,
.policy-card {
  border-color: var(--line);
  background: var(--white);
  color: var(--muted-strong);
  box-shadow: 0 14px 34px rgba(112, 0, 0, 0.08);
}

.hero-orbit {
  border-color: rgba(204,0,0,0.16);
}

.hero-orbit:nth-child(2) {
  border-color: rgba(204,0,0,0.26);
}

.lab-core {
  border-color: rgba(204,0,0,0.20);
  background: linear-gradient(180deg, #ffffff, #fff9f9), linear-gradient(135deg, rgba(204,0,0,0.06), transparent 50%);
}

.lab-core::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 8px;
  background: linear-gradient(90deg, var(--xalpes-red), transparent);
}

.lab-core-top {
  border-bottom-color: var(--line);
}

.status-dots span {
  background: #e2d6d6;
}

.status-dots span:first-child,
.card-number,
.card-icon,
.timeline-item::before {
  background: var(--xalpes-red);
  color: var(--white);
}

.lab-readouts strong {
  color: var(--ink);
}

.scan-window {
  border-color: rgba(204,0,0,0.18);
  background:
    linear-gradient(90deg, transparent, rgba(204,0,0,0.14), transparent),
    repeating-linear-gradient(0deg, rgba(204,0,0,0.045) 0 1px, transparent 1px 12px),
    radial-gradient(circle at 50% 45%, rgba(204,0,0,0.13), transparent 43%),
    #ffffff;
}

.scan-window::after {
  color: var(--xalpes-red);
}

.card::before {
  background: radial-gradient(circle at top right, rgba(204,0,0,0.12), transparent 44%);
  opacity: 0.7;
}

.feature-panel {
  border-color: rgba(204,0,0,0.18);
  background: var(--white);
}

.feature-media {
  background:
    linear-gradient(180deg, rgba(204,0,0,0.18), rgba(151,0,0,0.96)),
    radial-gradient(circle at 50% 34%, rgba(255,255,255,0.30), transparent 39%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.12) 0 1px, transparent 1px 16px),
    var(--xalpes-red);
}

.product-code {
  color: var(--white);
}

.product-tag {
  color: rgba(255,255,255,0.88);
}

.feature-content {
  background: var(--white);
}

.check-list li,
.warning-note,
.notice-strip {
  color: var(--muted-strong);
}

.warning-note,
.notice-strip,
.contact-card {
  border-color: rgba(204,0,0,0.32);
  background: var(--xalpes-red-soft);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.work-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(112, 0, 0, 0.08);
}

.work-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 8px;
  background: var(--xalpes-red);
}

.work-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--white);
  background: var(--xalpes-red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.work-card h3 {
  margin-top: 28px;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
}

.work-card p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.work-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.work-meta span {
  padding: 8px 10px;
  border: 1px solid #dfbfbf;
  border-radius: 999px;
  color: var(--muted-strong);
  background: var(--xalpes-red-softer);
  font-size: 0.9rem;
}

.contact-panel {
  border-color: rgba(204,0,0,0.18);
  background: radial-gradient(circle at top left, rgba(204,0,0,0.10), transparent 34%), var(--white);
}

.contact-card a,
.policy-card a {
  color: var(--xalpes-red);
}

.field label {
  color: #15171c;
  font-size: 1.1rem;
  font-weight: 500;
}

.field input,
.field textarea {
  border-color: #dfbfbf;
  color: var(--ink);
  background: var(--white);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #15171c;
  font-size: 1rem;
  font-weight: 200;
}

.field input:focus,
.field textarea:focus {
  background: #fffdfd;
}

.site-footer {
  border-top: 2px solid var(--xalpes-red);
  background: linear-gradient(180deg, var(--xalpes-red-softer), #ffffff 64%);
}

.footer-section h2 {
  color: #cc0000;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.65;
  font-weight: 200;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-section strong {
  color: var(--ink);
}

.footer-bottom {
  border-top-color: var(--line);
  color: var(--muted);
}

.footer-bottom p {
  color: #cc0000;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.65;
}

@media (max-width: 980px) {
  .work-grid {
    grid-template-columns: 1fr;
  }
}

.section-heading .eyebrow {
  color: #cc0000;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.65;
}

.policy-main .eyebrow {
    font-size: clamp(1.05rem, 1.6vw, 1.28rem) !important;
    line-height: 1.65 !important;
}

.site-footer .footer-section a,
.site-footer .footer-section p,
.site-footer .footer-section address {
  color: #15171c;
  font-size: 0.9rem;
  font-weight: 200;
  line-height: 1.65;
}

.policy-card p {
    font-size: 0.9rem;
    font-weight: 200;
    line-height: 1.65;
    color: #15171c;
}

@media (max-width: 720px) {
  .hero-visual {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 34px 0 38px;
    gap: 0;
  }

  h1 {
    font-size: clamp(2.6rem, 12vw, 3.8rem);
  }
}