:root {
  --bg: #ffffff;
  --bg-soft: #f6f6f8;
  --bg-line: #ececf1;
  --text: #111116;
  --text-soft: #555761;
  --muted: #7b7d88;
  --line: #dedfe6;
  --line-dark: rgba(255, 255, 255, 0.14);
  --dark: #0d0d12;
  --dark-2: #17171f;
  --white: #ffffff;
  --red: #ff4b55;
  --magenta: #cb4fd6;
  --purple: #7d55ff;
  --blue: #386bff;
  --gradient: linear-gradient(120deg, var(--red), var(--magenta) 52%, var(--purple));
  --accent-soft: linear-gradient(120deg, rgba(255, 75, 85, 0.11), rgba(203, 79, 214, 0.08), rgba(125, 85, 255, 0.11));
  --shadow: 0 18px 55px rgba(17, 17, 22, 0.08);
  --shadow-soft: 0 10px 30px rgba(17, 17, 22, 0.055);
  --radius: 8px;
  --container: 1180px;
  --headline-cycle: 2600ms;
  --underline-cycle: 1300ms;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 200;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

p {
  color: var(--text-soft);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.skip-link {
  position: absolute;
  top: -52px;
  left: 16px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--white);
  background: var(--dark);
  transition: top 0.18s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(222, 223, 230, 0.9);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 600;
  letter-spacing: 0;
}

.brand-symbol {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 22, 0.08);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(17, 17, 22, 0.08);
}

.brand-symbol svg {
  width: 100%;
  height: 100%;
}

.brand-text {
  font-size: 1.04rem;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex: 1;
}

.main-nav a,
.main-nav .nav-auth-button {
  padding: 8px 7px;
  border: 0;
  border-radius: 999px;
  color: #383a42;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  transition: background 0.18s ease, color 0.18s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav .nav-auth-button:hover,
.main-nav .nav-auth-button:focus-visible {
  color: var(--text);
  background: var(--bg-soft);
}

.main-nav .nav-auth-button {
  display: none;
}

.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  align-content: center;
  justify-items: center;
  place-items: center;
  gap: 5px;
  padding: 0;
  border: 1px solid rgba(203, 79, 214, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 254, 0.98)),
    var(--white);
  box-shadow: 0 10px 24px rgba(17, 17, 22, 0.07);
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 18px;
  height: 1.5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--magenta), var(--purple));
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

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

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

.header-cta {
  min-width: max-content;
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: 0.86rem;
  font-weight: 600;
  box-shadow: 0 8px 22px rgba(17, 17, 22, 0.045);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-1px);
  border-color: #c7c8d2;
  box-shadow: var(--shadow-soft);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.header-actions .header-cta {
  width: 112px;
  min-width: 112px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
  box-sizing: border-box;
  appearance: none;
}

.header-actions a.header-cta:not(.header-auth-button) {
  color: var(--text);
  border-width: 1px;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 22px rgba(17, 17, 22, 0.045);
}

.header-actions a.header-cta:not(.header-auth-button):hover,
.header-actions a.header-cta:not(.header-auth-button):focus-visible {
  border-color: #c4c5cf;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.header-auth-button {
  color: var(--text);
  border-width: 1.5px;
  border-color: transparent;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    var(--gradient) border-box;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  box-shadow: 0 12px 26px rgba(203, 79, 214, 0.11);
}

.header-auth-button:hover,
.header-auth-button:focus-visible {
  border-color: transparent;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 254, 0.98)) padding-box,
    var(--gradient) border-box;
  box-shadow: 0 16px 38px rgba(203, 79, 214, 0.17);
}

.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  padding: 0;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 248, 251, 0.96)),
    linear-gradient(120deg, #ffffff 0%, #ffffff 58%, #f5f5f8 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(104deg, transparent 0 54%, rgba(13, 13, 18, 0.032) 54%, rgba(13, 13, 18, 0.075) 100%);
}

.hero::after {
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: min(48vw, 680px);
  background:
    linear-gradient(135deg, rgba(255, 75, 85, 0.055), rgba(203, 79, 214, 0.035), rgba(125, 85, 255, 0.07)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(13, 13, 18, 0.035));
  clip-path: polygon(24% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 52px 0 42px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: #8f24ca;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--gradient);
}

h1 {
  max-width: none;
  margin-bottom: 24px;
  font-size: clamp(4.85rem, 6.55vw, 5.45rem);
  line-height: 0.94;
  letter-spacing: 0;
  font-weight: 600;
  text-wrap: balance;
  white-space: nowrap;
}

.rotating-word {
  position: relative;
  display: inline-block;
  min-width: 9.1ch;
  color: #17171f;
  vertical-align: baseline;
}

.rotating-text {
  position: relative;
  display: inline-block;
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition: opacity 0.18s ease, transform 0.18s ease, filter 0.18s ease;
}

.rotating-word.is-changing .rotating-text {
  opacity: 0;
  transform: translateY(-0.055em);
  filter: blur(2px);
}

.rotating-text::after,
.animated-underline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.08em;
  height: 0.055em;
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent 0%, var(--red) 20%, var(--magenta) 50%, var(--purple) 80%, transparent 100%) -54% 0 / 34% 100% no-repeat,
    #cfd1d8;
  animation: underlineTrackSweep var(--underline-cycle) cubic-bezier(0.68, 0, 0.24, 1) infinite;
}

.rotating-text::before,
.animated-underline::before {
  display: none;
}

.animated-underline {
  position: relative;
  display: inline-block;
  color: var(--text);
}

.animated-underline::after,
.animated-underline::before {
  bottom: -0.12em;
  height: 0.08em;
}

h2 {
  margin-bottom: 18px;
  color: var(--text);
  font-size: 4.35rem;
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 600;
  text-wrap: balance;
}

h3 {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 1.12rem;
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 600;
}

.hero-copy {
  max-width: 790px;
  margin-bottom: 16px;
  color: #383a42;
  font-size: 1.12rem;
  line-height: 1.64;
}

.hero-location {
  margin: 22px 0 0;
  color: var(--muted);
  font-weight: 600;
}

.hero-actions,
.inline-cta,
.compact-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  line-height: 1;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.btn.capital-mobile-cta {
  display: none;
}

.btn-primary {
  color: var(--text);
  border-width: 1.5px;
  border-color: transparent;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    var(--gradient) border-box;
  box-shadow: 0 16px 34px rgba(203, 79, 214, 0.13);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  border-color: transparent;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 254, 0.98)) padding-box,
    var(--gradient) border-box;
  box-shadow: 0 22px 48px rgba(203, 79, 214, 0.2);
}

.btn-secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.86);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  transform: translateY(-2px);
  border-color: #c4c5cf;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.btn-brand-outline {
  color: var(--text);
  border-width: 1.5px;
  border-color: transparent;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    var(--gradient) border-box;
  box-shadow: 0 16px 34px rgba(203, 79, 214, 0.13);
}

.btn-brand-outline:hover,
.btn-brand-outline:focus-visible {
  transform: translateY(-2px);
  border-color: transparent;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 254, 0.98)) padding-box,
    var(--gradient) border-box;
  box-shadow: 0 22px 48px rgba(203, 79, 214, 0.2);
}

body.home-page a.btn::after {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

body.home-page a.btn.btn-brand-outline::after {
  width: 13px;
  height: 13px;
  border: 0;
  background: var(--gradient);
  clip-path: polygon(28% 0, 100% 50%, 28% 100%, 17% 88%, 66% 50%, 17% 12%);
  transform: none;
}

body.home-page .hero-actions .main-apply-cta::after {
  width: 14px;
  height: 14px;
  border: 0;
  background: var(--gradient);
  clip-path: polygon(28% 0, 100% 50%, 28% 100%, 17% 88%, 66% 50%, 17% 12%);
  transform: none;
}

.hero-actions .btn-primary {
  color: var(--text);
  border-width: 1.5px;
  border-color: transparent;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    var(--gradient) border-box;
  box-shadow: 0 16px 34px rgba(203, 79, 214, 0.13);
}

.hero-actions .btn-secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: none;
}

.hero-actions .btn-primary:hover,
.hero-actions .btn-primary:focus-visible {
  color: var(--text);
  border-color: transparent;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 254, 0.98)) padding-box,
    var(--gradient) border-box;
  box-shadow: 0 22px 48px rgba(203, 79, 214, 0.2);
}

.hero-actions .btn-secondary:hover,
.hero-actions .btn-secondary:focus-visible {
  color: var(--text);
  border-color: #c4c5cf;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.thesis-section {
  padding: 76px 0;
}

.thesis-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.78fr);
  gap: 54px;
  align-items: center;
}

.thesis-grid h2 {
  margin-bottom: 0;
}

.thesis-copy p {
  margin-bottom: 14px;
  font-size: 1.02rem;
}

.thesis-copy {
  max-width: 590px;
  margin-left: auto;
  padding: 28px 0 28px 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

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

.section-heading {
  max-width: 980px;
  margin-bottom: 44px;
}

.section-heading h2 {
  max-width: 980px;
}

.section-heading p {
  font-size: 1.03rem;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.62fr);
  gap: 42px;
  align-items: center;
  margin-bottom: 44px;
}

.split-heading p {
  font-size: 1.03rem;
}

.heading-support {
  max-width: 540px;
  margin: 0;
  padding: 16px 18px;
  border-left: 3px solid var(--magenta);
  color: var(--text);
  background: rgba(246, 246, 248, 0.78);
  font-weight: 600;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.services-accordion {
  display: none;
}

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

.division-card,
.service-card,
.list-panel,
.process-step,
.application-form,
.faq-grid details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.division-card,
.service-card {
  min-height: 246px;
  padding: 26px;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.division-card {
  display: flex;
  flex-direction: column;
  min-height: 292px;
}

.division-card:hover,
.service-card:hover {
  transform: translateY(-3px);
  border-color: #c8c9d2;
  box-shadow: var(--shadow);
}

.division-card:hover,
.division-card:focus-within,
.division-card.is-active,
.service-card:hover,
.service-card:focus-within,
.service-card.is-active {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 75, 85, 0.16), rgba(125, 85, 255, 0.14)),
    var(--dark);
  border-color: rgba(255, 255, 255, 0.16);
}

.division-card:hover h3,
.division-card:hover p,
.division-card:hover span,
.division-card:focus-within h3,
.division-card:focus-within p,
.division-card:focus-within span,
.division-card.is-active h3,
.division-card.is-active p,
.division-card.is-active span,
.service-card:hover h3,
.service-card:hover p,
.service-card:hover span,
.service-card:focus-within h3,
.service-card:focus-within p,
.service-card:focus-within span,
.service-card.is-active h3,
.service-card.is-active p,
.service-card.is-active span {
  color: var(--white);
}

.division-card:hover p,
.division-card:focus-within p,
.division-card.is-active p,
.service-card:hover p,
.service-card:focus-within p,
.service-card.is-active p {
  opacity: 0.78;
}

.division-card:hover a,
.division-card:focus-within a,
.division-card.is-active a {
  color: var(--white);
}

.division-card span,
.service-card span {
  display: inline-flex;
  margin-bottom: 16px;
  color: #9020cb;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card span {
  width: 42px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(203, 79, 214, 0.18);
  border-radius: 999px;
  background: var(--accent-soft);
  letter-spacing: 0;
}

.division-card p,
.service-card p {
  margin-bottom: 0;
}

.division-card a {
  display: inline-flex;
  margin-top: auto;
  padding-top: 18px;
  color: #7a28df;
  font-size: 0.92rem;
  font-weight: 600;
}

.division-card a:hover,
.division-card a:focus-visible {
  color: #4e21a6;
}

.ecosystem-accordion {
  display: none;
  gap: 10px;
}

.ecosystem-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 250, 254, 0.98)),
    var(--white);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.ecosystem-item[open] {
  border-color: rgba(203, 79, 214, 0.3);
  box-shadow: var(--shadow);
}

.ecosystem-item summary {
  display: grid;
  grid-template-columns: minmax(180px, 0.36fr) minmax(0, 1fr) 28px;
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  cursor: pointer;
  list-style: none;
}

.ecosystem-item summary::-webkit-details-marker {
  display: none;
}

.ecosystem-item summary::after {
  content: "";
  width: 12px;
  height: 12px;
  justify-self: end;
  border-right: 2px solid #8f24ca;
  border-bottom: 2px solid #8f24ca;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.18s ease;
}

.ecosystem-item[open] summary::after {
  transform: rotate(225deg) translate(-2px, -1px);
}

.ecosystem-item summary span {
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 600;
}

.ecosystem-item summary small {
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
}

.ecosystem-item p {
  margin: 0;
  padding: 0 22px 18px;
  max-width: 860px;
}

.ecosystem-item a {
  display: inline-flex;
  margin: 0 22px 22px;
  color: #7a28df;
  font-size: 0.92rem;
  font-weight: 600;
}

.ecosystem-item a:hover,
.ecosystem-item a:focus-visible {
  color: #4e21a6;
}

.band-section {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(246, 246, 248, 0.9), rgba(255, 255, 255, 0.96));
}

.inline-cta {
  margin-top: 36px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.inline-cta p {
  margin: 0 auto 0 0;
  color: var(--text);
  font-weight: 600;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: 56px;
  align-items: center;
}

.content-block p {
  font-size: 1.04rem;
}

.important-note,
.strong-line {
  margin: 24px 0;
  padding: 16px 18px;
  border-left: 3px solid var(--magenta);
  color: var(--text);
  background: rgba(246, 246, 248, 0.78);
  font-weight: 600;
}

.list-panel,
.stack-panel {
  padding: 30px;
}

.list-panel h3,
.stack-panel h3 {
  font-size: 1.34rem;
}

.check-list,
.stack-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 12px 14px 12px 42px;
  border: 1px solid rgba(222, 223, 230, 0.92);
  border-radius: var(--radius);
  color: #3c3e47;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 254, 0.98)),
    var(--white);
  font-weight: 600;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 16px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gradient);
  transform: translateY(-50%);
}

.check-list li::after {
  display: none;
}

.split-dark,
.trust-section,
.site-footer {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 75, 85, 0.12), rgba(125, 85, 255, 0.1)),
    var(--dark);
}

.light-copy h2,
.light-copy p,
.light-copy .eyebrow {
  color: var(--white);
}

.light-copy p {
  opacity: 0.78;
}

.light-copy .strong-line {
  color: var(--white);
  border-left-color: var(--red);
  background: rgba(255, 255, 255, 0.06);
}

.stack-panel {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
}

.stack-panel h3 {
  color: var(--white);
}

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

.stack-list li {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.stack-list span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 600;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.process-step {
  position: relative;
  min-height: 270px;
  padding: 28px;
  overflow: hidden;
}

.process-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient);
}

.process-step span {
  display: inline-flex;
  margin-bottom: 44px;
  color: var(--muted);
  font-weight: 600;
}

.process-step p {
  margin-bottom: 0;
}

.trust-list {
  display: grid;
  gap: 12px;
}

.trust-list div {
  padding: 18px 20px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.065);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

.faq-section {
  background: #fbfbfc;
}

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

.faq-grid details {
  padding: 0;
  overflow: hidden;
}

.faq-grid summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 22px 24px;
  cursor: pointer;
  color: var(--text);
  font-weight: 600;
  list-style: none;
}

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

.faq-grid summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #8d1fcb;
  background: var(--bg-soft);
  font-weight: 600;
  transition: transform 0.18s ease;
}

.faq-grid details[open] summary::after {
  transform: rotate(45deg);
}

.faq-grid details p {
  margin: 0;
  padding: 0 24px 24px;
}

.apply-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 246, 248, 0.96)),
    var(--white);
}

.apply-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 0.9fr);
  gap: 58px;
  align-items: start;
}

.apply-copy {
  position: sticky;
  top: 112px;
}

.apply-title-stack span {
  display: block;
}

.application-points {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
  counter-reset: application-step;
}

.location-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.location-list span,
.application-points li {
  position: relative;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
}

.application-points li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  counter-increment: application-step;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 250, 254, 0.98)),
    var(--white);
}

.application-points li::before {
  content: counter(application-step, decimal-leading-zero);
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(203, 79, 214, 0.2);
  border-radius: 999px;
  color: #8f24ca;
  background: var(--accent-soft);
  font-size: 0.72rem;
  font-weight: 600;
}

.application-points span {
  min-width: 0;
}

.application-form {
  padding: 30px;
  background: rgba(255, 255, 255, 0.94);
}

.form-stepper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 22px;
}

.form-stepper span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(246, 246, 248, 0.82);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-stepper span.is-active {
  color: var(--white);
  border-color: rgba(17, 17, 22, 0.84);
  background:
    linear-gradient(135deg, rgba(255, 75, 85, 0.12), rgba(125, 85, 255, 0.14)),
    var(--dark);
}

.form-step-panel {
  min-width: 0;
}

.form-step-panel[hidden] {
  display: none;
}

.form-step-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 10px;
}

.dual-actions {
  justify-content: space-between;
}

.form-step-actions .btn {
  min-width: 160px;
}

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

.form-field {
  min-width: 0;
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

label {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  border: 1px solid #cfd0d9;
  border-radius: var(--radius);
  color: var(--text);
  background: var(--white);
  font: inherit;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

select {
  appearance: none;
  padding-right: 46px;
  background-image:
    linear-gradient(45deg, transparent 50%, #5d606b 50%),
    linear-gradient(135deg, #5d606b 50%, transparent 50%),
    linear-gradient(180deg, #ffffff, #fafafe);
  background-position:
    calc(100% - 21px) 50%,
    calc(100% - 15px) 50%,
    0 0;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px, 100% 100%;
  color: var(--text);
}

select:invalid {
  color: var(--muted);
}

select option {
  color: var(--text);
}

.custom-select {
  display: none;
}

.js-enabled .native-select.is-enhanced {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}

.js-enabled .custom-select {
  min-width: 0;
  position: relative;
  display: grid;
}

.select-trigger {
  min-width: 0;
  width: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 15px;
  border: 1px solid #cfd0d9;
  border-radius: var(--radius);
  color: var(--muted);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 250, 254, 0.98)),
    var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.select-trigger:hover,
.custom-select.is-open .select-trigger,
.select-trigger:focus-visible {
  color: var(--text);
  border-color: rgba(203, 79, 214, 0.62);
  box-shadow:
    0 0 0 4px rgba(203, 79, 214, 0.12),
    0 14px 34px rgba(17, 17, 22, 0.08);
}

.select-value {
  min-width: 0;
  flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select-chev {
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  border-right: 2px solid #5d606b;
  border-bottom: 2px solid #5d606b;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.custom-select.is-open .select-chev {
  transform: rotate(225deg) translate(-2px, -1px);
  border-color: #8f24ca;
}

.select-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  gap: 4px;
  max-height: 260px;
  overflow: auto;
  padding: 8px;
  border: 1px solid rgba(203, 79, 214, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 55px rgba(17, 17, 22, 0.16);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.custom-select.is-open .select-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.select-option {
  width: 100%;
  padding: 12px 13px;
  border: 0;
  border-radius: 6px;
  color: #282a32;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  text-align: left;
  transition: background 0.16s ease, color 0.16s ease;
}

.select-option-multi {
  display: flex;
  align-items: center;
  gap: 10px;
}

.select-check {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  border: 1px solid #bfc1cb;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.84);
}

.select-option-multi[aria-selected="true"] .select-check {
  border-color: rgba(255, 255, 255, 0.88);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.72)),
    var(--white);
  box-shadow: inset 0 0 0 4px rgba(143, 36, 202, 0.72);
}

.select-option-label {
  min-width: 0;
}

.select-option:hover,
.select-option:focus-visible,
.select-option[aria-selected="true"] {
  outline: none;
  color: var(--white);
  background: var(--gradient);
}

.custom-select.is-invalid .select-trigger {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(255, 75, 85, 0.12);
}

.field-error {
  margin: 8px 0 0;
  color: #c22536;
  font-size: 0.82rem;
  font-weight: 600;
}

textarea {
  min-height: 148px;
  resize: vertical;
}

::placeholder {
  color: #9597a2;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: none;
  border-color: rgba(203, 79, 214, 0.62);
  box-shadow: 0 0 0 4px rgba(203, 79, 214, 0.12);
}

summary:focus-visible {
  border-radius: var(--radius);
}

.form-submit {
  width: 100%;
  min-height: 54px;
  margin-top: 4px;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.apply-side-link {
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: 0.94rem;
}

.apply-side-link a {
  display: inline-block;
  color: #7a28df;
  font-weight: 600;
  white-space: nowrap;
}

body.auth-open {
  overflow: hidden;
}

.auth-modal[hidden],
.auth-view[hidden] {
  display: none;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: grid;
  place-items: center;
  padding: 24px;
}

.auth-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 68% 22%, rgba(203, 79, 214, 0.12), transparent 32%),
    radial-gradient(circle at 18% 88%, rgba(125, 85, 255, 0.09), transparent 34%),
    rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(18px);
}

.auth-dialog {
  position: relative;
  z-index: 2;
  width: min(100%, 640px);
  max-height: min(86vh, 860px);
  overflow: auto;
  padding: 26px;
  border: 1px solid rgba(17, 17, 22, 0.09);
  border-radius: 14px;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 0, rgba(203, 79, 214, 0.09), transparent 30%),
    radial-gradient(circle at 8% 100%, rgba(125, 85, 255, 0.07), transparent 34%),
    linear-gradient(180deg, #ffffff, #f8f8fb);
  box-shadow: 0 34px 100px rgba(17, 17, 22, 0.22);
}

.auth-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(17, 17, 22, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  cursor: pointer;
}

.auth-close::before,
.auth-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 1.5px;
  border-radius: 999px;
  background: rgba(17, 17, 22, 0.72);
}

.auth-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.auth-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.auth-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-right: 52px;
}

.auth-brand .brand-symbol {
  width: 42px;
  height: 42px;
  border-color: rgba(17, 17, 22, 0.08);
  background: var(--white);
  box-shadow: 0 8px 22px rgba(17, 17, 22, 0.08);
}

.auth-brand strong,
.auth-brand small {
  display: block;
}

.auth-brand strong {
  color: var(--text);
  font-weight: 600;
}

.auth-brand small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 22px 0 24px;
  padding: 5px;
  border: 1px solid rgba(17, 17, 22, 0.08);
  border-radius: 999px;
  background: rgba(246, 246, 248, 0.9);
}

.auth-tab {
  min-height: 40px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  color: var(--text-soft);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 600;
}

.auth-tab:hover,
.auth-tab:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.7);
}

.auth-tab.is-active {
  color: var(--text);
  border-color: transparent;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    var(--gradient) border-box;
  box-shadow: 0 12px 26px rgba(203, 79, 214, 0.14);
}

.auth-view {
  animation: osViewIn 0.2s ease both;
}

.auth-view .eyebrow,
.auth-view h2,
.auth-view p {
  color: var(--text);
}

.auth-view .eyebrow {
  color: var(--magenta);
}

.auth-view h2 {
  margin-bottom: 10px;
  font-size: clamp(1.9rem, 4vw, 2.55rem);
  line-height: 1.02;
}

.auth-view > p:not(.eyebrow) {
  margin-bottom: 22px;
  color: var(--text-soft);
}

.auth-form {
  display: grid;
  gap: 15px;
}

.auth-form .btn-primary,
.auth-create-button {
  justify-content: space-between;
  padding-inline: 18px 16px;
}

.auth-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, auto);
  gap: 10px;
  align-items: stretch;
}

.auth-actions .btn {
  width: 100%;
  min-height: 52px;
  justify-content: space-between;
  padding-inline: 18px 16px;
  overflow: hidden;
  border-radius: 999px;
}

.auth-form .btn-primary,
.auth-create-button {
  position: relative;
  color: var(--text);
  border-width: 1.5px;
  border-color: transparent;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    var(--gradient) border-box;
  box-shadow: 0 16px 34px rgba(203, 79, 214, 0.13);
}

.auth-form .auth-continue-button {
  border-color: #c4c5cf;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(17, 17, 22, 0.07);
}

.auth-form .btn-primary:hover,
.auth-form .btn-primary:focus-visible,
.auth-create-button:hover,
.auth-create-button:focus-visible {
  color: var(--text);
  transform: translateY(-2px);
  border-color: transparent;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 254, 0.98)) padding-box,
    var(--gradient) border-box;
  box-shadow: 0 22px 48px rgba(203, 79, 214, 0.2);
}

.auth-form .auth-continue-button:hover,
.auth-form .auth-continue-button:focus-visible {
  border-color: #b5b7c2;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(17, 17, 22, 0.1);
}

.auth-form .btn-primary::after,
.auth-create-button::after {
  content: "";
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  border: 0;
  background: var(--gradient);
  clip-path: polygon(28% 0, 100% 50%, 28% 100%, 17% 88%, 66% 50%, 17% 12%);
}

.auth-form .auth-continue-button::after {
  background: currentColor;
}

.auth-form label {
  color: var(--text);
}

.auth-form input,
.auth-form select,
.auth-form textarea {
  color: var(--text);
  border-color: rgba(17, 17, 22, 0.12);
  background: rgba(255, 255, 255, 0.95);
}

.auth-form input::placeholder,
.auth-form textarea::placeholder {
  color: var(--muted);
}

.auth-form select option {
  color: var(--text);
  background: var(--white);
}

.auth-status {
  margin: 0;
  padding: 13px 14px;
  border: 1px solid rgba(17, 17, 22, 0.08);
  border-left: 3px solid var(--magenta);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(246, 246, 248, 0.9);
  font-size: 0.88rem;
  font-weight: 600;
}

.auth-switch-copy {
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.auth-switch-copy button {
  padding: 0;
  border: 0;
  color: var(--text);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
}

.auth-dialog .form-note {
  color: var(--muted);
}

.light-button {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.light-button:hover,
.light-button:focus-visible {
  color: var(--text);
  background: var(--white);
}

.subpage-hero {
  position: relative;
  overflow: hidden;
  padding: 108px 0 82px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 248, 251, 0.95)),
    linear-gradient(120deg, #ffffff 0%, #ffffff 58%, #f4f4f8 100%);
}

.subpage-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(104deg, transparent 0 56%, rgba(13, 13, 18, 0.034) 56%, rgba(13, 13, 18, 0.075) 100%),
    radial-gradient(circle at 86% 18%, rgba(203, 79, 214, 0.12), transparent 24%),
    radial-gradient(circle at 72% 92%, rgba(125, 85, 255, 0.1), transparent 26%);
}

.subpage-hero .container {
  position: relative;
  z-index: 1;
}

.subpage-hero h1 {
  max-width: 1040px;
  white-space: normal;
  font-size: clamp(3.7rem, 6.3vw, 5.35rem);
}

.display-lines span {
  display: block;
}

.subpage-copy {
  max-width: 790px;
  margin-bottom: 24px;
  color: #383a42;
  font-size: 1.12rem;
  line-height: 1.64;
}

.ecommerce-hero .subpage-copy {
  max-width: 880px;
}

.ecommerce-hero {
  padding: 96px 0 78px;
}

.ecommerce-hero h1 {
  max-width: 1060px;
  margin-bottom: 26px;
}

.ecommerce-hero h1.display-lines span {
  white-space: nowrap;
}

#ecommerce-capabilities {
  max-width: 900px;
  font-size: clamp(3rem, 4.35vw, 3.75rem);
  line-height: 1.04;
}

#ecommerce-model {
  max-width: 720px;
  font-size: clamp(2.75rem, 4.05vw, 3.35rem);
  line-height: 1.06;
}

.subpage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 38px;
}

.metric-card {
  min-height: 122px;
  padding: 20px;
  border: 1px solid rgba(222, 223, 230, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.metric-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 1;
  font-weight: 600;
}

.metric-card span {
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.45;
}

.capability-grid,
.subpage-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.capability-card,
.subpage-card,
.requirement-panel,
.product-option,
.file-field,
.capital-intake-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.capability-card,
.subpage-card {
  min-height: 224px;
  padding: 26px;
}

.capability-card span,
.subpage-card span {
  display: inline-flex;
  margin-bottom: 16px;
  color: #9020cb;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.capability-card p,
.subpage-card p {
  margin-bottom: 0;
}

.ecommerce-card-grid .subpage-card {
  min-height: 246px;
}

.dark-panel {
  padding: 34px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.dark-panel h3,
.dark-panel p {
  color: var(--white);
}

.dark-panel p {
  opacity: 0.78;
}

.step-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.step-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  counter-increment: step;
}

.step-list li::before {
  content: counter(step, decimal-leading-zero);
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.74rem;
  font-weight: 600;
}

.step-list strong {
  display: block;
  color: var(--white);
  font-weight: 600;
}

.step-list span {
  color: rgba(255, 255, 255, 0.72);
}

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

.product-option {
  min-height: 112px;
  padding: 18px;
  cursor: pointer;
  text-align: left;
  font: inherit;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.product-option strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-weight: 600;
}

.product-option span {
  color: var(--text-soft);
  font-size: 0.86rem;
  line-height: 1.45;
}

@media (min-width: 1101px) {
  .product-option[data-product="Startup / Growth Capital"] {
    grid-column: 2;
  }
}

@media (max-width: 1100px) and (min-width: 781px) {
  .product-option[data-product="Startup / Growth Capital"] {
    width: calc((100% - 12px) / 2);
    grid-column: 1 / -1;
    justify-self: center;
  }
}

.product-option:hover,
.product-option:focus-visible,
.product-option.is-selected {
  transform: translateY(-2px);
  border-color: rgba(203, 79, 214, 0.42);
  background:
    linear-gradient(145deg, rgba(255, 75, 85, 0.14), rgba(125, 85, 255, 0.12)),
    var(--dark);
  box-shadow: var(--shadow);
}

.product-option:hover strong,
.product-option:hover span,
.product-option:focus-visible strong,
.product-option:focus-visible span,
.product-option.is-selected strong,
.product-option.is-selected span {
  color: var(--white);
}

.product-option.is-selected span {
  opacity: 0.78;
}

.requirement-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: 24px;
  align-items: start;
  margin-top: 24px;
  padding: 26px;
}

.requirement-panel p {
  margin-bottom: 0;
}

.requirement-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.requirement-list li {
  position: relative;
  padding: 12px 14px 12px 36px;
  border: 1px solid rgba(222, 223, 230, 0.9);
  border-radius: var(--radius);
  color: #3c3e47;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 254, 0.98));
  font-size: 0.92rem;
  font-weight: 600;
}

.requirement-list li::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient);
}

.capital-intake-panel {
  padding: 30px;
}

.capital-form-heading {
  margin-bottom: 24px;
}

.capital-form-heading p {
  margin-bottom: 0;
}

.form-section-label {
  margin: 28px 0 14px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #8f24ca;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.file-upload-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.file-field {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.file-field-wide {
  margin-bottom: 16px;
}

.file-field span {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
}

.file-field small,
.upload-note {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

input[type="file"] {
  min-height: auto;
  padding: 11px;
  border-style: dashed;
  background: rgba(246, 246, 248, 0.8);
  font-size: 0.84rem;
}

.micro-copy {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.os-demo-section {
  position: relative;
  overflow: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 88% 4%, rgba(203, 79, 214, 0.08), transparent 30%),
    radial-gradient(circle at 12% 96%, rgba(125, 85, 255, 0.07), transparent 32%),
    linear-gradient(180deg, #ffffff, #f7f7fa);
}

.os-demo-section .section-heading h2,
.os-demo-section .section-heading p {
  color: var(--text);
}

.os-demo-section .section-heading p:not(.eyebrow) {
  color: var(--text-soft);
}

.os-demo-section .section-heading .eyebrow {
  color: var(--magenta);
}

.os-tour {
  margin-bottom: 22px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 22, 0.08);
  border-radius: 12px;
  background:
    radial-gradient(circle at 82% 0, rgba(203, 79, 214, 0.08), transparent 30%),
    radial-gradient(circle at 8% 100%, rgba(125, 85, 255, 0.07), transparent 32%),
    linear-gradient(180deg, #ffffff, #f8f8fb);
  box-shadow: 0 28px 80px rgba(17, 17, 22, 0.14);
}

.os-tour-head {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.64fr);
  gap: 24px;
  align-items: end;
}

.os-tour-head .eyebrow {
  margin-bottom: 10px;
  color: var(--magenta);
}

.os-tour-head h3 {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--text);
  font-size: clamp(1.68rem, 2.32vw, 2.34rem);
  line-height: 1.04;
  font-weight: 600;
}

.os-tour-head p:not(.eyebrow) {
  margin: 0;
  padding-left: 18px;
  border-left: 2px solid rgba(203, 79, 214, 0.46);
  color: var(--text-soft);
  font-size: 0.98rem;
}

.os-tour-controls {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 18px 0;
}

.os-tour-step {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border: 1px solid rgba(17, 17, 22, 0.09);
  border-radius: var(--radius);
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  text-align: left;
  transition: transform 0.18s ease, color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.os-tour-step span {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(17, 17, 22, 0.055);
  font-size: 0.68rem;
}

.os-tour-step:hover,
.os-tour-step:focus-visible,
.os-tour-step.is-active {
  transform: translateY(-1px);
  color: var(--text);
  border-color: rgba(203, 79, 214, 0.44);
  background:
    linear-gradient(135deg, rgba(255, 75, 85, 0.1), rgba(125, 85, 255, 0.12)),
    rgba(255, 255, 255, 0.96);
}

.os-tour-step.is-active span {
  color: var(--white);
  background: var(--gradient);
  box-shadow: 0 0 20px rgba(203, 79, 214, 0.34);
}

.os-tour-stage {
  display: grid;
  grid-template-columns: minmax(210px, 0.72fr) minmax(320px, 1fr) minmax(240px, 0.84fr);
  gap: 12px;
  align-items: stretch;
}

.os-import-card,
.os-brain-panel,
.os-core-chat {
  min-width: 0;
  border: 1px solid rgba(17, 17, 22, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 14px 36px rgba(17, 17, 22, 0.06);
}

.os-import-card,
.os-core-chat {
  display: grid;
  align-content: start;
  padding: 18px;
}

.os-import-status {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 7px 10px;
  border: 1px solid rgba(17, 17, 22, 0.08);
  border-radius: 999px;
  color: var(--text-soft);
  background: rgba(246, 246, 248, 0.9);
  font-size: 0.72rem;
  font-weight: 600;
}

.os-import-status span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #39d98a;
  box-shadow: 0 0 18px rgba(57, 217, 138, 0.52);
}

.os-import-card h4 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 1.2rem;
  line-height: 1.2;
}

.os-import-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.os-file-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.os-file-stack span {
  padding: 8px 10px;
  border: 1px solid rgba(17, 17, 22, 0.08);
  border-radius: 999px;
  color: var(--text-soft);
  background: rgba(246, 246, 248, 0.92);
  font-size: 0.72rem;
  font-weight: 600;
}

.os-brain-panel {
  padding: 14px;
}

.brain-header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.brain-header span {
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 600;
}

.brain-header strong {
  min-width: max-content;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
}

.os-network-brain {
  position: relative;
  height: 334px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 22, 0.08);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 48%, rgba(17, 17, 22, 0.05), transparent 34%),
    radial-gradient(circle at 42% 58%, rgba(17, 17, 22, 0.035), transparent 28%),
    #ffffff;
}

.os-network-brain::before {
  content: "";
  position: absolute;
  inset: 7%;
  border: 1px solid rgba(17, 17, 22, 0.04);
  border-radius: 50%;
  box-shadow:
    inset 0 0 34px rgba(17, 17, 22, 0.025),
    0 0 38px rgba(203, 79, 214, 0.08);
}

.os-network-brain::after {
  content: "";
  position: absolute;
  inset: 25%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.72), transparent 12%),
    var(--gradient);
  filter: blur(24px);
  opacity: 0.06;
}

.brain-graph {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.graph-orbit {
  fill: none;
  stroke: rgba(91, 116, 178, 0.36);
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.orbit-outer {
  stroke-width: 4.2;
  stroke-dasharray: 1 9;
}

.orbit-mid {
  stroke-width: 1;
  stroke-dasharray: 1 8;
  opacity: 0.22;
}

.orbit-arc {
  stroke-width: 1.4;
  stroke-dasharray: 1 10;
  opacity: 0.46;
}

.orbit-arc.is-low {
  opacity: 0.34;
}

.graph-links path {
  fill: none;
  stroke: rgba(17, 17, 22, 0.28);
  stroke-width: 0.8;
  vector-effect: non-scaling-stroke;
}

.graph-links-back path {
  stroke: rgba(17, 17, 22, 0.34);
  stroke-width: 1.05;
}

.graph-links-dense path {
  stroke: rgba(17, 17, 22, 0.42);
  stroke-width: 0.8;
}

.graph-burst path {
  fill: none;
  stroke: rgba(17, 17, 22, 0.34);
  stroke-width: 0.66;
  vector-effect: non-scaling-stroke;
}

.graph-burst circle {
  fill: rgba(17, 17, 22, 0.52);
  opacity: 0.72;
}

.graph-burst .graph-hub {
  fill: rgba(17, 17, 22, 0.72);
  opacity: 0.92;
}

.graph-burst .accent-blue {
  fill: rgba(60, 165, 214, 0.95);
}

.graph-dot {
  opacity: 0.92;
}

.graph-dot.white {
  fill: rgba(17, 17, 22, 0.62);
}

.graph-dot.blue {
  fill: rgba(52, 158, 210, 0.9);
}

.graph-dot.red {
  fill: rgba(255, 88, 92, 0.84);
}

.graph-dot.green {
  fill: rgba(31, 176, 92, 0.85);
}

.graph-dot.pink {
  fill: rgba(230, 170, 65, 0.9);
}

.graph-dot.violet {
  fill: rgba(78, 84, 214, 0.88);
}

.graph-micro-cluster circle {
  opacity: 0.86;
  filter: url("#brain-dot-glow");
}

.graph-micro-cluster.red-cluster circle {
  fill: rgba(17, 17, 22, 0.48);
}

.graph-micro-cluster.green-cluster circle {
  fill: rgba(17, 17, 22, 0.5);
}

.graph-micro-cluster.blue-cluster circle {
  fill: rgba(17, 17, 22, 0.46);
}

.graph-core {
  fill: var(--text);
  filter: url("#brain-dot-glow");
}

.graph-core-ring {
  fill: none;
  stroke: rgba(17, 17, 22, 0.22);
  stroke-width: 1;
  stroke-dasharray: 2 5;
  vector-effect: non-scaling-stroke;
}

.brain-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.brain-legend span {
  padding: 7px 10px;
  border: 1px solid rgba(17, 17, 22, 0.08);
  border-radius: 999px;
  color: var(--text-soft);
  background: rgba(246, 246, 248, 0.88);
  font-size: 0.72rem;
  font-weight: 600;
}

.os-core-chat {
  grid-template-rows: auto 1fr auto;
}

.chat-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.chat-title span {
  color: var(--text);
  font-weight: 600;
}

.chat-title strong {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chat-thread {
  display: grid;
  align-content: start;
  gap: 10px;
}

.chat-message {
  margin: 0;
  padding: 11px 12px;
  border: 1px solid rgba(17, 17, 22, 0.08);
  border-radius: var(--radius);
  color: var(--text-soft);
  background: rgba(246, 246, 248, 0.9);
  font-size: 0.84rem;
  font-weight: 500;
}

.chat-message.user {
  margin-left: 18px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.95);
}

.chat-message.ai {
  display: grid;
  gap: 6px;
  margin-right: 10px;
}

.chat-message.ai strong {
  color: var(--text);
  font-size: 0.75rem;
}

.os-chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: 16px;
}

.os-chat-form input {
  width: 100%;
  min-height: 42px;
  padding: 10px 11px;
  border: 1px solid rgba(17, 17, 22, 0.1);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.96);
  font: inherit;
  font-size: 0.84rem;
}

.os-chat-form input::placeholder {
  color: var(--muted);
}

.os-chat-form button {
  width: 42px;
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--gradient);
  cursor: pointer;
  font: inherit;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1;
}

.os-demo-shell {
  display: grid;
  grid-template-columns: minmax(240px, 0.28fr) minmax(0, 1fr);
  min-height: 640px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 22, 0.08);
  border-radius: 12px;
  background:
    radial-gradient(circle at 80% 0, rgba(203, 79, 214, 0.06), transparent 30%),
    linear-gradient(180deg, #ffffff, #f9f9fc);
  box-shadow: 0 30px 90px rgba(17, 17, 22, 0.13);
}

.os-sidebar {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 24px;
  border-right: 1px solid rgba(17, 17, 22, 0.08);
  background: rgba(246, 246, 248, 0.76);
}

.os-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(17, 17, 22, 0.08);
}

.os-brand-row .brand-symbol {
  width: 38px;
  height: 38px;
  border-color: rgba(17, 17, 22, 0.08);
  background: var(--white);
  box-shadow: 0 8px 22px rgba(17, 17, 22, 0.08);
}

.os-brand-title {
  display: block;
  color: var(--text);
  font-weight: 600;
}

.os-brand-subtitle {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.os-tabs {
  display: grid;
  gap: 8px;
}

.os-tab {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 12px;
  border: 1px solid rgba(17, 17, 22, 0.08);
  border-radius: var(--radius);
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.76);
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: left;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.os-tab::after {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(17, 17, 22, 0.18);
}

.os-tab:hover,
.os-tab:focus-visible,
.os-tab.is-active {
  transform: translateY(-1px);
  color: var(--text);
  border-color: rgba(203, 79, 214, 0.38);
  background:
    linear-gradient(135deg, rgba(255, 75, 85, 0.09), rgba(125, 85, 255, 0.11)),
    rgba(255, 255, 255, 0.96);
}

.os-tab.is-active::after {
  background: var(--gradient);
  box-shadow: 0 0 18px rgba(203, 79, 214, 0.54);
}

.os-workspace {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  background:
    radial-gradient(circle at 82% 0, rgba(203, 79, 214, 0.08), transparent 26%),
    radial-gradient(circle at 18% 96%, rgba(125, 85, 255, 0.07), transparent 30%),
    #ffffff;
}

.os-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(17, 17, 22, 0.08);
}

.os-topbar p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.os-topbar strong {
  display: block;
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 600;
}

.os-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid rgba(17, 17, 22, 0.08);
  border-radius: 999px;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 600;
}

.os-status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #39d98a;
  box-shadow: 0 0 18px rgba(57, 217, 138, 0.5);
}

.os-view {
  display: none;
  gap: 16px;
  padding: 24px;
}

.os-view.is-active {
  display: grid;
  animation: osViewIn 0.24s ease both;
}

.os-view-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.os-view-header h3 {
  margin-bottom: 8px;
  color: var(--text);
  font-size: clamp(1.72rem, 2.4vw, 2.2rem);
}

.os-view-header p {
  max-width: 610px;
  margin: 0;
  color: var(--text-soft);
}

.os-pill {
  min-width: max-content;
  padding: 8px 11px;
  border: 1px solid rgba(17, 17, 22, 0.08);
  border-radius: 999px;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 600;
}

.os-panel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.os-panel,
.os-wide-panel {
  border: 1px solid rgba(17, 17, 22, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 12px 30px rgba(17, 17, 22, 0.045);
}

.os-panel {
  min-height: 152px;
  padding: 18px;
}

.os-panel span {
  display: block;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.os-panel strong {
  display: block;
  color: var(--text);
  font-size: 1.65rem;
  line-height: 1;
  font-weight: 600;
}

.os-panel small {
  display: block;
  margin-top: 10px;
  color: var(--text-soft);
  font-size: 0.8rem;
}

.os-wide-panel {
  padding: 20px;
}

.os-wide-panel h4 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
}

.os-signal-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.os-signal-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(17, 17, 22, 0.07);
  border-radius: var(--radius);
  color: var(--text-soft);
  background: rgba(246, 246, 248, 0.76);
  font-size: 0.88rem;
  font-weight: 600;
}

.os-signal-list b {
  color: var(--text);
  font-weight: 600;
}

.os-mini-chart {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: end;
  gap: 6px;
  height: 150px;
  margin-top: 16px;
}

.os-mini-chart i {
  display: block;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, rgba(255, 75, 85, 0.95), rgba(203, 79, 214, 0.88), rgba(125, 85, 255, 0.72));
}

.os-node-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.os-node {
  min-height: 116px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid rgba(17, 17, 22, 0.08);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  text-align: center;
}

.os-node.is-core {
  background:
    linear-gradient(135deg, rgba(255, 75, 85, 0.1), rgba(125, 85, 255, 0.12)),
    rgba(255, 255, 255, 0.96);
}

.site-footer {
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: start;
}

.footer-brand,
.footer-brand .brand-text {
  color: var(--white);
}

.footer-line {
  margin-top: 24px;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
}

.footer-line span {
  display: block;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: grid;
  gap: 12px;
  min-width: 190px;
}

.footer-links a {
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  transition: color 0.18s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 1fr);
  gap: 28px;
  margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.84rem;
}

@keyframes underlineTrackSweep {
  0% {
    background-position: -54% 0, 0 0;
  }

  82% {
    background-position: 154% 0, 0 0;
  }

  100% {
    background-position: 154% 0, 0 0;
  }
}

@keyframes osViewIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

@media (max-width: 1100px) {
  html {
    scroll-padding-top: 138px;
  }

  h1 {
    font-size: clamp(3.9rem, 6.5vw, 4.65rem);
  }

  h2 {
    font-size: 3.65rem;
  }

  .nav-shell {
    position: relative;
    min-height: 68px;
    gap: 12px;
    padding: 12px 0;
  }

  .mobile-menu-toggle {
    order: 3;
    display: inline-grid;
  }

  .header-actions {
    order: 2;
    margin-left: auto;
  }

  .header-actions .header-cta:not(.header-auth-button) {
    display: none;
  }

  .header-actions .header-auth-button {
    width: auto;
    min-width: 84px;
    height: 42px;
    padding: 0 14px;
    color: var(--text);
    border-width: 1.5px;
    border-color: transparent;
    background:
      linear-gradient(var(--white), var(--white)) padding-box,
      var(--gradient) border-box;
    box-shadow: 0 8px 22px rgba(203, 79, 214, 0.12);
  }

  .main-nav {
    order: 4;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    flex: none;
    padding: 12px;
    border: 1px solid rgba(222, 223, 230, 0.9);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    backdrop-filter: blur(18px);
  }

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

  .main-nav a,
  .main-nav .nav-auth-button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border: 1px solid rgba(222, 223, 230, 0.9);
    background: rgba(246, 246, 248, 0.88);
  }

  .main-nav .nav-auth-button {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .thesis-grid,
  .two-column,
  .apply-grid,
  .requirement-panel,
  .os-tour-head,
  .os-tour-stage,
  .os-demo-shell {
    grid-template-columns: 1fr;
  }

  .ecosystem-grid,
  .services-grid,
  .process-grid,
  .capability-grid,
  .subpage-card-grid,
  .product-grid,
  .os-panel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .os-sidebar {
    border-right: 0;
    border-bottom: 1px solid rgba(17, 17, 22, 0.08);
  }

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

  .os-network-brain {
    height: 300px;
  }

  .apply-copy {
    position: static;
  }
}

@media (max-width: 780px) {
  html {
    scroll-padding-top: 84px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 54px 0;
  }

  .hero {
    padding: 0;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 248, 251, 0.98)),
      linear-gradient(120deg, #ffffff 0%, #ffffff 100%);
  }

  .hero-inner {
    padding: 38px 0 40px;
  }

  .subpage-hero {
    padding: 38px 0 34px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 248, 251, 0.98)),
      linear-gradient(120deg, #ffffff 0%, #ffffff 100%);
  }

  .subpage-hero::before {
    opacity: 0.48;
  }

  .hero .eyebrow {
    gap: 7px;
    font-size: 0.56rem;
    letter-spacing: 0.03em;
    white-space: nowrap;
  }

  .hero .eyebrow::before {
    width: 16px;
  }

  .hero-copy {
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .subpage-copy {
    margin-bottom: 18px;
    font-size: 1rem;
    line-height: 1.56;
  }

  .ecommerce-hero h1.display-lines span {
    white-space: normal;
  }

  .subpage-actions {
    gap: 10px;
  }

  .metric-row {
    gap: 9px;
    margin-top: 24px;
  }

  .metric-card {
    min-height: auto;
    padding: 16px;
  }

  .metric-card strong {
    margin-bottom: 6px;
    font-size: 1.24rem;
  }

  .metric-card span {
    font-size: 0.8rem;
    line-height: 1.38;
  }

  h1 {
    font-size: 3rem;
    line-height: 0.99;
    white-space: normal;
  }

  h2 {
    font-size: 3rem;
  }

  #ecommerce-capabilities,
  #ecommerce-model {
    font-size: 2.82rem;
    line-height: 1.06;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .apply-section {
    padding-top: 38px;
  }

  .services-grid,
  .process-grid,
  .capability-grid,
  .subpage-card-grid,
  .product-grid,
  .metric-row,
  .file-upload-grid,
  .os-panel-grid,
  .os-node-map,
  .faq-grid,
  .form-row,
  .stack-list,
  .footer-grid,
  .footer-bottom,
  .split-heading {
    grid-template-columns: 1fr;
  }

  .heading-support {
    max-width: none;
  }

  .ecosystem-grid {
    display: none;
  }

  .ecosystem-accordion {
    display: grid;
  }

  .thesis-section {
    padding: 62px 0;
  }

  .thesis-copy {
    max-width: none;
    margin-left: 0;
    padding: 20px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .inline-cta {
    align-items: stretch;
  }

  .auth-modal {
    padding: 14px;
  }

  .auth-dialog {
    max-height: 90vh;
    padding: 22px;
  }

  .auth-view h2 {
    font-size: 2rem;
  }

  .auth-actions {
    grid-template-columns: 1fr;
  }

  .inline-cta p {
    margin-right: 0;
  }

  .btn {
    width: 100%;
  }

  .ecosystem-item summary {
    grid-template-columns: 1fr 24px;
    gap: 8px;
  }

  .ecosystem-item summary small {
    grid-column: 1;
  }

  .ecosystem-item summary::after {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .form-step-actions,
  .dual-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .form-step-actions .btn {
    min-width: 0;
  }

  .application-form,
  .list-panel,
  .stack-panel,
  .capital-intake-panel,
  .requirement-panel,
  .os-tour,
  .os-sidebar,
  .os-view {
    padding: 24px;
  }

  .os-tour-head h3 {
    font-size: 1.82rem;
  }

  .os-tour-controls {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .os-tour-controls::-webkit-scrollbar {
    display: none;
  }

  .os-tour-step {
    min-height: 42px;
    flex: 0 0 auto;
    padding: 9px 11px;
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .os-network-brain {
    height: 258px;
  }

  .brain-header {
    align-items: flex-start;
    flex-direction: column-reverse;
    gap: 8px;
  }

  .os-chat-form {
    grid-template-columns: 1fr auto;
  }

  .os-demo-shell {
    min-height: auto;
  }

  .os-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .os-tabs::-webkit-scrollbar {
    display: none;
  }

  .os-tab {
    min-height: 38px;
    flex: 0 0 auto;
    padding: 9px 11px;
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .os-tab::after {
    width: 6px;
    height: 6px;
  }

  .os-topbar,
  .os-view-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .os-topbar {
    padding: 16px;
    gap: 10px;
  }

  .os-view {
    gap: 12px;
  }

  .os-panel {
    min-height: 118px;
    padding: 14px;
  }

  .os-panel span {
    margin-bottom: 12px;
    font-size: 0.68rem;
  }

  .os-panel strong {
    font-size: 1.34rem;
  }

  .os-wide-panel {
    padding: 16px;
  }

  .os-mini-chart {
    height: 108px;
  }

  .os-signal-list li {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 10px;
  }

  html.home-document {
    scroll-behavior: auto;
    scroll-padding-top: 68px;
    scroll-snap-type: none;
    overscroll-behavior-y: auto;
  }

  body.home-page main > .section {
    min-height: auto;
    display: flex;
    align-items: center;
    scroll-snap-align: none;
    scroll-snap-stop: normal;
    scroll-margin-top: 68px;
    overflow: visible;
    padding: 70px 0;
    text-align: center;
  }

  body.home-page main > .section > .container {
    max-height: none;
    overflow: visible;
  }

  body.home-page main > .section > .container::-webkit-scrollbar {
    display: none;
  }

  body.home-page main > .hero {
    min-height: clamp(430px, calc(100svh - 414px), 460px);
    align-items: stretch;
    padding: 0;
    background: #ffffff;
  }

  body.home-page .hero-inner {
    min-height: inherit;
    max-height: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: visible;
    padding: clamp(20px, 4svh, 32px) 0 16px;
    text-align: center;
  }

  body.home-page #ecosystem {
    min-height: auto;
    padding-top: 24px;
  }

  body.home-page #services,
  body.home-page #faq {
    padding-block: 56px;
  }

  body.home-page .thesis-section,
  body.home-page #ai-data,
  body.home-page #trust {
    padding: 46px 0;
  }

  body.home-page .hero-actions,
  body.home-page .inline-cta,
  body.home-page .compact-cta,
  body.home-page .subpage-actions {
    justify-content: center;
  }

  body.home-page .section-heading,
  body.home-page .split-heading {
    max-width: 680px;
    margin-inline: auto;
    margin-bottom: 18px;
  }

  body.home-page .split-heading {
    justify-items: center;
  }

  body.home-page .section-heading p:not(.eyebrow),
  body.home-page .heading-support,
  body.home-page .content-block p,
  body.home-page .thesis-copy p,
  body.home-page .faq-grid details p,
  body.home-page .form-note {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  body.home-page h2 {
    margin-bottom: 12px;
    font-size: clamp(2.04rem, 9.7vw, 2.72rem);
    line-height: 1.02;
  }

  body.home-page .eyebrow {
    justify-content: center;
    margin-bottom: 8px;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  body.home-page .hero h1 {
    margin-bottom: 14px;
  }

  body.home-page .hero-copy {
    max-width: 32rem;
    margin-inline: auto;
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.52;
  }

  body.home-page .hero-actions {
    width: min(100%, 326px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: clamp(18px, 3svh, 28px) auto 0;
    padding-top: 0;
  }

  body.home-page .hero-actions .btn {
    width: 100%;
    min-height: 52px;
    justify-content: space-between;
    padding-inline: 16px 14px;
    font-size: 0.86rem;
    white-space: nowrap;
  }

  body.home-page .hero-actions .btn::after {
    width: 9px;
    height: 9px;
  }

  body.home-page .hero-actions .btn-primary {
    color: var(--text);
    border-color: transparent;
    background:
      linear-gradient(var(--white), var(--white)) padding-box,
      var(--gradient) border-box;
    box-shadow: 0 18px 38px rgba(203, 79, 214, 0.16);
  }

  body.home-page .hero-actions .btn-secondary {
    color: var(--text);
    border-color: rgba(222, 223, 230, 0.96);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 14px 30px rgba(17, 17, 22, 0.06);
  }

  body.home-page .hero-location {
    margin-top: 12px;
    font-size: 0.82rem;
  }

  body.home-page #ecosystem .section-heading p:not(.eyebrow) {
    display: block;
    max-width: 34rem;
    margin-inline: auto;
  }

  body.home-page #ecosystem .section-heading {
    margin-bottom: 18px;
  }

  body.home-page #ecosystem h2 {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }

  body.home-page .ecosystem-accordion {
    width: min(100%, 540px);
    margin-inline: auto;
    gap: 10px;
  }

  body.home-page .ecosystem-item summary {
    min-height: 0;
    padding: 16px;
    grid-template-columns: 1fr 22px;
    gap: 8px;
    text-align: left;
  }

  body.home-page .ecosystem-item summary span {
    font-size: 1rem;
  }

  body.home-page .ecosystem-item summary small {
    min-width: 0;
    font-size: 0.8rem;
    line-height: 1.38;
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
  }

  body.home-page .ecosystem-item summary::after {
    width: 10px;
    height: 10px;
  }

  body.home-page .ecosystem-item p {
    padding: 0 16px 14px;
    font-size: 0.86rem;
    line-height: 1.48;
    text-align: left;
  }

  body.home-page .ecosystem-item a {
    margin: 0 16px 16px;
    font-size: 0.86rem;
  }

  body.home-page .services-grid,
  body.home-page .process-grid,
  body.home-page .trust-list,
  body.home-page #capital .check-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    overflow: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
    scrollbar-width: auto;
  }

  body.home-page #services .services-grid {
    display: none;
  }

  body.home-page #services .services-accordion {
    width: min(100%, 540px);
    display: grid;
    gap: 9px;
    margin-inline: auto;
  }

  body.home-page .services-item {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 254, 0.98)),
      var(--white);
    box-shadow: var(--shadow-soft);
  }

  body.home-page .services-item[open] {
    border-color: rgba(203, 79, 214, 0.32);
    box-shadow: 0 18px 42px rgba(17, 17, 22, 0.075);
  }

  body.home-page .services-item summary {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 18px;
    gap: 10px;
    align-items: center;
    min-height: 58px;
    padding: 12px 14px;
    cursor: pointer;
    list-style: none;
    text-align: left;
  }

  body.home-page .services-item summary::-webkit-details-marker {
    display: none;
  }

  body.home-page .services-item summary::after {
    content: "";
    width: 10px;
    height: 10px;
    justify-self: end;
    border-right: 2px solid #8f24ca;
    border-bottom: 2px solid #8f24ca;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.18s ease;
  }

  body.home-page .services-item[open] summary::after {
    transform: rotate(225deg) translate(-2px, -1px);
  }

  body.home-page .services-item summary span {
    width: 34px;
    min-height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(203, 79, 214, 0.2);
    border-radius: 999px;
    color: #9020cb;
    background: var(--accent-soft);
    font-size: 0.68rem;
    font-weight: 600;
  }

  body.home-page .services-item summary strong {
    color: var(--text);
    font-size: 0.93rem;
    line-height: 1.24;
    font-weight: 600;
  }

  body.home-page .services-item p {
    margin: 0;
    padding: 0 14px 14px 62px;
    color: var(--text-soft);
    font-size: 0.82rem;
    line-height: 1.42;
    text-align: left;
  }

  body.home-page .services-grid::-webkit-scrollbar,
  body.home-page .process-grid::-webkit-scrollbar,
  body.home-page .trust-list::-webkit-scrollbar,
  body.home-page #capital .check-list::-webkit-scrollbar {
    display: none;
  }

  body.home-page .service-card,
  body.home-page .process-step,
  body.home-page .trust-list div,
  body.home-page #capital .check-list li {
    width: 100%;
    flex: none;
    scroll-snap-align: none;
    text-align: center;
  }

  body.home-page .service-card,
  body.home-page .process-step {
    min-height: auto;
    padding: 18px;
  }

  body.home-page .service-card span,
  body.home-page .process-step span {
    margin-bottom: 20px;
  }

  body.home-page .service-card h3,
  body.home-page .process-step h3 {
    font-size: 1.02rem;
  }

  body.home-page .service-card p,
  body.home-page .process-step p {
    font-size: 0.84rem;
    line-height: 1.44;
  }

  body.home-page .inline-cta {
    display: none;
  }

  body.home-page .two-column,
  body.home-page .thesis-grid,
  body.home-page .apply-grid {
    justify-items: center;
    gap: 18px;
  }

  body.home-page .content-block,
  body.home-page .light-copy,
  body.home-page .thesis-copy,
  body.home-page .apply-copy {
    max-width: 34rem;
    margin-inline: auto;
    text-align: center;
  }

  body.home-page #capital .two-column {
    gap: 14px;
  }

  body.home-page #capital h2 {
    font-size: clamp(1.86rem, 8.6vw, 2.34rem);
  }

  body.home-page #capital .content-block p {
    max-width: 34rem;
    margin-inline: auto;
  }

  body.home-page #capital .important-note {
    max-width: 32rem;
    margin: 12px auto;
    padding: 10px 12px 10px 16px;
    border-left: 3px solid var(--magenta);
    border-top: 0;
    font-size: 0.74rem;
    line-height: 1.36;
    text-align: center;
  }

  body.home-page #capital .content-block > .btn {
    display: none;
  }

  body.home-page #capital .capital-mobile-cta {
    display: inline-flex;
    justify-self: center;
    margin-top: 2px;
  }

  body.home-page .ai-single-column {
    grid-template-columns: minmax(0, 1fr);
  }

  body.home-page .list-panel,
  body.home-page .application-form {
    padding: 18px;
  }

  body.home-page .list-panel {
    width: min(100%, 350px);
    text-align: center;
  }

  body.home-page .list-panel h3 {
    margin-bottom: 8px;
    font-size: 1.08rem;
  }

  body.home-page #capital .check-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 12px;
    gap: 8px;
    overflow: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
  }

  body.home-page #capital .check-list li {
    min-height: 48px;
    flex: none;
    justify-content: center;
    padding: 9px 10px;
    font-size: 0.72rem;
    line-height: 1.22;
    text-align: center;
  }

  body.home-page #capital .check-list li:last-child {
    width: calc((100% - 8px) / 2);
    grid-column: 1 / -1;
    justify-self: center;
  }

  body.home-page #capital .check-list li::before {
    display: none;
  }

  body.home-page .trust-list div {
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 14px 16px;
    font-size: 0.88rem;
    line-height: 1.45;
  }

  body.home-page .faq-grid summary {
    min-height: 46px;
    justify-content: center;
    padding: 12px 14px;
    font-size: 0.78rem;
    text-align: center;
  }

  body.home-page .faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    overflow: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
  }

  body.home-page .faq-grid details {
    width: min(100%, 360px);
    margin-inline: auto;
  }

  body.home-page .faq-grid details p {
    padding: 0 14px 14px;
    text-align: center;
  }

  body.home-page #faq .section-heading p:not(.eyebrow) {
    display: none;
  }

  body.home-page .apply-copy .strong-line,
  body.home-page .application-points,
  body.home-page .apply-side-link {
    display: none;
  }

  body.home-page .apply-copy p {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  body.home-page .application-form {
    max-height: none;
    overflow: visible;
    scrollbar-width: auto;
    text-align: center;
  }

  body.home-page .form-row {
    gap: 0;
  }

  body.home-page .form-field {
    margin-bottom: 12px;
  }

  body.home-page input,
  body.home-page select,
  body.home-page textarea,
  body.home-page .select-trigger {
    min-height: 46px;
    padding-top: 11px;
    padding-bottom: 11px;
    font-size: 0.92rem;
  }

  body.home-page textarea {
    min-height: 112px;
  }

  body.home-page .btn {
    width: min(100%, 300px);
    margin-inline: auto;
  }

  body.home-page a.btn {
    width: fit-content;
    min-width: 154px;
    justify-content: space-between;
    padding-inline: 16px 14px;
  }

  body.home-page label {
    justify-content: center;
    text-align: center;
  }

  body.home-page input,
  body.home-page textarea,
  body.home-page .select-trigger {
    text-align: center;
  }

  body.home-page .site-footer {
    scroll-snap-align: none;
    scroll-margin-top: 68px;
    text-align: center;
  }

  body.home-page .footer-grid,
  body.home-page .footer-bottom,
  body.home-page .footer-links {
    justify-items: center;
    justify-content: center;
    text-align: center;
  }

  .footer-links {
    min-width: 0;
  }
}

@media (max-width: 480px) {
  html {
    scroll-padding-top: 74px;
  }

  html.home-document {
    scroll-snap-type: none;
    scroll-padding-top: 68px;
  }

  .nav-shell {
    gap: 8px;
  }

  .brand {
    gap: 8px;
  }

  .brand-text {
    font-size: 0.92rem;
  }

  .brand-symbol {
    width: 36px;
    height: 36px;
  }

  .header-actions {
    display: inline-flex;
  }

  .header-actions .header-auth-button {
    min-width: 68px;
    height: 38px;
    padding: 0 10px;
    font-size: 0.78rem;
  }

  .header-actions .header-cta:not(.header-auth-button) {
    display: none;
  }

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

  .auth-dialog {
    padding: 18px;
  }

  .auth-brand {
    padding-right: 44px;
  }

  .auth-tabs {
    margin: 18px 0 20px;
  }

  h1 {
    font-size: 2.72rem;
  }

  .subpage-hero h1 {
    font-size: 2.46rem;
  }

  h2 {
    font-size: 2.52rem;
  }

  #ecommerce-capabilities,
  #ecommerce-model {
    font-size: 2.32rem;
    line-height: 1.08;
  }

  .os-demo-section {
    padding-block: 52px;
  }

  .apply-section {
    padding-top: 34px;
  }

  .os-tour {
    padding: 16px;
  }

  .os-tour-head h3 {
    font-size: 1.52rem;
  }

  .os-tour-head p:not(.eyebrow) {
    font-size: 0.9rem;
  }

  .os-import-card,
  .os-core-chat {
    padding: 15px;
  }

  .os-network-brain {
    height: 224px;
  }

  .os-sidebar {
    gap: 12px;
    padding: 16px;
  }

  .os-brand-row {
    padding-bottom: 12px;
  }

  .os-brand-row .brand-symbol {
    width: 32px;
    height: 32px;
  }

  .os-workspace {
    display: block;
  }

  .os-view {
    padding: 16px;
  }

  .os-view-header h3 {
    font-size: 1.48rem;
  }

  .os-view-header p {
    font-size: 0.9rem;
  }

  .division-card,
  .service-card,
  .process-step {
    padding: 22px;
  }

  .faq-grid summary {
    padding: 20px;
  }

  .faq-grid details p {
    padding: 0 20px 20px;
  }
}

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

  html.home-document {
    scroll-snap-type: none;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .rotating-text {
    opacity: 1;
    transform: none;
  }

  .rotating-text::after,
  .animated-underline::after {
    background:
      linear-gradient(90deg, var(--red), var(--magenta) 52%, var(--purple)) 0 0 / 100% 100% no-repeat,
      #cfd1d8;
    animation: none !important;
  }
}
