:root {
  --navy-950: #030914;
  --navy-900: #06111f;
  --navy-850: #091828;
  --navy-800: #0c2034;
  --ink: #0b1725;
  --muted: #657184;
  --line: #dbe2ea;
  --paper: #f5f7fa;
  --white: #ffffff;
  --gold: #f0b62a;
  --gold-soft: #ffd870;
  --blue: #13bfff;
  --blue-deep: #1876ff;
  --green: #22d98b;
  --red: #ff655f;
  --shadow: 0 28px 80px rgba(4, 13, 25, .18);
  --shell: min(1380px, calc(100% - 56px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--navy-950);
  color: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-150%);
}

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

.eyebrow {
  margin: 0 0 14px;
  color: #2577d8;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.eyebrow-gold {
  color: var(--gold);
}

.eyebrow-blue {
  color: var(--blue);
}

.eyebrow-green {
  color: var(--green);
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 15px 27px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 850;
  letter-spacing: .01em;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

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

.button:focus-visible,
.main-nav a:focus-visible,
.language-switcher button:focus-visible,
.menu-button:focus-visible {
  outline: 3px solid rgba(19, 191, 255, .75);
  outline-offset: 3px;
}

.button-primary {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 12px 32px rgba(240, 182, 42, .2);
  color: #07101c;
}

.button-primary:hover {
  box-shadow: 0 16px 42px rgba(240, 182, 42, .32);
}

.button-ghost {
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .04);
  color: var(--white);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .08);
}

.button-blue {
  background: linear-gradient(135deg, #20d7ff, #127aff);
  box-shadow: 0 14px 38px rgba(19, 191, 255, .25);
  color: #03101c;
}

.button-small {
  min-height: 52px;
  padding: 12px 21px;
  border-radius: 8px;
  font-size: 15px;
  white-space: nowrap;
}

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: 104px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: rgba(3, 9, 20, .82);
  backdrop-filter: blur(18px);
  transition: background .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  background: rgba(3, 9, 20, .96);
  box-shadow: 0 15px 45px rgba(0, 0, 0, .24);
}

.nav-wrap {
  display: grid;
  height: 100%;
  grid-template-columns: 172px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  width: 164px;
  height: 88px;
  align-items: center;
}

.brand img {
  width: 100%;
  max-height: 82px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(13px, 1.55vw, 25px);
}

.main-nav > a {
  position: relative;
  padding: 38px 0 35px;
  color: #c1cad5;
  font-size: 16px;
  font-weight: 750;
  white-space: nowrap;
}

.main-nav > a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transition: transform .2s ease;
}

.main-nav > a:hover {
  color: var(--white);
}

.main-nav > a:hover::after {
  transform: scaleX(1);
}

.mobile-nav-login,
.mobile-languages {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switcher {
  display: inline-flex;
  gap: 7px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .045);
}

.language-switcher button,
.mobile-languages button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #cbd4df;
  cursor: pointer;
}

.language-switcher button {
  width: 42px;
  height: 38px;
  padding: 0;
  border-radius: 999px;
  background: transparent;
}

.language-switcher button.is-active {
  background: rgba(240, 182, 42, .15);
  box-shadow: inset 0 0 0 1px rgba(240, 182, 42, .55), 0 0 18px rgba(240, 182, 42, .1);
}

.flag {
  display: block;
  width: 27px;
  height: 18px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 3px;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .38);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  padding: 166px 0 96px;
  isolation: isolate;
  background:
    radial-gradient(circle at 74% 42%, rgba(17, 104, 183, .13), transparent 30%),
    linear-gradient(145deg, #030914 0%, #061321 56%, #07111d 100%);
}

.hero-grid-bg,
.ai-grid-bg {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: .36;
  background-image:
    linear-gradient(rgba(55, 113, 158, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(55, 113, 158, .12) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .14;
}

.hero-glow-blue {
  top: 150px;
  right: 4%;
  background: var(--blue);
}

.hero-glow-gold {
  bottom: -260px;
  left: 15%;
  background: var(--gold);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(550px, 1.18fr);
  align-items: center;
  gap: 54px;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 22px;
  padding: 7px 12px 7px 8px;
  border: 1px solid rgba(19, 191, 255, .24);
  border-radius: 11px;
  background: rgba(12, 32, 52, .55);
}

.hero-kicker img {
  width: 43px;
  height: 43px;
  object-fit: contain;
}

.hero-kicker div {
  display: grid;
  line-height: 1.15;
}

.hero-kicker span {
  color: #ecfaff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .15em;
}

.hero-kicker small {
  margin-top: 5px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(53px, 5.2vw, 79px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.08;
  text-wrap: balance;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 span {
  text-shadow: 0 6px 28px rgba(4, 12, 24, .15);
}

.hero h1 em {
  margin-top: .08em;
  color: transparent;
  font-style: normal;
  letter-spacing: -.03em;
  -webkit-text-stroke: 1.25px var(--blue);
  text-shadow: 0 0 28px rgba(19, 191, 255, .24);
}

.hero-copy {
  max-width: 580px;
  margin: 28px 0 0;
  color: #aebac8;
  font-size: 19px;
  line-height: 1.75;
}

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

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 23px 0 0;
  padding: 0;
  color: #a7b5c5;
  font-size: 15px;
  list-style: none;
}

.hero-points li::before {
  margin-right: 8px;
  color: var(--gold);
  content: "✓";
  font-weight: 900;
}

.credit-note {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 25px;
}

.credit-note > strong {
  display: grid;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(240, 182, 42, .45);
  border-radius: 50%;
  color: var(--gold);
  font-size: 22px;
  place-items: center;
}

.credit-note > span {
  display: grid;
  line-height: 1.25;
}

.credit-note b {
  color: #f5f7fa;
  font-size: 16px;
}

.credit-note small {
  margin-top: 4px;
  color: #7f8da0;
  font-size: 14px;
}

.hero-product {
  position: relative;
  min-height: 560px;
  perspective: 1200px;
}

.app-window {
  overflow: hidden;
  border: 1px solid rgba(125, 168, 204, .22);
  border-radius: 14px;
  background: #07111e;
  box-shadow: var(--shadow), 0 0 0 1px rgba(255, 255, 255, .025);
}

.app-window-main {
  position: absolute;
  z-index: 2;
  top: 68px;
  right: -36px;
  width: 690px;
  transform: rotateY(-4deg) rotateX(1deg);
}

.window-bar {
  display: flex;
  height: 39px;
  align-items: center;
  gap: 6px;
  padding: 0 11px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  background: #091725;
}

.window-bar > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #405269;
}

.window-bar > span:first-child {
  background: #ff6a61;
}

.window-bar > span:nth-child(2) {
  background: #f4bb39;
}

.window-bar > span:nth-child(3) {
  background: #30cf8a;
}

.window-bar small {
  margin-left: 6px;
  color: #7f8ea1;
  font-size: 11px;
  letter-spacing: .06em;
}

.window-bar b {
  margin-left: auto;
  padding: 2px 6px;
  border: 1px solid rgba(19, 191, 255, .25);
  border-radius: 4px;
  color: var(--blue);
  font-size: 9px;
  letter-spacing: .1em;
}

.app-window img,
.pulse-shot img {
  width: 100%;
  height: auto;
}

.hero-float {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 290px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 12px;
  background: rgba(8, 21, 35, .91);
  box-shadow: 0 18px 52px rgba(0, 0, 0, .34);
  backdrop-filter: blur(12px);
}

.hero-float > span {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 9px;
  color: #04101b;
  font-size: 14px;
  font-weight: 950;
  place-items: center;
}

.hero-float p {
  display: grid;
  margin: 0;
  line-height: 1.25;
}

.hero-float strong {
  color: #f4f7fa;
  font-size: 15px;
}

.hero-float small {
  margin-top: 4px;
  color: #8290a0;
  font-size: 12px;
}

.hero-float-import {
  top: 20px;
  left: 3px;
}

.hero-float-import > span {
  background: linear-gradient(135deg, #29dfff, #1776ff);
}

.hero-float-founder {
  right: 26px;
  bottom: 5px;
}

.hero-float-founder {
  min-width: 360px;
}

.hero-float-founder strong {
  max-width: 260px;
}

.scroll-cue {
  position: absolute;
  z-index: 5;
  bottom: 25px;
  left: 50%;
  display: grid;
  width: 29px;
  height: 45px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 20px;
  place-items: start center;
}

.scroll-cue span {
  width: 3px;
  height: 7px;
  margin-top: 9px;
  border-radius: 3px;
  background: var(--gold);
  animation: scroll-dot 1.8s infinite;
}

@keyframes scroll-dot {
  0% { opacity: 0; transform: translateY(0); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translateY(16px); }
}

.platform-section {
  padding: 104px 0 108px;
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  background: #071422;
}

.platform-heading {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: end;
  gap: 80px;
}

.platform-heading h2 {
  margin: 0;
  font-size: clamp(42px, 3.6vw, 60px);
  letter-spacing: -.035em;
}

.platform-heading p:last-child {
  margin: 0;
  color: #eef7ff;
  font-size: clamp(21px, 1.65vw, 27px);
  font-weight: 780;
  line-height: 1.45;
}

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

.platform-rail > span {
  display: grid;
  height: 178px;
  grid-template-rows: 104px 28px;
  align-items: center;
  justify-items: center;
  gap: 10px;
  padding: 20px 16px 16px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
  color: #d9e0e8;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .025em;
}

.platform-rail > span img {
  width: 94px;
  height: 94px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .28));
}

.platform-rail > span:nth-child(7) img,
.platform-rail > span:nth-child(10) img {
  width: 150px;
}

.platform-rail > span:hover {
  border-color: rgba(19, 191, 255, .35);
  background: rgba(19, 191, 255, .06);
}

.platform-note {
  margin: 24px 0 0;
  color: #77879a;
  font-size: 17px;
}

.section {
  position: relative;
  padding: 112px 0;
}

.section-white {
  background: var(--paper);
  color: var(--ink);
}

.section-heading h2,
.about-copy h2,
.connect-copy h2,
.contact-copy h2,
.faq-heading h2,
.market-copy h2,
.ai-copy h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 69px);
  font-weight: 920;
  letter-spacing: -.055em;
  line-height: .98;
}

.section-heading-split {
  display: grid;
  grid-template-columns: 1fr .86fr;
  align-items: end;
  gap: 100px;
}

.section-heading-split > p {
  margin: 0 0 3px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

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

.product-card {
  position: relative;
  overflow: hidden;
  min-height: 555px;
  border: 1px solid #e0e6ed;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 15px 50px rgba(8, 25, 44, .07);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.product-card:hover {
  border-color: #cad4df;
  box-shadow: 0 23px 62px rgba(8, 25, 44, .12);
  transform: translateY(-6px);
}

.product-visual {
  display: grid;
  height: 320px;
  overflow: hidden;
  background:
    linear-gradient(rgba(66, 108, 148, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(66, 108, 148, .08) 1px, transparent 1px),
    #071524;
  background-size: 27px 27px;
  place-items: center;
}

.product-visual::after {
  position: absolute;
  top: 35px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(19, 191, 255, .1);
  content: "";
  filter: blur(36px);
}

.product-card-connect .product-visual::after {
  background: rgba(34, 217, 139, .1);
}

.product-visual img {
  position: relative;
  z-index: 2;
  width: 250px;
  height: 250px;
  object-fit: contain;
  transition: transform .35s ease;
}

.product-card:hover .product-visual img {
  transform: scale(1.05);
}

.product-copy {
  padding: 30px 32px 34px;
}

.status {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.status-live {
  background: rgba(19, 191, 255, .1);
  color: #0878b5;
}

.status-build {
  background: rgba(34, 217, 139, .11);
  color: #0b9460;
}

.status-plan {
  background: #edf0f4;
  color: #7b8794;
}

.product-copy h3 {
  margin: 12px 0 8px;
  color: var(--ink);
  font-size: 32px;
  letter-spacing: -.035em;
}

.product-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.product-copy a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 17px;
  color: #1c6fca;
  font-size: 16px;
  font-weight: 850;
}

.product-copy a b {
  transition: transform .2s ease;
}

.product-copy a:hover b {
  transform: translateX(4px);
}

.pulse-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(19, 191, 255, .08), transparent 30%),
    var(--navy-950);
}

.section-heading-centered {
  max-width: 930px;
  margin: 0 auto;
  text-align: center;
}

.section-heading-centered p:last-child {
  max-width: 820px;
  margin: 22px auto 0;
  color: #8b99aa;
  font-size: 19px;
  line-height: 1.7;
}

.pulse-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 28px;
  margin-top: 65px;
}

.pulse-shot {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(124, 172, 211, .18);
  border-radius: 14px;
  background: #07111f;
  box-shadow: 0 35px 90px rgba(0, 0, 0, .42);
}

.pulse-shot-analysis {
  width: 100%;
}

.pulse-shot-dashboard {
  width: 100%;
}

.pulse-shot-dashboard::before {
  position: absolute;
  z-index: -1;
  inset: -20px;
  border-radius: 25px;
  background: rgba(19, 191, 255, .14);
  content: "";
  filter: blur(40px);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 64px;
}

.feature-card {
  min-height: 220px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 14px;
  background: rgba(255, 255, 255, .035);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.feature-card:hover {
  border-color: rgba(19, 191, 255, .28);
  background: rgba(19, 191, 255, .045);
  transform: translateY(-4px);
}

.feature-card > span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
}

.feature-card h3 {
  margin: 30px 0 12px;
  color: #eff5fa;
  font-size: 23px;
}

.feature-card p {
  margin: 0;
  color: #7f8fa2;
  font-size: 17px;
  line-height: 1.65;
}

.ai-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 45%, rgba(19, 191, 255, .11), transparent 30%),
    #071321;
}

.ai-layout {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  align-items: center;
  gap: 70px;
}

.ai-copy h2 em {
  color: var(--blue);
  font-style: normal;
}

.ai-copy .lead,
.connect-copy .lead,
.about-copy .lead {
  margin: 23px 0 0;
  color: #9eacbc;
  font-size: 20px;
  line-height: 1.7;
}

.import-steps {
  display: grid;
  gap: 12px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.import-steps li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.import-steps li > span {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border: 1px solid rgba(19, 191, 255, .3);
  border-radius: 8px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  place-items: center;
}

.import-steps li div {
  display: grid;
  line-height: 1.35;
}

.import-steps strong {
  color: #edf6fb;
  font-size: 18px;
}

.import-steps small {
  margin-top: 3px;
  color: #79899c;
  font-size: 15px;
}

.ai-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.ai-actions > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #8190a1;
  line-height: 1.2;
}

.ai-actions b {
  color: var(--blue);
  font-size: 34px;
}

.ai-actions small {
  max-width: 150px;
  font-size: 15px;
}

.ai-visual {
  position: relative;
}

.ai-window {
  position: relative;
  z-index: 2;
  transform: perspective(1200px) rotateY(-3deg);
}

.ai-visual::before {
  position: absolute;
  inset: 12% 10%;
  border-radius: 50%;
  background: rgba(19, 191, 255, .16);
  content: "";
  filter: blur(70px);
}

.scan-line {
  position: absolute;
  z-index: 4;
  top: 34px;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(19, 191, 255, .82), transparent);
  box-shadow: 0 0 18px var(--blue);
  opacity: .55;
  animation: scan 4.8s ease-in-out infinite;
}

@keyframes scan {
  0%, 8% { opacity: 0; transform: translateY(25px); }
  20% { opacity: .62; }
  76% { opacity: .62; transform: translateY(380px); }
  88%, 100% { opacity: 0; transform: translateY(380px); }
}

.accuracy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 84px;
}

.accuracy-card {
  min-height: 190px;
  padding: 30px;
  border-top: 2px solid rgba(19, 191, 255, .55);
  border-radius: 0 0 12px 12px;
  background: rgba(255, 255, 255, .035);
}

.accuracy-card > span {
  color: rgba(19, 191, 255, .65);
  font-size: 12px;
  font-weight: 900;
}

.accuracy-card h3 {
  margin: 22px 0 10px;
  font-size: 22px;
}

.accuracy-card p {
  margin: 0;
  color: #7d8da0;
  font-size: 16px;
  line-height: 1.65;
}

.connect-section {
  display: flex;
  min-height: 100vh;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 50%, rgba(34, 217, 139, .12), transparent 27%),
    linear-gradient(145deg, #f8fbfd 0%, #edf4f8 55%, #f9fbfc 100%);
  color: var(--ink);
}

.connect-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 5vw, 78px);
  border: 1px solid rgba(59, 92, 119, .16);
  border-radius: 32px;
  background:
    radial-gradient(circle at 20% 50%, rgba(34, 217, 139, .13), transparent 29%),
    linear-gradient(135deg, #061522 0%, #081d2e 55%, #06111f 100%);
  box-shadow: 0 35px 90px rgba(9, 35, 55, .2);
}

.connect-panel::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 45px 45px;
  content: "";
  pointer-events: none;
}

.connect-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: clamp(48px, 6vw, 90px);
}

.connect-visual {
  position: relative;
  display: grid;
  min-height: 620px;
  place-items: center;
}

.connect-visual::before {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(34, 217, 139, .1);
  content: "";
  filter: blur(65px);
}

.connect-visual img {
  position: relative;
  z-index: 3;
  width: 480px;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(34, 217, 139, .15);
  border-radius: 50%;
}

.orbit::after {
  position: absolute;
  top: 50%;
  left: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 15px var(--green);
  content: "";
}

.orbit-one {
  width: 470px;
  height: 470px;
  animation: orbit 10s linear infinite;
}

.orbit-two {
  width: 560px;
  height: 560px;
  animation: orbit 16s linear reverse infinite;
}

@keyframes orbit {
  to { transform: rotate(360deg); }
}

.connect-copy > .status {
  margin-bottom: 20px;
}

.connect-copy h2 {
  color: var(--white);
}

.connect-copy .lead {
  max-width: 720px;
  color: #b8c7d5;
}

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

.process-flow article {
  position: relative;
  min-height: 180px;
  padding: 25px;
  border: 1px solid rgba(34, 217, 139, .17);
  border-radius: 14px;
  background: rgba(255, 255, 255, .055);
  box-shadow: 0 16px 38px rgba(0, 0, 0, .16);
}

.process-flow article:not(:last-child)::after {
  display: none;
}

.process-flow span {
  display: block;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.process-flow strong {
  display: block;
  margin-top: 25px;
  color: var(--white);
  font-size: 20px;
}

.process-flow small {
  display: block;
  margin-top: 9px;
  color: #aebdcc;
  font-size: 15px;
  line-height: 1.6;
}

.connect-note {
  margin: 28px 0 0;
  padding-left: 16px;
  border-left: 2px solid rgba(34, 217, 139, .5);
  color: #aebdcc;
  font-size: 16px;
  line-height: 1.6;
}

.market-section {
  position: relative;
  min-height: 630px;
  aspect-ratio: 1912 / 823;
  overflow: hidden;
  background: #06111f;
}

.market-section > img {
  position: absolute;
  inset: 20px 2%;
  width: 96%;
  height: calc(100% - 40px);
  max-width: none;
  object-fit: contain;
}

.market-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(2, 6, 11, .72) 0, rgba(2, 6, 11, .34) 21%, rgba(2, 6, 11, 0) 45%),
    linear-gradient(0deg, rgba(2, 6, 11, .3), transparent 45%);
}

.market-copy {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.market-copy-inner {
  width: min(22vw, 310px);
  padding: 0;
  text-shadow: 0 3px 22px rgba(0, 0, 0, .95);
}

.market-copy h2 {
  font-size: clamp(40px, 3vw, 50px);
  line-height: 1.03;
}

.market-copy p:last-child {
  max-width: 310px;
  margin: 28px auto 0;
  color: #c0c9d2;
  font-size: 18px;
  line-height: 1.65;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: 85px;
}

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

.about-photo {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(8, 25, 44, .2);
}

.about-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 55%, rgba(3, 9, 20, .88));
  content: "";
}

.about-photo img {
  width: 100%;
  aspect-ratio: .78 / 1;
  object-fit: cover;
  object-position: center top;
}

.hero-avatar {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border: 2px solid rgba(240, 182, 42, .75);
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
}

.about-photo > div {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  padding: 28px;
  color: #fff;
}

.about-photo strong {
  font-size: 22px;
}

.about-photo span {
  color: #aab8c6;
  font-size: 14px;
}

.about-copy h2 {
  color: var(--ink);
}

.about-copy .lead {
  color: #475468;
}

.about-copy > p:not(.eyebrow):not(.lead) {
  color: var(--muted);
}

.about-copy blockquote {
  margin: 28px 0 0;
  padding: 14px 0 14px 20px;
  border-left: 3px solid var(--gold);
  color: var(--ink);
  font-size: 20px;
  font-weight: 850;
}

.community-section {
  background: linear-gradient(135deg, #06111e, #091929);
}

.community-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: 90px;
}

.community-copy h2 {
  margin: 0;
  font-size: clamp(39px, 4vw, 58px);
  letter-spacing: -.05em;
  line-height: 1;
}

.community-copy p:last-child {
  color: #8d9cac;
  font-size: 18px;
  line-height: 1.7;
}

.social-grid {
  display: grid;
  gap: 10px;
}

.social-card {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  align-items: center;
  gap: 15px;
  min-height: 104px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 12px;
  background: rgba(255, 255, 255, .035);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.social-card:hover {
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .06);
  transform: translateX(5px);
}

.social-card > span {
  display: grid;
  width: 54px;
  height: 54px;
  border-radius: 10px;
  color: white;
  font-size: 14px;
  font-weight: 900;
  place-items: center;
}

.youtube > span { background: #ef233c; }
.tiktok > span { background: linear-gradient(135deg, #17e2db, #ed3a84); }
.discord > span { background: #5865f2; }

.social-card div {
  display: grid;
  line-height: 1.3;
}

.social-card strong {
  font-size: 17px;
}

.social-card small {
  margin-top: 5px;
  color: #7e8d9d;
  font-size: 14px;
}

.social-card b {
  color: #8291a0;
  font-size: 18px;
}

.faq-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: start;
  gap: 90px;
}

.faq-heading {
  position: sticky;
  top: 112px;
}

.faq-heading h2 {
  color: var(--ink);
  font-size: clamp(39px, 4vw, 60px);
}

.faq-heading p:last-child {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.faq-list {
  display: grid;
  gap: 9px;
}

.faq-list details {
  border: 1px solid #dde4eb;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(11, 23, 37, .04);
}

.faq-list summary {
  position: relative;
  padding: 24px 62px 24px 26px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 820;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 18px;
  display: grid;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #eef3f7;
  color: #3a4c5f;
  content: "+";
  font-size: 16px;
  font-weight: 500;
  place-items: center;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  margin: -3px 26px 26px;
  padding-top: 18px;
  border-top: 1px solid #eef1f4;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.contact-section {
  background:
    radial-gradient(circle at 18% 50%, rgba(240, 182, 42, .07), transparent 25%),
    #06111e;
}

.contact-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: 100px;
}

.contact-copy p:not(.eyebrow) {
  max-width: 500px;
  color: #8d9bab;
  font-size: 17px;
}

.contact-copy ul {
  display: grid;
  gap: 11px;
  margin: 25px 0 0;
  padding: 0;
  color: #9aa8b7;
  font-size: 16px;
  list-style: none;
}

.contact-copy li::before {
  margin-right: 9px;
  color: var(--gold);
  content: "✓";
  font-weight: 900;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  background: rgba(255, 255, 255, .035);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .18);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #bdc7d2;
  font-size: 16px;
  font-weight: 760;
}

.contact-form label:nth-of-type(3),
.contact-form label:nth-of-type(4),
.checkbox-label,
.button-submit,
.form-note,
.form-status {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 8px;
  outline: none;
  background: rgba(3, 9, 20, .7);
  color: #f2f5f8;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form input,
.contact-form select {
  height: 56px;
  padding: 0 16px;
}

.contact-form textarea {
  min-height: 160px;
  padding: 15px 16px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(240, 182, 42, .7);
  box-shadow: 0 0 0 3px rgba(240, 182, 42, .09);
}

.contact-form select option {
  background: #0b1826;
}

.checkbox-label {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 9px !important;
  color: #7f8d9d !important;
  font-weight: 500 !important;
  line-height: 1.5;
}

.checkbox-label input {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  margin-top: 2px;
}

.checkbox-label a {
  color: var(--gold);
  text-decoration: underline;
}

.button-submit {
  width: 100%;
  cursor: pointer;
}

.form-note {
  margin: -5px 0 0;
  color: #68788a;
  font-size: 14px;
  text-align: center;
}

.form-status {
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
}

.form-status.is-success {
  background: rgba(34, 217, 139, .12);
  color: #72eab7;
}

.form-status.is-error {
  background: rgba(255, 101, 95, .12);
  color: #ff9792;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
}

.site-footer {
  padding: 82px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, .07);
  background: #020711;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr .6fr .6fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
}

.footer-brand img {
  width: 170px;
}

.footer-products,
.footer-links,
.footer-company {
  display: grid;
  align-content: start;
  gap: 7px;
  color: #718093;
  font-size: 16px;
}

.footer-top strong {
  margin-bottom: 5px;
  color: #dce3ea;
  font-size: 18px;
}

.footer-top a:hover {
  color: var(--gold);
}

.risk-note {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .07);
  color: #566578;
  font-size: 14px;
}

.risk-note p {
  max-width: 830px;
  margin: 0;
}

.risk-note > span {
  flex: 0 0 auto;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .product-grid .product-card.reveal {
  transform: translateY(52px) scale(.975);
  transition: opacity .78s ease, transform .78s cubic-bezier(.22, 1, .36, 1), box-shadow .25s ease, border-color .25s ease;
  will-change: opacity, transform;
}

.js .product-grid .product-card.reveal.is-visible {
  transform: translateY(0) scale(1);
}

.js .product-grid .product-card.reveal:nth-child(1) {
  transition-delay: 0s;
}

.js .product-grid .product-card.reveal:nth-child(2) {
  transition-delay: .12s;
}

.js .product-grid .product-card.reveal:nth-child(3) {
  transition-delay: .24s;
}

.js .product-grid .product-card.reveal:nth-child(4) {
  transition-delay: .36s;
}

/* Legal pages */
.legal-body {
  background: var(--paper);
  color: var(--ink);
}

.legal-header {
  position: relative;
  background: #06111f;
}

.legal-header .nav-wrap {
  display: flex;
  justify-content: space-between;
}

.legal-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.legal-back {
  color: #c3ced9;
  font-size: 15px;
  font-weight: 750;
}

.legal-main {
  padding: 75px 0 110px;
}

.legal-hero {
  max-width: 750px;
  margin-bottom: 38px;
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(47px, 6vw, 76px);
  letter-spacing: -.055em;
}

.legal-hero > p:not(.eyebrow) {
  color: var(--muted);
}

.legal-language-note {
  padding-left: 12px;
  border-left: 2px solid var(--gold);
  font-size: 14px;
}

.legal-card {
  padding: 52px;
  border: 1px solid #dce3ea;
  border-radius: 17px;
  background: white;
  box-shadow: 0 20px 65px rgba(8, 25, 44, .07);
}

.legal-card section + section {
  margin-top: 38px;
  padding-top: 38px;
  border-top: 1px solid #e7ebef;
}

.legal-card h2 {
  margin: 0 0 12px;
  font-size: 25px;
}

.legal-card p,
.legal-card address,
.legal-card li {
  color: #586679;
  font-size: 16px;
  font-style: normal;
}

.legal-card a {
  color: #176fc8;
  text-decoration: underline;
}

.legal-date {
  margin-top: 45px !important;
  color: #8a95a2 !important;
  font-size: 13px !important;
}

.legal-body .site-footer {
  color: white;
}

@media (max-width: 1120px) {
  .nav-wrap {
    gap: 14px;
  }

  .main-nav {
    gap: 13px;
  }

  .main-nav > a {
    font-size: 13px;
  }

  .language-switcher {
    gap: 4px;
    padding: 4px;
  }

  .language-switcher button {
    width: 36px;
  }

  .nav-login {
    display: none;
  }

  .hero-layout {
    grid-template-columns: .86fr 1.14fr;
    gap: 30px;
  }

  .app-window-main {
    right: -80px;
    width: 650px;
  }

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

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

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

  .process-flow article:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: min(100% - 30px, 720px);
  }

  html {
    scroll-padding-top: 76px;
  }

  .site-header {
    height: 68px;
  }

  .nav-wrap {
    display: grid;
    grid-template-columns: 100px 1fr 48px;
    gap: 10px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    width: 95px;
    height: 54px;
  }

  .nav-actions {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .language-switcher {
    margin-right: 2px;
  }

  .menu-button {
    position: relative;
    z-index: 1002;
    display: grid;
    grid-column: 3;
    grid-row: 1;
    width: 43px;
    height: 43px;
    padding: 11px;
    border: 1px solid rgba(240, 182, 42, .55);
    border-radius: 9px;
    background: rgba(240, 182, 42, .07);
    cursor: pointer;
    place-content: center;
    gap: 5px;
  }

  .menu-button > span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: var(--gold);
    transition: transform .2s ease, opacity .2s ease;
  }

  .menu-button[aria-expanded="true"] > span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 1001;
    inset: 68px 0 auto;
    display: grid;
    height: calc(100vh - 68px);
    max-height: calc(100vh - 68px);
    align-content: start;
    gap: 0;
    overflow-y: auto;
    padding: 18px 20px 26px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: #030914;
    box-shadow: 0 35px 65px rgba(0, 0, 0, .4);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity .2s ease, transform .2s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav > a {
    padding: 14px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    color: #e2e8ee;
    font-size: 14px;
  }

  .main-nav > a::after {
    display: none;
  }

  .mobile-nav-login {
    display: inline-flex !important;
    justify-content: center;
    margin-top: 15px;
    border: 1px solid rgba(240, 182, 42, .5) !important;
    border-radius: 9px;
    background: rgba(240, 182, 42, .08);
    color: var(--gold) !important;
  }

  .mobile-languages {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    padding-top: 18px;
  }

  .mobile-languages button {
    gap: 8px;
    width: 100%;
    min-width: 0;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 999px;
    background: rgba(255, 255, 255, .03);
    font-size: 12px;
    font-weight: 800;
  }

  .mobile-languages button.is-active {
    border-color: rgba(240, 182, 42, .4);
    color: var(--gold);
  }

  .hero {
    min-height: auto;
    padding: 122px 0 90px;
  }

  .hero-layout,
  .platform-heading,
  .section-heading-split,
  .ai-layout,
  .connect-layout,
  .about-layout,
  .community-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    gap: 40px;
  }

  .hero-content {
    max-width: 620px;
  }

  .hero-product {
    min-height: 470px;
  }

  .app-window-main {
    top: 30px;
    right: auto;
    left: 2%;
    width: 96%;
    transform: none;
  }

  .hero-float-import {
    top: 0;
    left: -2px;
  }

  .hero-float-founder {
    right: 0;
    bottom: 2px;
  }

  .platform-heading {
    gap: 12px;
  }

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

  .section {
    padding: 86px 0;
  }

  .section-heading-split {
    gap: 25px;
  }

  .pulse-showcase {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .pulse-shot-analysis {
    width: 100%;
  }

  .pulse-shot-dashboard {
    width: 100%;
  }

  .ai-layout {
    gap: 55px;
  }

  .connect-layout {
    gap: 30px;
  }

  .connect-section {
    min-height: auto;
    padding: 64px 0;
  }

  .connect-panel {
    padding: 46px 34px 54px;
    border-radius: 24px;
  }

  .connect-visual {
    min-height: 400px;
  }

  .connect-visual img {
    width: 380px;
  }

  .orbit-one {
    width: 370px;
    height: 370px;
  }

  .orbit-two {
    width: 440px;
    height: 440px;
  }

  .connect-copy {
    max-width: 720px;
  }

  .market-section {
    display: grid;
    min-height: 0;
    aspect-ratio: auto;
  }

  .market-section > img {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center top;
  }

  .market-overlay {
    display: none;
  }

  .market-copy {
    position: relative;
    inset: auto;
    min-height: 0;
    padding: 58px 0 72px;
  }

  .market-copy-inner {
    width: min(100%, 620px);
    padding: 0 20px;
  }

  .market-copy p:last-child {
    max-width: 560px;
  }

  .about-layout,
  .community-layout,
  .faq-layout,
  .contact-layout {
    gap: 45px;
  }

  .about-photo {
    max-width: 560px;
  }

  .faq-heading {
    position: static;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 24px);
  }

  .language-switcher {
    display: none;
  }

  .nav-wrap {
    grid-template-columns: 100px 1fr 44px;
  }

  .hero {
    padding-top: 106px;
  }

  .hero-kicker {
    margin-bottom: 18px;
  }

  .hero h1 {
    font-size: clamp(45px, 14.8vw, 66px);
    letter-spacing: -.03em;
    line-height: 1.09;
  }

  .hero h1 em {
    letter-spacing: -.02em;
    -webkit-text-stroke: 1.1px var(--blue);
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-points {
    display: grid;
    gap: 8px;
  }

  .credit-note {
    align-items: flex-start;
  }

  .hero-product {
    min-height: 330px;
  }

  .app-window-main {
    top: 28px;
  }

  .window-bar {
    height: 26px;
    padding: 0 8px;
  }

  .window-bar > span {
    width: 5px;
    height: 5px;
  }

  .window-bar small {
    font-size: 7px;
  }

  .hero-float {
    min-width: 205px;
    padding: 11px 12px;
  }

  .hero-float > span {
    width: 34px;
    height: 34px;
  }

  .hero-float strong {
    font-size: 11px;
  }

  .hero-float small {
    font-size: 9px;
  }

  .hero-float-import {
    left: 0;
  }

  .hero-float-founder {
    right: 0;
    bottom: 5px;
    min-width: 285px;
  }

  .hero-float-founder strong {
    max-width: 195px;
  }

  .hero-avatar {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .scroll-cue {
    display: none;
  }

  .platform-section {
    padding: 56px 0;
  }

  .platform-heading h2 {
    font-size: 34px;
  }

  .platform-heading p:last-child {
    font-size: 18px;
  }

  .platform-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .platform-rail > span {
    height: 138px;
    grid-template-rows: 76px 24px;
    gap: 9px;
    padding: 14px 8px 12px;
    font-size: 13px;
  }

  .platform-rail > span img {
    width: 72px;
    height: 72px;
  }

  .platform-rail > span:nth-child(7) img,
  .platform-rail > span:nth-child(10) img {
    width: 105px;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading h2,
  .about-copy h2,
  .connect-copy h2,
  .contact-copy h2,
  .faq-heading h2,
  .market-copy h2,
  .ai-copy h2 {
    font-size: clamp(37px, 12vw, 52px);
  }

  .product-grid,
  .feature-grid,
  .accuracy-grid,
  .process-flow {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 0;
  }

  .product-visual {
    height: 220px;
  }

  .pulse-showcase {
    display: grid;
    min-height: auto;
    gap: 14px;
    margin-top: 45px;
  }

  .pulse-shot {
    position: relative;
    width: 100%;
    inset: auto;
  }

  .feature-grid {
    margin-top: 30px;
  }

  .feature-card {
    min-height: 205px;
    padding: 26px;
  }

  .ai-actions {
    display: grid;
  }

  .ai-actions > span {
    justify-content: center;
  }

  .scan-line {
    display: none;
  }

  .accuracy-grid {
    margin-top: 50px;
  }

  .connect-visual {
    min-height: 330px;
  }

  .connect-section {
    padding: 38px 0;
  }

  .connect-panel {
    width: 100%;
    padding: 34px 18px 42px;
    border-radius: 20px;
  }

  .connect-visual img {
    width: min(300px, 82vw);
  }

  .orbit-one {
    width: min(290px, 78vw);
    height: min(290px, 78vw);
  }

  .orbit-two {
    width: min(340px, 88vw);
    height: min(340px, 88vw);
  }

  .connect-copy .lead {
    font-size: 17px;
    line-height: 1.7;
  }

  .process-flow {
    gap: 12px;
    margin-top: 30px;
  }

  .process-flow article {
    min-height: 160px;
    padding: 23px 20px;
  }

  .process-flow article::after {
    display: none;
  }

  .market-copy {
    padding: 46px 0 58px;
  }

  .market-copy-inner {
    width: 100%;
    padding: 0 16px;
  }

  .market-copy p:last-child {
    font-size: 16px;
  }

  .about-photo > div {
    padding: 20px;
  }

  .about-team {
    gap: 10px;
  }

  .about-photo strong {
    font-size: 17px;
  }

  .about-photo span {
    font-size: 11px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 22px 18px;
  }

  .contact-form label,
  .contact-form label:nth-of-type(3),
  .contact-form label:nth-of-type(4),
  .checkbox-label,
  .button-submit,
  .form-note,
  .form-status {
    grid-column: 1;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 35px 25px;
  }

  .footer-brand,
  .footer-company {
    grid-column: 1 / -1;
  }

  .risk-note {
    display: grid;
    gap: 18px;
  }

  .legal-main {
    padding: 55px 0 75px;
  }

  .legal-card {
    padding: 27px 20px;
  }

  .legal-header .brand {
    width: 90px;
  }

  .legal-header .language-switcher {
    display: inline-flex;
  }

  .legal-actions {
    gap: 9px;
  }

  .legal-back {
    font-size: 13px;
  }
}

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


/* =========================================================
   V28 — kompakter BTI-Unternehmensbereich ohne alte Socials
   ========================================================= */
.company-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(19, 191, 255, .12), transparent 30%),
    linear-gradient(135deg, #06111e 0%, #081827 55%, #071421 100%);
}

.company-section::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: .5;
  pointer-events: none;
  content: "";
}

.company-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 4vw, 46px);
}

.company-copy {
  max-width: 980px;
}

.company-copy .eyebrow {
  color: var(--blue);
}

.company-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(45px, 5vw, 72px);
  letter-spacing: -.055em;
  line-height: .98;
}

.company-copy .lead {
  max-width: 860px;
  margin-top: 30px;
  color: #c6d2df;
  font-size: clamp(18px, 1.45vw, 21px);
  line-height: 1.65;
}

.company-copy > p:not(.eyebrow):not(.lead) {
  max-width: 820px;
  color: #8fa1b4;
  font-size: 17px;
  line-height: 1.72;
}

.company-copy blockquote {
  margin: 30px 0 0;
  padding: 13px 0 13px 20px;
  border-left: 3px solid var(--gold);
  color: #fff;
  font-size: 20px;
  font-weight: 850;
}

.company-people {
  display: grid;
  gap: 14px;
}

.person-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 118px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  background: rgba(255, 255, 255, .045);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .18);
  backdrop-filter: blur(10px);
}

.person-card img {
  width: 92px;
  height: 92px;
  border-radius: 12px;
  object-fit: cover;
  object-position: center 18%;
}

.person-card > div {
  display: grid;
  gap: 5px;
}

.person-card strong {
  color: #fff;
  font-size: 20px;
  line-height: 1.15;
}

.person-card span {
  color: #8fa1b4;
  font-size: 14px;
  line-height: 1.4;
}

@media (max-width: 920px) {
  .company-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

@media (max-width: 620px) {
  .company-section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .company-section::before {
    background-size: 54px 54px;
  }

  .company-copy h2 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .company-copy .lead {
    margin-top: 24px;
    font-size: 17px;
  }

  .company-copy > p:not(.eyebrow):not(.lead) {
    font-size: 16px;
  }

  .company-copy blockquote {
    margin-top: 24px;
    font-size: 18px;
  }

  .company-people {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .person-card {
    grid-template-columns: 78px 1fr;
    min-height: 102px;
    padding: 11px;
  }

  .person-card img {
    width: 78px;
    height: 78px;
  }
}

@media (min-width: 621px) and (max-width: 1100px) {
  .company-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .company-people {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .person-card {
    grid-template-columns: 112px 1fr;
    gap: 18px;
    min-height: 140px;
    padding: 14px;
  }

  .person-card img {
    width: 112px;
    height: 112px;
    border-radius: 14px;
  }

  .person-card strong {
    font-size: 23px;
  }

  .person-card span {
    font-size: 14px;
  }
}

@media (max-width: 620px) {
  .person-card {
    grid-template-columns: 92px 1fr;
    gap: 15px;
    min-height: 116px;
    padding: 12px;
  }

  .person-card img {
    width: 92px;
    height: 92px;
    border-radius: 13px;
  }

  .person-card strong {
    font-size: 21px;
  }

  .person-card span {
    font-size: 13px;
  }
}
