@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/roboto-400.woff2") format("woff2");
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/roboto-500.woff2") format("woff2");
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/roboto-700.woff2") format("woff2");
}

@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../fonts/fontawesome/fa-regular-400.woff2") format("woff2");
}

@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("../fonts/fontawesome/fa-solid-900.woff2") format("woff2");
}

:root {
  --navy: #061843;
  --navy-deep: #05112e;
  --ink: #0f358e;
  --blue: #2176ff;
  --cyan: #61d8e9;
  --magenta: #d5124e;
  --text: #223247;
  --muted: #5f7086;
  --line: rgba(15, 53, 142, 0.14);
  --card: rgba(255, 255, 255, 0.92);
  --surface: #f3f7fc;
  --white: #ffffff;
  --shadow: 0 30px 60px rgba(6, 24, 67, 0.14);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100vw - 2rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Roboto", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(97, 216, 233, 0.18), transparent 28%),
    linear-gradient(180deg, #f7fbff 0%, #eef4fb 100%);
  line-height: 1.6;
}

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

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

p,
ul,
ol {
  margin: 0;
}

ul,
ol {
  padding-left: 1.2rem;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(6, 24, 67, 0.2);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.site-shell {
  position: relative;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(250, 252, 255, 0.94);
  border-bottom: 1px solid rgba(15, 53, 142, 0.08);
  box-shadow: 0 12px 30px rgba(8, 28, 74, 0.06);
}

.site-header__inner,
.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  align-items: start;
  padding: 0.9rem 0 1rem;
}

.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
  width: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  padding: 0.65rem 1rem;
  overflow: hidden;
  border: 1px solid rgba(97, 216, 233, 0.18);
  border-radius: 22px;
  background: linear-gradient(120deg, rgba(6, 24, 67, 0.96), rgba(15, 53, 142, 0.87));
  box-shadow: 0 18px 38px rgba(8, 28, 74, 0.18);
}

.brand__logo {
  width: clamp(11.8rem, 24.8vw, 16.4rem);
  max-width: 100%;
  display: block;
  clip-path: inset(0 5px 0 0);
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(190deg) brightness(108%) contrast(100%);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(15, 53, 142, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--navy);
}

.nav-toggle__bar,
.nav-toggle__bar::before,
.nav-toggle__bar::after {
  display: block;
  width: 1.2rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
  content: "";
}

.nav-toggle__bar::before {
  transform: translateY(-0.36rem);
}

.nav-toggle__bar::after {
  transform: translateY(0.24rem);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar::before {
  transform: translateY(0) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar::after {
  transform: translateY(-0.12rem) rotate(-45deg);
}

.site-nav ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
}

.site-nav {
  flex: 1 1 auto;
  min-width: 0;
}

.site-nav a,
.nav-more__trigger {
  display: inline-flex;
  align-items: center;
  min-height: 2.8rem;
  padding: 0 0.86rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  font-family: inherit;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.nav-more__trigger:hover,
.nav-more__trigger[aria-current="page"],
.nav-more[data-open="true"] .nav-more__trigger {
  background: rgba(33, 118, 255, 0.11);
  color: var(--ink);
}

.nav-more {
  position: relative;
}

.nav-more__trigger::after {
  width: 0.42rem;
  height: 0.42rem;
  margin-left: 0.42rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-0.12rem) rotate(45deg);
  content: "";
}

.nav-more__menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  z-index: 25;
  display: grid;
  min-width: 13rem;
  padding: 0.45rem;
  border: 1px solid rgba(15, 53, 142, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 54px rgba(6, 24, 67, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-more:hover .nav-more__menu,
.nav-more:focus-within .nav-more__menu,
.nav-more[data-open="true"] .nav-more__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-more__menu a {
  justify-content: flex-start;
  width: 100%;
  min-height: 2.6rem;
}

.site-nav a.cta-link {
  background: transparent;
  color: var(--muted);
  box-shadow: none;
}

.site-nav a.cta-link:hover {
  transform: none;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem;
  border: 1px solid rgba(15, 53, 142, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 28px rgba(6, 24, 67, 0.08);
}

.language-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.7rem;
  min-height: 2.3rem;
  padding: 0 0.7rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.language-switcher a:hover,
.language-switcher a[aria-current="true"] {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--white);
}

.language-switcher__flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  width: 1.1rem;
  height: 0.78rem;
  overflow: hidden;
  border-radius: 0.2rem;
  box-shadow: 0 0 0 1px rgba(14, 34, 73, 0.08);
}

.language-switcher__flag img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-content {
  display: block;
}

.hero {
  position: relative;
  padding: 4.8rem 0 calc(3rem + clamp(26px, 3vw, 42px));
  background:
    linear-gradient(120deg, rgba(6, 24, 67, 0.96), rgba(15, 53, 142, 0.87)),
    url("../images/bg.jpg") center/cover no-repeat;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  z-index: 0;
  height: clamp(44px, 5.5vw, 72px);
  background: url("../images/wave-light.svg") center bottom/100% 100% no-repeat;
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow::before {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  content: "";
}

.hero h1,
.section-title,
.page-hero h1,
.card-title,
.metric__title,
.feature-card h3,
.founder-card h3,
.legal h2,
.legal h3 {
  font-family: "Roboto", "Segoe UI", sans-serif;
}

.hero h1 {
  margin-top: 1.1rem;
  font-size: clamp(2.7rem, 7vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 42rem;
  margin-top: 1.35rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0 1.35rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--white);
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 20px 36px rgba(33, 118, 255, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 40px rgba(33, 118, 255, 0.28);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
}

.hero__halo {
  position: absolute;
  inset: 8% auto auto 8%;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(97, 216, 233, 0.44), rgba(97, 216, 233, 0));
  filter: blur(20px);
}

.hero__device {
  position: relative;
  width: min(100%, 32rem);
  padding: 1.4rem;
  border-radius: 32px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.3);
}

.hero__device img {
  width: 100%;
  height: auto;
  border-radius: 24px;
}

.hero__badge {
  position: absolute;
  right: -0.6rem;
  bottom: 2rem;
  max-width: 14rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.hero__badge strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.92rem;
}

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

.section--offset {
  margin-top: 0;
}

.section--tinted {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.72)),
    radial-gradient(circle at top left, rgba(33, 118, 255, 0.08), transparent 24%);
}

.section--compact {
  padding-top: 4.25rem;
  padding-bottom: 4.25rem;
}

.anchor-offset {
  position: absolute;
  top: -6rem;
}

.section--dark {
  padding-top: calc(5rem + clamp(20px, 2.5vw, 32px));
  padding-bottom: calc(5rem + clamp(20px, 2.5vw, 32px));
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(6, 24, 67, 0.96), rgba(5, 17, 46, 0.96)),
    url("../images/bg.jpg") center/cover no-repeat;
  color: var(--white);
}

.section--dark::before,
.section--dark::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  z-index: 0;
  height: clamp(40px, 5vw, 68px);
  background: url("../images/wave-light.svg") center/100% 100% no-repeat;
  pointer-events: none;
}

.section--dark::before {
  top: -1px;
  transform: rotate(180deg);
}

.section--dark::after {
  bottom: -1px;
}

.section--dark > .container {
  position: relative;
  z-index: 1;
}

.section--dark .section-title,
.section--dark .section-copy,
.section--dark .list-card li,
.section--dark .contact-card,
.section--dark .contact-card a,
.section--dark .form-note,
.section--dark .section-intro p {
  color: var(--white);
}

.section--dark .section-kicker {
  color: rgba(255, 255, 255, 0.78);
}

.section-intro {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 2.2rem;
}

.section-kicker {
  color: var(--magenta);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.section-copy {
  max-width: 48rem;
  color: var(--muted);
  font-size: 1.02rem;
}

.intro-grid,
.metric-grid,
.overview-grid,
.founder-grid,
.benefit-grid,
.support-grid,
.footer-grid {
  display: grid;
  gap: 1.2rem;
}

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

.glass-card,
.metric,
.list-card,
.founder-card,
.benefit-card,
.contact-card,
.legal-card,
.support-card {
  position: relative;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: var(--radius-md);
  background: var(--card);
  box-shadow: var(--shadow);
}

.glass-card::before,
.metric::before,
.list-card::before,
.benefit-card::before,
.legal-card::before,
.support-card::before {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--magenta));
  content: "";
}

.glass-card h3,
.metric__title,
.list-card h3,
.benefit-card h3,
.support-card h3 {
  margin-bottom: 0.65rem;
  font-size: 1.1rem;
  color: var(--ink);
}

.glass-card p,
.metric p,
.list-card li,
.benefit-card p,
.support-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.icon-chip {
  display: inline-grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(33, 118, 255, 0.14), rgba(97, 216, 233, 0.18));
  color: var(--ink);
  font-size: 1.2rem;
}

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

.metric {
  min-height: 100%;
}

.metric__title {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 1.08rem;
}

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

.list-card ul {
  display: grid;
  gap: 0.55rem;
}

.list-card li::marker {
  color: var(--blue);
}

.section--offerings {
  position: relative;
  padding-top: clamp(4.2rem, 7vw, 6.4rem);
  background: var(--white);
}

.section--offerings .section-intro {
  justify-items: center;
  margin-bottom: clamp(4rem, 7vw, 6.8rem);
  text-align: center;
}

.section--offerings .section-kicker {
  display: none;
}

.section--offerings .section-title {
  color: #363b48;
  font-size: clamp(2.7rem, 5.2vw, 4.35rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.section--offerings .section-copy {
  max-width: 66rem;
  color: #363b48;
  font-size: clamp(1.1rem, 1.65vw, 1.45rem);
  line-height: 1.45;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(72rem, 100%);
  margin-inline: auto;
  align-items: stretch;
  gap: clamp(2rem, 3vw, 2.75rem);
}

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

.token-card {
  min-height: 100%;
  padding: 1.35rem;
  border: 1px solid rgba(15, 53, 142, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 48px rgba(6, 24, 67, 0.1);
}

.token-card h3 {
  margin: 0.35rem 0 0.7rem;
  color: var(--navy);
  font-size: 1.2rem;
  line-height: 1.25;
}

.token-card p:not(.workspace-card__eyebrow) {
  color: var(--muted);
}

.token-card--dark {
  background: linear-gradient(145deg, rgba(6, 24, 67, 0.96), rgba(15, 53, 142, 0.9));
  color: var(--white);
}

.token-card--dark h3,
.token-card--dark p,
.token-card--dark .workspace-card__eyebrow {
  color: var(--white);
}

.value-wave {
  min-height: clamp(30rem, 43vw, 42rem);
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(6, 24, 67, 0.94), rgba(5, 17, 46, 0.96)),
    url("../images/bg.jpg") center/cover no-repeat;
}

.value-wave::before,
.value-wave::after {
  position: absolute;
  right: -1px;
  left: -1px;
  z-index: 1;
  height: clamp(4.5rem, 7vw, 7rem);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M0,56 C120,112 240,112 360,56 C480,0 600,0 720,56 C840,112 960,112 1080,56 C1200,0 1320,0 1440,56 L1440,120 L0,120 Z'/%3E%3C/svg%3E") center/100% 100% no-repeat;
  content: "";
  pointer-events: none;
}

.value-wave::before {
  top: -1px;
  transform: rotate(180deg);
}

.value-wave::after {
  bottom: -1px;
}

.value-wave__inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(3.1rem, 5vw, 5rem);
  width: min(62rem, calc(100% - 2rem));
  padding-top: clamp(8.6rem, 13vw, 13rem);
  padding-bottom: clamp(7.8rem, 11vw, 11rem);
}

.value-wave__inner::after {
  position: absolute;
  top: 11%;
  right: -6%;
  z-index: -1;
  width: clamp(24rem, 42vw, 40rem);
  aspect-ratio: 1;
  border: clamp(4rem, 6vw, 6.25rem) solid rgba(97, 216, 233, 0.07);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 1rem rgba(97, 216, 233, 0.045),
    0 0 0 1rem rgba(97, 216, 233, 0.045),
    0 0 0 2rem rgba(97, 216, 233, 0.035),
    0 0 0 3rem rgba(97, 216, 233, 0.025);
  content: "";
}

.value-wave__intro {
  max-width: 43rem;
}

.value-wave__kicker {
  display: inline-block;
  margin: 0 0 1rem;
  padding-bottom: 0.18rem;
  border-bottom: 4px double var(--magenta);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.value-wave__intro h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.12;
}

.value-wave__intro p,
.value-wave__item p {
  color: #709be7;
}

.value-wave__intro p {
  margin-top: 1.15rem;
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
}

.value-wave__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.5rem, 3.2vw, 3.5rem);
}

.value-wave__item {
  display: grid;
  align-content: start;
  gap: 0.95rem;
  min-width: 0;
}

.value-wave__icon {
  width: 2.25rem;
  height: 2.25rem;
  color: var(--magenta);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.value-wave__item h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(0.98rem, 1.2vw, 1.1rem);
  line-height: 1.35;
}

.value-wave__item p {
  margin: 0;
  font-size: clamp(0.88rem, 1vw, 0.98rem);
  line-height: 1.55;
}

.offering-card {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: clamp(21.5rem, 26vw, 24rem);
  padding: clamp(2rem, 3vw, 2.8rem) clamp(1.35rem, 2vw, 1.8rem);
  border: 0;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  text-align: center;
  transition: box-shadow 0.3s ease-in-out;
  will-change: transform, opacity;
}

.offering-card::before {
  content: none;
}

.offering-card:hover {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.offering-card--dark {
  background:
    linear-gradient(180deg, rgba(6, 24, 67, 0.92), rgba(5, 17, 46, 0.96)),
    url("../images/bg.jpg") center / cover;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.offering-card--dark:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

.offering-card__icon {
  display: inline-grid;
  place-items: center;
  width: 4.25rem;
  height: 4.25rem;
  margin-bottom: 1.15rem;
  color: #bfc4ce;
}

.fa {
  display: inline-block;
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-variant: normal;
  font-weight: 900;
  line-height: 1;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fa-user::before {
  content: "\f007";
}

.fa-signal::before {
  content: "\f012";
}

.fa-check::before {
  content: "\f00c";
}

.fa-check-square-o {
  font-weight: 400;
}

.fa-check-square-o::before {
  content: "\f14a";
}

.fa-arrows::before {
  content: "\f0b2";
}

.fa-refresh::before {
  content: "\f021";
}

.fa-share-square-o::before {
  content: "\f14d";
}

.fa-search-plus::before {
  content: "\f00e";
}

.offering-card__icon .fa {
  font-size: 3.25rem;
}

.offering-card__icon svg {
  width: 3.25rem;
  height: 3.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.offering-card--dark .offering-card__icon {
  color: var(--magenta);
}

.offering-card h3 {
  margin: 0 0 1.15rem;
  color: var(--navy);
  font-size: clamp(1.12rem, 1.35vw, 1.28rem);
  font-weight: 500;
  line-height: 1.25;
}

.offering-card--dark h3 {
  color: var(--white);
  font-weight: 700;
}

.offering-card ul {
  display: grid;
  gap: 0.34rem;
  padding: 0;
  list-style: none;
}

.offering-card li {
  color: #596172;
  font-size: clamp(0.96rem, 1.05vw, 1.05rem);
  line-height: 1.38;
}

.offering-card li::before {
  content: none;
}

.offering-card--dark li {
  color: #709be7;
}

.team-wave {
  min-height: clamp(29rem, 36vw, 36rem);
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(6, 24, 67, 0.94), rgba(5, 17, 46, 0.96)),
    url("../images/bg.jpg") center/cover no-repeat;
}

.team-wave::before,
.team-wave::after {
  position: absolute;
  right: -1px;
  left: -1px;
  z-index: 1;
  height: clamp(4.5rem, 7vw, 7rem);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M0,56 C120,112 240,112 360,56 C480,0 600,0 720,56 C840,112 960,112 1080,56 C1200,0 1320,0 1440,56 L1440,120 L0,120 Z'/%3E%3C/svg%3E") center/100% 100% no-repeat;
  content: "";
  pointer-events: none;
}

.team-wave::before {
  top: -1px;
  transform: rotate(180deg);
}

.team-wave::after {
  bottom: -1px;
}

.team-wave > .container {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(2.4rem, 3.8vw, 3.5rem);
  width: min(35rem, calc(100% - 2rem));
  padding-top: clamp(6.4rem, 8vw, 8.8rem);
  padding-bottom: clamp(5.4rem, 7vw, 7.2rem);
}

.team-wave > .container::after {
  position: absolute;
  top: 0;
  right: -120%;
  z-index: -1;
  width: clamp(36rem, 58vw, 54rem);
  aspect-ratio: 1;
  border: clamp(5rem, 7vw, 7.5rem) solid rgba(97, 216, 233, 0.055);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 1rem rgba(97, 216, 233, 0.04),
    0 0 0 1rem rgba(97, 216, 233, 0.04),
    0 0 0 2rem rgba(97, 216, 233, 0.03),
    0 0 0 3rem rgba(97, 216, 233, 0.02);
  content: "";
}

.team-wave .section-intro {
  justify-items: start;
  max-width: 32rem;
  margin: 0;
  text-align: left;
}

.team-wave .section-kicker {
  display: inline-block;
  margin: 0 0 0.9rem;
  padding-bottom: 0.18rem;
  border-bottom: 4px double var(--magenta);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.team-wave .section-title {
  max-width: 34rem;
  color: var(--white);
  font-size: clamp(1.85rem, 2.65vw, 2.45rem);
  line-height: 1.13;
  letter-spacing: 0;
}

.team-wave .section-copy {
  max-width: 32rem;
  color: #709be7;
  font-size: clamp(0.86rem, 1vw, 0.98rem);
  line-height: 1.55;
}

.founder-grid {
  grid-template-columns: repeat(2, minmax(220px, 280px));
  justify-content: center;
}

.team-wave .founder-grid {
  grid-template-columns: repeat(2, minmax(0, 17.2rem));
  justify-content: start;
  gap: 2.6rem;
}

.founder-card {
  max-width: 17rem;
  margin: 0 auto;
  padding: 1.35rem;
  text-align: center;
}

.team-wave .founder-card {
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 17rem;
  max-width: none;
  margin: 0;
  padding: 2.1rem 2rem 1.65rem;
  border: 0;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.founder-card img {
  width: min(9rem, 52%);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  border-radius: 24px;
  object-fit: cover;
}

.team-wave .founder-card img {
  width: 9.27rem;
  border-radius: 999px;
}

.founder-card__body {
  padding: 1rem 0 0;
}

.team-wave .founder-card__body {
  width: 100%;
  margin-top: 1.25rem;
  padding: 1.1rem 0 0;
  border-top: 1px solid rgba(15, 53, 142, 0.08);
}

.founder-card h3 {
  font-size: 1.45rem;
  color: var(--ink);
}

.team-wave .founder-card h3 {
  margin: 0;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
}

.founder-card p {
  color: var(--muted);
  font-weight: 700;
}

.team-wave .founder-card p {
  margin-top: 0.2rem;
  color: #596172;
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1.25;
}

.benefit-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  align-items: stretch;
}

.benefit-stack {
  display: grid;
  gap: 1rem;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.96);
  overflow: hidden;
}

.benefit-card::before {
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  border-radius: 0;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--magenta));
  box-shadow: none;
}

.benefit-card--summary {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(229, 240, 255, 0.86));
}

.benefit-card--summary ul {
  margin-top: 0.45rem;
}

.benefit-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.3rem;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.benefit-visual img {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: contain;
}

.benefits-workspace {
  padding: clamp(4.6rem, 7vw, 6.8rem) 0;
  background: var(--white);
}

.benefits-workspace .benefit-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(26rem, 1.1fr);
  align-items: center;
  width: min(76rem, calc(100% - 2rem));
  gap: clamp(3rem, 6vw, 6rem);
}

.benefits-workspace .section-intro {
  justify-items: center;
  max-width: 33rem;
  margin: 0 auto clamp(2.2rem, 4vw, 3.2rem);
  text-align: center;
}

.benefits-workspace .section-kicker {
  display: inline-block;
  margin: 0 0 1.25rem;
  padding-bottom: 0.18rem;
  border-bottom: 4px double var(--blue);
  color: #111111;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.benefits-workspace .section-title {
  max-width: 29rem;
  color: #363b48;
  font-size: clamp(2.45rem, 4.1vw, 3.7rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
}

.benefits-workspace .section-copy {
  max-width: 32rem;
  color: #363b48;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.55;
}

.benefits-workspace .benefit-stack {
  gap: clamp(2rem, 3.4vw, 3rem);
}

.benefits-workspace .benefit-card {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 1.25rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.benefits-workspace .benefit-card::before {
  content: none;
}

.benefit-card__icon {
  display: inline-grid;
  place-items: start center;
  width: 3rem;
  padding-top: 0.15rem;
  color: #363b48;
}

.benefit-card__icon svg {
  width: 1.85rem;
  height: 1.85rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.benefits-workspace .benefit-card h3 {
  margin: 0 0 0.85rem;
  color: #363b48;
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  font-weight: 400;
  line-height: 1.35;
}

.benefits-workspace .benefit-card p {
  color: #000000;
  font-size: clamp(0.84rem, 1vw, 0.94rem);
  line-height: 1.65;
}

.benefits-workspace .benefit-visual {
  justify-content: flex-end;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.benefits-workspace .benefit-visual img {
  width: min(100%, 42rem);
  height: auto;
  border-radius: 0;
  object-fit: contain;
}

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

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

.contact-card {
  display: grid;
  align-content: start;
  align-self: start;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-card h3 {
  margin-bottom: 0.45rem;
  color: var(--white);
}

.contact-card a {
  color: rgba(255, 255, 255, 0.88);
}

.contact-form {
  display: grid;
  align-self: start;
  gap: 0.85rem;
  padding: 1.25rem 1.3rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.16);
}

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

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

.field label {
  font-size: 0.92rem;
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.78rem 0.92rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
}

.field textarea {
  min-height: 6.2rem;
  resize: vertical;
}

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

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

.contact-form .button {
  min-height: 3rem;
  padding: 0 1.2rem;
}

.form-note,
.form-status {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.form-status[data-state="success"] {
  color: #b8ffe1;
}

.form-status[data-state="error"] {
  color: #ffd0d9;
}

.home-page .site-footer {
  display: none;
}

.contact-showcase {
  min-height: clamp(48rem, 72vw, 62rem);
  scroll-margin-top: 0;
  padding: clamp(8.5rem, 12vw, 12rem) 0 clamp(5.5rem, 8vw, 7.5rem);
  background:
    linear-gradient(180deg, rgba(6, 24, 67, 0.9), rgba(5, 17, 46, 0.9)),
    url("../images/contact-original-bg.jpg") center top / cover no-repeat;
}

.contact-showcase::before {
  top: -1px;
  height: clamp(4.4rem, 5.4vw, 6.2rem);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1366 66' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M0,0H1366V66C1315.3,64.9,1238.5,62,1145,53.5C1074.4,47,1030.7,40.7,1001,37.1C734,4.5,692.6,77.1,484,39C371.6,18.5,311.3,-15.8,225,8.2C206.5,13.3,163.8,27.5,94,44.8C54.7,54.6,22,61.5,0,66Z'/%3E%3C/svg%3E") top center / 100% 100% no-repeat;
  transform: none;
}

.contact-showcase::after {
  content: none;
}

.contact-showcase__inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: clamp(39rem, 56vw, 48rem);
  grid-template-rows: auto auto minmax(0, 1fr);
  gap: clamp(2.8rem, 4.8vw, 5rem);
}

.contact-showcase__main {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(28rem, 1.05fr);
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}

.contact-showcase__intro {
  display: grid;
  gap: 1rem;
  max-width: 58rem;
}

.contact-showcase .section-kicker {
  justify-self: start;
  padding-bottom: 0.18rem;
  border-bottom: 4px double var(--magenta);
  color: var(--white);
  font-size: 0.72rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.contact-showcase .section-title {
  max-width: 44rem;
  color: var(--white);
  font-size: clamp(2.2rem, 3.2vw, 3rem);
  line-height: 1.1;
}

.contact-showcase .section-copy {
  max-width: 48rem;
  color: #709be7;
  font-size: 1rem;
}

.contact-showcase__sales {
  margin-top: 0.15rem;
}

.contact-showcase__sales h3,
.contact-showcase__company h3,
.contact-showcase__imprint h3 {
  margin-bottom: 1.55rem;
  color: var(--white);
  font-size: clamp(1.2rem, 1.6vw, 1.65rem);
  font-weight: 800;
  line-height: 1.15;
}

.contact-showcase__sales p,
.contact-showcase__company p,
.contact-showcase__imprint p {
  margin: 0.16rem 0;
  color: #709be7;
  font-size: 1rem;
  line-height: 1.45;
}

.contact-showcase__sales a,
.contact-showcase__company a,
.contact-showcase__imprint a {
  color: #709be7;
}

.contact-form--showcase {
  width: min(100%, 34rem);
  justify-self: start;
  gap: 0.75rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.form-grid--showcase {
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.contact-form--showcase .field {
  gap: 0.2rem;
}

.contact-form--showcase label {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 800;
}

.contact-form--showcase input {
  min-height: 2rem;
  padding: 0.25rem 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.02);
  color: var(--white);
  box-shadow: none;
}

.contact-form--showcase input:focus {
  outline: 2px solid rgba(112, 155, 231, 0.45);
  outline-offset: 2px;
}

.contact-form--showcase .form-actions {
  margin-top: 0.35rem;
}

.contact-form--showcase .button {
  min-height: 2.1rem;
  padding: 0 0.78rem;
  border-radius: 2px;
  background: #151515;
  box-shadow: none;
  color: var(--white);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.contact-showcase__footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(10rem, 0.8fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  align-self: end;
}

.contact-showcase__logo {
  justify-self: center;
  width: clamp(8.2rem, 10vw, 10.25rem);
}

.contact-showcase__logo img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.25));
}

.contact-showcase__imprint {
  justify-self: end;
}

.page-hero {
  position: relative;
  padding: 4.2rem 0 calc(3rem + clamp(20px, 2.6vw, 32px));
  background:
    linear-gradient(130deg, rgba(6, 24, 67, 0.96), rgba(15, 53, 142, 0.92)),
    url("../images/bg.jpg") center/cover no-repeat;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.page-hero .container {
  display: grid;
  gap: 1.2rem;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin-top: 0.9rem;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.96;
}

.page-hero p {
  max-width: 42rem;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.82);
}

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

.page-hero--support {
  padding-bottom: clamp(4rem, 7vw, 6.5rem);
}

.page-hero__support-contact {
  display: grid;
  gap: 0.9rem;
  max-width: 56rem;
  margin-top: 0.5rem;
}

.page-hero__support-contact p {
  max-width: none;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.175rem, 1.55vw, 1.475rem);
  line-height: 1.55;
}

.page-hero__contact-lines {
  display: grid;
  gap: 0.35rem;
  margin-top: 0.35rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.page-hero__contact-lines a {
  color: #ffffff;
  font-weight: 700;
}

.meta-card {
  display: grid;
  gap: 0.45rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.meta-card__label {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.meta-card strong {
  font-size: 1rem;
  line-height: 1.45;
}

.legal {
  padding: 3rem 0 5rem;
  background:
    radial-gradient(circle at top right, rgba(33, 118, 255, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.82));
}

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

.legal-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.96);
  overflow: hidden;
}

.legal-card--wide {
  grid-column: 1 / -1;
}

.legal-card::before {
  inset: 0 auto auto 0;
  height: 4px;
  border-radius: 0;
  box-shadow: none;
}

.legal h2 {
  margin-bottom: 0.75rem;
  font-size: 1.8rem;
  color: var(--ink);
}

.legal h3 {
  margin: 1.5rem 0 0.6rem;
  font-size: 1.2rem;
  color: var(--ink);
}

.legal p,
.legal li {
  color: var(--muted);
}

.legal p + p,
.legal ul + p,
.legal p + ul {
  margin-top: 0.9rem;
}

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

.support-card {
  min-height: 100%;
  background: rgba(255, 255, 255, 0.96);
}

.support-card strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1rem;
  color: var(--ink);
}

.site-footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid rgba(15, 53, 142, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.site-footer--showcase {
  padding: clamp(2.6rem, 4vw, 4rem) 0;
  border-top: 0;
  background: #ffffff;
}

.site-footer--showcase .contact-showcase__footer {
  align-items: center;
}

.site-footer--showcase .contact-showcase__company h3,
.site-footer--showcase .contact-showcase__imprint h3 {
  color: var(--navy);
}

.site-footer--showcase .contact-showcase__company p,
.site-footer--showcase .contact-showcase__imprint p,
.site-footer--showcase .contact-showcase__company a,
.site-footer--showcase .contact-showcase__imprint a {
  color: var(--blue);
}

.site-footer--showcase .contact-showcase__logo img {
  filter: brightness(0) saturate(100%) invert(12%) sepia(66%) saturate(1970%) hue-rotate(211deg) brightness(91%) contrast(99%);
}

.footer-grid {
  grid-template-columns: 1.4fr 1fr 1fr;
  align-items: start;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  width: clamp(10rem, 16vw, 13rem);
  aspect-ratio: 1;
  max-width: 100%;
  padding: clamp(1.2rem, 2.4vw, 1.8rem);
  overflow: hidden;
  border: 1px solid rgba(97, 216, 233, 0.12);
  border-radius: 0;
  background: var(--navy);
  box-shadow: 0 18px 34px rgba(8, 28, 74, 0.14);
}

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

.footer-title {
  margin-bottom: 0.75rem;
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links {
  display: grid;
  gap: 0.6rem;
}

.footer-links a {
  color: var(--muted);
}

.footer-meta {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 53, 142, 0.08);
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-copyright {
  margin-top: clamp(1.4rem, 2.4vw, 2rem);
  padding-top: 0.9rem;
  border-top: 1px solid rgba(15, 53, 142, 0.08);
  color: rgba(72, 91, 122, 0.76);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}

.contact-showcase__copyright {
  margin-top: clamp(2rem, 4vw, 3.4rem);
  padding-top: 0;
  border-top: 0;
  color: rgba(255, 255, 255, 0.58);
}

.fade-up {
  --fade-delay: 0s;
  opacity: 0;
  transform: translateY(22px);
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
  animation: fade-up 1s cubic-bezier(0.2, 0.7, 0.2, 1) var(--fade-delay) both;
}

.fade-up:nth-child(2) {
  --fade-delay: 0.1s;
}

.fade-up:nth-child(3) {
  --fade-delay: 0.2s;
}

.fade-up:nth-child(4) {
  --fade-delay: 0.3s;
}

.fade-up:nth-child(5) {
  --fade-delay: 0.4s;
}

.fade-up:nth-child(6) {
  --fade-delay: 0.5s;
}

.fade-up:nth-child(7) {
  --fade-delay: 0.6s;
}

.fade-up:nth-child(8) {
  --fade-delay: 0.7s;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes hero-original-fade-in-up {
  from {
    opacity: 0;
    transform: translate3d(0, 34px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes tile-image-fade-up {
  from {
    opacity: 0;
    transform: translate3d(0, 72px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.platform-visual.fade-up,
.value-wave__item.fade-up,
.benefit-card.fade-up,
.benefit-visual.fade-up {
  opacity: 1;
  transform: none;
}

.platform-visual.fade-up.is-visible,
.value-wave__item.fade-up.is-visible,
.benefit-card.fade-up.is-visible,
.benefit-visual.fade-up.is-visible {
  animation: none;
}

.platform-visual img,
.value-wave__icon,
.benefit-card__icon,
.benefit-visual img {
  opacity: 0;
  transform: translate3d(0, 72px, 0);
  will-change: opacity, transform;
}

.platform-visual.is-visible img,
.value-wave__item.is-visible .value-wave__icon,
.benefit-card.is-visible .benefit-card__icon,
.benefit-visual.is-visible img {
  animation: tile-image-fade-up 1.25s cubic-bezier(0.16, 1, 0.3, 1) var(--fade-delay) both;
}

:focus-visible {
  outline: 3px solid rgba(33, 118, 255, 0.55);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.7rem 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-header__actions {
    width: auto;
    gap: 0.6rem;
  }

  .site-nav {
    position: absolute;
    inset: calc(100% + 0.6rem) 1rem auto;
    padding: 0.75rem;
    border: 1px solid rgba(15, 53, 142, 0.1);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 28px 60px rgba(6, 24, 67, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav[hidden] {
    display: none;
  }

  .site-nav[data-open="true"] {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav a {
    justify-content: center;
  }

  .nav-more__trigger {
    justify-content: center;
    width: 100%;
  }

  .nav-more__menu {
    position: static;
    display: none;
    min-width: 0;
    margin-top: 0.35rem;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-more[data-open="true"] .nav-more__menu,
  .nav-more:focus-within .nav-more__menu {
    display: grid;
  }

  .language-switcher {
    margin-left: auto;
  }

  .hero__grid,
  .benefit-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .metric-grid,
  .overview-grid,
  .token-grid,
  .value-wave__grid,
  .offerings-grid,
  .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefits-workspace .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefits-workspace .benefit-visual {
    justify-content: center;
  }

  .benefits-workspace .benefit-visual img {
    width: min(100%, 34rem);
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 3.5rem;
    padding-bottom: calc(3.6rem + clamp(18px, 4vw, 24px));
  }

  .section,
  .legal {
    padding: 4rem 0;
  }

  .section--dark {
    padding-top: calc(4rem + 1.2rem);
    padding-bottom: calc(4rem + 1.2rem);
  }

  .value-wave {
    min-height: 0;
  }

  .value-wave__inner {
    gap: 2.5rem;
    padding-top: 7rem;
    padding-bottom: 6.5rem;
  }

  .value-wave__inner::after {
    top: 18%;
    right: -38%;
    width: 24rem;
  }

  .value-wave__intro,
  .value-wave__item {
    justify-items: center;
    text-align: center;
  }

  .value-wave__grid {
    gap: 2.2rem;
  }

  .team-wave {
    min-height: 0;
  }

  .team-wave > .container {
    width: min(28rem, calc(100% - 2rem));
    gap: 2.6rem;
    padding-top: 7rem;
    padding-bottom: 6.5rem;
  }

  .team-wave > .container::after {
    top: 4%;
    right: -70%;
    width: 30rem;
  }

  .team-wave .section-intro {
    justify-items: center;
    text-align: center;
  }

  .team-wave .founder-grid {
    grid-template-columns: 1fr;
    justify-content: center;
    gap: 1.35rem;
  }

  .team-wave .founder-card {
    width: min(100%, 17.2rem);
    margin-inline: auto;
  }

  .intro-grid,
  .metric-grid,
  .overview-grid,
  .token-grid,
  .value-wave__grid,
  .offerings-grid,
  .founder-grid,
  .support-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .benefits-workspace {
    padding: 4rem 0;
  }

  .benefits-workspace .section-intro {
    margin-bottom: 2.3rem;
  }

  .benefits-workspace .section-title {
    font-size: clamp(2.15rem, 10vw, 2.85rem);
  }

  .benefits-workspace .benefit-stack {
    gap: 2rem;
  }

  .benefits-workspace .benefit-card {
    grid-template-columns: 2.6rem minmax(0, 1fr);
    gap: 1rem;
  }

  .site-header__inner {
    gap: 0.75rem;
  }

  .site-header__actions {
    margin-left: auto;
  }

  .brand__logo {
    width: clamp(10.4rem, 31vw, 12.6rem);
  }

  .hero__badge {
    position: static;
    max-width: none;
    margin-top: 1rem;
  }

  .legal-card,
  .glass-card,
  .metric,
  .list-card,
  .offering-card,
  .support-card,
  .benefit-card {
    padding: 1.25rem;
  }
}

body {
  font-family: "Roboto", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(217, 203, 144, 0.16), transparent 20%),
    radial-gradient(circle at left center, rgba(97, 216, 233, 0.14), transparent 25%),
    linear-gradient(180deg, #f5f8fc 0%, #eaf1f9 100%);
}

.hero,
.page-hero,
.section--dark,
.value-wave,
.team-wave {
  background-position: center;
}

.hero {
  padding: 5.4rem 0 4rem;
  min-height: calc(100vh - 5.5rem);
  display: grid;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(212, 200, 150, 0.18), transparent 22%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent 28%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero h1,
.section-title,
.page-hero h1,
.card-title,
.metric__title,
.feature-card h3,
.founder-card h3,
.legal h2,
.legal h3 {
  font-family: "Roboto", "Segoe UI", sans-serif;
}

.hero__lead {
  max-width: 40rem;
}

.hero__subline {
  margin-top: 1.35rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.hero__stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-stat {
  padding: 1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero-stat strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #f6f2dd;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
}

.hero-stat span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.signal-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.4rem;
  padding: 0;
  list-style: none;
}

.signal-list li {
  display: flex;
  align-items: start;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.86);
}

.signal-list li::before {
  flex: none;
  width: 0.7rem;
  height: 0.7rem;
  margin-top: 0.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #f1dea2, var(--cyan));
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.06);
  content: "";
}

.hero__visual {
  min-height: 36rem;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
}

.hero__orb--one {
  inset: auto auto 18% 4%;
  width: 7rem;
  height: 7rem;
  background: rgba(97, 216, 233, 0.18);
}

.hero__orb--two {
  inset: 12% 8% auto auto;
  width: 5rem;
  height: 5rem;
  background: rgba(213, 18, 78, 0.16);
}

.hero__device {
  width: min(100%, 32rem);
  margin: 0 auto;
}

.trust-strip {
  position: relative;
  z-index: 1;
  padding-bottom: 1.5rem;
}

.trust-strip__inner {
  display: grid;
  gap: 1rem;
  margin-top: -2.8rem;
  padding: 1.2rem;
  border: 1px solid rgba(15, 53, 142, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 25px 60px rgba(6, 24, 67, 0.12);
}

.trust-strip__intro {
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.trust-item {
  display: grid;
  gap: 0.4rem;
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(6, 24, 67, 0.03), rgba(33, 118, 255, 0.06));
}

.trust-item__label {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trust-item p {
  color: var(--muted);
  font-size: 0.92rem;
}

.platform-section {
  padding: clamp(5rem, 8vw, 7rem) 0 clamp(4.5rem, 7vw, 6.5rem);
  background: var(--white);
}

.platform-heading {
  display: grid;
  justify-items: center;
  gap: 1.45rem;
  margin: 0 auto clamp(3.8rem, 6vw, 5.2rem);
  color: #363b48;
  text-align: center;
}

.platform-heading::before {
  width: 13.8rem;
  height: 4px;
  border-top: 2px solid var(--blue);
  border-bottom: 1px solid var(--blue);
  content: "";
}

.platform-heading h2 {
  margin: 0;
  color: #363b48;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: 0;
  text-align: center;
}

.platform-heading .section-copy {
  width: 100%;
  max-width: 48rem;
  margin-inline: auto;
  color: #363b48;
  font-size: clamp(0.88rem, 1.44vw, 1.1rem);
  line-height: 1.45;
  text-align: center;
}

.platform-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(23rem, 0.58fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.platform-visual {
  min-width: 0;
}

.platform-visual img {
  width: min(100%, 48rem);
  margin-inline: auto;
}

.platform-copy {
  display: grid;
  gap: clamp(1.75rem, 3vw, 2.6rem);
  color: #111827;
}

.platform-copy h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 1.18;
}

.platform-copy h4 {
  margin: 0 0 1rem;
  color: var(--text);
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  line-height: 1.35;
}

.platform-copy .workspace-list {
  gap: 0.45rem;
  padding-left: 1.2rem;
  color: #000000;
  font-size: clamp(0.98rem, 1.35vw, 1.12rem);
  line-height: 1.55;
  list-style: disc;
}

.platform-copy .workspace-list li {
  color: #000000;
}

.platform-copy .workspace-list li::marker {
  color: #000000;
}

.workspace-grid,
.platform-feature-stack {
  display: grid;
  gap: 1.15rem;
}

.workspace-card {
  padding: 1.6rem 1.7rem;
  border: 1px solid rgba(15, 53, 142, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 22px 50px rgba(6, 24, 67, 0.1);
}

.platform-info-card {
  padding: 1.45rem 1.6rem;
  border: 1px solid rgba(15, 53, 142, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 246, 255, 0.96));
  box-shadow: 0 20px 48px rgba(6, 24, 67, 0.1);
}

.platform-info-card p + p {
  margin-top: 0.75rem;
}

.workspace-card__eyebrow {
  margin: 0 0 0.9rem;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.workspace-list {
  display: grid;
  gap: 0.7rem;
  padding-left: 1rem;
}

.workspace-list li {
  color: var(--muted);
}

.workspace-list li::marker {
  color: var(--blue);
}

.platform-visual-card {
  position: sticky;
  top: 6.8rem;
  overflow: hidden;
  padding: 1rem;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(6, 24, 67, 0.94), rgba(15, 53, 142, 0.86)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 35%);
  box-shadow: 0 32px 70px rgba(6, 24, 67, 0.18);
}

.platform-visual-card img {
  border-radius: 20px;
}

.platform-overlay {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.platform-overlay span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.platform-overlay strong {
  font-size: 1.25rem;
  line-height: 1.35;
}

.platform-rail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}

.contact-grid--enhanced {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.contact-card--accent {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(97, 216, 233, 0.1));
}

.field--honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.checkbox-field {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.9rem;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.checkbox-field input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.2rem;
}

.checkbox-field label {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

.checkbox-field a {
  color: #f3e7af;
  text-decoration: underline;
}

.form-status[data-state="pending"] {
  color: #e4efff;
}

.form-actions .button[disabled] {
  opacity: 0.7;
  cursor: wait;
}

.accessibility-toggle {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 58;
  display: inline-grid;
  place-items: center;
  width: 3.75rem;
  height: 3.75rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.accessibility-toggle__icon {
  display: inline-grid;
  place-items: center;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--blue) 52%, var(--magenta));
  box-shadow: 0 18px 40px rgba(6, 24, 67, 0.2);
  color: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.accessibility-toggle__icon img {
  width: 1.85rem;
  height: 1.85rem;
}

.accessibility-toggle:hover .accessibility-toggle__icon,
.accessibility-toggle:focus-visible .accessibility-toggle__icon {
  box-shadow: 0 22px 46px rgba(6, 24, 67, 0.26);
  transform: scale(1.06);
}

.accessibility-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 68;
  width: min(36rem, 100vw);
  height: 100vh;
  overflow-y: auto;
  color: var(--text);
  background: #eef4fb;
  box-shadow: -18px 0 70px rgba(6, 24, 67, 0.2);
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.2s ease, transform 0.44s cubic-bezier(0.23, 1, 0.32, 1);
}

.accessibility-panel.is-open {
  opacity: 1;
  transform: translateX(0);
}

.accessibility-panel__header {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0.85rem;
  padding: 2.1rem 2rem 1.7rem;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(97, 216, 233, 0.24), rgba(255, 255, 255, 0) 34%),
    linear-gradient(135deg, var(--navy), var(--ink) 58%, var(--blue));
}

.accessibility-panel__badge {
  display: grid;
  place-items: center;
  width: 3.7rem;
  height: 3.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 34px rgba(5, 17, 46, 0.2);
}

.accessibility-panel__badge-icon {
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1;
}

.accessibility-panel__heading h2 {
  margin: 0 0 0.3rem;
  color: inherit;
  font-size: clamp(1.6rem, 4vw, 2rem);
  line-height: 1.15;
}

.accessibility-panel__heading p {
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.96rem;
}

.accessibility-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.accessibility-section {
  padding: 1.35rem 1.2rem 0;
}

.accessibility-section h3 {
  margin: 0 0 0.85rem;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.25;
}

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

.accessibility-card,
.accessibility-reset {
  border: 1px solid rgba(15, 53, 142, 0.12);
  background: rgba(255, 255, 255, 0.96);
}

.accessibility-card {
  display: grid;
  place-items: center;
  gap: 0.45rem;
  min-height: 6.9rem;
  padding: 0.95rem 0.8rem;
  border-radius: 18px;
  color: var(--text);
  text-align: center;
  box-shadow: 0 10px 28px rgba(6, 24, 67, 0.08);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.accessibility-card > span {
  font-weight: 800;
  line-height: 1.28;
}

.accessibility-card > small {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.accessibility-card:hover,
.accessibility-card:focus-visible {
  border-color: rgba(33, 118, 255, 0.42);
  box-shadow: 0 18px 34px rgba(6, 24, 67, 0.13);
  transform: translateY(-2px);
}

.accessibility-card.is-active {
  border-color: transparent;
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), var(--blue));
}

.accessibility-card.is-active > small {
  color: rgba(255, 255, 255, 0.78);
}

.accessibility-card--wide {
  grid-column: span 2;
}

.accessibility-card--step {
  justify-items: stretch;
  cursor: default;
}

.accessibility-stepper {
  display: grid;
  grid-template-columns: 2.55rem 1fr 2.55rem;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
}

.accessibility-stepper button {
  display: inline-grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.accessibility-stepper button[disabled] {
  opacity: 0.36;
  cursor: not-allowed;
}

.accessibility-stepper span {
  min-width: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.accessibility-reset {
  width: calc(100% - 2.4rem);
  min-height: 3.1rem;
  margin: 1.4rem 1.2rem 1.8rem;
  border-color: rgba(15, 53, 142, 0.2);
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--ink));
  box-shadow: 0 18px 38px rgba(6, 24, 67, 0.18);
  font-weight: 800;
  cursor: pointer;
}

.accessibility-reading-line {
  position: fixed;
  left: 0;
  z-index: 66;
  width: 100%;
  height: 12px;
  border: 3px solid #fff36d;
  border-radius: 5px;
  background: rgba(5, 17, 46, 0.86);
  pointer-events: none;
}

.accessibility-reading-mask {
  position: fixed;
  left: 0;
  z-index: 65;
  width: 100%;
  background: rgba(5, 17, 46, 0.48);
  pointer-events: none;
}

body.accessibility-readable-font {
  font-family: Arial, Helvetica, sans-serif;
}

body.accessibility-big-cursor,
body.accessibility-big-cursor * {
  cursor: crosshair !important;
}

body.accessibility-letter-spacing,
body.accessibility-letter-spacing p,
body.accessibility-letter-spacing li,
body.accessibility-letter-spacing a,
body.accessibility-letter-spacing span,
body.accessibility-letter-spacing button,
body.accessibility-letter-spacing input,
body.accessibility-letter-spacing textarea {
  letter-spacing: 0.06em;
}

body.accessibility-align-text main,
body.accessibility-align-text section,
body.accessibility-align-text article {
  text-align: center;
}

body.accessibility-font-weight p,
body.accessibility-font-weight li,
body.accessibility-font-weight a,
body.accessibility-font-weight span,
body.accessibility-font-weight label,
body.accessibility-font-weight button {
  font-weight: 700;
}

body.accessibility-light-contrast,
body.accessibility-light-contrast .site-header,
body.accessibility-light-contrast .site-nav,
body.accessibility-light-contrast .consent-banner__content,
body.accessibility-light-contrast .consent-modal__dialog,
body.accessibility-light-contrast .accessibility-panel,
body.accessibility-light-contrast .glass-card,
body.accessibility-light-contrast .metric,
body.accessibility-light-contrast .list-card,
body.accessibility-light-contrast .offering-card,
body.accessibility-light-contrast .token-card,
body.accessibility-light-contrast .founder-card,
body.accessibility-light-contrast .benefit-card,
body.accessibility-light-contrast .legal-card,
body.accessibility-light-contrast .support-card,
body.accessibility-light-contrast .accessibility-card {
  color: #1f2937 !important;
  background: #ffffff !important;
}

body.accessibility-light-contrast a {
  color: #0f358e !important;
}

body.accessibility-light-contrast .accessibility-card.is-active {
  color: #0f358e !important;
  background: #dceeff !important;
  border-color: #0f358e !important;
}

body.accessibility-high-contrast,
body.accessibility-high-contrast .site-header,
body.accessibility-high-contrast .site-nav,
body.accessibility-high-contrast .consent-banner__content,
body.accessibility-high-contrast .consent-modal__dialog,
body.accessibility-high-contrast .accessibility-panel,
body.accessibility-high-contrast .glass-card,
body.accessibility-high-contrast .metric,
body.accessibility-high-contrast .list-card,
body.accessibility-high-contrast .offering-card,
body.accessibility-high-contrast .token-card,
body.accessibility-high-contrast .founder-card,
body.accessibility-high-contrast .benefit-card,
body.accessibility-high-contrast .legal-card,
body.accessibility-high-contrast .support-card,
body.accessibility-high-contrast .accessibility-card {
  color: #ffffff !important;
  background: #111111 !important;
}

body.accessibility-high-contrast a,
body.accessibility-high-contrast h1,
body.accessibility-high-contrast h2,
body.accessibility-high-contrast h3,
body.accessibility-high-contrast h4,
body.accessibility-high-contrast h5,
body.accessibility-high-contrast h6,
body.accessibility-high-contrast .eyebrow {
  color: #fff36d !important;
}

body.accessibility-high-contrast .accessibility-card.is-active {
  color: #111111 !important;
  background: #fff36d !important;
  border-color: #fff36d !important;
}

body.accessibility-monochrome {
  filter: grayscale(1);
}

body.accessibility-hide-images img:not(.brand__logo):not(.accessibility-toggle__icon img) {
  opacity: 0 !important;
}

body.accessibility-hide-images .language-switcher__flag img {
  opacity: 1 !important;
}

body.accessibility-hide-images .hero,
body.accessibility-hide-images .section--dark,
body.accessibility-hide-images .value-wave,
body.accessibility-hide-images .team-wave,
body.accessibility-hide-images .platform-visual {
  background-image: none !important;
}

body.accessibility-highlight-links a:not(.accessibility-close) {
  color: #111111 !important;
  background: #fff36d !important;
  text-decoration: underline !important;
}

body.accessibility-highlight-content section,
body.accessibility-highlight-content article,
body.accessibility-highlight-content .glass-card,
body.accessibility-highlight-content .metric,
body.accessibility-highlight-content .list-card,
body.accessibility-highlight-content .offering-card,
body.accessibility-highlight-content .token-card,
body.accessibility-highlight-content .founder-card,
body.accessibility-highlight-content .benefit-card,
body.accessibility-highlight-content .legal-card,
body.accessibility-highlight-content .support-card,
body.accessibility-highlight-content input,
body.accessibility-highlight-content textarea {
  outline: 3px solid #b057f1;
  outline-offset: 4px;
}

body.accessibility-stop-animations,
body.accessibility-stop-animations * {
  scroll-behavior: auto !important;
  animation: none !important;
  transition: none !important;
}

.consent-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  width: min(34rem, calc(100vw - 2rem));
}

.consent-banner__content {
  display: grid;
  gap: 1rem;
  padding: 1.1rem;
  border: 1px solid rgba(15, 53, 142, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 30px 70px rgba(6, 24, 67, 0.2);
}

.consent-banner__title,
.consent-modal__eyebrow {
  margin: 0 0 0.35rem;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.consent-banner__copy,
.consent-modal__copy {
  color: var(--muted);
  font-size: 0.94rem;
}

.consent-banner__actions,
.consent-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}

.consent-button {
  min-height: 2.9rem;
}

.consent-banner .button--ghost,
.consent-modal .button--ghost {
  background: rgba(6, 24, 67, 0.06);
  box-shadow: none;
  color: var(--ink);
}

.consent-link,
.consent-fab {
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.consent-fab {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 55;
  min-height: 2.9rem;
  padding: 0 1rem;
  border-radius: 999px;
  background: rgba(6, 24, 67, 0.92);
  box-shadow: 0 20px 40px rgba(6, 24, 67, 0.18);
  color: var(--white);
}

.consent-banner:not([hidden]) + .consent-fab {
  display: none;
}

.consent-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
}

.consent-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 17, 46, 0.55);
  backdrop-filter: blur(6px);
}

.consent-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(42rem, calc(100vw - 2rem));
  margin: min(8vh, 4rem) auto;
  padding: 1.4rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 35px 80px rgba(6, 24, 67, 0.24);
}

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

.consent-modal__header h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  line-height: 1;
}

.consent-close {
  width: 2.6rem;
  height: 2.6rem;
  border: 0;
  border-radius: 999px;
  background: rgba(6, 24, 67, 0.08);
  color: var(--ink);
  font-size: 1.6rem;
  cursor: pointer;
}

.consent-option {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: start;
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: var(--surface);
}

.consent-option strong {
  color: var(--ink);
}

.consent-option p {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.consent-option input {
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.2rem;
}

.consent-modal-open {
  overflow: hidden;
}

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

@media (max-width: 980px) {
  .hero__stat-grid,
  .trust-grid,
  .platform-stage,
  .platform-rail,
  .contact-grid--enhanced,
  .page-hero__meta,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .platform-visual-card {
    position: static;
  }

  .platform-heading {
    margin-bottom: 3rem;
  }

  .platform-visual img {
    width: min(100%, 42rem);
  }

  .platform-copy {
    width: min(42rem, 100%);
    margin-inline: auto;
  }

  .hero__visual {
    min-height: auto;
  }

  .hero__device {
    margin-top: 10rem;
  }

  .contact-showcase {
    padding-top: 8rem;
  }

  .contact-showcase__inner {
    gap: 4rem;
  }

  .contact-showcase__main,
  .contact-showcase__footer {
    grid-template-columns: 1fr;
  }

  .contact-form--showcase {
    width: min(100%, 34rem);
  }

  .contact-showcase__logo,
  .contact-showcase__imprint {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .platform-section {
    padding: 4rem 0;
  }

  .platform-heading {
    gap: 1rem;
    margin-bottom: 2.5rem;
  }

  .platform-heading::before {
    width: 9rem;
  }

  .platform-heading .section-copy br {
    display: none;
  }

  .platform-copy h3 {
    text-align: left;
  }

  .accessibility-toggle {
    right: 0.75rem;
    bottom: 0.75rem;
    width: 3.25rem;
    height: 3.25rem;
  }

  .accessibility-toggle__icon {
    width: 3.25rem;
    height: 3.25rem;
  }

  .accessibility-panel {
    width: 100%;
  }

  .accessibility-panel__header {
    padding-inline: 1.15rem;
  }

  .accessibility-section {
    padding-inline: 0.75rem;
  }

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

  .accessibility-reset {
    width: calc(100% - 1.5rem);
    margin-inline: 0.75rem;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero__device {
    width: min(100%, 28rem);
    margin-top: 0;
  }

  .hero__stat-grid {
    gap: 0.7rem;
  }

  .founder-card {
    max-width: none;
  }

  .trust-strip__inner {
    margin-top: -1.6rem;
  }

  .meta-card,
  .legal-card {
    padding: 1.2rem;
  }

  .consent-banner {
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    width: auto;
  }

  .consent-fab {
    right: auto;
    bottom: 0.75rem;
    left: 0.75rem;
    width: auto;
  }
}

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

  .accessibility-card--wide {
    grid-column: span 1;
  }

  .contact-showcase {
    min-height: auto;
    padding-top: 7rem;
    padding-bottom: 4.5rem;
  }

  .contact-showcase::before {
    top: -1px;
    height: 5.25rem;
    background-size: 180% 100%;
  }

  .contact-showcase__inner {
    min-height: auto;
  }

  .contact-showcase .section-title {
    font-size: clamp(1.9rem, 9vw, 2.4rem);
  }

  .contact-showcase__sales {
    margin-top: 2.5rem;
  }

  .contact-form--showcase {
    width: 100%;
  }

  .contact-showcase__footer {
    gap: 2.4rem;
  }
}

.home-page .site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 40;
  border-bottom: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.home-page .site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0;
}

.home-page .brand {
  grid-column: 2;
  justify-self: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-page .brand__logo {
  width: clamp(17rem, 32vw, 31rem);
  clip-path: none;
}

.home-page .nav-toggle {
  display: inline-flex;
  grid-column: 3;
  justify-self: end;
  border-color: rgba(255, 255, 255, 0.18);
  background: transparent;
  color: var(--white);
}

.home-page .site-header__actions {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  width: auto;
}

.home-page .language-switcher {
  display: inline-flex;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(6, 24, 67, 0.28);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.home-page .language-switcher a {
  color: rgba(255, 255, 255, 0.82);
}

.home-page .site-nav {
  position: absolute;
  top: calc(100% + 0.6rem);
  right: 0;
  width: min(22rem, calc(100vw - 2rem));
  padding: 0.75rem;
  border: 1px solid rgba(15, 53, 142, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 28px 60px rgba(6, 24, 67, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.home-page .site-nav[hidden] {
  display: none;
}

.home-page .site-nav[data-open="true"] {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.home-page .site-nav ul {
  flex-direction: column;
  align-items: stretch;
}

.home-page .site-nav a,
.home-page .nav-more__trigger {
  justify-content: center;
  width: 100%;
}

.home-page .nav-more__menu {
  position: static;
  display: none;
  min-width: 0;
  margin-top: 0.35rem;
  box-shadow: none;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.home-page .nav-more[data-open="true"] .nav-more__menu,
.home-page .nav-more:focus-within .nav-more__menu {
  display: grid;
}

.home-page .hero {
  min-height: 100vh;
  padding: 0;
  display: grid;
  align-items: center;
  background: var(--navy-deep) url("../images/hero-original-bg.jpg") center top / cover no-repeat;
}

.home-page .hero::before {
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(6, 24, 67, 0.9), rgba(5, 17, 46, 0.9));
}

.home-page .hero::after {
  inset: 0 -1px -1px;
  z-index: 0;
  height: auto;
  background: var(--white);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.home-page .hero__grid {
  width: min(1160px, calc(100vw - 104px));
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  min-height: 100vh;
  padding-top: 0;
  align-items: center;
}

.home-page .hero__content {
  align-self: center;
  padding: 0 0 7.75rem;
}

.home-page .eyebrow {
  padding: 0 0 0.28rem;
  border-radius: 0;
  border-bottom: 4px double var(--magenta);
  background: transparent;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.7;
  text-transform: uppercase;
  opacity: 0;
  animation: hero-original-fade-in-up 1s ease both;
}

.home-page .eyebrow::before {
  display: none;
}

.home-page .hero h1 {
  max-width: 35rem;
  margin-top: 1rem;
  font-size: clamp(3rem, 5.53vw, 4.375rem);
  font-weight: 500;
  line-height: 1;
  opacity: 0;
  animation: hero-original-fade-in-up 1s ease 50ms both;
}

.home-page .hero__lead,
.home-page .hero__subline,
.home-page .hero__halo,
.home-page .hero__orb {
  display: none;
}

.home-page .hero__visual {
  justify-self: end;
  align-self: center;
  min-height: 0;
  padding: 10rem 0 0;
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  animation: hero-original-fade-in-up 1s ease both;
}

.home-page .hero__device {
  width: min(35rem, 100%);
  min-width: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-page .hero__device img {
  border-radius: 0;
  filter: drop-shadow(0 22px 28px rgba(5, 17, 46, 0.28));
}

@media (max-width: 980px) {
  .home-page .site-header__inner {
    display: grid;
  }

  .home-page .hero__grid {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 1.4rem;
    width: min(100% - 2rem, 44rem);
    padding-top: 6.8rem;
  }

  .home-page .hero__content {
    padding-bottom: 0;
  }

  .home-page .hero__visual {
    justify-self: center;
    padding: 0 0 3rem;
  }

  .home-page .hero__device {
    width: min(28rem, 78vw);
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .home-page .site-header__inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.55rem;
  }

  .home-page .hero__grid {
    width: min(calc(100% - 40px), 44rem);
    align-content: start;
    gap: 2.5rem;
    padding-top: 12.25rem;
  }

  .home-page .hero__visual {
    order: -1;
    width: 100%;
    padding: 0;
  }

  .home-page .hero__content {
    width: 100%;
  }

  .home-page .hero__device {
    width: min(100%, 335px);
  }

  .home-page .site-header__actions {
    grid-column: 1;
  }

  .home-page .language-switcher {
    gap: 0.2rem;
    padding: 0.24rem;
  }

  .home-page .language-switcher a {
    min-width: 2.15rem;
    min-height: 2rem;
    padding: 0 0.45rem;
  }

  .home-page .brand__logo {
    width: min(100%, clamp(9rem, 38vw, 12rem));
  }

  .home-page .hero::after {
    inset: 42% -8% -1px;
    clip-path: polygon(0 70%, 100% 28%, 100% 100%, 0 100%);
  }

  .home-page .hero h1 {
    font-size: clamp(2.5rem, 13vw, 3.6rem);
  }
}
