/* Baantlo — landing page. Tokens mirror mobile/src/constants/theme.ts */

:root {
  --teal: #0e7a6d;
  --teal-dark: #0a5a50;
  --teal-light: #34c3ae;
  --teal-soft: #d7f0ec;
  --teal-mist: #f0faf8;

  --ink: #101828;
  --body: #5b6472;
  --muted: #98a1b0;

  --bg: #ffffff;
  --bg-alt: #f7f8fa;
  --border: #e6e9ee;

  --amber: #b45309;
  --amber-soft: #fcefd9;
  --rose: #c22b57;
  --rose-soft: #fce4ea;
  --blue: #1d6fd1;
  --blue-soft: #dfebfb;
  --violet: #6d4bd6;
  --violet-soft: #eae4fb;

  --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.05);
  --shadow-md: 0 8px 24px -6px rgba(16, 24, 40, 0.1), 0 2px 6px rgba(16, 24, 40, 0.04);
  --shadow-lg: 0 24px 60px -16px rgba(16, 24, 40, 0.18), 0 8px 20px -8px rgba(16, 24, 40, 0.08);
  --shadow-teal: 0 16px 40px -12px rgba(14, 122, 109, 0.45);

  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 999px;

  --maxw: 1140px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--body);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.025em;
  line-height: 1.15;
  font-weight: 700;
}

p {
  margin: 0;
}

a {
  color: var(--teal);
  text-decoration: none;
}

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

::selection {
  background: var(--teal-soft);
  color: var(--teal-dark);
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 104px 0;
}

.section--alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ---------- shared bits ---------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-soft);
  padding: 7px 14px;
  border-radius: var(--r-full);
  margin-bottom: 20px;
}

.section-head {
  max-width: 660px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(30px, 4.2vw, 44px);
  margin-bottom: 16px;
}

.section-head p {
  font-size: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: var(--r-full);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--teal);
  color: #fff;
  box-shadow: var(--shadow-teal);
}

.btn--primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 22px 48px -12px rgba(14, 122, 109, 0.55);
}

.btn--ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.btn--ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex: none;
}

/* ---------- brand mark ---------- */

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  box-shadow: var(--shadow-md);
}

.brand span {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  padding: 76px 0 100px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--teal-mist) 0%, #fff 62%);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.hero__glow--a {
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(52, 195, 174, 0.5), transparent 70%);
  top: -220px;
  left: -160px;
  animation: drift 18s ease-in-out infinite;
}

.hero__glow--b {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(109, 75, 214, 0.22), transparent 70%);
  top: 60px;
  right: -180px;
  animation: drift 22s ease-in-out infinite reverse;
}

@keyframes drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(40px, 50px) scale(1.12);
  }
}

.hero .wrap {
  position: relative;
  z-index: 1;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero__logo {
  margin-bottom: 34px;
}

.hero__logo img {
  width: 76px;
  height: 76px;
  border-radius: 20px;
  box-shadow: var(--shadow-teal);
}

.hero__logo span {
  font-size: 32px;
}

.hero h1 {
  font-size: clamp(38px, 5.6vw, 60px);
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--teal) 10%, var(--teal-light) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__sub {
  font-size: 19px;
  max-width: 520px;
  margin-bottom: 34px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.hero__note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  font-size: 14.5px;
  color: var(--muted);
}

.hero__note span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero__note svg {
  width: 16px;
  height: 16px;
  color: var(--teal);
  flex: none;
}

/* ---------- phone mockup ---------- */

.phone-stage {
  position: relative;
  display: flex;
  justify-content: center;
  perspective: 1400px;
}

.phone {
  position: relative;
  width: 300px;
  padding: 12px;
  border-radius: 44px;
  background: linear-gradient(160deg, #1c2430, #0c1017);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  animation: float 7s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(-1.2deg);
  }
  50% {
    transform: translateY(-16px) rotate(0.6deg);
  }
}

.phone__screen {
  position: relative;
  border-radius: 34px;
  background: #f5f6f8;
  overflow: hidden;
  padding-bottom: 16px;
}

.phone__notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 22px;
  border-radius: var(--r-full);
  background: #0c1017;
  z-index: 3;
}

.phone__header {
  background: linear-gradient(150deg, var(--teal), #0b6b5f);
  color: #fff;
  padding: 46px 20px 26px;
}

.phone__header small {
  font-size: 12px;
  opacity: 0.75;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.phone__header h4 {
  color: #fff;
  font-size: 19px;
  margin: 4px 0 18px;
}

.balance {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--r-md);
  padding: 13px 15px;
}

.balance small {
  opacity: 0.8;
  text-transform: none;
  letter-spacing: 0;
}

.balance strong {
  display: block;
  font-size: 25px;
  letter-spacing: -0.03em;
  margin-top: 2px;
}

.phone__body {
  padding: 18px 16px 0;
}

.phone__body > p {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 11px 13px;
  margin-bottom: 9px;
  opacity: 0;
  animation: rowIn 0.7s var(--ease) forwards;
}

.row:nth-child(2) {
  animation-delay: 0.5s;
}
.row:nth-child(3) {
  animation-delay: 0.68s;
}
.row:nth-child(4) {
  animation-delay: 0.86s;
}
.row:nth-child(5) {
  animation-delay: 1.04s;
}

@keyframes rowIn {
  from {
    opacity: 0;
    transform: translateX(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.row__icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex: none;
}

.row__icon svg {
  width: 17px;
  height: 17px;
}

.row__text {
  flex: 1;
  min-width: 0;
}

.row__text strong {
  display: block;
  font-size: 13.5px;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.3;
}

.row__text small {
  font-size: 11.5px;
  color: var(--muted);
}

.row__amt {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

/* floating chips around the phone */
.chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 10px 16px 10px 11px;
  box-shadow: var(--shadow-md);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  z-index: 2;
}

.chip i {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: none;
}

.chip i svg {
  width: 14px;
  height: 14px;
}

.chip small {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
}

.chip--paid {
  top: 15%;
  left: -8%;
  animation: float 6s ease-in-out infinite 0.6s;
}

.chip--split {
  bottom: 20%;
  right: -6%;
  animation: float 6.5s ease-in-out infinite 1.2s;
}

/* ---------- logos / trust strip ---------- */

.strip {
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 34px 0;
}

.strip__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 40px;
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 500;
}

.strip__inner b {
  color: var(--ink);
  font-weight: 600;
}

/* ---------- problem ---------- */

.pain {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pain__card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.pain__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pain__card h3 {
  font-size: 18px;
  margin: 0 0 8px;
}

.pain__card p {
  font-size: 15.5px;
}

.pain__mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: var(--rose-soft);
  color: var(--rose);
}

.pain__mark svg {
  width: 21px;
  height: 21px;
}

/* ---------- features ---------- */

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.feature::after {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.feature:hover::after {
  transform: scaleX(1);
}

.feature__icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.feature__icon svg {
  width: 22px;
  height: 22px;
}

.feature h3 {
  font-size: 18.5px;
  margin-bottom: 9px;
}

.feature p {
  font-size: 15.5px;
}

/* accent utilities */
.a-teal {
  background: var(--teal-soft);
  color: var(--teal);
}
.a-blue {
  background: var(--blue-soft);
  color: var(--blue);
}
.a-violet {
  background: var(--violet-soft);
  color: var(--violet);
}
.a-amber {
  background: var(--amber-soft);
  color: var(--amber);
}
.a-rose {
  background: var(--rose-soft);
  color: var(--rose);
}
.a-slate {
  background: #e8ebf0;
  color: #4b5565;
}

/* ---------- how it works ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--border) 0 8px,
    transparent 8px 16px
  );
}

.step {
  text-align: center;
  position: relative;
}

.step__num {
  width: 54px;
  height: 54px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  font-size: 19px;
  box-shadow: 0 0 0 8px var(--bg-alt), var(--shadow-teal);
  position: relative;
  z-index: 1;
}

.section:not(.section--alt) .step__num {
  box-shadow: 0 0 0 8px #fff, var(--shadow-teal);
}

.step h3 {
  font-size: 19px;
  margin-bottom: 9px;
}

.step p {
  font-size: 15.5px;
  max-width: 300px;
  margin: 0 auto;
}

/* ---------- split showcase ---------- */

.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.showcase h2 {
  font-size: clamp(28px, 3.8vw, 40px);
  margin-bottom: 18px;
}

.showcase > div > p {
  font-size: 17.5px;
  margin-bottom: 26px;
}

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

.ticks li {
  display: flex;
  gap: 13px;
  font-size: 16px;
  align-items: flex-start;
}

.ticks svg {
  width: 21px;
  height: 21px;
  flex: none;
  color: var(--teal);
  margin-top: 2px;
}

.ticks b {
  color: var(--ink);
  font-weight: 600;
}

/* ledger card */
.ledger {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  padding: 28px;
}

.ledger__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 18px;
}

.ledger__head h4 {
  font-size: 17px;
}

.ledger__head small {
  font-size: 13px;
  color: var(--muted);
}

.ledger__line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  font-size: 15px;
}

.ledger__line span {
  color: var(--body);
}

.ledger__line b {
  color: var(--ink);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.ledger__line--total {
  border-top: 1px dashed var(--border);
  margin-top: 8px;
  padding-top: 16px;
  font-size: 16px;
}

.ledger__line--total b {
  color: var(--amber);
  font-size: 19px;
  font-weight: 700;
}

.ledger__bar {
  height: 8px;
  border-radius: var(--r-full);
  background: var(--bg-alt);
  overflow: hidden;
  margin: 18px 0 10px;
}

.ledger__bar i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: var(--r-full);
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transition: width 1.4s var(--ease);
}

.is-visible .ledger__bar i {
  width: 90%;
}

.ledger__foot {
  font-size: 13px;
  color: var(--muted);
}

/* ---------- privacy band ---------- */

.privacy-band {
  background: linear-gradient(150deg, #0c1017, #10322d 55%, #0b5c52);
  border-radius: var(--r-xl);
  padding: 56px 52px;
  color: rgba(255, 255, 255, 0.72);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.privacy-band::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  top: -160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52, 195, 174, 0.28), transparent 70%);
  filter: blur(50px);
}

.privacy-band > * {
  position: relative;
}

.privacy-band h2 {
  color: #fff;
  font-size: clamp(27px, 3.4vw, 36px);
  margin-bottom: 14px;
}

.privacy-band p {
  font-size: 17px;
}

.privacy-band .ticks li {
  color: rgba(255, 255, 255, 0.78);
}

.privacy-band .ticks b {
  color: #fff;
}

.privacy-band .ticks svg {
  color: var(--teal-light);
}

/* ---------- faq ---------- */

.faq {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 4px 22px;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.faq details[open] {
  border-color: var(--teal-soft);
  box-shadow: var(--shadow-md);
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-weight: 600;
  color: var(--ink);
  font-size: 16.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

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

.faq summary::after {
  content: '';
  width: 10px;
  height: 10px;
  flex: none;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  transition: transform 0.3s var(--ease);
  margin-top: -4px;
}

.faq details[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 4px;
  border-color: var(--teal);
}

.faq p {
  padding: 0 0 20px;
  font-size: 15.5px;
  margin-top: -4px;
}

/* ---------- cta ---------- */

.cta {
  text-align: center;
  padding: 100px 0;
  background: linear-gradient(180deg, #fff, var(--teal-mist));
  border-top: 1px solid var(--border);
}

.cta img {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  margin: 0 auto 26px;
  box-shadow: var(--shadow-teal);
}

.cta h2 {
  font-size: clamp(30px, 4.4vw, 46px);
  margin-bottom: 16px;
}

.cta p {
  font-size: 18.5px;
  max-width: 520px;
  margin: 0 auto 32px;
}

.cta__row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------- footer ---------- */

.footer {
  background: #0c1017;
  color: rgba(255, 255, 255, 0.55);
  padding: 62px 0 32px;
  font-size: 15px;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .brand span {
  color: #fff;
}

.footer__blurb {
  max-width: 320px;
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.6;
}

.footer__links {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer__col h5 {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 16px;
  font-weight: 600;
}

.footer__col a {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 11px;
  transition: color 0.2s var(--ease);
}

.footer__col a:hover {
  color: var(--teal-light);
}

.footer__bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}

/* ---------- legal pages ---------- */

.legal-head {
  background: linear-gradient(180deg, var(--teal-mist), #fff);
  border-bottom: 1px solid var(--border);
  padding: 44px 0 56px;
  text-align: center;
}

.legal-head .brand {
  margin-bottom: 32px;
}

.legal-head h1 {
  font-size: clamp(32px, 4.6vw, 46px);
  margin-bottom: 12px;
}

.legal-head p {
  color: var(--muted);
  font-size: 15.5px;
}

.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}

.legal h2 {
  font-size: 23px;
  margin: 46px 0 14px;
}

.legal h2:first-child {
  margin-top: 0;
}

.legal h3 {
  font-size: 18px;
  margin: 28px 0 10px;
}

.legal p {
  margin-bottom: 16px;
  font-size: 16.5px;
}

.legal ul {
  margin: 0 0 18px;
  padding-left: 22px;
}

.legal li {
  margin-bottom: 9px;
  font-size: 16.5px;
}

.legal strong {
  color: var(--ink);
}

.legal__note {
  background: var(--teal-mist);
  border: 1px solid var(--teal-soft);
  border-left: 3px solid var(--teal);
  border-radius: var(--r-md);
  padding: 20px 22px;
  font-size: 16px;
  margin: 28px 0;
}

.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  margin-top: 44px;
}

.legal__back svg {
  width: 17px;
  height: 17px;
}

/* ---------- scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal[data-delay='1'] {
  transition-delay: 0.09s;
}
.reveal[data-delay='2'] {
  transition-delay: 0.18s;
}
.reveal[data-delay='3'] {
  transition-delay: 0.27s;
}
.reveal[data-delay='4'] {
  transition-delay: 0.36s;
}
.reveal[data-delay='5'] {
  transition-delay: 0.45s;
}

/* hero entrance */
.rise {
  opacity: 0;
  animation: rise 0.9s var(--ease) forwards;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.rise[data-delay='1'] {
  animation-delay: 0.1s;
}
.rise[data-delay='2'] {
  animation-delay: 0.2s;
}
.rise[data-delay='3'] {
  animation-delay: 0.3s;
}
.rise[data-delay='4'] {
  animation-delay: 0.4s;
}
.rise[data-delay='5'] {
  animation-delay: 0.5s;
}

/* ---------- responsive ---------- */

@media (max-width: 960px) {
  .hero__grid,
  .showcase,
  .privacy-band {
    grid-template-columns: 1fr;
  }
  .hero__grid {
    gap: 60px;
  }
  .showcase {
    gap: 44px;
  }
  .hero__sub {
    margin-inline: auto;
  }
  .features,
  .pain,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps::before {
    display: none;
  }
  .privacy-band {
    padding: 42px 32px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }
  .section {
    padding: 72px 0;
  }
  .hero {
    padding: 52px 0 76px;
    text-align: center;
  }
  .hero__cta,
  .hero__note {
    justify-content: center;
  }
  .features,
  .pain,
  .steps {
    grid-template-columns: 1fr;
  }
  .btn {
    width: 100%;
  }
  .chip--paid {
    left: -4%;
    top: 8%;
  }
  .chip--split {
    right: -4%;
    bottom: 14%;
  }
  .phone {
    width: 268px;
  }
  .footer__links {
    gap: 40px;
  }
  .privacy-band {
    padding: 36px 24px;
  }
  .legal {
    padding: 44px 24px 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
  .reveal,
  .rise,
  .row {
    opacity: 1;
    transform: none;
  }
  html {
    scroll-behavior: auto;
  }
}
