:root {
  --orange: #f97316;
  --orange-soft: #fff7ed;
  --ink: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --paper: #ffffff;
  --surface: #f9fafb;
  --blue: #2563eb;
  --green: #15803d;
  --shadow: 0 24px 70px rgba(17, 24, 39, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  line-height: 1.5;
}

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

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 16px clamp(20px, 5vw, 72px);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 20px;
  font-weight: 800;
  gap: 10px;
}

.brand-mark {
  border-radius: 12px;
  height: 36px;
  width: 36px;
}

.nav {
  align-items: center;
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
}

.nav a:hover {
  color: var(--ink);
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(32px, 6vw, 76px);
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  min-height: calc(100svh - 69px);
  padding: clamp(48px, 7vw, 92px) clamp(20px, 5vw, 72px) clamp(36px, 6vw, 76px);
}

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

.eyebrow {
  color: var(--orange);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(44px, 7vw, 86px);
  letter-spacing: 0;
  line-height: 0.96;
  margin-bottom: 22px;
  max-width: 820px;
}

h2 {
  font-size: clamp(30px, 4vw, 54px);
  letter-spacing: 0;
  line-height: 1.03;
  margin-bottom: 16px;
}

h3 {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.hero-text {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  max-width: 620px;
}

.hero-actions,
.bank-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
}

.button.primary {
  background: var(--orange);
  color: #ffffff;
}

.button.secondary {
  border: 1px solid var(--line);
  color: var(--ink);
}

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

.trust-row {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 34px 0 0;
  max-width: 780px;
}

.trust-row div {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.trust-row dt {
  font-weight: 850;
  margin-bottom: 4px;
}

.trust-row dd {
  color: var(--muted);
  margin: 0;
}

.product-visual {
  align-items: center;
  display: flex;
  justify-content: center;
}

.phone-shell {
  background: #111827;
  border: 10px solid #111827;
  border-radius: 44px;
  box-shadow: var(--shadow);
  max-width: 390px;
  padding: 12px;
  width: min(100%, 390px);
}

.phone-status {
  color: #ffffff;
  display: flex;
  font-size: 13px;
  font-weight: 750;
  justify-content: space-between;
  padding: 4px 12px 12px;
}

.app-screen {
  background: var(--surface);
  border-radius: 30px;
  min-height: 640px;
  overflow: hidden;
  padding: 20px;
  position: relative;
}

.screen-header {
  align-items: center;
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.screen-header img {
  border-radius: 14px;
  height: 52px;
  width: 52px;
}

.screen-header p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 2px;
}

.screen-header strong {
  font-size: 22px;
}

.summary-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 18px;
}

.summary-grid div,
.transaction {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.summary-grid div {
  padding: 12px 10px;
}

.summary-grid span {
  color: var(--muted);
  display: block;
  font-size: 11px;
  margin-bottom: 5px;
}

.summary-grid strong {
  font-size: 17px;
}

.transaction-list {
  display: grid;
  gap: 10px;
}

.transaction {
  align-items: center;
  display: grid;
  gap: 10px;
  grid-template-columns: 14px minmax(0, 1fr) auto;
  padding: 14px 12px;
}

.transaction strong,
.transaction span,
.transaction b {
  display: block;
}

.transaction span:not(.dot) {
  color: var(--muted);
  font-size: 12px;
}

.transaction b {
  font-size: 14px;
}

.dot {
  border-radius: 999px;
  height: 10px;
  width: 10px;
}

.dot.food {
  background: var(--orange);
}

.dot.transport {
  background: var(--blue);
}

.dot.income {
  background: var(--green);
}

.mock-fab {
  align-items: center;
  background: var(--orange);
  border: 0;
  border-radius: 999px;
  bottom: 22px;
  color: #ffffff;
  display: flex;
  font-size: 30px;
  font-weight: 500;
  height: 58px;
  justify-content: center;
  position: absolute;
  right: 22px;
  width: 58px;
}

.section-band,
.split-section,
.beta-section {
  padding: clamp(52px, 7vw, 96px) clamp(20px, 5vw, 72px);
}

.section-band {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 780px;
}

.feature-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.feature-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.feature-card p,
.split-section p,
.beta-section p {
  color: var(--muted);
}

.split-section {
  align-items: start;
  display: grid;
  gap: clamp(24px, 5vw, 72px);
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
}

.timeline {
  counter-reset: step;
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.timeline li {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 14px;
  grid-template-columns: 38px minmax(0, 1fr);
  padding: 0 0 18px;
}

.timeline span {
  align-items: center;
  background: var(--orange-soft);
  border: 1px solid #fed7aa;
  border-radius: 999px;
  color: var(--orange);
  display: flex;
  font-weight: 850;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.timeline strong {
  display: block;
  font-size: 20px;
  margin-bottom: 4px;
}

.timeline p {
  margin: 0;
}

.beta-section {
  align-items: center;
  background: var(--ink);
  color: #ffffff;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.beta-section p {
  color: #d1d5db;
  margin-bottom: 0;
  max-width: 680px;
}

.site-footer {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 24px clamp(20px, 5vw, 72px);
}

.site-footer,
.site-footer a {
  color: var(--muted);
}

.site-footer div {
  display: flex;
  gap: 16px;
}

@media (max-width: 920px) {
  .hero,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 42px;
  }

  .product-visual {
    justify-content: start;
  }

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

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    overflow-x: auto;
    padding-bottom: 2px;
    width: 100%;
  }

  h1 {
    font-size: 42px;
  }

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

  .app-screen {
    min-height: 560px;
  }

  .beta-section,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
