:root {
  --ink: #102a2b;
  --forest: #163b39;
  --teal: #0f766e;
  --mint: #b9ef81;
  --cream: #f6f6ef;
  --paper: #fbfcf8;
  --line: #dce5dc;
  --muted: #667874;
  --white: #fff;
  --display: "Manrope", sans-serif;
  --body: "DM Sans", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  position: relative;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}
main,
section,
footer {
  max-width: 100%;
}
img,
svg {
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}
.nav-shell {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.3s;
}
.nav-shell.scrolled {
  background: rgba(246, 246, 239, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(16, 42, 43, 0.08);
}
.nav {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand img {
  display: block;
  width: 154px;
  height: auto;
}
.nav-links {
  display: flex;
  gap: 34px;
  font-size: 14px;
  font-weight: 600;
}
.nav-links a {
  opacity: 0.72;
  transition: 0.2s;
}
.nav-links a:hover {
  opacity: 1;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.desktop-download {
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
  border-bottom: 1px solid rgba(15, 118, 110, 0.32);
  padding: 8px 0;
}
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 0.2s,
    background 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button-ghost {
  border: 1px solid rgba(16, 42, 43, 0.2);
  background: rgba(255, 255, 255, 0.48);
}
.menu-toggle,
.mobile-menu {
  display: none;
}
.button-primary {
  background: var(--ink);
  color: #fff;
  padding-inline: 26px;
}
.hero {
  min-height: 860px;
  padding: 160px 0 88px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 56px;
  position: relative;
  z-index: 2;
}
.eyebrow,
.kicker {
  font-size: 11px;
  letter-spacing: 1.7px;
  font-weight: 800;
  color: var(--teal);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow span {
  width: 24px;
  height: 2px;
  background: var(--teal);
}
h1,
h2,
h3 {
  font-family: var(--display);
  margin: 0;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(52px, 5.6vw, 82px);
  line-height: 0.99;
  margin: 25px 0 28px;
}
h1 em {
  font-style: normal;
  color: var(--teal);
}
.hero-copy > p {
  font-size: 19px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 590px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-top: 36px;
}
.text-link {
  font-weight: 700;
  font-size: 14px;
  border-bottom: 1px solid rgba(16, 42, 43, 0.25);
  padding: 12px 0;
}
.trust-row {
  display: flex;
  gap: 20px;
  margin-top: 36px;
  color: var(--muted);
  font-size: 12px;
}
.trust-row span:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  margin-right: 7px;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}
.glow-one {
  width: 490px;
  height: 490px;
  background: radial-gradient(circle, rgba(185, 239, 129, 0.34), transparent 68%);
  top: 100px;
  right: -120px;
}
.glow-two {
  width: 390px;
  height: 390px;
  background: radial-gradient(circle, rgba(55, 177, 158, 0.13), transparent 68%);
  bottom: -80px;
  left: -160px;
}
.product-stage {
  position: relative;
  min-height: 565px;
  display: flex;
  align-items: center;
}
.dashboard-card {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 27px;
  border-radius: 30px;
  background: linear-gradient(145deg, #173f3c, #0e2929);
  box-shadow: 0 38px 90px rgba(16, 42, 43, 0.27);
  color: #fff;
  transform: rotate(1.2deg);
}
.dash-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.dash-top div {
  display: grid;
  gap: 5px;
}
.dash-top small,
.balance span {
  font-size: 10px;
  letter-spacing: 1.4px;
  color: #9dc0b8;
}
.dash-top strong {
  font-size: 18px;
}
.live {
  font-size: 10px;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 11px;
  border-radius: 20px;
}
.live i {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--mint);
  border-radius: 50%;
  margin-right: 6px;
  box-shadow: 0 0 0 4px rgba(185, 239, 129, 0.12);
}
.balance {
  display: grid;
  margin: 40px 0 10px;
}
.balance strong {
  font: 800 43px var(--display);
  letter-spacing: -2px;
  margin: 8px 0 3px;
}
.balance sup {
  font-size: 20px;
}
.balance small {
  color: #9dc0b8;
}
.chart {
  height: 150px;
  position: relative;
  margin: 18px 0;
}
.chart svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.chart-grid {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(to bottom, transparent 0, transparent 48px, rgba(255, 255, 255, 0.07) 49px);
}
.chart .area {
  fill: url(#area);
}
.chart .line {
  fill: none;
  stroke: #b9ef81;
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}
.dash-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.dash-metrics > div {
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.045);
  display: grid;
  gap: 5px;
}
.dash-metrics span {
  font-size: 11px;
  color: #9dc0b8;
}
.dash-metrics strong {
  font-size: 18px;
}
.dash-metrics small {
  font-size: 10px;
  color: #9dc0b8;
}
.dash-metrics .positive {
  color: var(--mint);
}
.floating-card {
  position: absolute;
  z-index: 4;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(16, 42, 43, 0.14);
  border-radius: 18px;
  display: flex;
  align-items: center;
}
.payment-card {
  left: -42px;
  bottom: 42px;
  padding: 14px 18px;
  gap: 12px;
  animation: float 5s ease-in-out infinite;
}
.icon-box {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #e5f7e4;
  color: var(--teal);
  font-weight: 900;
}
.payment-card div {
  display: grid;
}
.payment-card small {
  font-size: 8px;
  letter-spacing: 1px;
  color: var(--teal);
  font-weight: 800;
}
.payment-card strong {
  font-size: 15px;
  margin: 3px 0;
}
.payment-card p,
.alert-card p {
  font-size: 9px;
  color: var(--muted);
  margin: 0;
}
.alert-card {
  right: -26px;
  top: 61px;
  padding: 12px 15px;
  gap: 10px;
  animation: float 5s 1s ease-in-out infinite;
}
.alert-card > span {
  font: 800 18px var(--display);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #fff1d8;
  color: #a95f16;
}
.alert-card strong {
  font-size: 12px;
}
.stage-orbit {
  position: absolute;
  border: 1px solid rgba(15, 118, 110, 0.14);
  border-radius: 50%;
}
.orbit-one {
  width: 610px;
  height: 610px;
  left: -15px;
}
.orbit-two {
  width: 480px;
  height: 480px;
  left: 50px;
}
.signal-strip {
  background: var(--ink);
  color: #d9e6df;
}
.signals {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 1.4px;
  font-weight: 700;
}
.signals i {
  width: 5px;
  height: 5px;
  background: var(--mint);
  border-radius: 50%;
}
.section {
  padding: 125px 0;
}
.section-heading {
  display: grid;
  grid-template-columns: 1.5fr 0.6fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 58px;
}
.section-heading h2,
.security-copy h2,
.workflow h2,
.final-cta h2 {
  font-size: clamp(38px, 4.5vw, 61px);
  line-height: 1.08;
  margin-top: 16px;
}
.section-heading p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.bento {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
}
.bento-card {
  min-height: 440px;
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.bento-large {
  min-height: 570px;
}
.bento-dark {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.bento-accent {
  background: #dff2a7;
}
.card-number {
  font: 700 11px var(--display);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.6;
}
.bento-copy span {
  font-size: 9px;
  letter-spacing: 1.5px;
  font-weight: 800;
  color: var(--teal);
}
.bento-dark .bento-copy span {
  color: var(--mint);
}
.bento-copy h3 {
  font-size: 29px;
  line-height: 1.15;
  margin-top: 10px;
}
.bento-copy p {
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 0;
}
.bento-dark .bento-copy p {
  color: #a9bfba;
}
.mini-table {
  margin: 28px 0 40px;
  background: #f7f9f5;
  border-radius: 20px;
  padding: 18px;
}
.table-head,
.person {
  display: grid;
  align-items: center;
}
.table-head {
  grid-template-columns: 1fr auto;
  border-bottom: 1px solid var(--line);
  padding-bottom: 13px;
  font-weight: 700;
  font-size: 12px;
}
.table-head small {
  font-size: 8px;
  color: var(--muted);
}
.person {
  grid-template-columns: 38px 1fr auto 62px;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.person:last-child {
  border: 0;
}
.avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 9px;
  font-weight: 800;
}
.a1 {
  background: #dcedc8;
}
.a2 {
  background: #d9e9f0;
}
.a3 {
  background: #f0dfcf;
}
.person > span {
  display: grid;
}
.person strong,
.person b {
  font-size: 11px;
}
.person small {
  font-size: 9px;
  color: var(--muted);
}
.person em {
  font-style: normal;
  font-size: 7px;
  letter-spacing: 0.6px;
  text-align: right;
  color: var(--teal);
  font-weight: 800;
}
.pulse-rings {
  width: 230px;
  height: 230px;
  margin: 25px auto;
  position: relative;
  display: grid;
  place-items: center;
}
.pulse-rings i {
  position: absolute;
  border: 1px solid rgba(185, 239, 129, 0.22);
  border-radius: 50%;
  inset: 0;
}
.pulse-rings i:nth-child(2) {
  inset: 35px;
}
.pulse-rings span {
  width: 105px;
  height: 105px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--ink);
  display: grid;
  place-items: center;
  font: 800 40px var(--display);
  box-shadow: 0 0 0 18px rgba(185, 239, 129, 0.08);
}
.receipt {
  width: 83%;
  margin: 28px auto;
  background: #fff;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 16px 35px rgba(50, 80, 40, 0.1);
  transform: rotate(-2deg);
  display: grid;
}
.receipt > span {
  font-size: 10px;
  color: var(--teal);
  font-weight: 700;
}
.receipt > span i {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
  margin-right: 6px;
}
.receipt > strong {
  font: 800 29px var(--display);
  margin: 18px 0 3px;
}
.receipt > small {
  color: var(--muted);
}
.receipt hr {
  width: 100%;
  border: 0;
  border-top: 1px dashed var(--line);
  margin: 20px 0;
}
.receipt p {
  display: flex;
  justify-content: space-between;
  margin: 0;
  font-size: 10px;
}
.bars {
  height: 215px;
  display: flex;
  align-items: end;
  gap: 12px;
  padding: 30px 14px 0;
  background: linear-gradient(
    to bottom,
    transparent 33%,
    var(--line) 34%,
    transparent 34%,
    transparent 66%,
    var(--line) 67%,
    transparent 67%
  );
}
.bars i {
  flex: 1;
  height: var(--h);
  background: linear-gradient(#44a893, var(--teal));
  border-radius: 8px 8px 3px 3px;
}
.workflow {
  background: var(--ink);
  color: #fff;
}
.workflow-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 110px;
  align-items: center;
}
.workflow-copy > p {
  color: #aac0ba;
  font-size: 17px;
  line-height: 1.7;
  margin: 25px 0 35px;
}
.kicker.light {
  color: var(--mint);
}
.button-light {
  background: #fff;
  color: var(--ink);
}
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.steps li {
  display: grid;
  grid-template-columns: 65px 1fr;
  gap: 22px;
  padding: 27px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.steps li > span {
  font: 700 11px var(--display);
  color: var(--mint);
}
.steps strong {
  font: 700 20px var(--display);
}
.steps p {
  margin: 7px 0 0;
  color: #9eb5b0;
}
.security {
  background: #fff;
}
.security-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 110px;
  align-items: center;
}
.security-mark {
  height: 480px;
  border-radius: 40px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.shield {
  width: 160px;
  height: 185px;
  background: var(--ink);
  clip-path: polygon(50% 0, 92% 16%, 85% 72%, 50% 100%, 15% 72%, 8% 16%);
  display: grid;
  place-items: center;
}
.shield span {
  width: 52px;
  height: 72px;
  border: 7px solid var(--mint);
  border-top: 0;
  border-radius: 5px;
  position: relative;
  margin-top: 25px;
}
.shield span:before {
  content: "";
  position: absolute;
  width: 35px;
  height: 36px;
  border: 7px solid var(--mint);
  border-bottom: 0;
  border-radius: 25px 25px 0 0;
  left: 1px;
  top: -34px;
}
.security-mark small {
  text-align: center;
  letter-spacing: 2px;
  font-weight: 800;
  color: var(--teal);
}
.security-copy > p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 660px;
}
.security-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 30px;
}
.security-list span {
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  font-weight: 600;
  font-size: 13px;
}
.security-list span:before {
  content: "✓";
  color: var(--teal);
  font-weight: 900;
  margin-right: 9px;
}
.final-cta {
  background: #237d70;
  color: #fff;
  padding: 120px 0;
  text-align: center;
}
.cta-inner {
  max-width: 880px;
}
.final-cta h2 {
  font-size: clamp(42px, 5vw, 68px);
}
.final-cta p {
  color: #d8ebe6;
  font-size: 18px;
}
.final-cta .cta-inner > div {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}
.button-lime {
  background: var(--mint);
  color: var(--ink);
}
.button-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.4);
}
footer {
  background: #0b2021;
  color: #fff;
  padding: 48px 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
}
.brand-light {
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.footer-inner p {
  grid-column: 1;
  color: #91a8a4;
  margin: 0;
}
.footer-inner > div {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  gap: 24px;
  font-size: 13px;
}
.footer-inner small {
  grid-column: 2;
  grid-row: 2;
  color: #718985;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.delay-one {
  transition-delay: 0.12s;
}
@keyframes float {
  50% {
    transform: translateY(-10px);
  }
}
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .desktop-login {
    display: none;
  }
  .desktop-download {
    display: none;
  }
  .menu-toggle {
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(16, 42, 43, 0.16);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.68);
    display: grid;
    place-content: center;
    gap: 5px;
    cursor: pointer;
  }
  .menu-toggle span {
    display: block;
    width: 19px;
    height: 2px;
    border-radius: 2px;
    background: var(--ink);
    transition:
      transform 0.25s ease,
      opacity 0.2s ease;
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav-shell.menu-open {
    background: var(--cream);
  }
  .nav-shell {
    background: rgba(246, 246, 239, 0.94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(16, 42, 43, 0.08);
  }
  .mobile-menu {
    position: absolute;
    top: 74px;
    left: 24px;
    right: 24px;
    width: auto;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
    padding: 18px;
    border: 1px solid rgba(16, 42, 43, 0.12);
    border-radius: 24px;
    background: rgba(251, 252, 248, 0.98);
    box-shadow: 0 26px 70px rgba(16, 42, 43, 0.2);
  }
  .mobile-menu:not([hidden]) {
    display: block;
    animation: menu-in 0.25s ease both;
  }
  .mobile-menu-links {
    display: grid;
  }
  .mobile-menu-links a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 17px 8px;
    border-bottom: 1px solid var(--line);
    font: 700 20px var(--display);
  }
  .mobile-menu-links a span {
    color: var(--teal);
    font: 700 9px var(--display);
    letter-spacing: 1px;
  }
  .mobile-menu-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 18px;
  }
  .mobile-register {
    border: 1px solid rgba(16, 42, 43, 0.2);
  }
  .mobile-download {
    grid-column: 1 / -1;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--teal);
    font-size: 13px;
    font-weight: 700;
  }
  body.menu-visible {
    overflow: hidden;
  }
  .hero {
    padding-top: 130px;
  }
  .hero-grid,
  .section-heading,
  .workflow-grid,
  .security-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid > *,
  .section-heading > *,
  .workflow-grid > *,
  .security-grid > *,
  .bento > * {
    min-width: 0;
  }
  .hero-grid {
    gap: 35px;
  }
  .product-stage {
    width: 100%;
    min-height: 540px;
    overflow: hidden;
    border-radius: 30px;
  }
  .dashboard-card {
    min-width: 0;
    transform: none;
  }
  .stage-orbit {
    left: 50%;
    transform: translateX(-50%);
  }
  .section-heading,
  .workflow-grid,
  .security-grid {
    gap: 45px;
  }
  .bento {
    grid-template-columns: 1fr;
  }
  .workflow-copy {
    max-width: 650px;
  }
  .security-mark {
    height: 350px;
  }
  .trust-row {
    flex-wrap: wrap;
  }
  .section {
    padding: 90px 0;
  }
}
@media (max-width: 600px) {
  .container {
    width: calc(100% - 40px);
    max-width: 100%;
  }
  .nav {
    height: 68px;
  }
  .brand img {
    width: 128px;
  }
  .nav-actions {
    gap: 0;
  }
  .nav-links,
  .desktop-login,
  .desktop-download {
    display: none !important;
  }
  .menu-toggle {
    display: grid !important;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 14px;
    background: var(--ink);
    border-color: var(--ink);
  }
  .menu-toggle span {
    width: 18px;
    background: #fff;
  }
  .mobile-menu {
    top: 76px;
    left: 20px;
    right: 20px;
    padding: 14px;
    border-radius: 20px;
  }
  .mobile-menu-actions {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
    padding: 108px 0 56px;
  }
  .hero-grid {
    gap: 46px;
  }
  .eyebrow {
    gap: 8px;
    font-size: 9px;
    line-height: 1.45;
    letter-spacing: 1.35px;
  }
  .eyebrow span {
    width: 18px;
  }
  .hero-copy > p {
    margin: 0;
    max-width: 33ch;
    font-size: 16px;
    line-height: 1.58;
  }
  h1 {
    margin: 20px 0 24px;
    font-size: clamp(38px, 11.5vw, 48px);
    line-height: 1.01;
    letter-spacing: -0.05em;
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 5px;
    margin-top: 28px;
  }
  .hero-actions .button {
    width: 100%;
    min-height: 54px;
    border-radius: 16px;
  }
  .text-link {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 0;
    text-align: center;
  }
  .trust-row {
    display: grid;
    gap: 8px;
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid rgba(16, 42, 43, 0.12);
    font-size: 11px;
  }
  .product-stage {
    min-height: 348px;
    margin: 0;
    overflow: visible;
    border-radius: 0;
  }
  .dashboard-card {
    width: 100%;
    padding: 18px 17px;
    border-radius: 22px;
    box-shadow: 0 22px 55px rgba(16, 42, 43, 0.2);
  }
  .dash-top {
    gap: 10px;
  }
  .dash-top > div,
  .dash-metrics > div,
  .person > span {
    min-width: 0;
  }
  .dash-top strong {
    font-size: 15px;
  }
  .live {
    flex: 0 0 auto;
    font-size: 8px;
  }
  .balance {
    margin: 22px 0 8px;
  }
  .balance strong {
    font-size: 30px;
  }
  .chart {
    height: 88px;
    margin: 12px 0;
  }
  .dash-metrics > div {
    padding: 12px;
    border-radius: 13px;
  }
  .dash-metrics strong {
    font-size: 13px;
  }
  .floating-card {
    display: none;
  }
  .signals {
    height: auto;
    padding: 22px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 20px;
    font-size: 9px;
    line-height: 1.45;
  }
  .signals i {
    display: none;
  }
  .section {
    padding: 68px 0;
  }
  .section-heading {
    margin-bottom: 36px;
  }
  .section-heading h2,
  .security-copy h2,
  .workflow h2,
  .final-cta h2 {
    margin-top: 13px;
    font-size: 35px;
    line-height: 1.08;
  }
  .section-heading p,
  .security-copy > p,
  .workflow-copy > p,
  .final-cta p {
    font-size: 15px;
    line-height: 1.6;
  }
  .bento-card,
  .bento-large {
    min-height: 400px;
    padding: 20px;
    border-radius: 22px;
  }
  .bento-copy h3 {
    font-size: 25px;
  }
  .mini-table {
    margin: 24px 0 30px;
    padding: 14px;
    border-radius: 16px;
  }
  .person {
    grid-template-columns: 34px 1fr auto;
  }
  .person strong,
  .person small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .person em {
    display: none;
  }
  .pulse-rings {
    width: 190px;
    height: 190px;
  }
  .receipt {
    width: 94%;
  }
  .workflow-grid {
    gap: 46px;
  }
  .workflow-copy .button {
    width: 100%;
    border-radius: 16px;
  }
  .steps li {
    grid-template-columns: 42px 1fr;
  }
  .security-mark {
    height: 235px;
    border-radius: 28px;
  }
  .shield {
    transform: scale(0.72);
  }
  .security-list {
    grid-template-columns: 1fr;
  }
  .final-cta {
    padding: 72px 0;
  }
  .final-cta .cta-inner > div {
    flex-direction: column;
  }
  .final-cta .button {
    width: 100%;
    border-radius: 16px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-inner p,
  .footer-inner > div,
  .footer-inner small {
    grid-column: 1;
    grid-row: auto;
  }
  .footer-inner > div {
    margin: 12px 0;
  }
  .footer-inner small {
    margin-top: 15px;
  }
}
@media (max-width: 360px) {
  .container {
    width: calc(100% - 32px);
  }
  h1 {
    font-size: 38px;
  }
  .brand img {
    width: 119px;
  }
  .dash-top strong {
    font-size: 14px;
  }
  .balance strong {
    font-size: 27px;
  }
  .dash-metrics {
    grid-template-columns: 1fr;
  }
  .product-stage {
    min-height: 410px;
  }
  .signals {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .floating-card {
    animation: none;
  }
}

@keyframes menu-in {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
