@font-face {
  font-family: "Okeanos Sans";
  src: url("fonts/dinish/DINish-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Okeanos Sans";
  src: url("fonts/dinish/DINish-Italic.ttf") format("truetype");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Okeanos Sans";
  src: url("fonts/dinish/DINish-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Okeanos Sans";
  src: url("fonts/dinish/DINish-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Okeanos Sans";
  src: url("fonts/dinish/DINish-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Okeanos Display";
  src: url("fonts/dinish/DINish-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Okeanos Display";
  src: url("fonts/dinish/DINish-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Okeanos Display";
  src: url("fonts/dinish/DINish-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Okeanos Display";
  src: url("fonts/dinish/DINish-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --font-sans: "Okeanos Sans", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Okeanos Display", "Okeanos Sans", "Helvetica Neue", Arial, sans-serif;
  --navy: #1f2e44;
  --ocean: #2f4c6a;
  --foam: #f7f7f4;
  --mist: #edf1f5;
  --accent: #6cc3c0;
  --accent-strong: #2c9f98;
  --ink: #0f172a;
  --page-gradient: linear-gradient(160deg, #f8f9fb 0%, #eef2f6 45%, #f6f8fb 100%);
  --page-glow: radial-gradient(circle at 12% 12%, rgba(44, 159, 152, 0.08), transparent 60%);
  --hero-glow: rgba(108, 195, 192, 0.18);
  --hero-angle: 120deg;
  --hero-start: #1d2e45;
  --hero-mid: #233a55;
  --hero-end: #2a4b64;
  --product-accent: #5abdb7;
  --surface: #ffffff;
  --surface-border: rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 10px 24px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--page-gradient);
  min-height: 100vh;
  line-height: 1.6;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.002em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img,
svg {
  vertical-align: middle;
}

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

button {
  cursor: pointer;
}

a {
  color: inherit;
}

.container,
.container-fluid {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}

.container {
  max-width: 1320px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -0.75rem;
  margin-left: -0.75rem;
}

.row > * {
  width: 100%;
  max-width: 100%;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.g-4 {
  row-gap: 1.5rem;
}

.d-flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.align-items-center {
  align-items: center;
}

.justify-content-between {
  justify-content: space-between;
}

.gap-2 {
  gap: 0.5rem;
}

.ms-auto {
  margin-left: auto;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.py-4 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.pb-5 {
  padding-bottom: 3rem;
}

.text-muted {
  color: rgba(226, 255, 248, 0.62) !important;
}

.d-none {
  display: none !important;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  padding: 0.375rem 0.75rem;
  background: transparent;
  color: inherit;
  text-decoration: none;
  line-height: 1.5;
}

.btn-sm {
  min-height: 0;
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}

.btn-outline-light {
  border-color: rgba(248, 249, 250, 0.72);
  color: #f8f9fa;
}

.btn-light {
  background: #f8f9fa;
  border-color: #f8f9fa;
  color: #0b1f27;
}

.form-control,
.form-select {
  display: block;
  width: 100%;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(123, 243, 213, 0.35);
  border-radius: 0.5rem;
  appearance: none;
}

textarea.form-control {
  resize: vertical;
}

.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}

.navbar {
  display: flex;
  align-items: center;
  min-height: 76px;
}

.navbar .nav-shell {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.navbar-toggler {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 42px;
  border: 1px solid rgba(230, 255, 250, 0.25);
  border-radius: 8px;
  background: transparent;
}

.navbar-toggler-icon {
  position: relative;
  display: block;
  width: 24px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: rgba(230, 255, 250, 0.82);
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: rgba(230, 255, 250, 0.82);
}

.navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler-icon::after {
  top: 8px;
}

.navbar-collapse {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  justify-content: flex-end;
  min-width: 0;
}

.navbar-nav {
  display: flex;
  flex-direction: row;
  gap: 0.8rem;
  padding-left: 0;
  margin: 0 0 0 auto;
  list-style: none;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.nav-link {
  display: block;
  padding: 0.5rem 0;
  text-decoration: none;
}

@media (min-width: 768px) {
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }

  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .flex-md-row {
    flex-direction: row;
  }
}

@media (min-width: 992px) {
  .ms-lg-3 {
    margin-left: 1rem;
  }

  .mb-lg-0 {
    margin-bottom: 0;
  }
}

@media (min-width: 1200px) {
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
}

@media (max-width: 991.98px) {
  .navbar .nav-shell {
    flex-wrap: wrap;
  }

  .navbar-toggler {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .navbar-collapse {
    display: none;
    flex: 0 0 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding: 0.75rem 0 0.9rem;
  }

  .navbar-collapse.show {
    display: flex;
  }

  .navbar-nav {
    flex-direction: column;
    gap: 0.2rem;
  }

  .ms-auto {
    margin-left: 0;
  }
}

.lang {
  display: none;
}

.lang.lang-de {
  display: block;
}

span.lang.lang-de {
  display: inline;
}

text.lang.lang-de {
  display: inline;
}

body.show-en .lang.lang-de {
  display: none;
}

body.show-en .lang.lang-en {
  display: block;
}

body.show-en span.lang.lang-en {
  display: inline;
}

body.show-en text.lang.lang-en {
  display: inline;
}

.pulse-nav {
  background: rgba(4, 16, 25, 0.72);
  border-bottom: 1px solid rgba(113, 239, 206, 0.22);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.pulse-nav .nav-shell {
  justify-content: space-between;
  max-width: min(1760px, 100%);
}

.pulse-nav .navbar-brand {
  flex: 0 0 auto;
}

.pulse-nav .navbar-collapse {
  flex: 1 1 auto;
}

.pulse-nav .nav-link {
  color: rgba(230, 255, 250, 0.8);
}

.pulse-nav .nav-link:hover,
.pulse-nav .nav-link:focus-visible,
.pulse-nav .nav-link.active {
  color: #c6ffe4;
}

.pulse-brand-badge {
  height: 56px;
  width: auto;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.pulse-hero {
  min-height: auto;
  display: flex;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  padding: 7rem 0 3rem;
}

.pulse-bg-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  pointer-events: none;
}

.pulse-bg-glow-a {
  width: 620px;
  height: 620px;
  top: -260px;
  left: -160px;
  background: radial-gradient(circle, rgba(18, 220, 196, 0.26), transparent 68%);
  animation: pulseGlowShiftA 9s ease-in-out infinite alternate;
}

.pulse-bg-glow-b {
  width: 540px;
  height: 540px;
  right: -140px;
  bottom: -220px;
  background: radial-gradient(circle, rgba(168, 255, 125, 0.24), transparent 68%);
  animation: pulseGlowShiftB 10s ease-in-out infinite alternate;
}

.pulse-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 560px);
  gap: 2.2rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.pulse-copy {
  max-width: 700px;
}

.pulse-kicker {
  display: inline-flex;
  padding: 0.42rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(139, 255, 214, 0.35);
  background: rgba(8, 42, 48, 0.58);
  color: #c9ffeb;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pulse-copy h1 {
  font-family: "Okeanos Display", "Okeanos Sans", "Helvetica Neue", Arial, sans-serif;
  margin: 1rem 0 0.8rem;
  font-size: clamp(2.7rem, 7vw, 5.3rem);
  line-height: 0.93;
  letter-spacing: -0.02em;
  color: #e8fff4;
}

.pulse-copy .lead {
  color: rgba(220, 255, 245, 0.88);
  max-width: 50ch;
  font-size: 1.22rem;
  line-height: 1.45;
  text-wrap: pretty;
  hyphens: auto;
}

.pulse-countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1.3rem;
}

.pulse-count-item {
  padding: 0.65rem 0.5rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(110, 244, 201, 0.28);
  background: linear-gradient(165deg, rgba(8, 35, 47, 0.78), rgba(6, 26, 37, 0.58));
}

.pulse-count-value {
  display: block;
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: #9afda2;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.pulse-count-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(220, 255, 248, 0.8);
}

.pulse-release-note {
  margin: 0.7rem 0 0;
  color: #b5f8dd;
  font-size: 0.95rem;
}

.pulse-ifat-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  padding: 0.45rem 0.85rem 0.45rem 0.45rem;
  border: 1px solid rgba(139, 255, 214, 0.48);
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(12, 54, 60, 0.86), rgba(7, 28, 38, 0.78));
  color: #dffef3;
  box-shadow: 0 14px 28px rgba(2, 8, 16, 0.3);
}

.pulse-ifat-badge:hover,
.pulse-ifat-badge:focus-visible {
  border-color: rgba(141, 255, 177, 0.76);
  color: #ffffff;
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(108, 252, 156, 0.16), 0 18px 32px rgba(2, 8, 16, 0.36);
}

.pulse-ifat-badge__label {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #1ceeb8, #75fa8d);
  color: #06271e;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.pulse-hero-note {
  margin-top: 0.95rem;
  color: rgba(188, 255, 227, 0.78);
  font-size: 0.84rem;
}

.pulse-notify {
  margin-top: 1.15rem;
  max-width: 620px;
}

.pulse-label {
  display: block;
  margin-bottom: 0.45rem;
  color: #d8fff0;
  font-size: 0.95rem;
}

.pulse-notify-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 0.6rem;
}

.pulse-notify .form-control {
  background: rgba(8, 31, 44, 0.84);
  border: 1px solid rgba(123, 243, 213, 0.35);
  color: #defff6;
  border-radius: 12px;
  min-height: 52px;
  height: 52px;
}

.pulse-notify .form-control::placeholder {
  color: rgba(201, 251, 237, 0.62);
}

.pulse-notify .form-select,
.pulse-notify textarea.form-control {
  background-color: rgba(8, 31, 44, 0.84);
  border: 1px solid rgba(123, 243, 213, 0.35);
  color: #defff6;
  border-radius: 12px;
}

.pulse-notify .form-select {
  min-height: 52px;
}

.pulse-notify textarea.form-control {
  min-height: 128px;
  height: auto;
}

.pulse-booking-form {
  max-width: none;
}

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

.pulse-selected-person,
.pulse-booking-message,
.pulse-booking-optin {
  grid-column: 1 / -1;
}

.pulse-selected-person {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(123, 243, 213, 0.22);
  border-radius: 12px;
  background: rgba(8, 31, 44, 0.54);
  color: rgba(214, 248, 239, 0.88);
}

.pulse-selected-person-photo {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(141, 255, 177, 0.38);
  border-radius: 50%;
  object-fit: cover;
  background: rgba(6, 18, 18, 0.82);
  box-shadow: 0 0 18px rgba(99, 255, 153, 0.16);
}

.pulse-selected-person-copy {
  display: grid;
  gap: 0.15rem;
}

.pulse-selected-person strong {
  display: block;
  color: #98fbc5;
}

.pulse-booking-help {
  margin-bottom: 0.45rem;
  color: rgba(214, 248, 239, 0.78);
  font-size: 0.84rem;
}

.pulse-booking-status {
  margin-top: 1rem;
  padding: 0.8rem 0.95rem;
  border-radius: 12px;
  border: 1px solid rgba(123, 243, 213, 0.28);
  background: rgba(8, 31, 44, 0.66);
  color: #d8fff0;
}

.pulse-booking-status.alert-success {
  border-color: rgba(117, 250, 141, 0.44);
  color: #98fbc5;
}

.pulse-booking-status.alert-warning {
  border-color: rgba(255, 214, 102, 0.46);
  color: #ffe4a4;
}

.pulse-booking-status.alert-danger {
  border-color: rgba(255, 130, 130, 0.48);
  color: #ffb2b2;
}

.pulse-btn {
  border-radius: 12px;
  min-width: 136px;
  min-height: 52px;
  padding: 0.72rem 1.2rem;
  border: 1px solid rgba(141, 255, 177, 0.55);
  background: linear-gradient(145deg, #1ceeb8, #75fa8d);
  color: #07251f;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.pulse-btn .lang.lang-de {
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}

.pulse-btn:hover,
.pulse-btn:focus-visible {
  color: #041912;
  border-color: rgba(141, 255, 177, 0.75);
  box-shadow: 0 0 0 0.2rem rgba(108, 252, 156, 0.2);
}

.pulse-notify-msg {
  margin: 0.45rem 0 0;
  min-height: 1.2rem;
  color: #98fbc5;
  font-size: 0.88rem;
}

.pulse-notify-msg.is-error {
  color: #ffaba5;
}

.pulse-consent {
  margin-top: 0.62rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
}

.pulse-consent input[type="checkbox"] {
  margin-top: 0.2rem;
  width: 16px;
  height: 16px;
  accent-color: #57f5bf;
  cursor: pointer;
}

.pulse-consent-text {
  color: rgba(214, 248, 239, 0.86);
  font-size: 0.8rem;
  line-height: 1.4;
}

.pulse-human-proof {
  margin-top: 0.62rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(120px, 220px);
  gap: 0.6rem;
  align-items: end;
}

.pulse-human-proof label {
  display: block;
  margin: 0;
  color: rgba(214, 248, 239, 0.9);
  font-size: 0.82rem;
  line-height: 1.35;
}

.pulse-human-proof .form-control {
  min-width: 0;
}

.pulse-notify input[name="origin_field"],
.pulse-notify input[name="product"] {
  display: none !important;
}

.pulse-human-status {
  display: block;
  margin-top: 0.35rem;
  color: rgba(169, 255, 215, 0.86);
  font-size: 0.72rem;
}

.pulse-human-status.is-error {
  color: #ffb3ac;
}

.pulse-visual {
  border-radius: 28px;
  padding: 1.35rem 1.35rem 1.1rem;
  border: 1px solid rgba(124, 247, 204, 0.28);
  background: linear-gradient(160deg, rgba(8, 30, 43, 0.82), rgba(7, 18, 30, 0.62));
  box-shadow: 0 24px 44px rgba(2, 8, 16, 0.52);
  width: 100%;
  max-width: 560px;
  justify-self: end;
  position: relative;
}

.pulse-visual svg {
  width: 100%;
  height: auto;
  display: block;
}

.pulse-top-labels,
.pulse-bottom-labels,
.pulse-chamber {
  font-family: "Okeanos Sans", "Helvetica Neue", Arial, sans-serif;
}

.pulse-diagram-backdrop {
  fill: #f5fbff;
  stroke: rgba(60, 103, 112, 0.46);
  stroke-width: 2;
}

.pulse-cell-shell {
  fill: rgba(251, 253, 255, 0.98);
  stroke: rgba(118, 150, 174, 0.78);
  stroke-width: 2.6;
}

.pulse-chamber-zone--anode {
  fill: rgba(249, 223, 228, 0.88);
}

.pulse-chamber-zone--cathode {
  fill: rgba(220, 235, 252, 0.9);
}

.pulse-membrane {
  fill: none;
  stroke: rgba(93, 188, 245, 0.95);
  stroke-width: 3;
  stroke-dasharray: 6 8;
}

.pulse-system-label,
.pulse-side-label,
.pulse-chamber-note,
.pulse-balance-caption,
.pulse-reaction-text,
.pulse-shuttle-text {
  fill: rgba(42, 61, 82, 0.96);
}

.pulse-system-label {
  font-size: 12px;
  font-weight: 600;
  text-anchor: middle;
}

.pulse-side-label {
  font-size: 13px;
  font-weight: 600;
}

.pulse-side-label--muted {
  fill: rgba(255, 255, 255, 0.58);
}

.pulse-side-label--right {
  text-anchor: end;
}

.pulse-chamber-note {
  font-size: 14px;
  font-style: italic;
  font-weight: 600;
}

.pulse-chamber-note--left {
  fill: rgba(255, 152, 166, 0.95);
}

.pulse-chamber-note--right {
  fill: rgba(127, 194, 255, 0.96);
}

.pulse-tank-port,
.pulse-wire,
.pulse-balance-caption-line {
  fill: none;
  stroke: rgba(63, 83, 102, 0.88);
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pulse-tank-arrow,
.pulse-electrode-flow {
  fill: none;
  stroke: rgba(70, 92, 114, 0.86);
  stroke-width: 2.2;
  stroke-linecap: round;
  animation: pulseArrowFloat 2.8s ease-in-out infinite;
}

.pulse-tank-arrow--down,
.pulse-electrode-flow--down {
  animation-delay: 0.45s;
}

.pulse-electrode-bar {
  fill: url(#pulse-electrode-fill);
  filter: drop-shadow(0 8px 14px rgba(19, 59, 185, 0.16));
}

.pulse-electron-path {
  fill: none;
  stroke: rgba(197, 225, 92, 0.96);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pulse-bulb-aura {
  fill: url(#pulse-bulb-glow);
  animation: pulseBulbGlow 3.8s ease-in-out infinite;
}

.pulse-bulb-glass {
  fill: rgba(255, 232, 139, 0.95);
  stroke: rgba(255, 243, 191, 0.98);
  stroke-width: 2;
}

.pulse-bulb-base {
  fill: rgba(141, 131, 103, 0.95);
}

.pulse-bulb-filament {
  fill: none;
  stroke: rgba(121, 76, 10, 0.9);
  stroke-width: 2;
  stroke-linecap: round;
}

.pulse-microbe-glow {
  fill: url(#pulse-microbe-glow);
  animation: pulseMicrobeGlow 4.2s ease-in-out infinite;
}

.pulse-microbe-core {
  fill: rgba(118, 92, 255, 0.92);
  stroke: rgba(195, 180, 255, 0.68);
  stroke-width: 1.8;
}

.pulse-microbe-tentacle,
.pulse-microbe-spike {
  fill: none;
  stroke: rgba(148, 124, 255, 0.92);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pulse-microbe-tentacle {
  animation: pulseTentacleWave 5.5s ease-in-out infinite;
}

.pulse-microbe-tentacle:nth-of-type(2) {
  animation-delay: 0.25s;
}

.pulse-microbe-tentacle:nth-of-type(3) {
  animation-delay: 0.5s;
}

.pulse-reaction-text {
  font-size: 13px;
  font-weight: 600;
}

.pulse-reaction-text--dark {
  fill: rgba(72, 81, 98, 0.9);
}

.pulse-reaction-text--light {
  fill: rgba(130, 145, 166, 0.92);
}

.pulse-reaction-text--small {
  font-size: 11px;
  font-weight: 500;
}

.pulse-reaction-curve,
.pulse-ion-curve,
.pulse-feed-arrow {
  fill: none;
  stroke: rgba(148, 164, 184, 0.72);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pulse-shuttle-ring {
  fill: rgba(255, 119, 119, 0.1);
  stroke: rgba(255, 148, 148, 0.94);
  stroke-width: 2.1;
}

.pulse-shuttle-text {
  font-size: 12px;
  font-weight: 700;
  text-anchor: middle;
  fill: rgba(255, 172, 172, 0.98);
}

.pulse-feed-path {
  fill: none;
  stroke: rgba(122, 212, 166, 0.34);
  stroke-width: 2;
  stroke-dasharray: 7 8;
}

.pulse-track-token {
  opacity: 0;
  will-change: transform, opacity;
}

.pulse-feed-dot {
  fill: rgba(129, 246, 176, 0.98);
  stroke: rgba(231, 255, 239, 0.86);
  stroke-width: 1.3;
}

.pulse-shuttle-core {
  fill: rgba(255, 145, 145, 0.98);
  stroke: rgba(255, 225, 225, 0.88);
  stroke-width: 1.2;
}

.pulse-electron-dot {
  fill: rgba(156, 238, 116, 0.98);
  stroke: rgba(247, 255, 227, 0.9);
  stroke-width: 1.7;
}

.pulse-electron-text {
  fill: #4f6d15;
  font-size: 15px;
  font-weight: 800;
  text-anchor: middle;
  dominant-baseline: middle;
}

.pulse-electron-text--minus {
  font-size: 10px;
}

.pulse-proton-dot {
  fill: rgba(245, 246, 250, 0.96);
  stroke: rgba(206, 219, 235, 0.88);
  stroke-width: 1.1;
}

.pulse-proton-text {
  fill: rgba(84, 99, 116, 0.9);
  text-anchor: middle;
  dominant-baseline: middle;
  font-size: 9px;
  font-weight: 700;
}

.pulse-ion {
  fill: rgba(242, 243, 247, 0.95);
  stroke: rgba(205, 219, 236, 0.82);
  stroke-width: 1.1;
}

.pulse-ion--plus {
  filter: drop-shadow(0 3px 8px rgba(255, 255, 255, 0.22));
}

.pulse-ion-mark {
  fill: rgba(82, 98, 116, 0.9);
  font-size: 8px;
  font-weight: 700;
  text-anchor: middle;
}

.pulse-ion-mark--minus {
  font-size: 10px;
}

.pulse-balance-caption {
  font-size: 12px;
  line-height: 1.35;
  text-anchor: start;
  fill: rgba(61, 78, 97, 0.98);
}

.pulse-visual-hint {
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: rgba(201, 245, 237, 0.78);
}

.pulse-hotspots {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pulse-hotspot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(184, 255, 233, 0.9);
  background: rgba(92, 248, 221, 0.72);
  box-shadow: 0 0 0 0 rgba(92, 248, 221, 0.34);
  pointer-events: auto;
  cursor: help;
  padding: 0;
  animation: pulseHotspot 2.4s ease-out infinite;
}

.pulse-hotspot::before {
  content: "i";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 700;
  color: #05232f;
  line-height: 1;
}

.pulse-hotspot--step::before {
  content: attr(data-step);
  font-size: 11px;
}

.pulse-hotspot:nth-child(2) {
  animation-delay: 0.3s;
}

.pulse-hotspot:nth-child(3) {
  animation-delay: 0.6s;
}

.pulse-hotspot:nth-child(4) {
  animation-delay: 0.9s;
}

.pulse-hotspot .pulse-tooltip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translate(-50%, 6px);
  min-width: 180px;
  max-width: 230px;
  padding: 0.45rem 0.6rem;
  border-radius: 10px;
  border: 1px solid rgba(124, 247, 204, 0.35);
  background: rgba(6, 23, 34, 0.92);
  color: #dffef3;
  font-size: 0.72rem;
  line-height: 1.35;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.pulse-hotspot .pulse-tooltip::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 1px;
  height: 10px;
  background: rgba(124, 247, 204, 0.5);
  transform: translateX(-50%);
}

.pulse-hotspot--intro .pulse-tooltip {
  animation: pulseIntroTooltip 5s ease 0.45s 1 both;
}

.pulse-hotspot:hover .pulse-tooltip,
.pulse-hotspot:focus .pulse-tooltip,
.pulse-hotspot:active .pulse-tooltip,
.pulse-hotspot:focus-visible .pulse-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.pulse-visual-hint {
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: rgba(201, 245, 237, 0.78);
}


.pulse-card {
  height: 100%;
  padding: 1.3rem;
  border-radius: 18px;
  border: 1px solid rgba(117, 246, 214, 0.2);
  background: linear-gradient(170deg, rgba(8, 27, 37, 0.8), rgba(6, 17, 28, 0.74));
  box-shadow: 0 16px 34px rgba(2, 8, 16, 0.42);
}

.pulse-card h3 {
  margin: 0.65rem 0 0.5rem;
  color: #dcfff2;
}

.pulse-card p {
  color: rgba(208, 255, 240, 0.82);
  font-family: "Okeanos Sans", "Helvetica Neue", Arial, sans-serif;
}

.pulse-section-heading {
  margin-bottom: 1.2rem;
}

.pulse-section-heading h2 {
  margin: 0.6rem 0 0;
  color: #eafff8;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
}

.pulse-section-heading p {
  max-width: 760px;
  margin: 0.55rem 0 0;
  color: rgba(226, 244, 240, 0.76);
}

.pulse-benefit-card h3 {
  min-height: 3.2rem;
}

.pulse-chip {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(139, 255, 195, 0.5);
  color: #8afcb2;
  font-weight: 600;
  font-size: 0.78rem;
}

.pulse-wide-card {
  padding: 1.5rem;
  border-radius: 20px;
  border: 1px solid rgba(120, 245, 208, 0.22);
  background: linear-gradient(160deg, rgba(8, 30, 42, 0.86), rgba(7, 18, 29, 0.75));
  box-shadow: 0 18px 36px rgba(2, 8, 16, 0.44);
}

.pulse-deployment-card {
  padding: clamp(1.3rem, 3vw, 2rem);
  border: 1px solid rgba(104, 243, 203, 0.24);
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(8, 30, 42, 0.84), rgba(7, 18, 29, 0.72));
  box-shadow: 0 18px 36px rgba(2, 8, 16, 0.4);
}

.pulse-deployment-carousel {
  position: relative;
}

.pulse-carousel-viewport {
  overflow: hidden;
  border-radius: 18px;
}

.pulse-carousel-track {
  display: flex;
  transition: transform 0.42s ease;
  will-change: transform;
}

.pulse-carousel-slide {
  flex: 0 0 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(123, 243, 213, 0.22);
  border-radius: 18px;
  background: rgba(8, 31, 44, 0.74);
}

.pulse-carousel-slide img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
}

.pulse-carousel-slide figcaption {
  min-height: 54px;
  padding: 0.9rem 1rem;
  color: rgba(226, 244, 240, 0.82);
  font-size: 0.95rem;
}

.pulse-carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(123, 243, 213, 0.36);
  border-radius: 50%;
  background: rgba(5, 23, 34, 0.82);
  color: #d8fff0;
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
}

.pulse-carousel-btn--prev {
  left: 0.85rem;
}

.pulse-carousel-btn--next {
  right: 0.85rem;
}

.pulse-carousel-btn:hover,
.pulse-carousel-btn:focus-visible {
  border-color: rgba(141, 255, 177, 0.7);
  color: #8afcb2;
  outline: none;
}

.pulse-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.9rem;
}

.pulse-carousel-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(123, 243, 213, 0.44);
  border-radius: 50%;
  background: rgba(123, 243, 213, 0.18);
}

.pulse-carousel-dots button.is-active {
  background: #8afcb2;
  border-color: #8afcb2;
}

.pulse-wide-card h2 {
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  margin-bottom: 0.75rem;
}

.pulse-wide-card p {
  color: rgba(215, 255, 243, 0.82);
  font-family: "Okeanos Sans", "Helvetica Neue", Arial, sans-serif;
}

.pulse-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pulse-badges > span {
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.78rem;
  border-radius: 999px;
  border: 1px solid rgba(129, 249, 211, 0.38);
  background: rgba(12, 45, 54, 0.58);
  color: #bfffe7;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.pulse-mini-chart {
  border-radius: 16px;
  padding: 0.75rem;
  border: 1px solid rgba(129, 249, 211, 0.24);
  background: rgba(5, 25, 35, 0.72);
}

.pulse-mini-chart--full {
  padding: clamp(0.85rem, 2vw, 1.25rem);
}

.pulse-mini-chart--full .pulse-mini-canvas {
  height: clamp(360px, 46vw, 580px);
}

.pulse-monitor-widget {
  height: clamp(440px, 52vw, 680px);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: clamp(1rem, 2.4vw, 1.45rem);
  border: 1px solid rgba(99, 255, 153, 0.34);
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 35%, rgba(5, 25, 30, 0.9), rgba(1, 5, 9, 0.96)),
    #020305;
  box-shadow: inset 0 0 36px rgba(0, 0, 0, 0.55), 0 0 32px rgba(99, 255, 153, 0.1);
}

.pulse-monitor-header {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 0.75rem;
}

.pulse-monitor-metric,
.pulse-monitor-status {
  min-width: min(260px, 100%);
  display: grid;
  gap: 0.15rem;
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(99, 255, 153, 0.36);
  border-radius: 10px;
  background: rgba(6, 18, 18, 0.78);
  box-shadow: 0 0 18px rgba(99, 255, 153, 0.12);
}

.pulse-monitor-metric > span,
.pulse-monitor-status > span {
  color: rgba(213, 255, 234, 0.56);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

.pulse-monitor-metric strong,
.pulse-monitor-status strong {
  color: #63ff99;
  font-size: clamp(1.2rem, 2.8vw, 1.9rem);
  line-height: 1.1;
}

.pulse-monitor-metric small {
  color: rgba(213, 255, 234, 0.58);
  font-size: 0.78rem;
}

.pulse-monitor-status.is-critical {
  border-color: rgba(255, 80, 80, 0.55);
  box-shadow: 0 0 18px rgba(255, 80, 80, 0.12);
}

.pulse-monitor-status.is-critical strong {
  color: #ff6464;
}

.pulse-monitor-chart-wrap {
  display: flex;
  flex: 1;
  min-height: 0;
  gap: 0.65rem;
}

.pulse-monitor-axis {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(99, 255, 153, 0.7);
  font-size: clamp(0.82rem, 1.6vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.pulse-monitor-canvas {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 1px solid rgba(99, 255, 153, 0.28);
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 20%, rgba(5, 18, 22, 0.94), rgba(0, 0, 0, 0.96)),
    #010203;
  box-shadow: inset 0 0 36px rgba(0, 0, 0, 0.72);
}

.pulse-monitor-time {
  display: flex;
  justify-content: center;
  flex: 0 0 auto;
}

.pulse-monitor-time span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0.48rem 1rem;
  border: 1px solid rgba(99, 255, 153, 0.36);
  border-radius: 10px;
  background: rgba(6, 18, 18, 0.78);
  color: #63ff99;
  box-shadow: 0 0 18px rgba(99, 255, 153, 0.12);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.pulse-ifat-booking-card {
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid rgba(104, 243, 203, 0.24);
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(8, 30, 42, 0.84), rgba(7, 18, 29, 0.72));
  box-shadow: 0 18px 36px rgba(2, 8, 16, 0.4);
}

.pulse-ifat-booking-card h3 {
  margin-top: 0.75rem;
  color: #eafff8;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.pulse-ifat-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2rem);
}

.pulse-ifat-modal[hidden] {
  display: none;
}

.pulse-ifat-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 10, 16, 0.76);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.pulse-ifat-modal__panel {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: min(86vh, 900px);
  overflow: auto;
  outline: none;
}

.pulse-ifat-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(123, 243, 213, 0.32);
  border-radius: 50%;
  background: rgba(5, 23, 34, 0.82);
  color: #d8fff0;
  font-size: 1.5rem;
  line-height: 1;
}

.pulse-ifat-modal__close:hover,
.pulse-ifat-modal__close:focus-visible {
  border-color: rgba(141, 255, 177, 0.7);
  color: #8afcb2;
  outline: none;
}

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

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

.pulse-newsletter-card {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(1.2rem, 3vw, 2.5rem);
  align-items: start;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid rgba(104, 243, 203, 0.24);
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(9, 35, 42, 0.86), rgba(7, 18, 29, 0.74));
  box-shadow: 0 18px 36px rgba(2, 8, 16, 0.34);
}

.pulse-newsletter-copy h3 {
  margin: 0.75rem 0 0.7rem;
  color: #eafff8;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.pulse-newsletter-copy p {
  margin: 0;
  color: rgba(214, 248, 239, 0.78);
}

.pulse-newsletter-form {
  margin-top: 0;
  max-width: none;
}

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

.pulse-newsletter-proof,
.pulse-newsletter-consent {
  grid-column: 1 / -1;
}

.pulse-mini-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.45rem;
}

.pulse-mini-value-wrap {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.pulse-mini-value {
  color: #8dffb0;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}

.pulse-mini-unit {
  color: rgba(204, 255, 238, 0.78);
  font-size: 0.72rem;
}

.pulse-mini-status {
  border-radius: 999px;
  border: 1px solid rgba(112, 247, 198, 0.4);
  background: rgba(10, 43, 51, 0.66);
  color: #89f9af;
  padding: 0.2rem 0.55rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: normal;
  text-align: center;
  max-width: 260px;
}

.pulse-mini-status.is-critical {
  border-color: rgba(255, 138, 138, 0.58);
  color: #ff9e9e;
  background: rgba(54, 20, 20, 0.72);
}

.pulse-mini-canvas {
  width: 100%;
  height: 340px;
  display: block;
  border-radius: 12px;
  border: 1px solid rgba(139, 255, 195, 0.2);
  background: radial-gradient(circle at 55% 24%, rgba(12, 46, 52, 0.82), rgba(5, 19, 28, 0.92));
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.28);
}

.pulse-mini-footer {
  margin-top: 0.45rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: rgba(195, 254, 235, 0.78);
  font-size: 0.72rem;
}

.pulse-mini-time {
  color: #c8ffe5;
  font-weight: 600;
}

.pulse-mini-chart svg {
  width: 100%;
  height: auto;
  display: block;
}

.pulse-mini-grid {
  fill: none;
  stroke: rgba(169, 255, 224, 0.14);
  stroke-width: 1.1;
}

.pulse-mini-line {
  fill: none;
  stroke: url(#pulse-mini-current);
  stroke-width: 3.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 11 9;
  animation: pulseCurrentFlow 3.2s linear infinite;
}

.pulse-mini-flow {
  fill: #d9fff7;
  filter: drop-shadow(0 0 7px rgba(149, 255, 221, 0.65));
}

.pulse-mini-halo {
  fill: url(#pulse-mini-glow);
  animation: pulseNodeHalo 2.8s ease-in-out infinite;
}

.pulse-mini-dot {
  fill: #8dffb0;
  filter: drop-shadow(0 0 10px rgba(132, 255, 128, 0.62));
  animation: pulseNodeBeat 2.1s ease-in-out infinite;
}

.pulse-footer {
  color: rgba(226, 255, 248, 0.85);
}

.pulse-footer a {
  color: #a5ffe0;
}

.pulse-nav-button {
  border: 0;
  background: transparent;
  font: inherit;
}

.pulse-footer-link-button {
  display: inline;
  padding: 0;
  border: 0;
  background: transparent;
  color: #a5ffe0;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.pulse-footer-link-button:hover,
.pulse-footer-link-button:focus-visible {
  color: #c9ffeb;
  outline: none;
}

.cookie-banner {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 1200;
  width: min(440px, calc(100vw - 2rem));
  padding: 0;
  color: rgba(226, 255, 248, 0.9);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__inner {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(123, 243, 213, 0.32);
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(8, 30, 42, 0.96), rgba(7, 18, 29, 0.94));
  box-shadow: 0 18px 42px rgba(2, 8, 16, 0.48);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.cookie-banner__title {
  margin-bottom: 0.25rem;
  color: #eafff8;
  font-weight: 700;
}

.cookie-banner__text {
  color: rgba(214, 248, 239, 0.78);
  font-size: 0.92rem;
}

.cookie-banner__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
}

.pulse-whitepaper-card {
  border-radius: 20px;
  border: 1px solid rgba(120, 245, 208, 0.22);
  background: linear-gradient(160deg, rgba(8, 30, 42, 0.86), rgba(7, 18, 29, 0.75));
  box-shadow: 0 18px 36px rgba(2, 8, 16, 0.44);
  padding: 1.2rem 1.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.pulse-whitepaper-card h3 {
  margin: 0;
}

.pulse-whitepaper-copy p {
  color: rgba(215, 255, 243, 0.82);
}

.pulse-whitepaper-btn {
  flex-shrink: 0;
}

.pulse-funded-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 520px);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  padding: clamp(1.2rem, 3vw, 1.8rem);
  border-radius: 20px;
  border: 1px solid rgba(120, 245, 208, 0.22);
  background: linear-gradient(160deg, rgba(8, 30, 42, 0.86), rgba(7, 18, 29, 0.75));
  box-shadow: 0 18px 36px rgba(2, 8, 16, 0.38);
}

.pulse-funded-copy h3 {
  margin: 0.75rem 0 0.6rem;
  color: #eafff8;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
}

.pulse-funded-copy p {
  margin: 0;
  color: rgba(215, 255, 243, 0.8);
}

.pulse-funded-logo {
  display: block;
  width: 100%;
  height: auto;
  max-height: 190px;
  object-fit: contain;
  justify-self: end;
  border-radius: 10px;
  background: #ffffff;
}

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

.pulse-legal-modal {
  position: fixed;
  inset: 0;
  z-index: 1120;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2rem);
}

.pulse-legal-modal[hidden] {
  display: none;
}

.pulse-legal-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 10, 16, 0.78);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.pulse-legal-modal__panel {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  max-height: min(86vh, 900px);
  overflow: auto;
  padding: clamp(1rem, 2.4vw, 1.4rem);
  border: 1px solid rgba(104, 243, 203, 0.24);
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(8, 30, 42, 0.94), rgba(7, 18, 29, 0.9));
  box-shadow: 0 24px 58px rgba(2, 8, 16, 0.56);
  outline: none;
}

.pulse-legal-modal__close {
  position: sticky;
  top: 0;
  left: 100%;
  z-index: 2;
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(123, 243, 213, 0.32);
  border-radius: 50%;
  background: rgba(5, 23, 34, 0.9);
  color: #d8fff0;
  font-size: 1.5rem;
  line-height: 1;
}

.pulse-legal-tabs {
  display: inline-flex;
  gap: 0.45rem;
  margin: 0 0 1rem;
  padding: 0.28rem;
  border: 1px solid rgba(123, 243, 213, 0.24);
  border-radius: 999px;
  background: rgba(3, 16, 24, 0.52);
}

.pulse-legal-tab {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(214, 248, 239, 0.78);
  font: inherit;
  padding: 0.45rem 0.85rem;
}

.pulse-legal-tab.is-active {
  background: rgba(123, 243, 213, 0.14);
  color: #9afda2;
}

.pulse-legal-card {
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid rgba(104, 243, 203, 0.22);
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(8, 30, 42, 0.78), rgba(7, 18, 29, 0.68));
  box-shadow: 0 18px 36px rgba(2, 8, 16, 0.3);
}

.pulse-legal-card h2 {
  margin: 0.85rem 0 1rem;
  color: #eafff8;
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
}

.pulse-legal-card p {
  margin: 0 0 0.9rem;
  color: rgba(214, 248, 239, 0.8);
}

.pulse-legal-card a {
  color: #98fbc5;
}

.pulse-legal-card code {
  color: #bfffe0;
}

.pulse-legal-muted {
  font-size: 0.92rem;
  color: rgba(214, 248, 239, 0.64) !important;
}

.pulse-notify-card .pulse-notify {
  max-width: none;
  margin-top: 0;
}

@keyframes pulseGlowShiftA {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(36px, 18px) scale(1.08);
  }
}

@keyframes pulseGlowShiftB {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(-34px, -22px) scale(1.1);
  }
}

@keyframes pulseMicrobeSway {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-3px) rotate(-2deg);
  }
}

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

@keyframes pulseBioHealth {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.16);
  }
}

@keyframes pulseBioRod {
  0%,
  100% {
    transform: rotate(-2deg) translateY(0);
  }
  50% {
    transform: rotate(2.5deg) translateY(-0.5px);
  }
}

@keyframes pulseFlowLine {
  to {
    stroke-dashoffset: -110;
  }
}

@keyframes pulseCurrentFlow {
  to {
    stroke-dashoffset: -132;
  }
}

@keyframes pulseNodeHalo {
  0%,
  100% {
    opacity: 0.46;
    transform: scale(0.9);
  }
  50% {
    opacity: 0.88;
    transform: scale(1.14);
  }
}

@keyframes pulseNodeBeat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.22);
  }
}

@keyframes pulseHotspot {
  0% {
    box-shadow: 0 0 0 0 rgba(92, 248, 221, 0.36);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(92, 248, 221, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(92, 248, 221, 0);
  }
}

@keyframes pulseIntroTooltip {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 6px);
  }
  12%,
  68% {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
  }
  100% {
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 6px);
  }
}

@keyframes pulseCoreHalo {
  0% {
    opacity: 0.5;
    transform: scale(0.9);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.18);
  }
  100% {
    opacity: 0.5;
    transform: scale(0.9);
  }
}

@keyframes pulseArrowFloat {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.78;
  }
  50% {
    transform: translateY(-3px);
    opacity: 1;
  }
}

@keyframes pulseBulbGlow {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.96);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes pulseMicrobeGlow {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.96);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes pulseTentacleWave {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(1px) rotate(2deg);
  }
}

@keyframes pulseCoreBeat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}


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

/* Final responsive overrides for eVide */
@media (max-width: 1200px) {
  .pulse-hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
    gap: 1.5rem;
  }

  .pulse-copy h1 {
    font-size: clamp(2.4rem, 6.2vw, 4.6rem);
  }

  .pulse-copy .lead {
    font-size: 1.08rem;
    max-width: 46ch;
  }
}

@media (max-width: 992px) {
  .pulse-hero {
    min-height: auto;
    padding: 6rem 0 2.4rem;
  }

  .pulse-hero-layout {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .pulse-copy {
    max-width: 100%;
  }

  .pulse-copy h1 {
    font-size: clamp(2.2rem, 8.6vw, 3.8rem);
    max-width: 12ch;
  }

  .pulse-copy .lead {
    max-width: 62ch;
    font-size: 1rem;
  }

  .pulse-visual {
    justify-self: stretch;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .pulse-hero {
    padding: 5.4rem 0 2rem;
  }

  .pulse-kicker {
    font-size: 0.74rem;
    padding: 0.34rem 0.72rem;
  }

  .pulse-copy h1 {
    font-size: clamp(2rem, 11vw, 3.1rem);
    max-width: 100%;
  }

  .pulse-copy .lead {
    font-size: 0.98rem;
  }

  .pulse-countdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .pulse-count-value {
    font-size: 1.25rem;
  }

  .pulse-count-label {
    font-size: 0.65rem;
  }

  .pulse-visual {
    padding: 0.85rem 0.8rem 0.72rem;
    border-radius: 16px;
  }

  .pulse-hotspot {
    width: 14px;
    height: 14px;
  }

  .pulse-hotspot .pulse-tooltip {
    font-size: 0.68rem;
    min-width: 150px;
    max-width: 190px;
  }

  .pulse-hotspot::before {
    font-size: 8px;
  }

  .pulse-visual-hint {
    font-size: 0.72rem;
  }

  .pulse-reaction-text,
  .pulse-system-label,
  .pulse-side-label,
  .pulse-balance-caption {
    font-size: 11px;
  }

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

  .pulse-booking-grid {
    grid-template-columns: 1fr;
  }

  .pulse-newsletter-card,
  .pulse-newsletter-grid,
  .pulse-funded-card,
  .pulse-legal-grid {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    width: auto;
  }

  .cookie-banner__actions {
    justify-content: stretch;
  }

  .cookie-banner__actions .btn {
    flex: 1 1 0;
  }

  .pulse-legal-modal__panel {
    max-height: calc(100vh - 2rem);
  }

  .pulse-selected-person {
    align-items: flex-start;
  }

  .pulse-benefit-card h3 {
    min-height: auto;
  }

  .pulse-section-heading h2 {
    font-size: 1.55rem;
  }

  .pulse-carousel-slide img {
    aspect-ratio: 4 / 3;
  }

  .pulse-carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 1.55rem;
  }

  .pulse-carousel-btn--prev {
    left: 0.45rem;
  }

  .pulse-carousel-btn--next {
    right: 0.45rem;
  }

  .pulse-btn {
    width: 100%;
  }

  .pulse-monitor-widget {
    height: clamp(380px, 92vw, 520px);
    padding: 0.8rem;
  }

  .pulse-monitor-header {
    gap: 0.55rem;
  }

  .pulse-monitor-metric,
  .pulse-monitor-status {
    min-width: 0;
    flex: 1 1 100%;
  }

  .pulse-monitor-chart-wrap {
    gap: 0.45rem;
  }

  .pulse-monitor-axis {
    font-size: 0.72rem;
  }

  .pulse-human-proof {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .pulse-mini-header,
  .pulse-mini-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .pulse-mini-canvas {
    height: 260px;
  }

  .pulse-funded-logo {
    justify-self: stretch;
  }
}

@media (max-width: 576px) {
  .pulse-bg-glow-a {
    width: 400px;
    height: 400px;
    top: -170px;
    left: -190px;
  }

  .pulse-bg-glow-b {
    width: 340px;
    height: 340px;
    right: -170px;
    bottom: -170px;
  }

  .pulse-count-item,
  .pulse-card,
  .pulse-wide-card,
  .pulse-whitepaper-card {
    padding: 0.95rem;
  }

  .pulse-badges > span {
    font-size: 0.72rem;
  }
}

@media (max-width: 420px) {
  .pulse-countdown {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .pulse-whitepaper-card {
    flex-direction: column;
    align-items: flex-start;
  }
}
