:root {
  --white: #ffffff;
  --soft: #f3f7fb;
  --soft-2: #ecf1f7;
  --navy: #02015a;
  --blue: #020887;
  --text: #68708c;
  --muted: #9ca3bd;
  --teal: #009c82;
  --teal-bright: #00bb9b;
  --lavender: #ece5ff;
  --mint: #d9ffd8;
  --yellow: #fbf7b8;
  --radius-sm: 8px;
  --radius-md: 16px;
  --wide: min(1280px, calc(100% - 80px));
  --content: min(1180px, calc(100% - 80px));
  --font-heading: "Poppins", "Poppins Placeholder", sans-serif;
  --font-body: "Be Vietnam Pro", "Be Vietnam Pro Placeholder", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.4;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.nav-open {
  overflow: hidden;
}

img,
svg,
iframe {
  display: block;
}

img,
iframe {
  max-width: 100%;
}

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

button,
summary {
  font: inherit;
}

h1,
h2,
h3,
p,
blockquote {
  margin: 0;
}

::selection {
  background: var(--teal-bright);
  color: var(--white);
}

[data-animate] {
  opacity: 0;
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 700ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

[data-animate="up"] {
  transform: translateY(26px);
  filter: blur(4px);
}

[data-animate="scale"] {
  transform: translateY(24px) scale(0.985);
  filter: blur(4px);
}

[data-animate].is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  padding: 15px 58px 15px 72px;
  background: transparent;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 1px 0 rgba(2, 1, 90, 0.06);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  width: 156px;
  height: 35px;
  align-items: center;
}

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

.button {
  display: inline-flex;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 14px 30px rgba(2, 8, 135, 0.18);
}

.button-light:hover,
.button-light:focus-visible {
  box-shadow: 0 14px 30px rgba(0, 84, 70, 0.18);
}

.button-header {
  min-width: 240px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  color: var(--white);
}

.site-header.is-scrolled .button-header {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(255, 255, 255, 0.7);
}

.button-label-mobile {
  display: none;
}

.button-primary {
  padding: 0 24px;
  background: var(--blue);
  color: var(--white);
}

.button-light {
  min-width: 240px;
  padding: 0 24px;
  background: var(--white);
  color: var(--blue);
}

.button-outline {
  min-width: 190px;
  padding: 0 24px;
  border: 1px solid #8b82ff;
  background: var(--white);
  color: #6f63ff;
}

.arrow-icon {
  position: relative;
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.button:hover .arrow-icon,
.button:focus-visible .arrow-icon {
  transform: translate(2px, -2px);
}

.arrow-icon::before,
.arrow-icon::after {
  position: absolute;
  content: "";
}

.arrow-icon::before {
  top: 2px;
  right: 1px;
  width: 11px;
  height: 11px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.arrow-icon::after {
  top: 8px;
  left: 1px;
  width: 17px;
  height: 2px;
  background: currentColor;
  transform: rotate(-45deg);
  transform-origin: center;
}

.hero {
  position: relative;
  min-height: 748px;
  overflow: hidden;
  padding: 183px 24px 80px;
  background: var(--soft);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.22) 30%, transparent 55%),
    linear-gradient(180deg, rgba(243, 247, 251, 0) 0%, var(--soft) 82%);
  content: "";
}

.hero-glow {
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  filter: blur(86px);
  opacity: 0.9;
  animation: glow-drift 12s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-glow-left {
  top: -260px;
  left: -140px;
  width: 870px;
  height: 530px;
  background: #21edcb;
}

.hero-glow-right {
  top: -330px;
  right: -170px;
  width: 860px;
  height: 620px;
  background: #009c82;
  animation-delay: -4s;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: 1180px;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  max-width: 780px;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
  animation: hero-rise 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-content > p {
  max-width: 690px;
  margin-top: 37px;
  color: #4e5774;
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: 0;
  animation: hero-rise 700ms cubic-bezier(0.22, 1, 0.36, 1) 120ms both;
}

.funding {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 19px;
  margin-top: 62px;
  color: #9ca3bd;
  font-size: 14px;
  animation: hero-rise 700ms cubic-bezier(0.22, 1, 0.36, 1) 240ms both;
}

.funding img:first-of-type {
  width: 134px;
}

.funding img:last-of-type {
  width: 84px;
}

.hero .button-primary {
  margin-top: 56px;
  min-width: 242px;
  animation: hero-rise 700ms cubic-bezier(0.22, 1, 0.36, 1) 360ms both;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(4px);
  }

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

@keyframes glow-drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(28px, 18px, 0) scale(1.04);
  }
}

.section-head {
  width: var(--content);
  margin: 0 auto;
  text-align: center;
}

.section-head h2 {
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 60px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.section-head p {
  margin-top: 20px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.4;
}

.section-pill,
.insight-category {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border-radius: 999px;
  background: rgba(139, 130, 255, 0.08);
  color: #8b82ff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.section-pill {
  justify-content: center;
  margin-bottom: 18px;
  padding: 0 15px;
}

.success-section {
  padding: 43px 0 110px;
  background: var(--white);
}

.video-frame {
  width: var(--wide);
  margin: 58px auto 0;
  overflow: hidden;
  border-radius: 10px;
  background: #07111f;
  box-shadow: 0 10px 22px rgba(2, 1, 90, 0.08);
}

.video-frame iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.success-copy {
  width: var(--wide);
  margin: 30px auto 0;
}

.success-copy blockquote {
  max-width: 980px;
  color: #050505;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
}

.success-copy p {
  margin-top: 10px;
  color: var(--text);
  font-size: 17px;
}

.success-copy img {
  width: 91px;
  margin-top: 16px;
}

.success-copy .button {
  margin-top: 27px;
}

.challenges-section {
  overflow: hidden;
  padding: 82px 0 74px;
  background: linear-gradient(180deg, var(--soft-2) 0%, rgba(243, 247, 251, 0) 100%);
}

.challenge-grid {
  display: grid;
  width: min(1420px, calc(100% - 80px));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin: 82px auto 0;
}

.challenge-card {
  min-height: 329px;
  padding: 42px 42px 38px;
  border-radius: var(--radius-md);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.challenge-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(2, 1, 90, 0.08);
}

.card-lavender {
  background: var(--lavender);
}

.card-mint {
  background: var(--mint);
}

.card-yellow {
  background: var(--yellow);
}

.line-icon {
  width: 45px;
  height: 45px;
  color: #000;
  transition: transform 220ms ease;
}

.challenge-card:hover .line-icon {
  transform: translateY(-2px) scale(1.04);
}

.line-icon svg,
.round-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.challenge-card h3 {
  margin-top: 28px;
  color: #000;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2;
}

.challenge-card p {
  margin-top: 23px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.4;
}

.product-section {
  padding: 82px 0 88px;
  background: var(--white);
}

.product-intro {
  max-width: 820px;
}

.product-intro h2 {
  font-size: 60px;
  line-height: 1;
}

.product-intro p {
  max-width: 720px;
  margin: 30px auto 0;
  font-size: 18px;
}

.feature-list {
  width: var(--content);
  margin: 100px auto 0;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 82px;
  align-items: center;
  min-height: 430px;
  margin-bottom: 72px;
}

.feature-row:last-child {
  margin-bottom: 0;
}

.feature-row-reverse figure {
  order: 2;
}

.feature-row-reverse .feature-copy {
  order: 1;
}

.feature-row figure {
  margin: 0;
  min-width: 0;
}

.feature-visual {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(185, 190, 209, 0.42);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 18% 8%, rgba(0, 187, 155, 0.12), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow:
    0 20px 45px rgba(2, 1, 90, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease;
}

.feature-visual:hover {
  transform: translateY(-5px);
  box-shadow:
    0 24px 52px rgba(2, 1, 90, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.feature-visual::after {
  position: absolute;
  right: -110px;
  bottom: -130px;
  width: 280px;
  height: 280px;
  border: 42px solid rgba(0, 187, 155, 0.08);
  border-radius: 50%;
  content: "";
  animation: ring-drift 9s ease-in-out infinite alternate;
}

.mock-window,
.scenario-card,
.audit-card,
.stay-card {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 316px;
  border: 1px solid rgba(185, 190, 209, 0.5);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 28px rgba(17, 22, 33, 0.08);
  transition: transform 260ms ease;
}

.feature-visual:hover .mock-window,
.feature-visual:hover .scenario-card,
.feature-visual:hover .audit-card,
.feature-visual:hover .stay-card {
  transform: translateY(-2px);
}

.mock-window {
  display: grid;
  align-content: start;
  padding: 18px;
}

.mock-topline,
.scenario-title,
.gain-row,
.audit-toolbar,
.stay-card-head,
.stay-labels {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.mock-topline {
  padding-bottom: 14px;
  color: var(--navy);
}

.mock-topline span,
.scenario-kicker,
.audit-toolbar b {
  color: #8b93ad;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.mock-topline strong {
  padding: 7px 10px;
  border-radius: 999px;
  background: #e3fff3;
  color: #008a71;
  font-size: 12px;
  font-weight: 700;
}

.code-grid {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) max-content;
  gap: 12px;
  align-items: center;
  padding: 13px 12px;
  border-top: 1px solid rgba(185, 190, 209, 0.36);
  color: #4e5774;
  font-size: 13px;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.feature-visual:hover .code-grid:not(.code-grid-head) {
  transform: translateX(2px);
}

.code-grid-head {
  border-top: 0;
  border-radius: 10px 10px 0 0;
  background: var(--soft);
  color: #8b93ad;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.code-grid b {
  color: var(--navy);
  font-weight: 700;
}

.code-grid-highlight {
  border-radius: 0 0 10px 10px;
  background: #fff6df;
}

.status-pill {
  display: inline-flex;
  width: 104px;
  min-height: 24px;
  align-items: center;
  justify-content: center;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  white-space: nowrap;
}

.status-ok {
  background: #d8ffe7;
  color: #008a50;
}

.status-info {
  background: #eaf2ff;
  color: var(--blue);
}

.status-warn {
  background: #fff0bf;
  color: #9a6500;
}

.audit-warning strong,
.stay-reason strong {
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.audit-warning p,
.stay-reason p {
  margin-top: 5px;
  color: var(--text);
  font-size: 12px;
  line-height: 1.45;
}

.stay-read-more {
  color: var(--blue);
  font-weight: 700;
  white-space: nowrap;
}

.scenario-card {
  padding: 22px;
}

.scenario-title {
  margin-top: 8px;
}

.scenario-title strong {
  color: var(--navy);
  font-size: 18px;
  line-height: 1.2;
}

.scenario-title span {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}

.gain-row {
  margin-top: 24px;
  padding: 18px;
  border-radius: 14px;
  background: linear-gradient(96deg, var(--teal) 0%, var(--teal-bright) 100%);
  color: var(--white);
  transition: transform 220ms ease;
}

.feature-visual:hover .gain-row {
  transform: translateY(-2px);
}

.gain-row span {
  font-family: var(--font-heading);
  font-size: 30px;
  line-height: 1;
}

.gain-row em {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.delta-table {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.delta-table div {
  display: grid;
  grid-template-columns: 30px 100px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(185, 190, 209, 0.35);
  border-radius: 12px;
  background: #fbfdff;
}

.delta-table span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: #d8ffe7;
  color: #008a50;
  font-weight: 700;
}

.delta-table b {
  color: var(--navy);
  font-size: 13px;
}

.delta-table p {
  color: var(--text);
  font-size: 12px;
  line-height: 1.35;
}

.audit-card {
  display: grid;
  align-content: start;
  padding: 18px;
}

.audit-toolbar {
  min-height: 44px;
  padding: 0 10px 12px;
  border-bottom: 1px solid rgba(185, 190, 209, 0.35);
}

.audit-toolbar span {
  min-width: 0;
  flex: 1;
  color: #69708c;
  font-size: 12px;
}

.audit-toolbar em {
  padding: 7px 12px;
  border: 1px solid #ffc86b;
  border-radius: 999px;
  color: #aa6500;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.audit-warning {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 12px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid #ffd37a;
  border-radius: 14px;
  background: #fff9e8;
}

.warning-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: #fff0bf;
  color: #a46100;
  font-weight: 700;
}

.audit-warning small {
  display: block;
  margin-top: 10px;
  color: #8b7f65;
  font-size: 11px;
  font-style: italic;
}

.audit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.audit-actions span {
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}

.stay-card {
  padding: 22px;
}

.stay-card h4 {
  color: #111621;
  font-size: 20px;
  font-weight: 700;
}

.stay-card-head span {
  padding: 7px 12px;
  border-radius: 999px;
  background: #d8ffe7;
  color: #008a50;
  font-size: 13px;
  font-weight: 700;
}

.stay-track {
  position: relative;
  display: grid;
  grid-template-columns: 22% 29% 31% 18%;
  height: 16px;
  margin-top: 34px;
  border-radius: 999px;
  overflow: visible;
}

.stay-track span {
  min-width: 0;
}

.stay-track span:first-child {
  border-radius: 999px 0 0 999px;
}

.stay-track span:nth-child(4) {
  border-radius: 0 999px 999px 0;
}

.track-red {
  background: #f5aaaa;
}

.track-green {
  background: #95e7c6;
}

.track-yellow {
  background: #ffe27b;
}

.stay-track b {
  position: absolute;
  top: 50%;
  left: 27%;
  display: grid;
  width: 30px;
  height: 24px;
  place-items: center;
  border-radius: 7px;
  background: #39a879;
  color: var(--white);
  font-size: 12px;
  transform: translate(-50%, -50%);
  animation: marker-pulse 2.8s ease-in-out infinite;
}

.stay-labels {
  margin-top: 24px;
  color: #69708c;
  font-size: 12px;
  font-weight: 700;
}

.stay-reason {
  margin-top: 22px;
  padding: 16px;
  border: 1px solid rgba(185, 190, 209, 0.45);
  border-radius: 14px;
  background: #fbfdff;
}

.feature-copy {
  max-width: 520px;
  min-width: 0;
}

.eyebrow,
.faq-pill {
  display: inline-flex;
  min-height: 29px;
  align-items: center;
  border-radius: 999px;
  background: var(--soft);
  color: #8b82ff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.eyebrow {
  padding: 0 15px;
}

.feature-copy h3 {
  margin-top: 18px;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 500;
  line-height: 1.1;
}

.feature-copy p {
  margin-top: 18px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.4;
}

.security-section {
  padding: 82px 0 92px;
  background: linear-gradient(180deg, var(--soft) 0%, var(--white) 100%);
}

.security-grid {
  display: grid;
  width: var(--content);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin: 64px auto 0;
}

.security-grid article {
  min-height: 300px;
  padding: 40px 42px;
  border-radius: var(--radius-md);
  background: var(--white);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.security-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(2, 1, 90, 0.07);
}

.round-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  transition:
    transform 220ms ease,
    background 220ms ease;
}

.security-grid article:hover .round-icon {
  transform: translateY(-2px) scale(1.04);
  background: var(--teal);
}

.round-icon svg {
  width: 31px;
  height: 31px;
}

.security-grid h3 {
  margin-top: 22px;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 500;
  line-height: 1;
}

.security-grid p {
  margin-top: 21px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.4;
}

.founders-section {
  padding: 82px 0 84px;
  background: var(--white);
}

.founder-grid {
  display: grid;
  width: min(996px, calc(100% - 80px));
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 144px;
  margin: 60px auto 0;
}

.founder-grid article {
  min-width: 0;
  transition: transform 220ms ease;
}

.founder-grid article:hover {
  transform: translateY(-4px);
}

.founder-grid img {
  width: 100%;
  aspect-ratio: 1.11 / 1;
  border-radius: 10px;
  object-fit: cover;
  object-position: center 19%;
  transition:
    transform 260ms ease,
    box-shadow 260ms ease;
}

.founder-grid article:hover img {
  transform: scale(1.015);
  box-shadow: 0 18px 38px rgba(17, 22, 33, 0.12);
}

.role {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin-top: 12px;
  padding: 0 14px;
  border-radius: 999px;
  background: #8bdbd0;
  color: #005e58;
  font-size: 12px;
  font-weight: 700;
}

.founder-grid h3 {
  margin-top: 11px;
  color: var(--navy);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2;
}

.founder-grid p {
  margin-top: 12px;
  color: #828289;
  font-size: 17px;
  line-height: 1.4;
}

.partner-row {
  display: flex;
  width: min(1110px, calc(100% - 80px));
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  margin: 92px auto 0;
  opacity: 0.22;
}

.partner-row img {
  max-width: 170px;
  max-height: 54px;
  object-fit: contain;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.partner-row img:hover {
  opacity: 0.86;
  transform: translateY(-2px);
}

.cta-section {
  padding: 66px 0 118px;
  background: var(--white);
}

.insights-section {
  padding: 92px 0 76px;
  background: var(--white);
  text-align: center;
}

.insights-hero {
  padding-bottom: 112px;
}

.insights-index {
  padding-top: 76px;
}

.insight-grid {
  display: grid;
  width: var(--content);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  margin: 58px auto 0;
  text-align: left;
}

.insight-card a {
  display: block;
}

.insight-card img {
  width: 100%;
  aspect-ratio: 1.72 / 1;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  background: var(--soft);
  box-shadow: 0 14px 34px rgba(2, 1, 90, 0.07);
  transition:
    transform 240ms ease,
    box-shadow 240ms ease;
}

.insight-card:hover img {
  transform: translateY(-5px);
  box-shadow: 0 22px 46px rgba(2, 1, 90, 0.11);
}

.insight-category {
  margin-top: 24px;
  padding: 0 14px;
  background: #d9ffd8;
  color: var(--blue);
}

.insight-card h3 {
  margin-top: 22px;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.15;
}

.insight-card p {
  margin-top: 14px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.45;
}

.insights-more {
  margin: 56px auto 0;
}

.cta-panel {
  display: grid;
  width: var(--content);
  min-height: 322px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 64px;
  align-items: center;
  margin: 0 auto;
  padding: 70px 80px;
  border-radius: var(--radius-md);
  background: linear-gradient(96deg, var(--teal) 0%, var(--teal-bright) 100%);
  color: var(--white);
  transition:
    transform 240ms ease,
    box-shadow 240ms ease;
}

.cta-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(0, 156, 130, 0.18);
}

.cta-panel h2 {
  max-width: 560px;
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 500;
  line-height: 1.1;
}

.cta-panel p {
  max-width: 640px;
  margin-top: 22px;
  color: var(--white);
  font-size: 19px;
  line-height: 1.45;
}

.faq-section {
  padding: 35px 0 112px;
  background: var(--white);
  text-align: center;
}

.faq-pill {
  justify-content: center;
  padding: 0 15px;
}

.faq-section h2 {
  margin-top: 22px;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 60px;
  font-weight: 500;
  line-height: 1;
}

.faq-list {
  display: grid;
  width: min(740px, calc(100% - 48px));
  gap: 4px;
  margin: 58px auto 0;
  text-align: left;
}

.faq-list details {
  border-radius: 10px;
  background: var(--white);
}

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 64px;
  align-items: center;
  padding: 16px 58px 16px 0;
  color: var(--navy);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  right: 4px;
  width: 12px;
  height: 12px;
  border-right: 2px solid #b9bed1;
  border-bottom: 2px solid #b9bed1;
  content: "";
  transform: translateY(-4px) rotate(45deg);
  transition: transform 160ms ease;
}

.faq-list details[open] summary::after {
  transform: translateY(2px) rotate(225deg);
}

.faq-list p {
  max-width: 620px;
  padding: 0 64px 24px 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.55;
}

.article-hero {
  position: relative;
  overflow: hidden;
  padding: 168px 24px 92px;
  background:
    linear-gradient(180deg, rgba(243, 247, 251, 0) 0%, rgba(243, 247, 251, 0.95) 76%, var(--white) 100%),
    var(--soft);
}

.article-hero::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.25) 36%, transparent 62%),
    linear-gradient(180deg, rgba(243, 247, 251, 0) 0%, rgba(243, 247, 251, 0.78) 68%, var(--white) 100%);
  content: "";
}

.article-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.article-back-row {
  position: relative;
  z-index: 1;
  width: var(--content);
  margin: 0 auto 46px;
  text-align: left;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #4e5774;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.article-back::before {
  width: 8px;
  height: 8px;
  border-bottom: 1.5px solid currentColor;
  border-left: 1.5px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.article-back:hover {
  color: var(--navy);
  transform: translateX(-2px);
}

.article-kicker {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: #8b82ff;
  font-size: 12px;
  font-weight: 700;
}

.article-hero h1 {
  max-width: 850px;
  margin: 26px auto 0;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 500;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.article-hero-inner > p {
  max-width: 720px;
  margin: 30px auto 0;
  color: #4e5774;
  font-size: 20px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.article-shell {
  width: var(--content);
  margin: -34px auto 0;
}

.article-video {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 16px;
  background: #07111f;
  box-shadow: 0 20px 50px rgba(2, 1, 90, 0.12);
}

.article-video iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.article-image {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 16px;
  background: var(--soft);
  box-shadow: 0 20px 50px rgba(2, 1, 90, 0.12);
}

.article-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-body {
  width: min(820px, 100%);
  margin: 76px auto 0;
}

.article-body section {
  margin-top: 74px;
}

.article-body section:first-child {
  margin-top: 0;
}

.article-body h2 {
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.article-body p {
  margin-top: 24px;
  color: var(--text);
  font-size: 19px;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.article-body strong {
  color: var(--navy);
  font-weight: 700;
}

.article-body blockquote {
  position: relative;
  margin: 38px 0 0;
  padding: 32px 36px;
  border-left: 4px solid var(--teal-bright);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: linear-gradient(135deg, rgba(2, 8, 135, 0.06), rgba(0, 187, 155, 0.08));
}

.article-body blockquote p {
  margin: 0;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.48;
}

.article-body cite {
  display: block;
  margin-top: 20px;
  color: var(--text);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
}

.article-cta {
  padding: 96px 0 118px;
  background: var(--white);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 72px;
  color: var(--muted);
  background: var(--white);
  font-size: 14px;
}

.site-footer nav {
  display: flex;
  gap: 28px;
}

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

@keyframes ring-drift {
  from {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  to {
    transform: translate3d(-12px, -10px, 0) rotate(10deg);
  }
}

@keyframes marker-pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 0 rgba(57, 168, 121, 0.28);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 0 0 8px rgba(57, 168, 121, 0);
  }
}

[data-animate] {
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 700ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms ease,
    background 220ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

  [data-animate] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

@media (max-width: 1120px) {
  :root {
    --wide: min(960px, calc(100% - 40px));
    --content: min(920px, calc(100% - 40px));
  }

  .site-header {
    padding: 15px 20px;
  }

  .hero {
    min-height: 646px;
    padding: 160px 20px 40px;
  }

  .hero h1 {
    max-width: 735px;
    font-size: 58px;
    line-height: 1.1;
  }

  .hero-content > p {
    max-width: 735px;
    font-size: 18px;
  }

  .challenge-grid {
    width: min(920px, calc(100% - 40px));
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .challenge-card {
    min-height: 260px;
    padding: 25px;
  }

  .feature-row,
  .feature-row-reverse {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: 0;
    margin-bottom: 68px;
  }

  .feature-row-reverse figure,
  .feature-row-reverse .feature-copy {
    order: initial;
  }

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

  .security-grid article {
    min-height: 0;
  }

  .founder-grid {
    width: min(700px, calc(100% - 40px));
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .partner-row {
    flex-wrap: wrap;
    justify-content: center;
  }

  .insight-grid {
    width: min(920px, calc(100% - 40px));
    gap: 28px;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 54px 60px;
  }

  .article-hero {
    padding: 148px 20px 78px;
  }

  .article-hero h1 {
    font-size: 52px;
  }

  .article-shell {
    width: min(920px, calc(100% - 40px));
  }
}

@media (max-width: 640px) {
  :root {
    --wide: calc(100% - 40px);
    --content: calc(100% - 40px);
  }

  .site-header {
    right: 0;
    width: 100vw;
    max-width: 100vw;
    min-height: 74px;
  }

  .brand {
    width: 126px;
  }

  .brand img {
    width: 126px;
  }

  .button-header {
    position: absolute;
    top: 11px;
    right: 20px;
    width: 168px;
    min-width: 168px;
    flex: 0 0 168px;
    height: 52px;
    min-height: 52px;
    margin-left: auto;
    padding: 0 14px;
    overflow: hidden;
    gap: 8px;
    font-size: 14px;
    line-height: 1;
  }

  .button-header .arrow-icon {
    width: 16px;
    height: 16px;
  }

  .button-label-desktop {
    display: none;
  }

  .button-label-mobile {
    display: inline;
  }

  .hero h1 {
    max-width: 290px;
    font-size: 28px;
  }

  .funding {
    display: grid;
    grid-template-columns: auto auto;
    justify-items: center;
    align-items: center;
    gap: 13px 18px;
    margin-top: 42px;
  }

  .funding span {
    grid-column: 1 / -1;
  }

  .funding img:first-of-type {
    width: 120px;
  }

  .funding img:last-of-type {
    width: 72px;
  }

  .section-head h2,
  .product-intro h2,
  .faq-section h2 {
    max-width: 320px;
    margin-right: auto;
    margin-left: auto;
    font-size: 30px;
    line-height: 1.05;
    overflow-wrap: anywhere;
  }

  .success-section {
    padding-bottom: 70px;
  }

  .success-copy blockquote {
    font-size: 17px;
  }

  .product-section {
    padding-top: 62px;
  }

  .feature-list {
    margin-top: 64px;
  }

  .feature-visual {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    padding: 12px;
  }

  .feature-visual * {
    min-width: 0;
  }

  .feature-visual::after {
    right: -160px;
    bottom: -170px;
  }

  .mock-window,
  .scenario-card,
  .audit-card,
  .stay-card {
    min-height: 0;
    border-radius: 12px;
  }

  .mock-window,
  .audit-card {
    padding: 14px;
  }

  .scenario-card,
  .stay-card {
    padding: 16px;
  }

  .mock-topline,
  .scenario-title,
  .gain-row,
  .audit-toolbar,
  .stay-card-head {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 8px;
  }

  .code-grid {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 7px;
    padding: 10px 8px;
    font-size: 10px;
  }

  .code-grid-head span:nth-child(3) {
    display: none;
  }

  .code-grid .status-pill {
    grid-column: 2;
    justify-self: start;
  }

  .code-grid-head {
    font-size: 9px;
  }

  .status-pill {
    width: 82px;
    min-height: 20px;
    padding: 0 7px;
    font-size: 9px;
  }

  .scenario-title strong {
    font-size: 16px;
  }

  .gain-row {
    display: block;
    margin-top: 18px;
    padding: 14px;
  }

  .gain-row span {
    font-size: 22px;
  }

  .gain-row em {
    display: inline-flex;
    margin-top: 10px;
  }

  .scenario-title span,
  .audit-toolbar em,
  .stay-card-head span {
    max-width: 100%;
    white-space: normal;
  }

  .delta-table div {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 8px 10px;
    padding: 12px;
  }

  .delta-table span {
    width: 24px;
    height: 24px;
  }

  .delta-table b {
    font-size: 11px;
  }

  .delta-table p {
    grid-column: 2;
    font-size: 10px;
  }

  .delta-table b,
  .delta-table p,
  .audit-toolbar span,
  .audit-warning p,
  .stay-reason p {
    overflow-wrap: anywhere;
  }

  .audit-toolbar {
    padding: 0 0 12px;
  }

  .audit-toolbar span {
    flex-basis: 100%;
  }

  .audit-warning {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .audit-warning p,
  .stay-reason p {
    font-size: 10px;
  }

  .audit-actions span {
    padding: 8px 10px;
    font-size: 11px;
  }

  .stay-card h4 {
    font-size: 17px;
  }

  .stay-labels {
    flex-wrap: wrap;
    gap: 8px 14px;
    font-size: 10px;
  }

  .stay-track {
    margin-top: 26px;
  }

  .stay-reason {
    padding: 12px;
  }

  .stay-reason strong {
    font-size: 12px;
  }

  .feature-copy p,
  .product-intro p {
    font-size: 16px;
  }

  .success-copy blockquote,
  .success-copy p {
    overflow-wrap: anywhere;
  }

  .feature-copy h3,
  .security-grid h3 {
    font-size: 28px;
    overflow-wrap: anywhere;
  }

  .security-grid article {
    padding: 34px 32px;
  }

  .partner-row {
    display: grid;
    width: min(320px, calc(100% - 48px));
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: center;
    gap: 26px 28px;
    margin-top: 58px;
    opacity: 0.42;
  }

  .partner-row img {
    width: 100%;
    max-width: 138px;
    max-height: 46px;
  }

  .partner-row img:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 150px;
  }

  .cta-section {
    padding-bottom: 92px;
  }

  .cta-panel {
    width: calc(100% - 40px);
    padding: 46px 36px;
  }

  .cta-panel h2 {
    font-size: 36px;
  }

  .insights-section {
    padding: 70px 0 64px;
  }

  .insight-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    margin-top: 42px;
  }

  .insight-card h3 {
    font-size: 24px;
  }

  .insights-more {
    width: calc(100% - 40px);
    margin-top: 42px;
  }

  .article-hero {
    padding: 126px 20px 62px;
  }

  .article-back-row {
    width: 100%;
    margin-bottom: 34px;
  }

  .article-back {
    font-size: 13px;
  }

  .article-hero h1 {
    max-width: min(300px, calc(100vw - 40px));
    font-size: 27px;
    word-break: break-word;
  }

  .article-hero-inner > p {
    max-width: min(300px, calc(100vw - 40px));
    font-size: 17px;
    word-break: break-word;
  }

  .article-kicker {
    max-width: 100%;
    margin-bottom: 8px;
  }

  .article-shell {
    width: calc(100vw - 40px);
    max-width: 320px;
    margin-right: 20px;
    margin-left: 20px;
    margin-top: -24px;
  }

  .article-video {
    border-radius: 12px;
  }

  .article-image {
    border-radius: 12px;
  }

  .article-body {
    width: 100%;
    max-width: 100%;
    margin-top: 56px;
  }

  .article-body section {
    min-width: 0;
    margin-top: 56px;
  }

  .article-body h2 {
    font-size: 30px;
    word-break: break-word;
  }

  .article-body p {
    font-size: 16px;
    line-height: 1.58;
    word-break: break-word;
  }

  .article-body blockquote {
    min-width: 0;
    padding: 24px;
  }

  .article-body blockquote p {
    font-size: 18px;
  }

  .article-cta {
    padding: 76px 0 92px;
  }

  .button-light {
    min-width: 0;
    width: 100%;
  }

  .faq-list summary {
    font-size: 18px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 20px;
  }
}

@media (max-width: 430px) {
  .button-header {
    right: 16px;
    width: 150px;
    min-width: 150px;
    flex-basis: 150px;
    height: 52px;
    min-height: 52px;
    padding: 0 10px;
    gap: 7px;
    font-size: 12.5px;
  }

  .button-header .arrow-icon {
    width: 16px;
    height: 16px;
  }
}
