:root {
  --bg: #f6f7f5;
  --paper: #ffffff;
  --ink: #111413;
  --muted: #4B5560;
  --line: #dfe4df;
  --line-strong: #c5cdc6;
  --teal: #008f73;
  --blue: #315eea;
  --amber: #d99516;
  --primary: #2155FF;
  --secondary: #00B894;
  --accent: #FFB020;
  --brand: #2155FF;
  --cta: #2155FF;
  --surface-dark: #08110F;
  --dark: #08110F;
  --gradient-brand: linear-gradient(135deg, #2155FF 0%, #00B894 64%, #FFB020 128%);
  --mint: #e8f6f1;
  --blue-soft: #eef3ff;
  --amber-soft: #fff3d5;
  --shadow: 0 24px 70px rgba(24, 31, 27, .13);
  --radius: 8px;
  --max: 1240px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(246, 247, 245, .98) 31rem),
    repeating-linear-gradient(90deg, rgba(17, 20, 19, .035) 0 1px, transparent 1px 72px),
    var(--bg);
  letter-spacing: 0;
}

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

p,
li {
  line-height: 1.65;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(197, 205, 198, .78);
  background: rgba(246, 247, 245, .9);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.brand__mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  box-shadow: inset 0 0 0 6px var(--mint);
  color: var(--teal);
}

.brand__mark svg {
  width: 19px;
  height: 19px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  color: var(--muted);
}

.nav a:hover {
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: fit-content;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid #0f2f29;
  border-radius: var(--radius);
  background: #12231f;
  color: #fff;
  font-size: 14px;
  font-weight: 750;
  box-shadow: 0 16px 34px rgba(18, 35, 31, .18);
}

.button--light {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, .82);
  color: var(--ink);
  box-shadow: none;
}

.button svg {
  width: 16px;
  height: 16px;
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(430px, 1.05fr);
  gap: 36px;
  align-items: center;
  padding: 42px 0 56px;
}

.hero h1 {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: 56px;
  line-height: 1.02;
  font-weight: 840;
  letter-spacing: 0;
}

.lead {
  max-width: 690px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 19px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 30px;
}

.hero__proofs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 740px;
}

.proof {
  min-height: 100px;
  padding: 14px;
  border-left: 3px solid var(--teal);
  background: rgba(255, 255, 255, .76);
}

.proof strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
}

.proof span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.hero-card {
  position: relative;
  min-height: 592px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(249, 251, 249, .96)),
    repeating-linear-gradient(0deg, rgba(17, 20, 19, .045) 0 1px, transparent 1px 34px);
  box-shadow: var(--shadow);
}

.hero-card__bar {
  min-height: 58px;
  padding: 0 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.dots {
  display: flex;
  gap: 7px;
}

.dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line-strong);
}

.flow {
  position: relative;
  min-height: 534px;
  padding: 26px;
}

.flow svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.flow path {
  fill: none;
  stroke: rgba(49, 94, 234, .32);
  stroke-width: 2;
  stroke-dasharray: 7 10;
  animation: lineMove 9s linear infinite;
}

.flow path:nth-child(2n) {
  stroke: rgba(0, 143, 115, .36);
  animation-duration: 11s;
}

.node {
  position: absolute;
  z-index: 2;
  width: 170px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 12px 34px rgba(24, 31, 27, .09);
}

.node small {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.node strong {
  display: block;
  font-size: 16px;
  line-height: 1.25;
}

.node span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.node--core {
  width: 202px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(0, 143, 115, .38);
  background: #f9fffc;
}

.n1 { left: 28px; top: 42px; }
.n2 { left: 28px; top: 204px; }
.n3 { left: 28px; bottom: 34px; }
.n4 { right: 28px; top: 58px; }
.n5 { right: 28px; top: 222px; }
.n6 { right: 28px; bottom: 42px; }

.kpis {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 28px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.kpi {
  min-width: 96px;
  padding: 9px 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .94);
  text-align: center;
}

.kpi b {
  display: block;
  font-size: 18px;
}

.kpi span {
  color: var(--muted);
  font-size: 11px;
}

.section {
  margin: 0 auto 28px;
  scroll-margin-top: 96px;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 14px 44px rgba(24, 31, 27, .055);
  overflow: hidden;
}

.section__head {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(250px, .28fr);
  gap: 24px;
  align-items: end;
  padding: 32px;
  border-bottom: 1px solid var(--line);
}

h2 {
  margin: 0 0 10px;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 820;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.25;
  font-weight: 780;
  letter-spacing: 0;
}

.section__head p,
.section__note {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.section__note {
  padding-left: 14px;
  border-left: 3px solid var(--amber);
  font-size: 13px;
}

.content {
  padding: 30px 32px;
}

.content p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 17px;
}

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

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}

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

.item {
  min-height: 180px;
  padding: 24px;
  background: #fff;
}

.item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.item--soft {
  background: linear-gradient(180deg, #fff, #f8fbff);
}

.item--mint {
  background: linear-gradient(180deg, #fff, #f7fffb);
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 1px;
  background: var(--line);
}

.split > div {
  padding: 30px 32px;
  background: #fff;
}

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

.list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  color: var(--muted);
}

.mark {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 143, 115, .28);
  background: var(--mint);
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

.steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}

.step {
  min-height: 190px;
  padding: 22px;
  background: #fff;
}

.step b {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 18px;
  background: #12231f;
  color: #fff;
  font-size: 13px;
}

.step span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

th,
td {
  padding: 17px 18px;
  border-top: 1px solid var(--line);
  vertical-align: top;
  text-align: left;
  font-size: 14px;
  line-height: 1.45;
}

th {
  color: var(--muted);
  background: #fbfcfb;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.question-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}

details {
  background: #fff;
  padding: 0 24px;
}

summary {
  cursor: pointer;
  padding: 20px 0;
  font-weight: 760;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--teal);
  font-weight: 800;
}

details[open] summary::after {
  content: "-";
}

details p {
  max-width: 880px;
  margin: 0;
  padding: 0 0 20px;
  color: var(--muted);
}

.glossary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}

.term {
  min-height: 140px;
  padding: 22px;
  background: #fff;
}

.term strong {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 18px;
}

.term span {
  color: var(--muted);
  font-size: 14px;
}

.bottom-cta {
  margin: 0 auto 28px;
  padding: 34px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(232, 246, 241, .95), rgba(238, 243, 255, .9)),
    #fff;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.bottom-cta p {
  margin: 8px 0 0;
  color: var(--muted);
}

.footer {
  padding: 34px 0 44px;
  color: #DDE8EC;
  font-size: 14px;
  background:
    linear-gradient(180deg, rgba(8, 17, 15, .96), #08110F),
    var(--surface-dark);
}

.footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 24px;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.fixed-link {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 25;
}

@keyframes lineMove {
  to {
    stroke-dashoffset: -170;
  }
}

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

  .flow path {
    animation: none;
  }
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-card {
    min-height: 520px;
  }

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

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

@media (max-width: 780px) {
  .container {
    padding: 0 16px;
  }

  .topbar__inner {
    min-height: 64px;
  }

  .nav {
    display: none;
  }

  .hero {
    padding: 30px 0 44px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .lead {
    font-size: 17px;
  }

  .hero__proofs,
  .section__head,
  .grid,
  .grid--four,
  .split,
  .steps,
  .glossary,
  .bottom-cta,
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .section__head,
  .content,
  .split > div {
    padding: 24px 20px;
  }

  h2 {
    font-size: 26px;
  }

  .hero-card {
    min-height: 660px;
  }

  .flow {
    min-height: 600px;
    padding: 18px;
  }

  .flow svg,
  .kpis {
    display: none;
  }

  .node,
  .node--core {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
    margin-bottom: 10px;
    transform: none;
  }

  .fixed-link {
    left: 16px;
    right: auto;
    bottom: 16px;
  }
}

/* Studio design v4.2 */

body {
  overflow-x: hidden;
  background:
    linear-gradient(180deg, #08110F 0, #0D1618 680px, #F7F8F4 681px),
    repeating-linear-gradient(90deg, rgba(33, 85, 255, .08) 0 1px, transparent 1px 88px);
}

main {
  position: relative;
  z-index: 1;
}

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

.topbar {
  border-bottom-color: rgba(255, 255, 255, .11);
  background: rgba(8, 17, 15, .78);
  color: #fff;
}

.topbar .nav {
  color: #D8E3E8;
}

.topbar .nav a:hover,
.topbar .nav a[aria-current] {
  color: #fff;
}

.brand__mark {
  border-color: rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .08);
  box-shadow: inset 0 0 0 6px rgba(0, 184, 148, .13);
  color: var(--secondary);
}

.button {
  border-color: rgba(255, 255, 255, .16);
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: 0 18px 38px rgba(33, 85, 255, .24);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 48px rgba(33, 85, 255, .32);
}

.button--light {
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .03);
}

.hero {
  position: relative;
  color: #fff;
  grid-template-columns: minmax(0, .88fr) minmax(500px, 1.12fr);
  min-height: auto;
  padding-top: 24px;
  padding-bottom: 28px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 20px 28px auto;
  height: 520px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, .08);
  background:
    linear-gradient(120deg, rgba(33, 85, 255, .18), transparent 42%),
    linear-gradient(300deg, rgba(0, 184, 148, .16), transparent 44%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .06) 0 1px, transparent 1px 74px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .045) 0 1px, transparent 1px 74px);
  box-shadow: 0 50px 120px rgba(0, 0, 0, .28);
  pointer-events: none;
}

.hero h1 {
  color: #fff;
  text-wrap: balance;
  margin-bottom: 16px;
  font-size: 50px;
}

.lead {
  color: #D5E4EA;
  margin-bottom: 20px;
  font-size: 18px;
}

.hero__proofs {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  max-width: 620px;
}

.proof {
  min-height: auto;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, .07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .09);
}

.proof strong {
  color: #fff;
  margin-bottom: 4px;
  font-size: 13px;
}

.proof span {
  color: #D8E3E8;
  font-size: 11px;
  line-height: 1.24;
}

.hero-card.hero-visual {
  min-height: 500px;
  border-color: rgba(255, 255, 255, .18);
  background:
    linear-gradient(160deg, rgba(33, 85, 255, .24), rgba(8, 17, 15, .8) 45%, rgba(0, 184, 148, .16)),
    var(--surface-dark);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .45), 0 0 0 1px rgba(255, 255, 255, .05) inset;
  isolation: isolate;
}

.hero-card__bar {
  position: relative;
  z-index: 4;
  border-bottom-color: rgba(255, 255, 255, .12);
  color: #D5E4EA;
  background: rgba(8, 17, 15, .72);
}

.hero-visual__image {
  position: absolute;
  inset: 12px;
  z-index: 0;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  object-fit: cover;
  opacity: .58;
  filter: saturate(1.12) contrast(1.05);
}

.hero-visual__halo {
  position: absolute;
  inset: 58px 74px;
  z-index: 1;
  background:
    linear-gradient(110deg, rgba(33, 85, 255, .16), transparent 46%),
    linear-gradient(290deg, rgba(255, 176, 32, .14), transparent 50%);
  border: 1px solid rgba(255, 255, 255, .08);
  transform: skewY(-5deg);
  pointer-events: none;
}

.flow {
  min-height: 442px;
}

.flow svg.hero-visual__paths {
  z-index: 2;
  opacity: .82;
}

.flow path {
  stroke: rgba(255, 255, 255, .52);
  stroke-width: 2.5;
  filter: drop-shadow(0 0 8px rgba(33, 85, 255, .65));
}

.flow path:nth-child(2n) {
  stroke: rgba(0, 184, 148, .72);
}

.node {
  z-index: 4;
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .22);
}

.node--core {
  border-color: rgba(255, 255, 255, .24);
  background: linear-gradient(135deg, rgba(33, 85, 255, .94), rgba(0, 184, 148, .9));
  color: #fff;
}

.node--core small,
.node--core span {
  color: rgba(255, 255, 255, .88);
}

.kpis {
  bottom: 24px;
}

.kpi {
  border-color: rgba(255, 255, 255, .18);
  background: rgba(8, 17, 15, .76);
  color: #fff;
  box-shadow: 0 14px 32px rgba(0, 0, 0, .24);
}

.kpi span {
  color: #D8E3E8;
}

.panel {
  border-color: rgba(16, 20, 23, .1);
  background: rgba(255, 255, 255, .93);
  box-shadow: 0 22px 60px rgba(16, 20, 23, .07);
}

.section {
  margin: 0 auto 34px;
}

.section__head {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(247, 250, 255, .88)),
    #fff;
}

.section__head h2::before {
  content: "";
  display: block;
  width: 42px;
  height: 4px;
  margin-bottom: 13px;
  background: var(--gradient-brand);
}

.section__note {
  border-left-color: var(--accent);
  color: #4E5963;
}

.item,
.term,
.step,
details {
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.item:hover,
.term:hover,
.step:hover,
details:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(16, 20, 23, .08);
}

.icon {
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  color: var(--primary);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.item--mint .icon,
.item--soft .icon {
  color: var(--secondary);
}

.bento-grid {
  grid-template-columns: 1.18fr .82fr .82fr;
}

.bento-grid .item:first-child {
  grid-row: span 2;
  min-height: 360px;
  background:
    linear-gradient(150deg, rgba(8, 17, 15, .94), rgba(20, 36, 45, .92)),
    var(--surface-dark);
  color: #fff;
}

.bento-grid .item:first-child p {
  color: #D4E2E8;
}

.bento-grid .item:first-child .icon {
  color: var(--accent);
}

.feature-grid .item:nth-child(1),
.feature-grid .item:nth-child(4) {
  min-height: 230px;
  background:
    linear-gradient(135deg, rgba(33, 85, 255, .1), rgba(255, 255, 255, .96));
}

.process-flow {
  position: relative;
  background: linear-gradient(90deg, rgba(33, 85, 255, .16), rgba(0, 184, 148, .14));
}

.process-flow::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 54px;
  height: 2px;
  background: var(--gradient-brand);
  opacity: .42;
}

.process-flow .step {
  position: relative;
  z-index: 1;
}

.step b {
  background: var(--surface-dark);
  box-shadow: 0 0 0 5px rgba(33, 85, 255, .09);
}

.comparison-module .grid .item,
.comparison-module td,
.comparison-module th {
  border-color: rgba(16, 20, 23, .08);
}

.comparison-module table {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(247, 250, 255, .82));
}

.section-dark {
  border-color: rgba(255, 255, 255, .1);
  background:
    linear-gradient(160deg, rgba(8, 17, 15, .96), rgba(14, 31, 34, .94)),
    var(--surface-dark);
  color: #fff;
}

.section-dark .section__head {
  border-bottom-color: rgba(255, 255, 255, .11);
  background:
    linear-gradient(135deg, rgba(33, 85, 255, .16), rgba(0, 184, 148, .1)),
    transparent;
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-dark .section__head p,
.section-dark .section__note {
  color: #D4E2E8;
}

.stats-grid {
  background: rgba(255, 255, 255, .1);
}

.stats-grid .item {
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.stats-grid .item p {
  color: #D4E2E8;
}

.stats-grid .item::before {
  content: "";
  display: block;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  background:
    linear-gradient(135deg, rgba(33, 85, 255, .38), rgba(0, 184, 148, .24)),
    rgba(255, 255, 255, .05);
}

.list li {
  align-items: start;
}

.mark {
  border-color: rgba(33, 85, 255, .18);
  background: rgba(33, 85, 255, .08);
  color: var(--primary);
}

details[open] {
  background: linear-gradient(180deg, #fff, #F8FBFF);
}

summary::after {
  color: var(--primary);
}

.bottom-cta.cta-banner {
  border-color: rgba(255, 255, 255, .14);
  background:
    linear-gradient(135deg, rgba(33, 85, 255, .92), rgba(0, 184, 148, .86)),
    var(--surface-dark);
  color: #fff;
  box-shadow: 0 28px 76px rgba(33, 85, 255, .22);
}

.bottom-cta.cta-banner p {
  color: rgba(255, 255, 255, .9);
}

.footer {
  color: #DDE8EC;
  background:
    linear-gradient(180deg, rgba(8, 17, 15, .96), #08110F),
    var(--surface-dark);
}

.footer__inner {
  border-top-color: rgba(255, 255, 255, .12);
}

.footer strong {
  color: #fff;
}

.footer p {
  color: #C9D7DD;
}

.footer a {
  color: #F3FAFC;
}

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

.floating-cta .button {
  box-shadow: 0 18px 44px rgba(8, 17, 15, .24);
}

.reveal-ready .panel,
.reveal-ready .bottom-cta,
.reveal-ready .hero-card {
  opacity: 0;
  transform: translateY(14px);
}

.reveal-ready .is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .45s ease, transform .45s ease;
}

@media (prefers-reduced-motion: reduce) {
  .button,
  .item,
  .term,
  .step,
  details,
  .reveal-ready .panel,
  .reveal-ready .bottom-cta,
  .reveal-ready .hero-card {
    transition: none;
    transform: none;
  }

  .reveal-ready .panel,
  .reveal-ready .bottom-cta,
  .reveal-ready .hero-card {
    opacity: 1;
  }
}

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

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

  .bento-grid .item:first-child {
    grid-row: auto;
    grid-column: 1 / -1;
  }
}

@media (max-width: 780px) {
  body {
    background:
      linear-gradient(180deg, #08110F 0, #0D1618 850px, #F7F8F4 851px);
  }

  .hero::before {
    inset: 12px 16px auto;
    height: 760px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero__actions {
    gap: 8px;
    margin-bottom: 18px;
  }

  .hero__actions .button {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

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

  .proof {
    min-height: auto;
    padding: 10px;
  }

  .proof strong {
    margin-bottom: 4px;
    font-size: 13px;
  }

  .proof span {
    font-size: 11px;
    line-height: 1.28;
  }

  .hero-card.hero-visual {
    min-height: 430px;
  }

  .flow {
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 16px;
  }

  .hero-visual__image,
  .hero-visual__halo {
    display: none;
  }

  .node,
  .node--core {
    min-height: 74px;
    padding: 10px;
    margin: 0;
  }

  .node--core {
    grid-column: 1 / -1;
  }

  .node small {
    margin-bottom: 4px;
    font-size: 9px;
  }

  .node strong {
    font-size: 13px;
  }

  .node span {
    display: none;
  }

  .bento-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .process-flow::before {
    display: none;
  }

  .bottom-cta.cta-banner {
    padding: 26px 20px;
  }
}
