:root {
  --bg: #f8f8fd;
  --paper: rgba(255, 255, 255, .74);
  --paper-strong: rgba(255, 255, 255, .93);
  --text: #171329;
  --muted: #625d75;
  --line: rgba(43, 35, 83, .13);
  --violet: #7146e7;
  --blue: #147bdb;
  --pink: #d849cb;
  --grad: linear-gradient(112deg, var(--pink), var(--violet) 45%, var(--blue));
  --page-width: min(1200px, calc(100% - 48px));
  --ease: cubic-bezier(.2, .75, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button, select { font: inherit; }
.site-shell { position: relative; min-height: 100vh; overflow: clip; isolation: isolate; }
.site-shell::before,
.site-shell::after {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  content: "";
  filter: blur(4px);
  pointer-events: none;
}
.site-shell::before, .site-shell::after { display: none; }
.site-shell::before {
  top: -31rem;
  right: -25rem;
  width: 69rem;
  height: 69rem;
  background: radial-gradient(circle, rgba(159, 126, 255, .30), rgba(89, 191, 255, .12) 45%, transparent 69%);
}
.site-shell::after {
  top: 31rem;
  left: -37rem;
  width: 70rem;
  height: 70rem;
  background: radial-gradient(circle, rgba(253, 152, 240, .24), transparent 64%);
}
.page-width { width: var(--page-width); margin: 0 auto; }

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--page-width);
  height: 82px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { width: 35px; height: 35px; object-fit: contain; }
.brand-word { font-size: 1.05rem; font-weight: 760; letter-spacing: -.045em; }
.topnav { display: flex; align-items: center; gap: 24px; }
.topnav a {
  color: var(--muted);
  font-size: .88rem;
  font-weight: 620;
  text-decoration: none;
  transition: color .2s var(--ease);
}
.topnav a:hover { color: var(--violet); }
.language-select {
  height: 35px;
  padding: 0 29px 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  appearance: none;
  background: var(--paper-strong) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23625d75' stroke-width='2.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 10px center;
  cursor: pointer;
}
.nav-cta {
  padding: 9px 15px;
  border: 1px solid rgba(111, 70, 231, .3);
  border-radius: 999px;
  color: var(--violet) !important;
  background: rgba(255,255,255,.75);
  box-shadow: 0 5px 17px rgba(63, 45, 125, .08);
}
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: var(--paper-strong);
  cursor: pointer;
}

.hero { position: relative; padding: clamp(80px, 11vw, 143px) 0 112px; }
.hero-copy { position: relative; z-index: 1; max-width: 890px; }
.overline {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 23px;
  color: var(--violet);
  font-size: .75rem;
  font-weight: 760;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.overline::before {
  width: 21px;
  height: 21px;
  border: 1px solid rgba(112, 70, 231, .37);
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle at 30% 30%, #efabef, #8455ea 54%, #1c98e8 100%);
}
.hero h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(4rem, 9.2vw, 8.6rem);
  font-weight: 690;
  letter-spacing: -.083em;
  line-height: .88;
}
.gradient-text {
  color: inherit;
}
.hero-description {
  max-width: 525px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.6vw, 1.17rem);
  line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 33px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 730;
  text-decoration: none;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.button:hover { transform: translateY(-3px); }
.button-primary { color: #fff; background: var(--grad); box-shadow: 0 12px 26px rgba(103, 62, 216, .22); }
.button-primary:hover { box-shadow: 0 16px 35px rgba(103, 62, 216, .34); }
.button-secondary { border-color: var(--line); background: var(--paper-strong); box-shadow: 0 7px 20px rgba(39, 28, 83, .06); }

.orbit-visual {
  position: absolute;
  top: clamp(56px, 6vw, 90px);
  right: max(-78px, -6vw);
  width: min(48vw, 570px);
  aspect-ratio: 1;
  pointer-events: none;
}
.orbit-visual { display: none; }
.orbit-visual::before,
.orbit-visual::after {
  position: absolute;
  inset: 11%;
  border: 1px solid rgba(109, 70, 225, .26);
  border-radius: 50%;
  content: "";
  transform: rotate(-21deg);
}
.orbit-visual::after { inset: 22%; border-color: rgba(20, 123, 219, .30); transform: rotate(37deg); }
.orbit-visual img {
  position: absolute;
  top: 18%;
  right: 9%;
  width: 62%;
  filter: drop-shadow(0 22px 32px rgba(90, 66, 210, .22));
  transform: rotate(7deg);
}

.story {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: clamp(42px, 9vw, 145px);
  align-items: center;
  padding: 111px 0;
  border-top: 1px solid var(--line);
}
.story h2, .products-heading h2 {
  margin: 0;
  font-size: clamp(2.35rem, 4.8vw, 4.2rem);
  letter-spacing: -.07em;
  line-height: .96;
}
.story p { max-width: 455px; color: var(--muted); font-size: 1.02rem; line-height: 1.68; }
.ecosystem-visual {
  grid-column: 1 / -1;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap: clamp(16px, 4vw, 62px);
  align-items: center;
  min-height: 440px;
  padding: clamp(30px, 6vw, 70px);
  overflow: hidden;
  border: 1px solid rgba(103, 72, 194, .18);
  border-radius: 27px;
  background:
    radial-gradient(circle at 50% 50%, rgba(102, 76, 228, .15), transparent 33%),
    linear-gradient(135deg, #fdfdff, #f4f2ff 58%, #eff9ff);
  box-shadow: 0 20px 50px rgba(71, 48, 144, .08);
}
.ecosystem-title {
  position: absolute;
  top: 21px;
  left: 25px;
  margin: 0;
  color: var(--violet);
  font-size: .74rem;
  font-weight: 760;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.company-node {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 0;
  border: 0;
  color: var(--text);
  background: transparent;
  cursor: pointer;
  transition: transform .25s var(--ease);
}
.company-node:hover, .company-node:focus-visible { transform: translateY(-7px); outline: none; }
.company-node:focus-visible .company-icon { box-shadow: 0 0 0 5px rgba(113, 70, 231, .22), 0 16px 32px rgba(55, 40, 120, .16); }
.company-icon {
  display: grid;
  width: clamp(88px, 12vw, 136px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(107, 79, 201, .16);
  border-radius: 28px;
  background: rgba(255,255,255,.76);
  box-shadow: 0 13px 29px rgba(55, 40, 120, .1);
  transition: box-shadow .25s var(--ease);
}
.company-icon img { width: 76%; height: 76%; object-fit: contain; }
.company-node small { color: var(--muted); font-size: .75rem; font-weight: 690; }
.company-node-label { font-size: .88rem; font-weight: 760; letter-spacing: -.02em; }
.company-node--primary small { max-width: 190px; text-align: center; line-height: 1.35; }
.company-node--primary .company-icon {
  width: clamp(145px, 20vw, 220px);
  border-radius: 43px;
  box-shadow: 0 19px 42px rgba(43, 101, 196, .17);
}
.company-node--primary::before {
  position: absolute;
  z-index: -1;
  top: 6%;
  width: 150%;
  aspect-ratio: 1;
  border: 1px solid rgba(48, 128, 217, .21);
  border-radius: 50%;
  content: "";
}
.company-node--primary::before, .company-node--primary::after { display: none; }
.company-node--primary::after {
  position: absolute;
  z-index: -1;
  top: -21%;
  width: 190%;
  aspect-ratio: 1;
  border: 1px dashed rgba(113, 70, 231, .19);
  border-radius: 50%;
  content: "";
  animation: orbit 24s linear infinite;
}
.company-node--labs .company-icon { background: #fff; }
.company-node--labs img { width: 92%; height: 92%; }
.company-hint {
  position: absolute;
  right: 25px;
  bottom: 21px;
  margin: 0;
  color: var(--muted);
  font-size: .76rem;
}

.company-dialog {
  width: min(470px, calc(100% - 30px));
  padding: 0;
  border: 1px solid rgba(105, 76, 198, .22);
  border-radius: 23px;
  color: var(--text);
  background: rgba(255,255,255,.96);
  box-shadow: 0 30px 90px rgba(27, 19, 75, .24);
}
.company-dialog::backdrop { background: rgba(26, 19, 60, .26); backdrop-filter: blur(5px); }
.company-dialog-inner { padding: 31px; }
.dialog-close {
  float: right;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  background: #fff;
  cursor: pointer;
}
.dialog-logo { width: 64px; height: 64px; margin-bottom: 20px; object-fit: contain; }
.company-dialog h2 { clear: both; margin: 0 0 10px; font-size: 2rem; letter-spacing: -.06em; }
.company-dialog p { margin: 0 0 24px; color: var(--muted); line-height: 1.65; }
.dialog-link { color: var(--violet); font-size: .9rem; font-weight: 740; text-decoration: none; }
.dialog-link:hover { text-decoration: underline; text-underline-offset: 4px; }

.labs-main { padding: clamp(90px, 12vw, 150px) 0 120px; }
.labs-main h1 { max-width: 850px; margin: 0; font-size: clamp(3.8rem, 8vw, 7.5rem); letter-spacing: -.08em; line-height: .9; }
.labs-main > p { max-width: 550px; color: var(--muted); font-size: 1.1rem; line-height: 1.65; }
.labs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-top: 60px; }
.labs-grid article { min-height: 190px; padding: 25px; border: 1px solid var(--line); border-radius: 19px; background: var(--paper-strong); box-shadow: 0 10px 24px rgba(58, 40, 126, .05); }
.labs-grid span { color: var(--violet); font-size: .75rem; font-weight: 750; letter-spacing: .12em; }
.labs-grid h2 { margin: 30px 0 8px; font-size: 1.35rem; letter-spacing: -.04em; }
.labs-grid p { margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.55; }

.products { padding: 0 0 117px; }
.products-heading { display: flex; align-items: end; justify-content: space-between; gap: 25px; margin-bottom: 30px; }
.products-heading p { max-width: 320px; margin: 0; color: var(--muted); line-height: 1.55; }
.product-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  min-height: 260px;
  padding: clamp(27px, 4vw, 48px);
  overflow: hidden;
  border: 1px solid rgba(105, 76, 198, .19);
  border-radius: 26px;
  color: var(--text);
  text-decoration: none;
  background:
    radial-gradient(circle at 80% 33%, rgba(77, 195, 255, .28), transparent 21rem),
    linear-gradient(120deg, #f1eaff, #e5efff 51%, #e4f7ff);
  box-shadow: 0 20px 50px rgba(57, 45, 120, .08);
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.product-card:hover { border-color: rgba(103, 70, 215, .52); box-shadow: 0 28px 58px rgba(57, 45, 120, .14); transform: translateY(-5px); }
.product-kicker { color: var(--violet); font-size: .76rem; font-weight: 720; letter-spacing: .14em; text-transform: uppercase; }
.product-card h3 { margin: 19px 0 9px; font-size: clamp(2rem, 4vw, 3.6rem); letter-spacing: -.068em; line-height: .91; }
.product-card p { max-width: 365px; margin: 0; color: var(--muted); line-height: 1.58; }
.product-arrow {
  display: grid;
  width: 47px;
  height: 47px;
  place-items: center;
  border: 1px solid rgba(105, 76, 198, .35);
  border-radius: 50%;
  color: var(--violet);
  background: rgba(255,255,255,.7);
  font-size: 1.3rem;
}
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: var(--page-width);
  margin: 0 auto;
  padding: 25px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .79rem;
}
.site-footer a { color: var(--muted); text-decoration: none; }
.site-footer a:hover { color: var(--violet); }
.legal-links { display: flex; flex-wrap: wrap; gap: 17px; }

.legal-main { max-width: 860px; padding: clamp(75px, 10vw, 125px) 0 110px; }
.legal-main h1 { max-width: 720px; margin: 0; font-size: clamp(3.2rem, 7vw, 6rem); letter-spacing: -.08em; line-height: .9; }
.legal-intro { max-width: 640px; margin: 25px 0 45px; color: var(--muted); font-size: 1.07rem; line-height: 1.7; }
.legal-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 38px; }
.legal-meta span { padding: 6px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: var(--paper-strong); font-size: .74rem; }
.legal-section { margin-top: 38px; }
.legal-section h2 { margin: 0 0 16px; font-size: clamp(1.5rem, 3vw, 2.15rem); letter-spacing: -.055em; }
.legal-section > p { color: var(--muted); line-height: 1.7; }
.legal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; }
.legal-card { padding: 21px; border: 1px solid var(--line); border-radius: 17px; background: var(--paper-strong); box-shadow: 0 9px 23px rgba(58, 40, 126, .05); }
.legal-card h3 { margin: 0 0 8px; font-size: .76rem; color: var(--violet); letter-spacing: .1em; text-transform: uppercase; }
.legal-card p, .legal-card address { margin: 0; color: var(--muted); font-size: .94rem; font-style: normal; line-height: 1.62; }
.legal-card a, .legal-section a { color: var(--violet); font-weight: 650; text-decoration: none; }
.legal-card a:hover, .legal-section a:hover { text-decoration: underline; text-underline-offset: 3px; }
.legal-table { width: 100%; border-collapse: collapse; overflow: hidden; border: 1px solid var(--line); border-radius: 17px; background: var(--paper-strong); box-shadow: 0 9px 23px rgba(58, 40, 126, .05); }
.legal-table th, .legal-table td { padding: 15px 17px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; line-height: 1.58; }
.legal-table th { color: var(--violet); font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; }
.legal-table td { color: var(--muted); font-size: .91rem; }
.legal-table tr:last-child td { border-bottom: 0; }
.legal-note { padding: 17px 19px; border-left: 3px solid var(--violet); border-radius: 0 13px 13px 0; color: var(--muted); background: rgba(113, 70, 231, .07); line-height: 1.62; }

.about-main { padding: clamp(80px, 11vw, 145px) 0 115px; }
.about-hero { position: relative; min-height: 600px; overflow: hidden; padding: clamp(40px, 7vw, 86px); border: 1px solid rgba(104, 76, 197, .18); border-radius: 32px; background: linear-gradient(140deg, #f9f8ff, #edf5ff 63%, #f8efff); }
.about-hero::before, .about-hero::after { position: absolute; z-index: 0; border: 1px solid rgba(99, 71, 208, .2); border-radius: 50%; content: ""; }
.about-hero::before { top: -40%; right: -14%; width: 520px; aspect-ratio: 1; }
.about-hero::after { right: 7%; bottom: -24%; width: 380px; aspect-ratio: 1; border-color: rgba(20, 123, 219, .22); }
.about-copy { position: relative; z-index: 1; max-width: 690px; }
.about-copy h1 { margin: 0; font-size: clamp(3.8rem, 8.4vw, 7.9rem); letter-spacing: -.09em; line-height: .88; }
.about-copy p { max-width: 500px; margin: 30px 0 0; color: var(--muted); font-size: clamp(1.02rem, 1.7vw, 1.18rem); line-height: 1.68; }
.about-logo-orbit { position: absolute; z-index: 1; right: clamp(34px, 8vw, 112px); bottom: clamp(37px, 8vw, 90px); width: min(27vw, 260px); aspect-ratio: 1; }
.about-logo-orbit::before { display: none; }
.about-logo-orbit img { width: 100%; height: 100%; object-fit: contain; filter: none; }
.about-mission { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(34px, 10vw, 150px); padding: 110px 0; }
.about-mission h2, .about-network h2 { margin: 0; font-size: clamp(2.5rem, 5vw, 4.35rem); letter-spacing: -.075em; line-height: .94; }
.about-mission p, .about-network > p { color: var(--muted); font-size: 1.03rem; line-height: 1.72; }
.about-network { padding: 0 0 100px; }
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 32px; }
.about-values article { min-height: 220px; padding: 27px; border: 1px solid var(--line); border-radius: 20px; background: var(--paper-strong); box-shadow: 0 10px 23px rgba(58, 40, 126, .05); }
.about-values span { color: var(--violet); font-size: .75rem; font-weight: 750; letter-spacing: .12em; }
.about-values h3 { margin: 39px 0 8px; font-size: 1.35rem; letter-spacing: -.045em; }
.about-values p { margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.6; }

@media (max-width: 760px) {
  :root { --page-width: min(100% - 28px, 1200px); }
  .topbar { height: 70px; }
  .topnav { display: none; }
  .topnav.open {
    position: absolute;
    z-index: 8;
    top: 63px;
    right: 14px;
    display: grid;
    min-width: 220px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: rgba(255,255,255,.95);
    box-shadow: 0 20px 45px rgba(39, 25, 92, .14);
    backdrop-filter: blur(17px);
  }
  .topnav.open a { padding: 8px; }
  .nav-toggle { display: grid; place-items: center; }
  .language-select { width: 100%; margin: 4px 0; }
  .hero { padding: 80px 0 88px; }
  .hero h1 { font-size: clamp(3.6rem, 16vw, 6rem); }
  .orbit-visual { top: 24px; right: -88px; width: 76vw; opacity: .58; }
  .hero-copy { max-width: 650px; }
  .hero-description { max-width: 440px; }
  .story { grid-template-columns: 1fr; padding: 78px 0; }
  .ecosystem-visual { grid-template-columns: 1fr; min-height: 660px; padding: 70px 28px 45px; }
  .company-node--primary { order: -1; }
  .company-node--primary .company-icon { width: 145px; border-radius: 34px; }
  .company-node--primary::before { width: 240px; }
  .company-node--primary::after { width: 285px; }
  .company-hint { right: 0; bottom: 15px; left: 0; text-align: center; }
  .labs-grid { grid-template-columns: 1fr; margin-top: 40px; }
  .products { padding-bottom: 78px; }
  .products-heading { display: grid; align-items: start; }
  .site-footer { display: grid; }
  .legal-grid { grid-template-columns: 1fr; }
  .legal-table { display: block; overflow-x: auto; }
  .about-hero { min-height: 590px; padding: 42px 26px; }
  .about-logo-orbit { right: 30px; bottom: 43px; width: 185px; }
  .about-mission { grid-template-columns: 1fr; padding: 78px 0; }
  .about-values { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: no-preference) {
  .orbit-visual { animation: hover 6s ease-in-out infinite; }
  @keyframes hover { 50% { transform: translateY(-13px) rotate(2deg); } }
  @keyframes orbit { to { transform: rotate(360deg); } }
}
