/* Quantaloom — ported from Claude Design */

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: #0e0e1a;
  color: #d7d7ea;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
  padding: 0;
}

a {
  color: #a78bfa;
  text-decoration: none;
}

a:hover {
  color: #c4b5fd;
}

::selection {
  background: rgba(124, 58, 237, 0.35);
  color: #fff;
}

::-webkit-scrollbar {
  width: 11px;
  height: 11px;
}

::-webkit-scrollbar-track {
  background: #0e0e1a;
}

::-webkit-scrollbar-thumb {
  background: #2a2a45;
  border-radius: 8px;
  border: 3px solid #0e0e1a;
}

/* ── Shell ─────────────────────────────────────────────── */

.shell {
  max-width: 100%;
  overflow-x: hidden;
  background: #0e0e1a;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.shell__body {
  flex: 1;
}

/* ── Header ────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 14, 26, 0.82);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid #22223c;
}

.nav {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #f2f0ff;
}

.brand:hover {
  color: #f2f0ff;
}

.brand__mark {
  width: 26px;
  height: 26px;
  border: 2px solid #7c3aed;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.brand__dot {
  width: 8px;
  height: 8px;
  background: #a78bfa;
  border-radius: 50%;
}

.brand__name {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav__link {
  padding: 9px 15px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  color: #9494ba;
  background: transparent;
  transition: color 0.16s ease, background 0.16s ease;
  white-space: nowrap;
}

.nav__link:hover {
  color: #f2f0ff;
}

.nav__link.is-active {
  color: #f2f0ff;
  background: #1c1c36;
}

.nav__cta {
  margin-left: 12px;
  padding: 10px 20px;
  background: #7c3aed;
  color: #fff;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14.5px;
  transition: background 0.18s ease;
}

.nav__cta:hover {
  background: #6d28d9;
  color: #fff;
}

.nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid #2a2a45;
  align-items: center;
  justify-content: center;
  color: #f2f0ff;
}

.nav__toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  position: relative;
}

.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.5px;
  background: currentColor;
}

.nav__toggle span::before {
  top: -6px;
}

.nav__toggle span::after {
  top: 6px;
}

/* ── Hero ──────────────────────────────────────────────── */

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #1c1c33;
}

.hero__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 80% at 50% -10%, rgba(124, 58, 237, 0.16), transparent 60%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
  padding: 96px 28px 80px;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border: 1px solid #33335a;
  border-radius: 100px;
  margin-bottom: 30px;
}

.eyebrow-pill__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a78bfa;
}

.eyebrow-pill__text {
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b5b5d6;
  font-weight: 500;
}

.hero__title {
  margin: 0;
  font-size: clamp(40px, 6.6vw, 88px);
  line-height: 1;
  letter-spacing: -0.035em;
  font-weight: 700;
  color: #f4f2ff;
  max-width: 17ch;
}

.hero__lead {
  margin: 32px 0 0;
  max-width: 70ch;
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.55;
  color: #b9b9d6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.btn--primary {
  background: #7c3aed;
  color: #fff;
}

.btn--primary:hover {
  background: #6d28d9;
  color: #fff;
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: #e6e4f5;
  border: 1px solid #3a3a5e;
}

.btn--ghost:hover {
  border-color: #a78bfa;
  color: #e6e4f5;
}

/* ── Section chrome ────────────────────────────────────── */

.section-label {
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #a78bfa;
  font-weight: 600;
}

.section-title {
  margin: 12px 0 0;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #f4f2ff;
  font-weight: 700;
}

.section-title--narrow {
  max-width: 22ch;
}

.section-title--companies {
  max-width: 20ch;
}

/* ── Constellation ─────────────────────────────────────── */

.constellation {
  max-width: 1160px;
  margin: 0 auto;
  padding: 84px 28px;
  scroll-margin-top: 90px;
}

.constellation__hint {
  margin: 0 0 8px;
  font-size: 16px;
  color: #9a9ac0;
  max-width: 60ch;
  line-height: 1.55;
}

.k-terms_content {
  margin: 60px 0 8px;
  font-size: 16px;
  color: #9a9ac0;
  line-height: 1.55;
}
.subpage__title.subpage__title--faq.k-terms_title {
max-width: unset;
}

.constellation__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 32px;
  align-items: center;
  margin-top: 24px;
}

.orbit {
  position: relative;
  height: clamp(420px, 48vw, 520px);
  background-color: #111124;
  border: 1px solid #22223c;
  border-radius: 22px;
  overflow: hidden;
}

.orbit__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.orbit__hub {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.orbit__hub-inner {
  width: clamp(96px, 15vw, 128px);
  height: clamp(96px, 15vw, 128px);
  border-radius: 50%;
  border: 2px solid #7c3aed;
  background: radial-gradient(circle at 50% 40%, rgba(124, 58, 237, 0.28), rgba(17, 17, 36, 0.9));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px -8px rgba(124, 58, 237, 0.5);
  text-align: center;
}

.orbit__hub-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c4b5fd;
  font-weight: 600;
}

.orbit__hub-name {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  color: #f4f2ff;
  letter-spacing: -0.01em;
}

.orbit__node {
  position: absolute;
  left: 80%;
  top: 30%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  width: clamp(84px, 12vw, 104px);
  height: clamp(84px, 12vw, 104px);
  border-radius: 50%;
  justify-content: center;
  text-align: center;
  border: 2px solid;
  transition: opacity 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

.orbit__node:hover {
  color: inherit;
}

.orbit__node--cyan {
  border-color: #22d3ee;
  background: radial-gradient(circle at 50% 40%, #22d3ee22, rgba(17, 17, 36, 0.92));
  box-shadow: 0 0 26px -6px #22d3ee88;
}

.orbit__node--orange {
  border-color: #f97316;
  background: radial-gradient(circle at 50% 40%, #f9731622, rgba(17, 17, 36, 0.92));
  box-shadow: 0 0 26px -6px #f9731688;
}

.orbit__node.is-dim {
  opacity: 0.4;
  box-shadow: none;
}

.orbit__node-kicker {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.orbit__node--cyan .orbit__node-kicker {
  color: #67e8f9;
}

.orbit__node--orange .orbit__node-kicker {
  color: #fdba74;
}

.orbit__node-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #f4f2ff;
  line-height: 1.15;
}

.detail-card {
  border: 1px solid #22223c;
  border-radius: 20px;
  padding: 34px 32px;
  background: #101022;
  min-height: 260px;
  border-left: 4px solid #a78bfa;
  transition: border-left-color 0.2s ease;
}

.detail-card__tag {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: #a78bfa;
}

.detail-card__title {
  margin: 14px 0 12px;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #f4f2ff;
}

.detail-card__body {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.6;
  color: #b9b9d6;
}

.detail-card__link {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
}

.detail-card__link.is-visible {
  display: inline-flex;
}

/* ── Companies ─────────────────────────────────────────── */

.companies {
  max-width: 1160px;
  margin: 0 auto;
  padding: 24px 28px 84px;
  scroll-margin-top: 90px;
}

.companies__header {
  margin-bottom: 32px;
}

.companies__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 18px;
}

.company-card {
  display: block;
  background: #101022;
  border: 1px solid #22223c;
  border-top: 3px solid;
  border-radius: 18px;
  padding: 30px 28px 32px;
  transition: transform 0.2s ease, background 0.2s ease;
  color: inherit;
}

.company-card:hover {
  transform: translateY(-4px);
  background: #15152c;
  color: inherit;
}

.company-card--cyan {
  border-top-color: #22d3ee;
}

.company-card--orange {
  border-top-color: #f97316;
}

.company-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.company-card__name {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #f4f2ff;
}

.company-card__tag {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  flex-shrink: 0;
}

.company-card--cyan .company-card__tag,
.company-card--cyan .company-card__link {
  color: #22d3ee;
}

.company-card--orange .company-card__tag,
.company-card--orange .company-card__link {
  color: #f97316;
}

.company-card__body {
  margin: 16px 0 24px;
  font-size: 15.5px;
  line-height: 1.6;
  color: #b1b1cf;
}

.company-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
}

/* ── Sectors ───────────────────────────────────────────── */

.sectors {
  background: #0b0b16;
  border-top: 1px solid #1c1c33;
  border-bottom: 1px solid #1c1c33;
}

.sectors__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 28px;
}

.sectors__title {
  margin: 12px 0 40px;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #f4f2ff;
  font-weight: 700;
  max-width: 22ch;
}

.sectors__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1px;
  background: #20203a;
  border: 1px solid #20203a;
}

.sector-item {
  background: #0e0e1a;
  padding: 30px 26px 34px;
}

.sector-item__n {
  font-size: 13px;
  font-weight: 600;
  color: #7c6bd6;
}

.sector-item__title {
  margin: 14px 0 8px;
  font-size: 19px;
  font-weight: 600;
  color: #f0eefb;
  letter-spacing: -0.01em;
}

.sector-item__body {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: #9a9ac0;
}

.sectors__note {
  margin: 24px 0 0;
  font-size: 13.5px;
  color: #7676a0;
  max-width: 70ch;
  line-height: 1.6;
}

/* ── Governance ────────────────────────────────────────── */

.governance {
  max-width: 1160px;
  margin: 0 auto;
  padding: 84px 28px;
}

.governance__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
}

.gov-card {
  border: 1px solid #22223c;
  border-radius: 18px;
  padding: 32px 28px;
  background: #101022;
}

.gov-card__title {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 600;
  color: #f0eefb;
  letter-spacing: -0.01em;
}

.gov-card__body {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: #a8a8ca;
}

.compliance {
  margin-top: 18px;
  border: 1px solid #2e2456;
  border-radius: 18px;
  padding: 34px 32px;
  background: linear-gradient(120deg, #161033, #101022);
}

.compliance__label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c4b5fd;
  font-weight: 600;
}

.compliance__title {
  margin: 14px 0 0;
  font-size: clamp(19px, 2.2vw, 26px);
  line-height: 1.4;
  color: #f4f2ff;
  font-weight: 600;
  max-width: 44ch;
  letter-spacing: -0.01em;
}

.compliance__body {
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: #a8a8ca;
  max-width: 64ch;
}

/* ── About / FAQ pages ─────────────────────────────────── */

.subpage {
  max-width: 900px;
  margin: 0 auto;
  padding: 92px 28px 84px;
}

.subpage__title {
  margin: 16px 0 0;
  font-size: clamp(36px, 5.2vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: #f4f2ff;
  font-weight: 700;
  max-width: 16ch;
}

.subpage__title--faq {
  font-size: clamp(36px, 5.2vw, 64px);
  line-height: 1.03;
  max-width: 18ch;
}

.subpage__lead {
  margin: 30px 0 0;
  max-width: 66ch;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.6;
  color: #bcbcda;
}

.model-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
}

.model-card__n {
  font-size: 13px;
  font-weight: 600;
  color: #7c6bd6;
}

.model-card__title {
  margin: 14px 0 10px;
  font-size: 21px;
  font-weight: 600;
  color: #f0eefb;
  letter-spacing: -0.01em;
}

.model-card__body {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: #a8a8ca;
}

.about-copy {
  margin-top: 44px;
  border-top: 1px solid #22223c;
  padding-top: 36px;
  max-width: 66ch;
}

.about-copy p {
  margin: 0 0 22px;
  font-size: 18px;
  line-height: 1.68;
  color: #bcbcda;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.faq-list {
  margin-top: 44px;
  border-top: 1px solid #22223c;
}

.faq-item {
  border-bottom: 1px solid #22223c;
}

.faq-item__btn {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 2px;
  transition: color 0.16s ease;
}

.faq-item__btn:hover {
  color: #a78bfa;
}

.faq-item__q {
  font-size: clamp(19px, 2.1vw, 25px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #f0eefb;
  line-height: 1.25;
}

.faq-item__sign {
  flex: none;
  font-size: 24px;
  color: #a78bfa;
  width: 24px;
  text-align: center;
}

.faq-item__panel {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.25s ease;
}

.faq-item.is-open .faq-item__panel {
  max-height: 320px;
  opacity: 1;
}

.faq-item__a {
  margin: 0;
  padding: 0 40px 26px 2px;
  font-size: 16.5px;
  line-height: 1.65;
  color: #aeaece;
}

/* ── Footer ────────────────────────────────────────────── */

.site-footer {
  border-top: 1px solid #1c1c33;
  background: #0a0a14;
}

.site-footer__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 48px 28px 0px 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 36px;
  align-items: start;
}

.site-footer__inner.k-copycontainer {
    padding-top: 48px;
    padding-bottom: 20px;
    display: flex !important;
    justify-content: space-between;
}

.site-footer__inner.k-copycontainer a {
    margin-left: 20px;
}

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

.footer-brand__mark {
  width: 22px;
  height: 22px;
  border: 2px solid #7c3aed;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-brand__dot {
  width: 7px;
  height: 7px;
  background: #a78bfa;
  border-radius: 50%;
}

.footer-brand__name {
  font-weight: 700;
  font-size: 18px;
  color: #f2f0ff;
}

.footer-links {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 14px;
  color: #8f8fb4;
}

.footer-links a:hover {
  color: #67e8f9;
}

.footer-links a:last-child:hover {
  color: #fdba74;
}

.site-footer__legal {
  margin: 0;
  grid-column: span 2;
  font-size: 12.5px;
  line-height: 1.7;
  color: #6f6f95;
  max-width: 96ch;
}

/* ── Responsive ────────────────────────────────────────── */

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

  .orbit {
    height: min(68vw, 440px);
    min-height: 360px;
  }

  .site-footer__legal {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .nav__toggle {
    display: inline-flex;
  }

  .nav__links {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px 20px 20px;
    background: rgba(14, 14, 26, 0.97);
    border-bottom: 1px solid #22223c;
    backdrop-filter: blur(12px);
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__cta {
    margin-left: 0;
    margin-top: 8px;
    text-align: center;
  }

  .hero__inner {
    padding: 64px 20px 56px;
  }

  .constellation,
  .companies,
  .governance {
    padding-left: 20px;
    padding-right: 20px;
  }

  .sectors__inner,
  .subpage {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .company-card__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .company-card__name {
    font-size: 20px;
  }

  .detail-card {
    padding: 28px 24px;
    min-height: 0;
  }

  .detail-card__title {
    font-size: 22px;
  }
}

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


.contact-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 24px;
  margin-top: 32px;
  align-items: start;
}

.contact-form-card,
.contact-info-card {
  padding: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form__field label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.contact-form__field input,
.contact-form__field textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  color: #fff;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  resize: vertical;
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  border-color: #7c5cff;
  background: rgba(124, 92, 255, 0.06);
}

.contact-form__submit {
  margin-top: 8px;
  padding: 14px 20px;
  border: none;
  border-radius: 999px;
  background: #7c5cff;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.contact-form__submit:hover {
  background: #6a49f0;
  transform: translateY(-1px);
}

.contact-info-card .model-card__body a {
  color: #b9a6ff;
  text-decoration: none;
}

.contact-info-card .model-card__body a:hover {
  text-decoration: underline;
}

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

  .contact-form__row {
    grid-template-columns: 1fr;
  }
}
.form-status {
  min-height: 20px;
  font-size: 14px;
  margin-top: 4px;
}

.form-status--success {
  color: #4ade80;
}

.form-status--error {
  color: #f87171;
}