:root {
  --bg: #07131b;
  --bg-2: #050a14;
  --surface: #0b1621;
  --surface-2: #102434;
  --surface-soft: #f3f7f6;
  --white: #ffffff;
  --text: #07131b;
  --text-soft: #405361;
  --muted: #8da0ad;
  --line: rgba(7, 19, 27, 0.12);
  --line-dark: rgba(255, 255, 255, 0.13);
  --brand: #10b981;
  --brand-2: #3dfdcf;
  --brand-3: #7bbea1;
  --cyan: #4fc3f7;
  --amber: #f5b84b;
  --danger: #ef4444;
  --display: "qualtrics-display", "input-sans", "Inter", "Outfit", system-ui, sans-serif;
  --text-font: "qualtrics-text", "input-sans", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", Consolas, monospace;
  --max: 1180px;
  --header: 76px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--text-font);
  letter-spacing: 0;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

a {
  color: var(--text-soft);
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button {
  color: inherit;
}

svg {
  width: 1.15em;
  height: 1.15em;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

.section {
  padding: 104px 0;
}

.section[id] {
  scroll-margin-top: calc(var(--header) + 28px);
}

.section-dark {
  background:
    linear-gradient(180deg, rgba(7, 19, 27, 0.98), rgba(5, 10, 20, 0.98)),
    radial-gradient(circle at 80% 20%, rgba(61, 253, 207, 0.16), transparent 34%);
  color: var(--white);
}

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

.section-heading {
  max-width: 850px;
  margin-bottom: 46px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-copy h2,
.section-heading h2,
.final-cta h2,
.about-content h2,
.legal-block h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.95rem, 3.25vw, 3.65rem);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 500;
}

.section-copy p,
.about-content p,
.legal-block p {
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.72;
}

.section-dark .section-copy p,
.section-dark .section-heading p,
.section-dark .final-cta p {
  color: rgba(255, 255, 255, 0.72);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--brand);
  font-family: var(--mono);
  font-size: 1.05rem;
  line-height: 1.72;
  font-weight: 600;
  text-transform: lowercase;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  padding-top: 20px;
  color: #0d1820;
  pointer-events: none;
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.nav-wrap {
  width: min(1460px, calc(100% - 48px));
  height: 64px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 8px 0 22px;
  border: 1px solid rgba(7, 19, 27, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 132px;
}

.brand img {
  width: 132px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-size: 0.88rem;
  color: rgba(7, 19, 27, 0.72);
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  transition: color 160ms ease, transform 160ms ease;
  white-space: nowrap;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: #07131b;
  transform: translateY(-1px);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.desktop-nav a:focus-visible {
  outline: 2px solid rgba(16, 185, 129, 0.28);
  outline-offset: 6px;
  border-radius: 4px;
}

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

.text-button {
  border: 0;
  background: transparent;
  color: rgba(7, 19, 27, 0.72);
  font-weight: 600;
  cursor: pointer;
  padding: 8px;
}

.text-button:hover,
.text-button:focus-visible {
  color: #07131b;
}

.button,
.submit-button,
.footer-demo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0 22px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button svg,
.submit-button svg {
  width: 19px;
  height: 19px;
}

.button:hover,
.submit-button:hover,
.footer-demo:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--brand);
  color: #ffffff;
  box-shadow: 0 18px 46px rgba(16, 185, 129, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--brand-2);
}

.button-light {
  background: var(--brand);
  color: #ffffff;
}

.button-sm {
  min-height: 42px;
  padding: 0 17px;
  font-size: 0.88rem;
}

.button-large {
  min-height: 60px;
  padding-inline: 30px;
}

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

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.08);
}

.icon-button {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(7, 19, 27, 0.13);
  background: rgba(7, 19, 27, 0.04);
  color: #07131b;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.mobile-nav {
  display: none;
  width: min(560px, calc(100% - 48px));
  margin: 8px auto 16px;
  padding: 14px;
  border: 1px solid rgba(7, 19, 27, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  color: #07131b;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
  pointer-events: auto;
}

.mobile-nav a,
.mobile-nav button {
  display: block;
  width: 100%;
  padding: 13px 12px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: rgba(7, 19, 27, 0.76);
  text-align: left;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible,
.mobile-nav button:hover,
.mobile-nav button:focus-visible {
  background: rgba(16, 185, 129, 0.1);
  color: #07131b;
  transform: translateX(2px);
}

.hero {
  min-height: 100svh;
  padding: 0;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-shell {
  position: relative;
  width: 100%;
  min-height: 100svh;
  margin-inline: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 0;
  background: #07131b;
  box-shadow: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1040px, calc(100% - 48px));
  margin-left: max(24px, calc((100% - var(--max)) / 2));
  padding: 118px 0 72px;
}

.hero h1 {
  max-width: 1040px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.7rem, 4.05vw, 4.65rem);
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 400;
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero-copy {
  max-width: 740px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1rem, 1.18vw, 1.12rem);
  line-height: 1.52;
}

.hero-media {
  position: absolute;
  inset: 0;
  min-height: 100%;
  overflow: hidden;
  background: #07131b;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 19, 27, 0.96) 0%, rgba(7, 19, 27, 0.86) 30%, rgba(7, 19, 27, 0.28) 66%, rgba(7, 19, 27, 0.16) 100%),
    linear-gradient(180deg, rgba(7, 19, 27, 0.62) 0%, rgba(7, 19, 27, 0.08) 34%, rgba(7, 19, 27, 0.82) 100%);
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.72;
  filter: saturate(0.94) contrast(1.05);
}

.hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.trust-strip {
  background: var(--surface);
  color: var(--white);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  overflow: hidden;
}

.strip-inner {
  width: min(var(--max), calc(100% - 48px));
  min-height: 96px;
  margin-inline: auto;
  display: flex;
  align-items: center;
}

.capability-track {
  width: 100%;
  display: block;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.capability-marquee {
  display: flex;
  width: max-content;
  line-height: 1;
  animation: capability-scroll 24s linear infinite;
  will-change: transform;
}

.capability-set {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding-right: 24px;
  vertical-align: middle;
}

.capability-track b {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px 0 14px;
  border-radius: 999px;
  border: 0;
  background: #78cfae;
  color: #10212a;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: none;
}

.capability-track b svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #17313a;
}

@keyframes capability-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.platform-section {
  padding: 98px 0 108px;
  background: #ffffff;
  color: var(--text);
  overflow: hidden;
}

.platform-suite-inner {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.platform-suite-intro {
  max-width: 1080px;
  margin-bottom: clamp(36px, 4vw, 56px);
}

.platform-suite-intro .eyebrow {
  color: var(--text-soft);
}

.platform-suite-intro h2 {
  max-width: 1080px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.25rem, 3.15vw, 3.6rem);
  line-height: 1.04;
  font-weight: 400;
}

.platform-suite-intro h2 span {
  display: block;
}

@media (min-width: 821px) {
  .platform-suite-intro h2 span {
    white-space: nowrap;
  }
}

.platform-suite-intro p:not(.eyebrow) {
  margin-top: 22px;
  color: #314857;
  font-size: clamp(0.98rem, 1.05vw, 1.1rem);
  line-height: 1.56;
}

.platform-story-list {
  display: grid;
  gap: clamp(44px, 4.5vw, 64px);
}

.platform-story {
  --story-accent: var(--brand);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.78fr);
  gap: clamp(46px, 7vw, 92px);
  align-items: start;
}

@media (min-width: 1121px) {
  .platform-story-visual {
    width: min(100%, 499.2px);
    justify-self: end;
  }

  .platform-story--reverse {
    grid-template-columns: minmax(380px, 0.78fr) minmax(0, 0.92fr);
  }

  .platform-story--reverse .platform-story-visual {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .platform-story--reverse .platform-story-copy {
    grid-column: 2;
    grid-row: 1;
  }
}

.platform-story:nth-child(1) {
  --story-accent: #7c3aed;
}

.platform-story:nth-child(2) {
  --story-accent: #2563eb;
}

.platform-story:nth-child(3) {
  --story-accent: #047857;
}

.platform-story-copy {
  max-width: 620px;
}

.story-label {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  color: var(--story-accent);
}

.story-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  color: var(--story-accent);
}

.story-kicker {
  display: block;
  color: var(--story-accent);
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.platform-story .story-label + h3 {
  margin-top: 0;
}

.platform-story h3 {
  max-width: 620px;
  margin: 8px 0 0;
  font-family: var(--display);
  font-size: clamp(1.85rem, 2.8vw, 3rem);
  line-height: 1.05;
  font-weight: 400;
  color: #07131b;
}

.platform-story p {
  max-width: 590px;
  margin: 18px 0 0;
  color: #2f4655;
  line-height: 1.58;
}

.story-lines {
  display: grid;
  margin-top: 26px;
  border-top: 1px solid rgba(7, 19, 27, 0.16);
}

.story-line {
  border-bottom: 1px solid rgba(7, 19, 27, 0.16);
}

.story-line summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 54px;
  color: #07131b;
  font-weight: 650;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

.story-line summary::-webkit-details-marker {
  display: none;
}

.story-line summary svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--brand);
  transform: rotate(90deg);
  transition: transform 180ms ease, color 180ms ease;
}

.story-line[open] summary svg {
  transform: rotate(-90deg);
}

.story-line summary:hover,
.story-line summary:focus-visible {
  color: #047857;
}

.story-line summary:focus-visible {
  outline: 2px solid rgba(16, 185, 129, 0.22);
  outline-offset: 4px;
  border-radius: 4px;
}

.story-line p {
  max-width: 560px;
  margin: -2px 34px 18px 0;
  color: #2f4655;
  font-size: 0.98rem;
  line-height: 1.58;
}

.platform-story-visual {
  position: relative;
  width: min(100%, 499.2px);
  aspect-ratio: 1 / 1;
  min-height: 0;
  overflow: hidden;
}

.platform-story-visual img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 24px 68px rgba(7, 19, 27, 0.16);
}

.platform-story-visual img.platform-story-image-contain {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: transparent;
}

.platform-story-visual img.platform-story-image-transparent {
  background: transparent;
  box-shadow: none;
}

.credit-modes-section {
  padding: 112px 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(32, 255, 205, 0.12), transparent 30%),
    radial-gradient(circle at 8% 78%, rgba(21, 153, 206, 0.12), transparent 28%),
    linear-gradient(180deg, #07131b 0%, #091925 54%, #061019 100%);
  color: var(--white);
  overflow: hidden;
}

.credit-modes-inner {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.credit-modes-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: clamp(40px, 5.6vw, 90px);
  align-items: center;
}

.credit-modes-heading {
  max-width: 900px;
}

.credit-modes-heading .eyebrow,
.credit-modes-builder .eyebrow {
  color: var(--brand-2);
}

.credit-modes-heading h2 {
  max-width: 880px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.15rem, 3.2vw, 3.55rem);
  line-height: 1.08;
  font-weight: 400;
  color: var(--white);
}

.credit-modes-heading p:not(.eyebrow) {
  max-width: 830px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.98rem, 1.04vw, 1.14rem);
  line-height: 1.56;
}

.credit-modes-carousel {
  position: relative;
  height: min(550px, calc(100vh - 156px));
  min-height: 520px;
  overflow: hidden;
  padding: 8px 10px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.credit-modes-carousel::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.credit-modes-track {
  display: flex;
  flex-direction: column;
  animation: creditModesMarquee 42s linear infinite;
  will-change: transform;
}

.credit-modes-carousel:hover .credit-modes-track,
.credit-modes-carousel:focus-within .credit-modes-track {
  animation-play-state: paused;
}

.credit-modes-list {
  display: grid;
  gap: 14px;
  padding-bottom: 14px;
}

.credit-mode-card {
  --mode-accent: #ffffff;
  display: flex;
  min-height: 164px;
  flex-direction: column;
  justify-content: flex-start;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: linear-gradient(135deg, #00886f 0%, #00705e 52%, #06483f 100%);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.credit-mode-card:hover {
  transform: translateX(-4px);
  border-color: rgba(255, 255, 255, 0.28);
  background: linear-gradient(135deg, #009478 0%, #007b66 52%, #07564a 100%);
}

.credit-mode-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
}

.credit-mode-icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--mode-accent);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.credit-mode-icon svg {
  width: 25px;
  height: 25px;
}

.credit-mode-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.18rem, 1.28vw, 1.52rem);
  line-height: 1.12;
  font-weight: 700;
}

.credit-mode-card p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.91rem, 0.98vw, 1.02rem);
  line-height: 1.46;
}

.credit-modes-builder {
  margin-top: 34px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.credit-modes-builder p:not(.eyebrow) {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
  line-height: 1.5;
}

.credit-pipeline {
  display: grid;
  grid-template-columns: repeat(3, 150px);
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.credit-pipeline li {
  position: relative;
  display: flex;
  min-height: 42px;
  align-items: center;
  padding: 11px 14px 11px 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
  line-height: 1;
}

.credit-pipeline li::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 11px;
  height: 26px;
  background: var(--brand);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  content: "";
  transform: translateY(-50%);
}

@keyframes creditModesMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(0, -50%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .credit-modes-carousel {
    overflow: hidden;
  }

  .credit-modes-track {
    animation: creditModesMarquee 42s linear infinite;
  }
}

.visual-chip,
.visual-panel {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 6px;
  min-width: min(230px, 60%);
  padding: 17px 19px;
  border-radius: 8px;
  background: #07131b;
  color: var(--white);
  box-shadow: 0 18px 46px rgba(7, 19, 27, 0.28);
}

.visual-chip span,
.visual-chip small,
.visual-panel span {
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--mono);
  font-size: 0.76rem;
}

.visual-chip strong,
.visual-panel strong {
  color: var(--brand-2);
  font-family: var(--mono);
  font-size: 1.22rem;
}

.visual-badges {
  position: absolute;
  inset: auto 18px 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.visual-badges span {
  padding: 9px 12px;
  border-radius: 999px;
  background: #78cfae;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  font-weight: 650;
}

.founders-section {
  overflow: hidden;
}

.founders-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(380px, 0.84fr);
  column-gap: clamp(46px, 5.8vw, 84px);
  row-gap: clamp(24px, 3vw, 36px);
}

.founders-heading {
  grid-column: 1 / -1;
  max-width: 1120px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.founders-heading .eyebrow {
  color: var(--text-soft);
}

.founders-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.35rem, 3.45vw, 3.35rem);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 400;
}

@media (min-width: 1121px) {
  .founders-heading {
    max-width: none;
  }

  .founders-heading h2 {
    white-space: nowrap;
  }
}

.founders-hero-row {
  display: contents;
}

.founders-proof-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
}

.founder-photo {
  position: relative;
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #07131b;
  box-shadow: 0 26px 80px rgba(7, 19, 27, 0.16);
}

.founder-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(7, 19, 27, 0.1);
  border-radius: inherit;
  pointer-events: none;
}

.founder-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.founder-manifesto {
  position: relative;
  grid-column: 2;
  align-self: start;
  padding: 4px 0 0;
  background: transparent;
  border: 0;
}

.founder-manifesto p {
  max-width: 560px;
  margin: 0;
  color: var(--text-soft);
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
  line-height: 1.66;
}

.founder-manifesto p + p {
  margin-top: 18px;
}

.founders-proof {
  position: relative;
  grid-column: 1 / -1;
  align-self: start;
  justify-self: center;
  width: min(820px, 100%);
  margin-top: clamp(8px, 2vw, 18px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.founders-proof::before,
.founders-proof::after {
  content: none;
}

.founders-proof-kicker {
  margin: 0 0 8px;
  color: #047857;
  font-family: var(--mono);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: lowercase;
}

.founder-accordion {
  display: grid;
  margin-top: 14px;
  border-top: 1px solid rgba(7, 19, 27, 0.14);
}

.founder-accordion-item {
  border-bottom: 1px solid rgba(7, 19, 27, 0.14);
}

.founder-accordion-item summary {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) 20px;
  gap: 12px;
  align-items: center;
  min-height: 50px;
  color: #10212a;
  font-size: 0.95rem;
  font-weight: 750;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

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

.founder-bullet {
  width: 18px;
  height: 18px;
  color: var(--brand);
  stroke-width: 2.4;
}

.founder-toggle {
  width: 18px;
  height: 18px;
  color: var(--brand);
  transform: rotate(90deg);
  transition: transform 180ms ease, color 180ms ease;
}

.founder-accordion-item[open] .founder-toggle {
  transform: rotate(-90deg);
}

.founder-accordion-item summary:hover,
.founder-accordion-item summary:focus-visible {
  color: #047857;
}

.founder-accordion-item summary:focus-visible {
  outline: 2px solid rgba(16, 185, 129, 0.22);
  outline-offset: 4px;
  border-radius: 4px;
}

.founder-accordion-item p {
  max-width: 690px;
  margin: -2px 36px 18px 34px;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

.founder-links {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: clamp(20px, 3vw, 30px);
}

.founder-links a,
.founder-links button {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(16, 185, 129, 0.26);
  background: transparent;
  color: #047857;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.founder-links .founder-link-primary {
  border-color: transparent;
  background: var(--brand);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(16, 185, 129, 0.24);
}

.founder-links a:hover,
.founder-links a:focus-visible,
.founder-links button:hover,
.founder-links button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(16, 185, 129, 0.42);
}

.founder-links .founder-link-primary:hover,
.founder-links .founder-link-primary:focus-visible {
  background: #21d39e;
  box-shadow: 0 16px 34px rgba(16, 185, 129, 0.3);
}

.founder-cards {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 58px);
  width: min(920px, 100%);
  margin: clamp(28px, 4vw, 48px) auto 0;
}

.founder-card {
  position: relative;
  min-height: 150px;
  padding: 30px 32px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #00856f 0%, #0079a8 48%, #075fa8 100%);
  box-shadow: 0 22px 56px rgba(7, 19, 27, 0.14);
  color: #ffffff;
  overflow: hidden;
}

.founder-card h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-family: var(--display);
  font-size: clamp(1.24rem, 1.45vw, 1.55rem);
}

.founder-card p {
  max-width: 420px;
  margin: 0;
  color: #ffffff;
  line-height: 1.58;
}

.about-section {
  background: #f6f8f8;
}

.about-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.side-index {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 8px;
}

.side-index a {
  position: relative;
  width: fit-content;
  padding: 12px 14px;
  border-radius: 8px;
  color: var(--text-soft);
  font-weight: 700;
}

.side-index a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 7px;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.side-index a:hover,
.side-index a:focus-visible,
.side-index a.is-active {
  background: var(--white);
  color: var(--text);
}

.side-index a.is-active::after {
  transform: scaleX(1);
}

.about-content {
  max-width: 880px;
}

.about-content h2 {
  margin-bottom: 24px;
}

.about-panels {
  display: grid;
  gap: 16px;
  margin-top: 36px;
}

.about-panels section {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.about-panels h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 1.35rem;
}

.about-panels p {
  margin: 0;
}

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

.timeline li {
  display: grid;
  grid-template-columns: 122px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.timeline strong {
  color: #047857;
  font-family: var(--mono);
  font-size: 0.82rem;
}

.timeline span {
  color: var(--text-soft);
}

.legal-section {
  background: var(--white);
}

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

.legal-block {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7faf9;
}

.legal-version {
  margin: 18px 0 20px;
  color: #047857 !important;
  font-family: var(--mono);
  font-size: 0.82rem !important;
  font-weight: 600;
}

.legal-block ul {
  margin: 24px 0 0;
  padding-left: 20px;
  color: var(--text-soft);
  line-height: 1.65;
}

.legal-block li + li {
  margin-top: 10px;
}

.legal-block a {
  color: #047857;
  font-weight: 800;
}

.page-hero {
  padding: 142px 0 72px;
  background:
    linear-gradient(180deg, rgba(7, 19, 27, 0.98), rgba(5, 10, 20, 0.98)),
    radial-gradient(circle at 75% 12%, rgba(61, 253, 207, 0.18), transparent 34%);
  color: var(--white);
}

.page-hero-inner {
  max-width: 920px;
}

.page-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.25rem, 4.8vw, 4.9rem);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 400;
}

.page-hero p {
  max-width: 760px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  line-height: 1.72;
}

.content-page {
  background: #f6f8f8;
  padding: 78px 0 98px;
}

.content-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.content-nav {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 8px;
}

.content-nav a {
  position: relative;
  width: fit-content;
  padding: 12px 14px;
  border-radius: 8px;
  color: var(--text-soft);
  font-weight: 800;
}

.content-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 7px;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.content-nav a:hover,
.content-nav a:focus-visible,
.content-nav a.is-active {
  background: var(--white);
  color: var(--text);
}

.content-nav a.is-active::after {
  transform: scaleX(1);
}

.content-main {
  display: grid;
  gap: 18px;
  max-width: 880px;
}

.content-card {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.content-card h2 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.35vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 500;
}

.content-card h3 {
  margin: 24px 0 10px;
  font-family: var(--display);
  font-size: 1.25rem;
}

.content-card p,
.content-card li {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.72;
}

.content-card p {
  margin: 0;
}

.content-card p + p {
  margin-top: 16px;
}

.content-card ul,
.content-card ol {
  margin: 16px 0 0;
  padding-left: 20px;
}

.content-card li + li {
  margin-top: 10px;
}

.content-card a {
  color: #047857;
  font-weight: 800;
}

.about-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 6px;
}

.about-service-grid section {
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7faf9;
}

.about-service-grid h3 {
  margin-top: 0;
}

.about-service-grid ul {
  margin-top: 14px;
}

.about-values-list {
  display: block;
  margin: 18px 0 0;
  padding-left: 1.2rem;
  list-style: disc;
}

.about-values-list li {
  display: list-item;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-size: clamp(0.96rem, 1vw, 1.02rem);
  font-weight: 400;
  line-height: 1.66;
}

.about-values-list li:last-child {
  grid-column: auto;
  justify-content: flex-start;
}

.about-values-list svg {
  display: none;
}

.content-card .about-values-list li + li {
  margin-top: 6px;
}

.about-final-card {
  display: grid;
  justify-items: center;
  gap: 26px;
  margin-top: 24px;
  padding: clamp(34px, 5vw, 54px) clamp(24px, 6vw, 70px);
  border: 1px solid rgba(7, 19, 27, 0.11);
  border-radius: 18px;
  background: #f8fafb;
  text-align: center;
}

.about-final-card img {
  width: min(248px, 68vw);
}

.about-final-card p {
  max-width: 740px;
  margin: 0;
  color: var(--text-soft);
  font-size: clamp(1.15rem, 1.75vw, 1.55rem);
  line-height: 1.45;
}

.about-page .page-hero {
  padding-bottom: 58px;
}

.about-page .page-hero h1 {
  font-size: clamp(2.35rem, 4.4vw, 3.6rem);
}

.about-page .content-page {
  background: #ffffff;
  padding-top: 62px;
}

.about-page .content-main {
  gap: 60px;
  max-width: 900px;
}

.about-page .content-card {
  scroll-margin-top: 130px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.about-page .content-card h2 {
  margin-bottom: 26px;
  font-size: clamp(1.45rem, 1.9vw, 1.9rem);
  font-weight: 600;
}

.about-page .content-card h3 {
  margin-top: 0;
  font-size: clamp(1.1rem, 1.32vw, 1.28rem);
  font-weight: 700;
}

.about-page .content-card p,
.about-page .content-card li {
  font-size: clamp(0.96rem, 1vw, 1.02rem);
  line-height: 1.66;
}

.about-page .content-card ul {
  margin-top: 16px;
}

.about-page .content-card li + li {
  margin-top: 6px;
}

.about-page .content-card .about-values-list li,
.about-page .content-card .about-values-list li::marker,
.about-page .content-card .about-values-list span {
  color: var(--text-soft);
}

.about-page .about-differential-closing {
  margin-top: 24px;
}

.about-page .page-timeline {
  position: relative;
  gap: 36px;
  padding-left: 34px;
}

.about-page .page-timeline::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 9px;
  width: 2px;
  background: #dfe7e9;
}

.about-page .page-timeline li {
  position: relative;
  display: block;
  padding: 0;
  background: transparent;
}

.about-page .page-timeline li::before {
  content: "";
  position: absolute;
  top: 2px;
  left: -34px;
  z-index: 1;
  width: 14px;
  height: 14px;
  border: 2px solid #009b78;
  border-radius: 50%;
  background: radial-gradient(circle, #009b78 0 4px, #ffffff 4px 100%);
}

.about-page .page-timeline strong {
  display: block;
  margin: 0 0 8px;
  color: #00866a;
  font-family: var(--mono);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
}

.about-page .page-timeline-detailed h3 {
  margin-bottom: 12px;
  font-size: clamp(1.02rem, 1.16vw, 1.12rem);
  line-height: 1.2;
  font-weight: 600;
}

.about-page .content-callout {
  border: 0;
  border-left: 4px solid #00a978;
  border-radius: 0;
  background: #f8fafb;
  color: var(--text-soft);
  font-weight: 400;
}

.about-page .trajectory-summary {
  margin-top: 34px;
  padding: 20px 22px;
  border: 0;
  border-left: 4px solid #00a978;
  border-radius: 0;
  background: #f8fafb;
  color: var(--text-soft);
  font-weight: 400;
}

.about-page #diferencial p:last-child {
  color: #00a978;
  font-weight: 500;
}

.about-page #diferencial p:last-child strong {
  color: inherit;
  font-weight: 500;
}

.about-page .about-service-grid {
  display: block;
  margin-top: 0;
}

.about-page .about-service-grid section {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.about-page .about-service-grid section + section {
  margin-top: 34px;
}

.about-page .about-final-card {
  background: #f8fafb;
}

.legal-page .page-hero {
  padding: 170px 0 58px;
}

.legal-page .page-hero h1 {
  font-size: clamp(2.35rem, 4.4vw, 3.6rem);
}

.legal-page .content-page {
  background: #ffffff;
  padding-top: 62px;
}

.legal-page .content-main {
  counter-reset: legal-section;
  gap: 58px;
  max-width: 900px;
}

.legal-page .content-card {
  scroll-margin-top: 130px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.legal-page .content-card h2 {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 22px;
  font-size: clamp(1.45rem, 1.9vw, 1.9rem);
  font-weight: 650;
}

.legal-page .content-card h2::before {
  counter-increment: legal-section;
  content: counter(legal-section, decimal-leading-zero) ".";
  flex: 0 0 auto;
  color: #00866a;
  font-family: var(--mono);
  font-size: 0.78em;
  font-weight: 700;
}

.legal-page .content-card h3 {
  margin: 28px 0 10px;
  font-size: clamp(1.05rem, 1.28vw, 1.18rem);
  font-weight: 700;
}

.legal-page .content-card p,
.legal-page .content-card li {
  color: var(--text-soft);
  font-size: clamp(0.96rem, 1vw, 1.02rem);
  line-height: 1.66;
}

.legal-page .content-card ul,
.legal-page .content-card ol {
  margin-top: 16px;
}

.legal-page .content-card li + li {
  margin-top: 8px;
}

.legal-page .page-meta {
  display: block;
  margin-bottom: 22px;
  color: #00866a;
  font-size: 0.9rem;
}

.legal-page .legal-lead-box {
  margin: 0;
  padding: 22px 26px;
  border: 1px solid rgba(7, 19, 27, 0.11);
  border-radius: 8px;
  background: #ffffff;
  color: var(--text);
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  line-height: 1.55;
}

.legal-plain-lead {
  margin: 0;
  color: var(--text);
  font-size: clamp(1rem, 1.12vw, 1.12rem);
  line-height: 1.55;
}

.legal-page .content-callout,
.legal-page .legal-note {
  margin-top: 24px;
  padding: 20px 22px;
  border: 0;
  border-left: 4px solid #00a978;
  border-radius: 0;
  background: #f8fafb;
  color: var(--text-soft);
  font-weight: 400;
  line-height: 1.62;
}

.legal-definition-list {
  display: grid;
  gap: 22px;
  margin-top: 18px;
}

.legal-definition-list div {
  padding: 12px 0 12px 22px;
  border-left: 3px solid #00a978;
}

.legal-definition-list dt {
  margin: 0 0 8px;
  color: var(--text);
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  font-weight: 600;
}

.legal-definition-list dd {
  margin: 0;
  color: var(--text-soft);
  font-size: clamp(0.96rem, 1vw, 1.02rem);
  line-height: 1.6;
}

.legal-box-grid {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.legal-box-grid > div {
  padding: 20px 22px;
  border: 0;
  border-left: 4px solid #00a978;
  border-radius: 0;
  background: #f8fafb;
}

.legal-box-grid h3:first-child {
  margin-top: 0;
}

.page-meta {
  display: inline-flex;
  margin-bottom: 16px;
  color: #047857;
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 700;
}

.content-callout {
  padding: 22px;
  border-radius: 8px;
  border: 1px solid rgba(16, 185, 129, 0.26);
  background: #e9f8f2;
  color: #064e3b;
  font-weight: 700;
  line-height: 1.6;
}

.trajectory-summary {
  margin-top: 30px;
}

.page-timeline {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-timeline li {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
  border-radius: 8px;
  background: #f7faf9;
}

.page-timeline strong {
  color: #047857;
  font-family: var(--mono);
  font-size: 0.82rem;
}

.page-timeline-detailed h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-family: var(--display);
  font-size: clamp(1.08rem, 1.32vw, 1.24rem);
  line-height: 1.18;
  font-weight: 500;
}

.page-timeline-detailed p {
  margin: 0;
}

.page-timeline-detailed p + p {
  margin-top: 8px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 30px;
  color: var(--brand-2);
  font-weight: 800;
}

.final-cta {
  padding: 112px 0;
}

.final-cta-inner {
  max-width: 930px;
  text-align: center;
}

.final-cta h2 {
  margin-bottom: 32px;
}

.site-footer {
  background: #061018;
  color: var(--white);
  border-top: 1px solid var(--line-dark);
  padding: 58px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) 190px 190px minmax(230px, 280px);
  gap: 42px;
  align-items: start;
}

.footer-grid > nav,
.footer-contact {
  justify-self: end;
  min-width: 0;
  width: 100%;
  max-width: max-content;
}

.footer-logo {
  width: 168px;
  margin-bottom: 12px;
}

.footer-brand p {
  margin: 0;
}

.site-footer .footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-top: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.68);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.site-footer .footer-social-link:hover,
.site-footer .footer-social-link:focus-visible {
  background: rgba(61, 253, 207, 0.12);
  color: var(--brand-2);
}

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

.site-footer nav,
.site-footer .footer-grid > div {
  display: grid;
  align-content: start;
  gap: 12px;
}

.site-footer strong {
  color: var(--white);
  font-family: var(--display);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.62);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--brand-2);
}

.footer-mail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-contact {
  justify-items: start;
  text-align: left;
}

.footer-contact strong,
.footer-contact .footer-mail,
.footer-contact .footer-demo {
  justify-self: start;
}

.footer-demo {
  justify-self: start;
  margin-top: 4px;
  min-height: 42px;
  border: 1px solid rgba(61, 253, 207, 0.28);
  background: rgba(61, 253, 207, 0.08);
  color: var(--brand-2);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  font-size: 0.74rem;
}

.modal[hidden] {
  display: none;
}

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

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(7px);
}

.demo-dialog {
  position: relative;
  width: min(478px, calc(100vw - 24px));
  max-height: min(92svh, 760px);
  overflow: auto;
  border-radius: 14px;
  background: #07131b;
  color: var(--white);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.48);
}

.demo-head {
  position: relative;
  padding: 26px 34px 24px;
  background: #0b8a63;
  text-align: center;
}

.demo-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.58rem;
  line-height: 1.1;
}

.demo-head p {
  margin: 12px 0 0;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.94);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
}

.modal-close svg {
  width: 16px;
  height: 16px;
}

.demo-form {
  display: grid;
  gap: 18px;
  padding: 28px 32px 26px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: #afc5d6;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.field input,
.field select {
  width: 100%;
  min-height: 50px;
  border: 1px solid #2e4658;
  border-radius: 8px;
  background: #112231;
  color: var(--white);
  padding: 0 16px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field input::placeholder {
  color: #7f91a5;
}

.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #a9bbc8 50%),
    linear-gradient(135deg, #a9bbc8 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 22px,
    calc(100% - 16px) 22px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.field input:focus,
.field select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18);
}

.field.has-error input,
.field.has-error select {
  border-color: var(--danger);
}

.field-error {
  display: none;
  min-height: 0;
  color: #ff8a8a;
  font-size: 0.78rem;
}

.field-error:not(:empty) {
  display: block;
}

.submit-button {
  width: 100%;
  min-height: 52px;
  margin-top: 8px;
  border: 0;
  border-radius: 10px;
  background: #0d7f60;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
}

.submit-button:hover,
.submit-button:focus-visible {
  background: var(--brand);
}

.submit-button[disabled] {
  opacity: 0.68;
  cursor: wait;
  transform: none;
}

.form-status {
  min-height: 20px;
  margin: 0;
  text-align: center;
  color: var(--brand-2);
  font-size: 0.9rem;
}

.form-status.is-error {
  color: #ff9d9d;
}

.secure-note {
  margin: 0;
  color: #afc5d6;
  text-align: center;
  font-size: 0.86rem;
}

body.cookie-modal-open {
  overflow: hidden;
}

.cookie-banner[hidden],
.cookie-preferences[hidden] {
  display: none;
}

.cookie-banner {
  position: fixed;
  inset: auto 0 0;
  z-index: 130;
  border-top: 1px solid rgba(7, 19, 27, 0.1);
  background: var(--white);
  color: var(--text);
  box-shadow: 0 -18px 60px rgba(7, 19, 27, 0.16);
}

.cookie-banner-inner {
  width: min(var(--max), calc(100% - 48px));
  min-height: 152px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  padding: 26px 0;
}

.cookie-banner-copy {
  max-width: 720px;
}

.cookie-banner-copy h2 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  line-height: 1.2;
  font-weight: 800;
}

.cookie-banner-copy p {
  margin: 0;
  color: #536171;
  font-size: 0.94rem;
  line-height: 1.55;
}

.cookie-banner-copy a {
  color: #008b67;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0 20px;
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

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

.cookie-btn:focus-visible,
.footer-cookie-button:focus-visible,
.cookie-icon-button:focus-visible {
  outline: 3px solid rgba(16, 185, 129, 0.28);
  outline-offset: 3px;
}

.cookie-btn-soft {
  background: #f1f3f6;
  color: #3d4858;
}

.cookie-btn-soft:hover,
.cookie-btn-soft:focus-visible {
  background: #e8ecf1;
}

.cookie-btn-outline {
  border-color: rgba(16, 185, 129, 0.38);
  background: var(--white);
  color: #008b67;
}

.cookie-btn-outline:hover,
.cookie-btn-outline:focus-visible {
  border-color: rgba(16, 185, 129, 0.62);
  background: #ecfdf5;
}

.cookie-btn-primary {
  background: #009b72;
  color: var(--white);
  box-shadow: 0 12px 30px rgba(0, 155, 114, 0.2);
}

.cookie-btn-primary:hover,
.cookie-btn-primary:focus-visible {
  background: #007f5f;
}

.cookie-preferences {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  padding: 18px;
}

.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 15, 0.64);
  backdrop-filter: blur(7px);
}

.cookie-dialog {
  position: relative;
  width: min(672px, calc(100vw - 36px));
  max-height: min(90svh, 720px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  border-radius: 14px;
  background: var(--white);
  color: var(--text);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.42);
}

.cookie-dialog-head {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 24px;
  border-bottom: 1px solid rgba(7, 19, 27, 0.08);
}

.cookie-dialog-head h2 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.2;
  font-weight: 800;
}

.cookie-icon-button {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #8a96a6;
  cursor: pointer;
}

.cookie-icon-button:hover,
.cookie-icon-button:focus-visible {
  background: #f1f3f6;
  color: #344052;
}

.cookie-icon-button span {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
}

.cookie-icon-button span::before,
.cookie-icon-button span::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 1px;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.cookie-icon-button span::before {
  transform: rotate(45deg);
}

.cookie-icon-button span::after {
  transform: rotate(-45deg);
}

.cookie-dialog-body {
  display: grid;
  gap: 22px;
  overflow: auto;
  padding: 26px 24px 24px;
}

.cookie-dialog-body > p {
  margin: 0;
  color: #5b6777;
  line-height: 1.48;
}

.cookie-option {
  min-height: 102px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 18px;
  padding: 20px 16px;
  border: 1px solid rgba(7, 19, 27, 0.08);
  border-radius: 10px;
  background: var(--white);
}

.cookie-option.is-required {
  background: #f7f9fa;
}

.cookie-option h3 {
  margin: 0 0 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 800;
}

.cookie-option h3 span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border: 1px solid rgba(16, 185, 129, 0.28);
  border-radius: 999px;
  padding: 0 8px;
  color: #009b72;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cookie-option p {
  margin: 0;
  color: #667386;
  line-height: 1.48;
}

.cookie-switch {
  position: relative;
  flex: 0 0 auto;
  width: 44px;
  height: 24px;
  cursor: pointer;
}

.cookie-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cookie-switch span {
  display: block;
  width: 44px;
  height: 24px;
  border-radius: 999px;
  background: #e1e6ee;
  transition: background 160ms ease, box-shadow 160ms ease;
}

.cookie-switch span::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 1px 4px rgba(7, 19, 27, 0.22);
  transition: transform 160ms ease;
}

.cookie-switch input:checked + span {
  background: #6cc7ab;
}

.cookie-switch input:checked + span::before {
  transform: translateX(20px);
}

.cookie-switch input:focus-visible + span {
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.28);
}

.cookie-switch input:disabled + span {
  cursor: not-allowed;
}

.cookie-dialog-actions {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 18px 24px;
  border-top: 1px solid rgba(7, 19, 27, 0.06);
  background: #f7f8fa;
}

.footer-cookie-button {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
}

.footer-cookie-button:hover,
.footer-cookie-button:focus-visible {
  color: var(--brand-2);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (max-width: 1120px) {
  .desktop-nav,
  .text-button,
  .nav-actions .button {
    display: none;
  }

  .icon-button {
    display: inline-flex;
  }

  .site-header.menu-open .mobile-nav {
    display: grid;
  }

  .hero-shell {
    grid-template-columns: 1fr;
  }

  .founders-shell {
    grid-template-columns: 1fr;
  }

  .founder-photo,
  .founder-manifesto,
  .founders-proof,
  .founder-cards {
    grid-column: 1;
    grid-row: auto;
  }

  .founder-photo {
    min-height: 0;
  }

  .founder-photo img {
    height: 100%;
    aspect-ratio: auto;
  }

  .founder-manifesto p {
    max-width: 720px;
  }

  .platform-story {
    grid-template-columns: 1fr;
    gap: 34px;
    align-items: start;
  }

  .platform-story-visual {
    max-width: 620px;
  }

  .credit-modes-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .credit-pipeline {
    justify-content: flex-start;
  }

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

  .hero-media::before {
    background:
      linear-gradient(90deg, rgba(7, 19, 27, 0.96) 0%, rgba(7, 19, 27, 0.82) 52%, rgba(7, 19, 27, 0.42) 100%),
      linear-gradient(180deg, rgba(7, 19, 27, 0.72) 0%, rgba(7, 19, 27, 0.1) 36%, rgba(7, 19, 27, 0.86) 100%);
  }

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

@media (max-width: 820px) {
  :root {
    --header: 66px;
  }

  .container,
  .strip-inner,
  .nav-wrap,
  .mobile-nav {
    width: min(100% - 28px, var(--max));
  }

  .section {
    padding: 76px 0;
  }

  .platform-section {
    padding: 82px 0 76px;
  }

  .platform-suite-inner {
    width: min(100% - 28px, var(--max));
  }

  .credit-modes-inner {
    width: min(100% - 28px, var(--max));
  }

  .credit-modes-section {
    padding: 80px 0;
  }

  .credit-modes-layout {
    gap: 34px;
  }

  .credit-modes-carousel {
    height: 500px;
    min-height: 0;
    padding-inline: 0;
  }

  .platform-suite-intro {
    margin-bottom: 42px;
  }

  .platform-suite-intro h2,
  .platform-story h3,
  .credit-modes-heading h2 {
    font-size: clamp(2.05rem, 8.8vw, 3.15rem);
  }

  .credit-mode-card {
    min-height: 154px;
    padding: 20px 20px;
  }

  .credit-mode-icon {
    width: 50px;
    height: 50px;
  }

  .platform-story-list {
    gap: 54px;
  }

  .platform-story-visual {
    min-height: 0;
  }

  .hero {
    min-height: 100svh;
    padding: 0;
  }

  .brand img {
    width: 116px;
  }

  .hero-content {
    width: min(100% - 44px, 620px);
    margin: 0 auto;
    padding: 114px 0 56px;
  }

  .hero h1 {
    font-size: clamp(1.45rem, 7.2vw, 3rem);
  }

  .hero-copy {
    margin-top: 22px;
  }

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

  .strip-inner {
    width: min(100% - 28px, var(--max));
    min-height: 86px;
    grid-template-columns: 1fr;
    padding: 16px 0;
  }

  .strip-inner > span {
    white-space: normal;
  }

  .founders-heading h2 {
    font-size: clamp(2.1rem, 9.4vw, 3rem);
  }

  .founders-proof {
    padding: 0;
  }

  .founder-cards,
  .legal-grid,
  .about-layout,
  .content-layout {
    grid-template-columns: 1fr;
  }

  .about-values-list {
    grid-template-columns: 1fr;
  }

  .about-values-list li:last-child {
    justify-content: flex-start;
  }

  .founder-card {
    min-height: auto;
    padding: 26px 24px;
  }

  .side-index,
  .content-nav {
    position: static;
    display: flex;
    overflow-x: auto;
    gap: 6px;
    padding-bottom: 8px;
  }

  .side-index a,
  .content-nav a {
    flex: 0 0 auto;
    background: var(--white);
  }

  .page-timeline li {
    grid-template-columns: 1fr;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

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

  .footer-grid > nav,
  .footer-contact {
    justify-self: start;
    width: auto;
    max-width: none;
  }

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

  .cookie-banner-inner {
    width: min(100% - 28px, var(--max));
    min-height: 0;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 18px;
    padding: 22px 0;
  }

  .cookie-banner-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .cookie-banner-actions .cookie-btn {
    flex: 1 1 190px;
  }

  .cookie-dialog {
    width: min(100%, calc(100vw - 24px));
    max-height: calc(100svh - 24px);
  }

  .cookie-dialog-body {
    padding: 22px 18px;
  }
}

@media (max-width: 560px) {
  .section-copy h2,
  .section-heading h2,
  .final-cta h2,
  .about-content h2,
  .legal-block h2 {
    font-size: clamp(2rem, 9.6vw, 2.9rem);
  }

  .button,
  .submit-button {
    width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .demo-form {
    padding: 26px 20px;
  }

  .demo-head {
    padding: 30px 42px 28px;
  }

  .modal {
    padding: 8px;
  }

  .platform-suite-intro h2,
  .platform-story h3 {
    font-size: clamp(2.05rem, 8.8vw, 3.15rem);
  }

  .platform-suite-intro p:not(.eyebrow),
  .platform-story p,
  .credit-modes-heading p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.62;
  }

  .credit-mode-card {
    min-height: 150px;
    padding: 20px 18px;
  }

  .credit-mode-head {
    gap: 13px;
  }

  .credit-mode-card h3 {
    font-size: clamp(1.14rem, 6.2vw, 1.42rem);
  }

  .credit-mode-card p {
    font-size: 0.92rem;
  }

  .credit-modes-builder {
    padding: 0;
  }

  .credit-modes-carousel {
    height: 480px;
  }

  .credit-pipeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    max-width: none;
  }

  .credit-pipeline li {
    min-height: 40px;
    padding: 10px 8px 10px 22px;
    font-size: clamp(0.72rem, 3vw, 0.88rem);
    line-height: 1.12;
  }

  .visual-chip,
  .visual-panel {
    right: 18px;
    bottom: 18px;
    min-width: 0;
    width: min(250px, calc(100% - 36px));
    padding: 14px 16px;
  }

  .visual-chip span,
  .visual-chip small,
  .visual-panel span {
    font-size: 0.74rem;
  }

  .visual-chip strong,
  .visual-panel strong {
    font-size: 1.14rem;
  }

  .story-line summary {
    min-height: 58px;
    align-items: flex-start;
    padding: 14px 0;
  }

  .story-line summary svg {
    margin-top: 1px;
  }

  .strip-inner {
    min-height: 78px;
  }

  .capability-set {
    gap: 14px;
    padding-right: 14px;
  }

  .capability-track b {
    min-height: 40px;
    padding: 0 14px 0 11px;
    font-size: 0.82rem;
  }

  .capability-track b svg {
    width: 22px;
    height: 22px;
  }

  .cookie-preferences {
    padding: 12px;
  }

  .cookie-banner-actions .cookie-btn {
    flex-basis: 100%;
    width: 100%;
  }

  .cookie-dialog-head {
    min-height: 72px;
    padding: 0 18px;
  }

  .cookie-option {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .cookie-switch {
    justify-self: start;
  }

  .cookie-dialog-actions {
    min-height: 0;
    flex-direction: column-reverse;
    align-items: stretch;
    padding: 16px 18px;
  }

  .cookie-dialog-actions .cookie-btn {
    width: 100%;
  }
}

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

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

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

  .capability-marquee {
    animation: capability-scroll 24s linear infinite !important;
    animation-play-state: running !important;
  }

  .credit-modes-track {
    animation: creditModesMarquee 42s linear infinite !important;
  }

  .credit-modes-carousel:hover .credit-modes-track,
  .credit-modes-carousel:focus-within .credit-modes-track {
    animation-play-state: paused !important;
  }
}
