/* VoltaPay marketing uses one dark theme. Cards use 22px radii,
   controls use 14px radii, and semantic status labels use full pills. */
:root {
  color-scheme: dark;
  --page: #070814;
  --page-deep: #05060f;
  --surface: #0d1020;
  --surface-2: #12162a;
  --surface-3: #191e35;
  --text: #f4f4fb;
  --text-soft: #c5c6d8;
  --text-muted: #9497b0;
  --line: rgb(199 200 230 / 0.13);
  --line-strong: rgb(199 200 230 / 0.23);
  --accent: #756aff;
  --accent-hover: #8b82ff;
  --accent-strong: #aaa5ff;
  --accent-ink: #090917;
  --accent-soft: rgb(83 69 255 / 0.17);
  --success: #83ddb8;
  --success-soft: rgb(64 174 127 / 0.16);
  --card-radius: 22px;
  --control-radius: 14px;
  --header-height: 72px;
  --container: 1220px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  font-family: ui-sans-serif, "SF Pro Display", "Segoe UI Variable", "Segoe UI", Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 76% 5%, rgb(70 49 210 / 0.13), transparent 31rem),
    radial-gradient(circle at 10% 42%, rgb(42 32 123 / 0.08), transparent 34rem),
    var(--page);
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.26'/%3E%3C/svg%3E");
  content: "";
  opacity: 0.025;
}

body,
button,
a {
  font: inherit;
}

button {
  border: 0;
  color: inherit;
}

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

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

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

h1,
h2,
h3 {
  letter-spacing: -0.045em;
}

::selection {
  background: var(--accent);
  color: var(--accent-ink);
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid var(--accent-strong);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 760;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.section-space {
  padding-block: clamp(88px, 10vw, 142px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgb(7 8 20 / 0.82);
  backdrop-filter: blur(20px) saturate(135%);
  -webkit-backdrop-filter: blur(20px) saturate(135%);
}

.nav-shell {
  width: min(calc(100% - 48px), var(--container));
  min-height: var(--header-height);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
}

.brand-surface {
  display: inline-grid;
  min-height: 42px;
  place-items: center;
  padding: 7px 10px;
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 11px;
  background: #f1f1fb;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.85);
}

.brand-surface img {
  width: 142px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 32px);
  color: var(--text-soft);
  font-size: 0.87rem;
  font-weight: 650;
  white-space: nowrap;
}

.desktop-nav a,
.footer-links a {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.footer-links a:hover {
  color: var(--text);
}

.button {
  min-height: 48px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--control-radius);
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms var(--ease-out), background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.button:active {
  transform: scale(0.98);
}

.button-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 14px 34px rgb(48 35 181 / 0.25), inset 0 1px 0 rgb(255 255 255 / 0.28);
}

.button-primary:hover {
  border-color: var(--accent-hover);
  background: var(--accent-hover);
}

.button-secondary,
.nav-contact {
  border-color: var(--line-strong);
  background: rgb(255 255 255 / 0.035);
  color: var(--text);
}

.button-secondary:hover,
.nav-contact:hover {
  border-color: rgb(145 135 255 / 0.52);
  background: var(--accent-soft);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}

.button-small {
  min-height: 40px;
  padding: 9px 15px;
  justify-self: end;
  font-size: 0.84rem;
}

.button-large {
  min-height: 56px;
  padding-inline: 23px;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgb(255 255 255 / 0.035);
  cursor: pointer;
}

.menu-button i {
  font-size: 1.25rem;
}

.mobile-nav {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto 14px;
  padding: 9px;
  border: 1px solid var(--line-strong);
  border-radius: var(--card-radius);
  background: rgb(13 16 32 / 0.98);
  box-shadow: 0 24px 70px rgb(0 0 0 / 0.3);
}

.mobile-nav a {
  display: block;
  padding: 13px 14px;
  border-radius: 11px;
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 680;
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  background: var(--accent-soft);
  color: var(--text);
}

.hero {
  position: relative;
  overflow: clip;
  min-height: calc(100dvh - var(--header-height));
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
  padding-block: clamp(46px, 7vh, 78px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: start;
  gap: 24px;
}

.eyebrow {
  color: var(--accent-strong);
  font-size: 0.73rem;
  font-weight: 780;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 660px;
  font-size: clamp(3.3rem, 5.2vw, 4.25rem);
  font-weight: 680;
  line-height: 0.95;
  letter-spacing: -0.068em;
}

.hero-summary {
  max-width: 580px;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.6vw, 1.17rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 4px;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-visual::before {
  position: absolute;
  inset: -12% -14%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(83 69 255 / 0.16), transparent 66%);
  content: "";
  filter: blur(16px);
}

.hero-image-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.54;
  border: 1px solid rgb(186 180 255 / 0.2);
  border-radius: var(--card-radius);
  background: var(--surface-2);
  box-shadow: 0 38px 100px rgb(1 2 12 / 0.48), inset 0 1px 0 rgb(255 255 255 / 0.07);
  transform: rotate(1.2deg);
}

.hero-image-frame::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgb(255 255 255 / 0.05);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-heading {
  max-width: 700px;
  display: grid;
  gap: 16px;
  margin-bottom: clamp(40px, 5vw, 66px);
}

.section-heading h2,
.settlement-copy h2,
.contact-panel h2 {
  max-width: 720px;
  font-size: clamp(2.35rem, 5vw, 4.35rem);
  font-weight: 660;
  line-height: 0.99;
}

.section-heading p,
.settlement-copy p,
.contact-panel p {
  max-width: 58ch;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.5vw, 1.14rem);
}

.payment-methods,
.settlements {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgb(255 255 255 / 0.012);
}

.provider-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-template-rows: repeat(2, minmax(178px, auto));
  gap: 14px;
}

.provider-card {
  position: relative;
  min-width: 0;
  display: grid;
  align-items: end;
  gap: 18px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  background: var(--surface);
  transition: transform 220ms var(--ease-out), border-color 220ms ease, background-color 220ms ease;
}

.provider-card:hover {
  border-color: rgb(145 135 255 / 0.42);
  background: var(--surface-2);
  transform: translateY(-3px);
}

.provider-card-cash {
  grid-row: 1 / 3;
  grid-column: 1;
  align-content: end;
  background:
    radial-gradient(circle at 78% 18%, rgb(83 69 255 / 0.23), transparent 38%),
    linear-gradient(150deg, rgb(83 69 255 / 0.08), transparent 62%),
    var(--surface-2);
}

.provider-card-cash::after {
  position: absolute;
  top: 42px;
  right: 46px;
  width: 150px;
  height: 150px;
  border: 1px solid rgb(145 135 255 / 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgb(83 69 255 / 0.025), 0 0 0 50px rgb(83 69 255 / 0.018);
  content: "";
}

.provider-card-chime {
  grid-column: 2 / 4;
}

.provider-card-apple {
  grid-column: 2;
}

.provider-card-google {
  grid-column: 3;
}

.provider-card > i {
  position: absolute;
  right: 24px;
  bottom: 25px;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.provider-logo {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: rgb(255 255 255 / 0.055);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.08);
  font-size: 1.2rem;
  font-weight: 840;
}

.provider-logo-cash {
  background: var(--accent);
  color: var(--accent-ink);
}

.provider-logo-chime {
  color: var(--accent-strong);
}

.provider-logo-apple {
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.4rem;
}

.provider-logo-google {
  color: var(--accent-strong);
}

.provider-card h3 {
  font-size: 1.25rem;
}

.provider-card p {
  max-width: 38ch;
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.operating-flow {
  background: var(--page);
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0;
  margin: 0;
  list-style: none;
}

.flow-item {
  min-height: 250px;
  display: grid;
  align-content: space-between;
  gap: 34px;
  padding: 28px clamp(24px, 4vw, 48px);
  border-left: 1px solid var(--line);
}

.flow-item:first-child {
  padding-left: 0;
  border-left: 0;
}

.flow-item:last-child {
  padding-right: 0;
}

.flow-icon,
.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--control-radius);
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.flow-icon i,
.feature-icon i {
  font-size: 1.35rem;
}

.flow-item h3 {
  font-size: 1.35rem;
}

.flow-item p {
  max-width: 31ch;
  margin-top: 9px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.features {
  padding-top: clamp(70px, 8vw, 110px);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.feature-card {
  min-width: 0;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 38px;
  padding: 27px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  background: var(--surface);
}

.feature-card h3 {
  max-width: 420px;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1.08;
}

.feature-card p {
  max-width: 42ch;
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.feature-card-visual {
  grid-column: span 5;
  grid-row: span 2;
  min-height: 630px;
  padding: 0;
  background: var(--surface-2);
}

.feature-card-visual img {
  width: 100%;
  height: 455px;
  object-fit: cover;
  object-position: center 58%;
}

.feature-visual-copy {
  padding: 0 27px 28px;
}

.feature-card-dashboard {
  grid-column: span 7;
  min-height: 308px;
  background:
    linear-gradient(118deg, rgb(83 69 255 / 0.13), transparent 54%),
    var(--surface-2);
}

.dashboard-cues {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.dashboard-cues span {
  min-height: 47px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgb(255 255 255 / 0.028);
  color: var(--text-soft);
  font-size: 0.76rem;
  font-weight: 680;
}

.dashboard-cues i {
  color: var(--accent-strong);
  font-size: 1rem;
}

.feature-card-status {
  grid-column: span 4;
  min-height: 308px;
}

.status-cues {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.status-cues span {
  min-height: 31px;
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 730;
}

.status-cues span:last-child {
  background: var(--success-soft);
  color: var(--success);
}

.feature-card-withdrawals {
  grid-column: span 3;
  min-height: 308px;
  background: linear-gradient(150deg, rgb(83 69 255 / 0.11), transparent 60%), var(--surface);
}

.feature-card-security,
.feature-card-support {
  grid-column: span 6;
}

.feature-card-support {
  background: var(--accent-soft);
}

.feature-card-support a {
  width: fit-content;
  color: var(--accent-strong);
  font-size: 0.88rem;
  font-weight: 760;
}

.settlement-layout {
  display: grid;
  grid-template-columns: minmax(290px, 0.64fr) minmax(0, 1.36fr);
  align-items: center;
  gap: clamp(54px, 8vw, 112px);
}

.settlement-copy {
  display: grid;
  gap: 20px;
}

.settlement-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0;
  margin: 0;
  list-style: none;
}

.settlement-track li {
  position: relative;
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 26px 19px 0;
  border-top: 1px solid var(--line-strong);
}

.settlement-track li:first-child {
  padding-left: 0;
}

.settlement-track li:last-child {
  padding-right: 0;
}

.settlement-track li > span {
  position: absolute;
  top: -20px;
  left: 19px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgb(145 135 255 / 0.38);
  border-radius: 12px;
  background: var(--surface-2);
  color: var(--accent-strong);
}

.settlement-track li:first-child > span {
  left: 0;
}

.settlement-track strong {
  margin-top: 8px;
  font-size: 0.85rem;
  line-height: 1.25;
}

.settlement-track small {
  color: var(--text-muted);
  font-size: 0.72rem;
  line-height: 1.5;
}

.contact-section {
  padding-block: clamp(76px, 9vw, 120px);
}

.contact-panel {
  min-height: 270px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  padding: clamp(34px, 5vw, 62px);
  overflow: hidden;
  border: 1px solid rgb(145 135 255 / 0.28);
  border-radius: var(--card-radius);
  background:
    radial-gradient(circle at 86% 22%, rgb(83 69 255 / 0.26), transparent 34%),
    linear-gradient(120deg, rgb(83 69 255 / 0.12), transparent 56%),
    var(--surface);
}

.contact-panel > div {
  display: grid;
  gap: 14px;
}

.site-footer {
  padding-top: 68px;
  border-top: 1px solid var(--line);
  background: var(--page-deep);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  align-items: start;
  gap: clamp(34px, 7vw, 90px);
  padding-bottom: 58px;
}

.footer-brand p {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 0.84rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 24px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer-contact {
  display: grid;
  gap: 7px;
}

.footer-contact span {
  color: var(--text-muted);
  font-size: 0.72rem;
}

.footer-contact a {
  color: var(--accent-strong);
  font-size: 0.94rem;
  font-weight: 760;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-block: 22px 30px;
  border-top: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 0.7rem;
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(24px);
}

.has-js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}

.has-js .reveal-delay-1.is-visible {
  transition-delay: 90ms;
}

.has-js .reveal-delay-2.is-visible {
  transition-delay: 180ms;
}

@media (max-width: 1080px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .nav-actions {
    display: none;
  }

  .menu-button {
    display: grid;
    justify-self: end;
  }

  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
    gap: 42px;
  }

  .provider-grid {
    grid-template-columns: 1.05fr 0.95fr;
    grid-template-rows: repeat(3, minmax(170px, auto));
  }

  .provider-card-cash {
    grid-row: 1 / 4;
    grid-column: 1;
  }

  .provider-card-chime,
  .provider-card-apple,
  .provider-card-google {
    grid-column: 2;
  }

  .provider-card-chime {
    grid-row: 1;
  }

  .provider-card-apple {
    grid-row: 2;
  }

  .provider-card-google {
    grid-row: 3;
  }

  .settlement-layout {
    grid-template-columns: 1fr;
  }

  .settlement-copy {
    max-width: 650px;
  }
}

@media (max-width: 860px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 50px;
    padding-block: 64px 78px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero-image-frame {
    max-width: 720px;
    transform: none;
  }

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

  .flow-item,
  .flow-item:first-child,
  .flow-item:last-child {
    min-height: 0;
    grid-template-columns: auto 1fr;
    align-items: start;
    align-content: start;
    gap: 22px;
    padding: 28px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .flow-item:first-child {
    border-top: 0;
  }

  .feature-card-visual {
    grid-column: span 6;
  }

  .feature-card-dashboard {
    grid-column: span 6;
  }

  .feature-card-status,
  .feature-card-withdrawals {
    grid-column: span 6;
  }

  .feature-card-security,
  .feature-card-support {
    grid-column: span 6;
  }
}

@media (max-width: 700px) {
  :root {
    --card-radius: 18px;
    --control-radius: 13px;
    --header-height: 68px;
  }

  .section-shell {
    width: min(calc(100% - 32px), var(--container));
  }

  .section-space {
    padding-block: 82px;
  }

  .nav-shell {
    width: min(calc(100% - 32px), var(--container));
    min-height: var(--header-height);
  }

  .brand-surface {
    min-height: 39px;
    padding: 7px 9px;
  }

  .brand-surface img {
    width: 126px;
  }

  .hero {
    gap: 40px;
    padding-block: 52px 64px;
  }

  .hero h1 {
    font-size: clamp(3rem, 14.5vw, 4rem);
    line-height: 0.94;
  }

  .hero-summary {
    font-size: 1rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    flex: 1 1 150px;
  }

  .hero-image-frame {
    aspect-ratio: 1.2;
  }

  .hero-image-frame img {
    width: 126%;
    max-width: none;
    object-position: 54% center;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .settlement-copy h2,
  .contact-panel h2 {
    font-size: clamp(2.45rem, 12vw, 3.35rem);
  }

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

  .provider-card,
  .provider-card-cash,
  .provider-card-chime,
  .provider-card-apple,
  .provider-card-google {
    grid-column: auto;
    grid-row: auto;
    min-height: 210px;
    padding: 21px;
  }

  .provider-card-cash,
  .provider-card-chime {
    grid-column: span 2;
  }

  .provider-card-cash::after {
    display: none;
  }

  .provider-card-apple p,
  .provider-card-google p {
    font-size: 0.78rem;
  }

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

  .feature-card,
  .feature-card-visual,
  .feature-card-dashboard,
  .feature-card-status,
  .feature-card-withdrawals,
  .feature-card-security,
  .feature-card-support {
    grid-column: 1;
    grid-row: auto;
    min-height: 280px;
  }

  .feature-card-visual {
    min-height: 560px;
  }

  .feature-card-visual img {
    height: 395px;
  }

  .dashboard-cues {
    grid-template-columns: 1fr;
  }

  .settlement-track {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .settlement-track li,
  .settlement-track li:first-child,
  .settlement-track li:last-child {
    min-height: 125px;
    padding: 25px 0 25px 62px;
    border-top: 0;
    border-left: 1px solid var(--line-strong);
  }

  .settlement-track li > span,
  .settlement-track li:first-child > span {
    top: 18px;
    left: -20px;
  }

  .settlement-track strong {
    margin-top: 0;
  }

  .contact-panel {
    min-height: 330px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 460px) {
  .hero h1 {
    font-size: clamp(2.75rem, 14vw, 3.55rem);
  }

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

  .hero-actions .button {
    width: 100%;
  }

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

  .provider-card,
  .provider-card-cash,
  .provider-card-chime,
  .provider-card-apple,
  .provider-card-google {
    grid-column: 1;
  }

  .feature-card {
    padding: 24px;
  }

  .feature-card-visual {
    padding: 0;
  }

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

  .footer-brand {
    grid-column: 1;
  }

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

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

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

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

  .has-js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header,
  .mobile-nav {
    background: var(--page-deep);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

.mobile-nav .mobile-login {
  color: var(--accent);
  font-weight: 600;
}
