:root {
  color-scheme: dark;
  --black: #000;
  --blue: #0057ff;
  --blue-strong: #1264ff;
  --page-bg: #000;
  --top-wash: rgba(0, 87, 255, 0.18);
  --ink: #f7f9ff;
  --muted: #a8b0be;
  --muted-strong: #d0d5df;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.24);
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.09);
  --radius: 8px;
  --max: 1180px;
}

[data-theme="light"] {
  color-scheme: light;
  --page-bg: #f5f7fb;
  --top-wash: rgba(0, 87, 255, 0.1);
  --ink: #07111f;
  --muted: #526174;
  --muted-strong: #253247;
  --line: rgba(7, 17, 31, 0.12);
  --line-strong: rgba(7, 17, 31, 0.22);
  --panel: rgba(255, 255, 255, 0.78);
  --panel-strong: rgba(255, 255, 255, 0.94);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, var(--top-wash), transparent 18rem),
    var(--page-bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  transition: background-color 180ms ease, color 180ms ease;
}

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

[data-theme="light"] body::before {
  background-image:
    linear-gradient(rgba(7, 17, 31, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 17, 31, 0.055) 1px, transparent 1px);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
  padding: 18px 0;
  background: #061020;
  box-shadow: 0 0 0 100vmax #061020;
  clip-path: inset(0 -100vmax);
  transition: padding 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  padding: 12px 0;
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.brand img {
  width: 164px;
}

.site-footer span {
  color: var(--blue);
  font-weight: 900;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #d0d5df;
  font-size: 0.84rem;
  font-weight: 750;
}

.nav-links a,
.header-action,
.theme-toggle {
  transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.nav-links a:hover {
  color: #f7f9ff;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  color: #f7f9ff;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

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

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

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

.mobile-menu {
  display: none;
}

.header-action {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  padding: 10px 15px;
  color: #f7f9ff;
  font-size: 0.84rem;
  font-weight: 800;
}

.header-action:hover {
  border-color: rgba(0, 87, 255, 0.78);
  background: rgba(0, 87, 255, 0.18);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.035);
  color: #f7f9ff;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
}

.theme-toggle:hover {
  border-color: rgba(0, 87, 255, 0.78);
  background: rgba(0, 87, 255, 0.18);
}

.theme-toggle-icon {
  position: relative;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.theme-toggle-icon::after {
  position: absolute;
  inset: -2px -2px -2px 7px;
  border-radius: 0 999px 999px 0;
  background: #061020;
  content: "";
}

[data-theme="light"] .theme-toggle-icon::after {
  display: none;
}

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

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: clamp(560px, calc(100svh - 76px), 820px);
  max-height: 820px;
  overflow: hidden;
  background: #000;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.06) 46%, rgba(0, 0, 0, 0.46) 70%, rgba(0, 0, 0, 0.96) 100%),
    linear-gradient(180deg, rgba(0, 87, 255, 0.14), rgba(0, 0, 0, 0.12) 48%, rgba(0, 0, 0, 0.54));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 54%, rgba(0, 0, 0, 0.7) 66%, transparent 86%);
  mask-image: linear-gradient(90deg, #000 0%, #000 54%, rgba(0, 0, 0, 0.7) 66%, transparent 86%);
}

.hero-copy {
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(calc(100% - 36px), var(--max));
  min-height: inherit;
  margin: 0 auto;
  padding: clamp(54px, 8vw, 86px) 0 clamp(54px, 8vw, 86px) clamp(480px, 52vw, 640px);
  color: #f7f9ff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.42);
}

.hero-logo {
  width: min(360px, 100%);
  margin-bottom: 12px;
}

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

.hero h1,
.intro h2,
.section-heading h2,
.platform h2,
.investors h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(2.45rem, 5.1vw, 5.25rem);
  font-weight: 880;
  letter-spacing: 0;
  line-height: 0.92;
}

.hero h1 span {
  display: block;
}

.hero p {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted-strong);
  font-size: clamp(1.05rem, 1.5vw, 1.26rem);
  line-height: 1.62;
}

[data-theme="light"] .hero p {
  color: #d0d5df;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 18px;
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 16px 44px rgba(0, 87, 255, 0.34);
}

.button-primary:hover {
  background: var(--blue-strong);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.035);
}

[data-theme="light"] .button-secondary {
  background: rgba(255, 255, 255, 0.74);
}

.hero .button-secondary,
[data-theme="light"] .hero .button-secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.035);
  color: #f7f9ff;
}

.intro,
.platform,
.investors,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(340px, 0.9fr);
  gap: 64px;
  padding: 108px 0;
  border-bottom: 1px solid var(--line);
}

.intro h2,
.section-heading h2,
.platform h2,
.investors h2,
.contact h2 {
  font-size: clamp(2.2rem, 4.6vw, 5rem);
}

.intro-copy,
.platform-copy,
.investor-copy,
.contact p,
.contact-list {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.intro-copy h3 {
  margin: 28px 0 12px;
  color: var(--blue-strong);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.intro-copy p:last-child,
.investor-copy p:last-child {
  margin-bottom: 0;
}

.audiences,
.platform,
.investors,
.contact {
  padding-top: 110px;
  padding-bottom: 110px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.52fr);
  align-items: end;
  gap: 56px;
  margin-bottom: 44px;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.62;
}

.audience-grid {
  display: grid;
  gap: 26px;
}

.audience-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 0.72fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

[data-theme="light"] .audience-card,
[data-theme="light"] .investor-card {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 44px rgba(7, 17, 31, 0.08);
}

.audience-card:nth-child(even) {
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.92fr);
}

.audience-card:nth-child(even) img {
  grid-column: 2;
}

.audience-card:nth-child(even) div {
  grid-column: 1;
  grid-row: 1;
}

.audience-card img {
  width: 100%;
  height: 100%;
  min-height: 370px;
  object-fit: cover;
}

.audience-card div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
}

.audience-card h3,
.platform-points h3 {
  margin-bottom: 18px;
  font-size: clamp(1.45rem, 2.2vw, 2.1rem);
  line-height: 1.06;
}

.audience-card p,
.platform-points p {
  margin-bottom: 24px;
  color: var(--muted);
}

.audience-card strong {
  display: block;
  margin-bottom: 20px;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.25;
}

.audience-card .button {
  width: fit-content;
}

.audience-card > div > a:not(.button),
.contact-list a {
  width: fit-content;
  color: var(--blue-strong);
  font-weight: 850;
}

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

.platform-copy {
  max-width: none;
}

.platform-preview {
  position: sticky;
  top: 96px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(0, 87, 255, 0.28), transparent 46%),
    var(--panel);
  box-shadow: 0 0 56px rgba(0, 87, 255, 0.18);
}

[data-theme="light"] .platform-preview {
  background:
    linear-gradient(135deg, rgba(0, 87, 255, 0.12), transparent 52%),
    rgba(255, 255, 255, 0.78);
}

.device-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: end;
}

.device-row img {
  width: 100%;
  max-height: 540px;
  object-fit: contain;
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.45));
}

.card-preview {
  width: 100%;
  margin-top: 20px;
  border-radius: 8px;
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.4);
}

.platform-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.platform-points article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: rgba(255, 255, 255, 0.04);
}

[data-theme="light"] .platform-points article {
  background: rgba(255, 255, 255, 0.82);
}

.platform-points article:nth-child(3) {
  border-color: rgba(0, 87, 255, 0.58);
  background: linear-gradient(135deg, rgba(0, 87, 255, 0.2), rgba(255, 255, 255, 0.045));
}

[data-theme="light"] .platform-points article:nth-child(3) {
  background: linear-gradient(135deg, rgba(0, 87, 255, 0.1), rgba(255, 255, 255, 0.92));
}

.platform-points p {
  margin-bottom: 0;
}

.investors {
  align-items: center;
}

.investor-copy p:first-of-type {
  margin-top: 26px;
}

.investor-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.investor-images {
  display: grid;
  grid-template-columns: minmax(120px, 0.54fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(0, 87, 255, 0.2), transparent 60%),
    rgba(255, 255, 255, 0.035);
}

[data-theme="light"] .investor-images {
  background:
    linear-gradient(135deg, rgba(0, 87, 255, 0.12), transparent 60%),
    rgba(255, 255, 255, 0.84);
}

.investor-images img {
  width: 100%;
  max-height: 430px;
  object-fit: contain;
}

.investor-list {
  padding: 28px;
}

.investor-list span {
  display: block;
  color: var(--blue-strong);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.investor-list strong {
  display: block;
  margin: 12px 0 22px;
  font-size: clamp(1.35rem, 2.3vw, 2.1rem);
  line-height: 1.1;
}

.contact {
  border-bottom: 0;
}

.contact-list {
  display: grid;
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.contact-form,
.prospectus-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 14px;
  row-gap: 18px;
  align-items: start;
}

.contact-form label,
.prospectus-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.contact-form .wide,
.contact-form button,
.prospectus-form .wide,
.prospectus-form button {
  grid-column: 1 / -1;
}

.contact-form span,
.prospectus-form span {
  display: block;
  color: var(--muted-strong);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.15;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  line-height: 1.35;
  padding: 13px 14px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

[data-theme="light"] input,
[data-theme="light"] select,
[data-theme="light"] textarea {
  background: rgba(255, 255, 255, 0.92);
}

input,
select {
  min-height: 58px;
}

select {
  appearance: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(0, 87, 255, 0.82);
  box-shadow: 0 0 0 4px rgba(0, 87, 255, 0.18);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.92rem;
}

.hidden-field {
  display: none;
}

.prospectus {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 0.62fr);
  align-items: start;
  gap: 34px;
  border: 1px solid rgba(0, 87, 255, 0.48);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 42px);
  margin-bottom: 90px;
  background:
    linear-gradient(135deg, rgba(0, 87, 255, 0.24), transparent 58%),
    rgba(255, 255, 255, 0.045);
}

[data-theme="light"] .prospectus {
  background:
    linear-gradient(135deg, rgba(0, 87, 255, 0.12), transparent 58%),
    rgba(255, 255, 255, 0.78);
}

.prospectus h2 {
  max-width: 560px;
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 5vw, 5.3rem);
  line-height: 0.92;
}

.prospectus p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.prospectus-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(0, 0, 0, 0.28);
}

[data-theme="light"] .prospectus-form {
  background: rgba(255, 255, 255, 0.68);
}

.thank-you {
  display: grid;
  min-height: 100svh;
  align-content: center;
  justify-items: start;
  gap: 18px;
  padding-top: 64px;
  padding-bottom: 64px;
}

.thank-you img {
  width: clamp(120px, 18vw, 190px);
}

.thank-you h1 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.95;
}

.thank-you p {
  max-width: 560px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 1.08rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  justify-content: space-between;
  gap: 34px;
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 34px 0 44px;
  color: #d0d5df;
  background: #061020;
  box-shadow: 0 0 0 100vmax #061020;
  clip-path: inset(0 -100vmax);
}

.site-footer img {
  width: 142px;
}

.site-footer p {
  margin: 0;
  max-width: 360px;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 20px;
  max-width: 520px;
}

.footer-links a {
  color: var(--blue-strong);
  font-size: 0.92rem;
  font-weight: 850;
}

.footer-links .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: #f7f9ff;
  background: var(--blue);
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.footer-links .social-link:hover {
  border-color: rgba(0, 87, 255, 0.78);
  background: var(--blue-strong);
  transform: translateY(-1px);
}

.footer-links .social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .site-header {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: space-between;
    position: sticky;
  }

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

  .mobile-menu {
    grid-column: 1 / -1;
    order: 4;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    border: 0 solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.055);
    opacity: 0;
    transition: max-height 180ms ease, opacity 160ms ease, padding 160ms ease, border-width 160ms ease;
  }

  .site-header.menu-open .mobile-menu {
    max-height: 280px;
    border-width: 1px;
    padding: 8px;
    opacity: 1;
  }

  .mobile-menu a {
    border-radius: 6px;
    padding: 12px 13px;
    color: #f7f9ff;
    font-size: 0.95rem;
    font-weight: 850;
  }

  .mobile-menu a:not(.button):hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .mobile-menu .button {
    margin-top: 4px;
  }

  .hero,
  .intro,
  .section-heading,
  .platform,
  .investors,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: clamp(560px, calc(100svh - 72px), 760px);
    max-height: none;
  }

  .hero-media {
    min-height: 100%;
    max-height: none;
  }

  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.26) 0%, rgba(0, 0, 0, 0.22) 44%, rgba(0, 0, 0, 0.64) 76%, rgba(0, 0, 0, 0.96) 100%),
      linear-gradient(180deg, rgba(0, 87, 255, 0.22), rgba(0, 0, 0, 0.28) 46%, rgba(0, 0, 0, 0.82));
  }

  .hero-copy {
    padding: 58px 0 72px;
  }

  .audience-card,
  .audience-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .audience-card:nth-child(even) img,
  .audience-card:nth-child(even) div {
    grid-column: auto;
    grid-row: auto;
  }

  .platform-preview {
    position: static;
  }

  .platform-points {
    grid-template-columns: 1fr;
  }

  .prospectus {
    grid-template-columns: 1fr;
  }

  .prospectus-form {
    max-width: 680px;
  }
}

@media (max-width: 640px) {
  .site-header,
  .section-shell,
  .site-footer {
    width: min(calc(100% - 24px), var(--max));
  }

  .brand img {
    width: 110px;
  }

  .header-action {
    display: none;
  }

  .header-controls {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    gap: 8px;
  }

  .theme-toggle {
    justify-content: center;
    width: 38px;
    min-height: 38px;
    padding: 0;
    font-size: 0.76rem;
  }

  .theme-toggle [data-theme-toggle-label] {
    display: none;
  }

  .theme-toggle-icon {
    width: 16px;
    height: 16px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: clamp(590px, calc(100svh - 70px), 720px);
  }

  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.9)),
      linear-gradient(180deg, rgba(0, 87, 255, 0.2), rgba(0, 0, 0, 0.18) 44%, rgba(0, 0, 0, 0.86));
  }

  .hero-media img {
    -webkit-mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.88) 54%, transparent 100%);
    mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.88) 54%, transparent 100%);
  }

  .hero-copy {
    width: min(calc(100% - 24px), var(--max));
    padding: 46px 0 58px;
    align-items: flex-start;
  }

  .hero-logo {
    width: 260px;
  }

  .hero h1,
  .hero p,
  .section-heading h2,
  .platform h2,
  .investors h2,
  .contact h2 {
    max-width: calc(100vw - 42px);
  }

  .hero h1,
  .section-heading h2,
  .platform h2,
  .investors h2,
  .contact h2 {
    font-size: clamp(2rem, 9.4vw, 2.35rem);
    line-height: 0.98;
  }

  .hero p {
    width: 100%;
    max-width: 320px;
    font-size: 1rem;
  }

  .intro h2 {
    font-size: clamp(2rem, 10vw, 2.55rem);
    line-height: 1;
  }

  .hero-actions,
  .button {
    width: 100%;
    max-width: 320px;
  }

  .intro,
  .audiences,
  .platform,
  .investors,
  .contact {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .audience-card img {
    min-height: 260px;
  }

  .audience-card div,
  .platform-points article,
  .investor-list,
  .platform-preview,
  .investor-images,
  .prospectus {
    padding: 22px;
  }

  .device-row,
  .investor-images {
    grid-template-columns: 1fr;
  }

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

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

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
