:root {
  --ds-page-max: 1100px;
  --ds-browser-width: min(var(--ds-page-max), calc(100vw - 40px));
  --ds-outer: #eaf0f3;
  --ds-bg: #ffffff;
  --ds-soft: #f6faf9;
  --ds-soft-2: #f0f6f5;
  --ds-ink: #11162a;
  --ds-muted: #7a8492;
  --ds-faint: #aab4bf;
  --ds-line: #edf2f4;
  --ds-mint: #5ee0c2;
  --ds-mint-2: #bff5e8;
  --ds-dark: #080f11;
  --ds-dark-card: #101b1d;
  --ds-purple: #8d6df4;
  --ds-radius: 10px;
  --ds-radius-lg: 16px;
  --ds-radius-xl: 22px;
  --ds-shadow-card: 0 22px 60px rgba(26, 44, 50, 0.08);
  --ds-shadow-float: 0 30px 80px rgba(26, 44, 50, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ds-outer);
  color: var(--ds-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.browser-page {
  width: var(--ds-browser-width);
  margin: 56px auto;
  overflow: hidden;
  background: var(--ds-bg);
  box-shadow: 0 18px 70px rgba(46, 61, 70, 0.12);
}

.browser-chrome {
  display: grid;
  grid-template-columns: 88px 1fr 88px;
  align-items: center;
  min-height: 38px;
  border-bottom: 1px solid var(--ds-line);
  background: #fbfdfd;
}

.browser-chrome::after {
  content: "";
}

.window-dots {
  display: flex;
  gap: 6px;
  padding-left: 16px;
}

.window-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.window-dots span:nth-child(1) { background: #ff7b74; }
.window-dots span:nth-child(2) { background: #ffc85c; }
.window-dots span:nth-child(3) { background: #62d685; }

.address-bar {
  justify-self: center;
  width: min(380px, 90%);
  border: 1px solid #e8eef0;
  border-radius: 999px;
  background: white;
  padding: 5px 14px;
  color: #99a4ad;
  font-size: 11px;
  text-align: center;
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  border-top: 4px solid var(--ds-mint);
  padding: 28px 94px 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1f2b3d;
  font-size: 14px;
  font-weight: 800;
}

.brand-mark {
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: var(--ds-mint);
  color: #0b3833;
  font-size: 12px;
  font-weight: 900;
}

.nav {
  display: flex;
  gap: 20px;
  color: var(--ds-muted);
  font-size: 12px;
  font-weight: 650;
}

.nav a:hover,
.header-actions a:hover {
  color: var(--ds-ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--ds-muted);
  font-size: 12px;
  font-weight: 700;
}

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 12px 18px;
  font-size: 12px;
  font-weight: 800;
  transition: transform 160ms ease, opacity 160ms ease;
}

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

.button-dark {
  background: #060809;
  color: white;
}

.button-small {
  min-height: 32px;
  padding: 8px 12px;
}

.hero {
  padding: 46px 94px 72px;
}

.hero-dashboard {
  position: relative;
  height: 250px;
  margin-bottom: 58px;
}

.data-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid var(--ds-line);
  border-radius: var(--ds-radius);
  background: rgba(255, 255, 255, 0.94);
  padding: 18px;
  box-shadow: var(--ds-shadow-float);
}

.card-kicker,
.bento-kicker {
  margin: 0 0 12px;
  color: #56606d;
  font-size: 11px;
  font-weight: 850;
}

.card-note {
  margin: 0;
  color: var(--ds-faint);
  font-size: 11px;
}

.big-metric {
  display: block;
  margin-top: 16px;
  font-size: 31px;
  line-height: 1;
}

.card-activation {
  left: 0;
  top: 32px;
  width: 236px;
  transform: rotate(-5deg);
}

.card-line {
  left: 286px;
  top: 0;
  width: 272px;
  transform: rotate(2deg);
}

.card-bars {
  left: 560px;
  top: 34px;
  width: 254px;
  transform: rotate(8deg);
}

.card-sources {
  right: 0;
  top: 42px;
  width: 210px;
  transform: rotate(-3deg);
}

.bar-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #7b8793;
  font-size: 11px;
}

.progress {
  height: 9px;
  margin: 6px 0 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #edf4f3;
}

.progress span,
.horizontal-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--ds-mint);
}

.line-chart,
.sparkline,
.dark-line {
  position: relative;
  height: 72px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(94, 224, 194, 0.16), rgba(94, 224, 194, 0)),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(17, 22, 42, 0.04) 18px 19px);
}

.line-chart::after,
.sparkline::after,
.dark-line::after {
  content: "";
  position: absolute;
  inset: 18px 0 18px;
  background: linear-gradient(135deg, transparent 0 8%, var(--ds-mint) 9% 12%, transparent 13% 24%, var(--ds-mint) 25% 28%, transparent 29% 43%, var(--ds-mint) 44% 47%, transparent 48% 62%, var(--ds-mint) 63% 66%, transparent 67% 100%);
  opacity: 0.92;
}

.bar-chart,
.mini-bars,
.mint-bars {
  display: flex;
  height: 86px;
  align-items: end;
  gap: 7px;
}

.bar-chart span,
.mini-bars span,
.mint-bars span {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--ds-mint), rgba(94, 224, 194, 0.24));
}

.source-row {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--ds-muted);
  font-size: 11px;
}

.source-icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: var(--ds-soft-2);
  color: #23313e;
  font-weight: 900;
}

.hero-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr) auto;
  align-items: end;
  gap: 42px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--ds-faint);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

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

.hero h1 {
  grid-row: span 2;
  margin-bottom: 0;
  font-size: 46px;
  font-weight: 560;
  line-height: 1.06;
  letter-spacing: -0.01em;
}

.hero-copy p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--ds-muted);
  font-size: 14px;
  line-height: 1.6;
}

.logo-strip {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 72px;
  color: #9aa4ad;
  font-size: 14px;
  font-weight: 750;
}

.section {
  padding: 66px 94px;
}

.section-ruler {
  display: grid;
  grid-template-columns: 1fr 1.8fr 1fr;
  gap: 20px;
  margin-bottom: 26px;
  border-top: 1px solid var(--ds-line);
  padding-top: 18px;
  color: var(--ds-muted);
  font-size: 11px;
}

.section-ruler span:first-child,
.section-ruler span:last-child {
  color: #1c6b5e;
  font-weight: 780;
}

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

.bento-card {
  min-height: 190px;
  border: 1px solid var(--ds-line);
  border-radius: var(--ds-radius-lg);
  background: var(--ds-soft);
  padding: 24px;
}

.bento-card h2 {
  margin-bottom: 10px;
  font-size: 26px;
  font-weight: 560;
  line-height: 1.12;
}

.bento-card p {
  margin-bottom: 0;
  color: var(--ds-muted);
  font-size: 13px;
  line-height: 1.55;
}

.dark-card {
  grid-column: span 2;
  background: var(--ds-dark-card);
  color: white;
}

.dark-card p {
  color: #b8c5c4;
}

.validation-card {
  grid-column: span 2;
  text-align: center;
}

.decision-card {
  grid-column: span 2;
  display: grid;
  align-content: center;
  text-align: center;
}

.outcome-card,
.mint-card {
  grid-column: span 1;
}

.mint-card {
  background: linear-gradient(145deg, #53ddbd, #8af0d6);
  color: #064237;
}

.mint-card p {
  color: #136556;
}

.validation-widget {
  width: min(240px, 100%);
  margin: 0 auto 20px;
  border-radius: 12px;
  background: white;
  padding: 16px;
  box-shadow: var(--ds-shadow-card);
  text-align: left;
}

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

.validation-widget strong {
  display: block;
  margin: 4px 0 6px;
  font-size: 18px;
}

.horizontal-bar {
  height: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #eef5f4;
}

.horizontal-bar.purple span {
  background: var(--ds-purple);
}

.decision-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
}

.decision-icons span {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ds-line);
  border-radius: 18px;
  background: white;
  color: #20303d;
  font-size: 12px;
  font-weight: 900;
  box-shadow: var(--ds-shadow-card);
}

.feature-list {
  display: grid;
  gap: 86px;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  align-items: center;
  gap: 90px;
}

.feature-row h2 {
  margin-bottom: 18px;
  font-size: 36px;
  font-weight: 560;
  line-height: 1.08;
}

.feature-row p {
  color: var(--ds-muted);
  font-size: 14px;
  line-height: 1.6;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--ds-muted);
  font-size: 13px;
}

.pill-list li::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border: 2px solid var(--ds-mint);
  border-radius: 999px;
  vertical-align: -1px;
}

.matrix-card,
.stack-card,
.profile-card {
  border-radius: var(--ds-radius-xl);
  background: var(--ds-soft);
  padding: 32px;
}

.matrix-card p {
  margin-bottom: 18px;
  color: #334052;
  font-size: 13px;
  font-weight: 800;
}

.matrix {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.matrix span {
  aspect-ratio: 1.6;
  border-radius: 5px;
  background: rgba(94, 224, 194, 0.22);
}

.matrix span:nth-child(4n + 1),
.matrix span:nth-child(6),
.matrix span:nth-child(11) {
  background: rgba(94, 224, 194, 0.72);
}

.stack-card {
  display: grid;
  grid-template-columns: 0.75fr 1.2fr 0.9fr;
  gap: 14px;
}

.mini-stat {
  min-height: 130px;
  border: 1px solid var(--ds-line);
  border-radius: var(--ds-radius-lg);
  background: white;
  padding: 18px;
}

.mini-stat strong {
  display: block;
  margin-bottom: 6px;
  font-size: 28px;
}

.mini-stat span {
  color: var(--ds-muted);
  font-size: 12px;
}

.line-chart.small {
  height: 70px;
  margin-bottom: 8px;
}

.profile-card {
  display: grid;
  grid-template-columns: 118px 1fr;
  align-items: center;
  gap: 22px;
}

.profile-card img {
  border-radius: 50%;
}

.profile-card strong,
.profile-card span,
.profile-card small {
  display: block;
}

.profile-card strong {
  margin-bottom: 6px;
  font-size: 21px;
}

.profile-card span {
  color: var(--ds-muted);
}

.profile-card small {
  margin-top: 12px;
  color: #20927c;
  font-weight: 800;
}

.dark-section {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 40px;
  background: var(--ds-dark);
  padding: 84px 94px;
  color: white;
}

.dark-section h2 {
  margin-bottom: 42px;
  font-size: 36px;
  font-weight: 520;
  line-height: 1.12;
}

.dark-data-card {
  max-width: 360px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--ds-radius-lg);
  background: var(--ds-dark-card);
  padding: 26px;
}

.dark-data-card p {
  color: #bcc8c7;
  font-size: 14px;
  line-height: 1.6;
}

.dark-data-card a {
  color: var(--ds-mint);
  font-size: 13px;
  font-weight: 800;
}

.dark-line {
  margin: 28px 0;
  background:
    linear-gradient(180deg, rgba(94, 224, 194, 0.18), rgba(94, 224, 194, 0)),
    #0c1719;
}

.integration-panel {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--ds-radius-lg);
  background: linear-gradient(135deg, #b6f7e7, #62dfbf);
}

.cube-grid {
  position: absolute;
  right: 24px;
  bottom: -24px;
  display: grid;
  width: 360px;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
  transform: perspective(700px) rotateX(58deg) rotateZ(-22deg);
}

.cube-grid span {
  aspect-ratio: 1;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 10px 10px 0 rgba(8, 80, 69, 0.08);
}

.floating-tools {
  position: absolute;
  top: 48px;
  left: 38px;
  display: flex;
  flex-wrap: wrap;
  width: 260px;
  gap: 14px;
}

.floating-tools span {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: white;
  color: #17423c;
  font-size: 12px;
  font-weight: 900;
  box-shadow: var(--ds-shadow-card);
}

.proof-quotes {
  text-align: center;
}

.centered {
  text-align: center;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 34px;
}

.quote-grid article {
  border: 1px solid var(--ds-line);
  border-radius: var(--ds-radius);
  background: white;
  padding: 28px;
  text-align: left;
  box-shadow: var(--ds-shadow-card);
}

.quote-grid p {
  color: #394352;
  font-size: 15px;
  line-height: 1.55;
}

.quote-grid div {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: 24px;
  color: var(--ds-muted);
}

.quote-grid strong {
  color: #1cbd9e;
  font-size: 30px;
}

.final-section {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 90px;
  align-items: center;
  background:
    radial-gradient(circle at 60% 40%, rgba(255, 152, 67, 0.28), transparent 24%),
    linear-gradient(180deg, #f7f7f3, #f0f1ee);
  padding: 76px 94px 118px;
}

.final-section h2 {
  margin-bottom: 24px;
  font-size: 36px;
  font-weight: 560;
  line-height: 1.12;
}

.final-section p {
  color: var(--ds-muted);
  font-size: 14px;
  line-height: 1.65;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  background: #070b0d;
  padding: 50px 94px;
  color: #dbe3e5;
}

.footer strong,
.footer span {
  display: block;
}

.footer strong {
  margin-bottom: 8px;
}

.footer span {
  color: #7f8b91;
  font-size: 13px;
}

.footer a {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid #233034;
  border-radius: 50%;
}

@media (max-width: 980px) {
  .browser-page {
    width: min(100vw - 24px, var(--ds-page-max));
    margin: 12px auto;
  }

  .site-header,
  .hero,
  .section,
  .dark-section,
  .final-section,
  .footer {
    padding-right: 34px;
    padding-left: 34px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero-dashboard {
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .data-card,
  .card-activation,
  .card-line,
  .card-bars,
  .card-sources {
    position: static;
    width: auto;
    transform: none;
  }

  .hero-copy,
  .feature-row,
  .dark-section,
  .final-section {
    grid-template-columns: 1fr;
  }

  .logo-strip,
  .section-ruler {
    flex-wrap: wrap;
    display: flex;
  }

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

  .dark-card,
  .validation-card,
  .decision-card,
  .outcome-card,
  .mint-card {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .browser-chrome {
    display: none;
  }

  .browser-page {
    width: 100%;
    margin: 0;
  }

  .site-header,
  .hero,
  .section,
  .dark-section,
  .final-section,
  .footer {
    padding-right: 20px;
    padding-left: 20px;
  }

  .site-header {
    border-top: 4px solid var(--ds-mint);
    grid-template-columns: 1fr;
  }

  .header-actions {
    display: none;
  }

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

  .hero-dashboard {
    grid-template-columns: 1fr;
    margin-bottom: 38px;
  }

  .hero-copy {
    gap: 22px;
  }

  .logo-strip {
    margin-top: 42px;
  }

  .stack-card {
    grid-template-columns: 1fr;
  }

  .profile-card {
    grid-template-columns: 1fr;
  }

  .cube-grid {
    width: 280px;
  }

  .quote-grid,
  .feature-list {
    gap: 22px;
  }
}
