/* Money Manager — marketing site
   Theme lifted directly from the app's own design tokens (design/README.md
   "Design Tokens"): dark #1C1A14 ground, golden-yellow #FFC300 chrome-only
   accent, Manrope for UI type, JetBrains Mono for money/eyebrows/meta.
   The showcase section recreates real app screens (Home dashboard,
   Categorize) from the design spec inside a phone frame — not a stock photo,
   not a terminal-window conceit borrowed from another product. */

:root {
  --bg: #1c1a14;
  --canvas: #151310;
  --surface: #2a2620;
  --surface-raised: #332e25;
  --surface-accent: #241f17;
  --border: #3a3428;
  --border-accent: #4a3f1e;
  --text: #f5f0e1;
  --text-secondary: #b8b09a;
  --text-tertiary: #6b6555;
  --primary: #ffc300;
  --primary-pressed: #e0a800;
  --on-primary: #1c1a14;
  --success: #66bb6a;
  --danger: #ef5350;
  --white: #ffffff;

  --sans:
    "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, Menlo, Consolas, monospace;

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 20px;
  --radius-pill: 999px;

  --maxw: 1120px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  background-image: radial-gradient(
    circle at 18% 0%,
    rgba(255, 195, 0, 0.1),
    transparent 42%
  );
  background-attachment: fixed;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
code {
  font-family: var(--mono);
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(28, 26, 20, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 15px;
}
.brand img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}
.brand .sub {
  color: var(--text-tertiary);
  font-weight: 600;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-secondary);
}
.nav-links a:hover {
  color: var(--text);
}
.nav-cta {
  background: var(--primary);
  color: var(--on-primary);
  font-weight: 800;
  font-size: 13px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--primary-pressed);
}

/* ---------- Card chrome (the core motif, from the app's Card pattern) ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}
.card-accent {
  background: var(--surface-accent);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl);
}

/* ---------- Hero ---------- */
.hero {
  padding: 92px 0 64px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 7px 13px;
  margin-bottom: 24px;
}
.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 195, 0, 0.18);
}
h1 {
  font-size: 44px;
  line-height: 1.12;
  margin-bottom: 18px;
}
h1 .rupee {
  color: var(--primary);
}
.lede {
  font-size: 17px;
  font-weight: 500;
  color: var(--text-secondary);
  max-width: 470px;
  margin: 0 0 32px;
}
.cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 14px;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--primary);
  color: var(--on-primary);
}
.btn-primary:hover {
  background: var(--primary-pressed);
}
.btn-ghost {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
  font-weight: 700;
}
.btn-ghost:hover {
  border-color: var(--border-accent);
}
.store-note {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-tertiary);
  margin-top: 16px;
}

.stat-strip {
  display: flex;
  gap: 30px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.stat-strip div {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-tertiary);
}
.stat-strip strong {
  display: block;
  font-family: var(--mono);
  font-size: 19px;
  color: var(--text);
}

/* ---------- Phone mockups (built from design/README.md screen specs) ---------- */
.phone {
  position: relative;
  width: 284px;
  aspect-ratio: 9 / 19.5;
  margin: 0 auto;
  background: var(--canvas);
  border-radius: 42px;
  border: 1px solid var(--border);
  padding: 10px;
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.6);
}
.phone-screen {
  background: var(--bg);
  border-radius: 32px;
  padding: 20px 15px 14px;
  overflow: hidden;
  height: 100%;
}
.phone-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.phone-greet-sub {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
}
.phone-greet-name {
  font-size: 17px;
  font-weight: 800;
}
.phone-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--primary);
}
.phone-networth {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 14px;
}
.phone-networth-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.phone-networth-head span:first-child {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}
.phone-networth-head span:last-child {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--success);
}
.phone-networth-value {
  font-family: var(--mono);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 6px;
}
.phone-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 12px;
}
.phone-tile {
  background: var(--bg);
  border-radius: 9px;
  padding: 7px 4px;
  min-width: 0;
}
.phone-tile span {
  display: block;
}
.phone-tile-label {
  font-family: var(--mono);
  font-size: 7px;
  color: var(--text-tertiary);
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
}
.phone-tile-value {
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
}
.phone-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface-accent);
  border: 1px solid var(--border-accent);
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 14px;
}
.phone-banner-count {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 195, 0, 0.18);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  flex: none;
}
.phone-banner-text strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
}
.phone-banner-text span {
  font-size: 9px;
  color: var(--text-secondary);
}
.phone-banner-cta {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  color: var(--primary);
  flex: none;
}
.phone-list-head {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 8px;
}
.phone-list-head span:last-child {
  font-size: 9.5px;
  font-weight: 600;
  color: var(--text-secondary);
}
.phone-txn-row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 0;
  border-bottom: 1px solid var(--surface);
}
.phone-txn-row:last-child {
  border-bottom: none;
}
.phone-txn-mono {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 8.5px;
  font-weight: 700;
  color: var(--text-secondary);
  flex: none;
}
.phone-txn-info {
  flex: 1;
  min-width: 0;
}
.phone-txn-title {
  font-size: 10.5px;
  font-weight: 600;
}
.phone-txn-meta {
  font-size: 8.5px;
  color: var(--text-tertiary);
  margin-top: 1px;
}
.phone-txn-amt {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 700;
  flex: none;
}
.phone-txn-amt.debit {
  color: var(--danger);
}
.phone-txn-amt.credit {
  color: var(--success);
}

/* Categorize-screen mockup */
.phone-back-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.phone-back-row span:first-child {
  color: var(--text-secondary);
}
.phone-back-row h4 {
  font-size: 14px;
  font-weight: 800;
  flex: 1;
}
.phone-back-row span:last-child {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--text-secondary);
}
.phone-summary {
  text-align: center;
  padding: 14px;
  margin-bottom: 14px;
}
.phone-summary .kicker {
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
}
.phone-summary .amount {
  font-family: var(--mono);
  font-size: 24px;
  font-weight: 700;
  color: var(--danger);
  margin: 4px 0;
}
.phone-summary .merchant {
  font-size: 10.5px;
  color: var(--text-secondary);
}
.phone-cat-label {
  font-size: 9.5px;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 7px;
}
.phone-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 14px;
}
.phone-cat-tile {
  background: var(--surface);
  border-radius: 10px;
  padding: 8px 4px;
  text-align: center;
  font-size: 8.5px;
  font-weight: 600;
  color: var(--text-secondary);
  min-width: 0;
  overflow: hidden;
  text-overflow: clip;
  white-space: nowrap;
}
.phone-cat-tile.active {
  background: var(--primary);
  color: var(--on-primary);
  font-weight: 700;
}
.phone-split-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--surface);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 10px;
}
.phone-split-row .name {
  font-weight: 600;
}
.phone-split-row .amt {
  font-family: var(--mono);
  font-weight: 700;
  color: var(--success);
}
.phone-cta {
  margin-top: 14px;
  background: var(--primary);
  color: var(--on-primary);
  text-align: center;
  border-radius: 12px;
  padding: 11px;
  font-size: 11.5px;
  font-weight: 800;
}

/* People & loans screen mockup */
.phone-people-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
  margin-bottom: 14px;
}
.phone-people-tile {
  background: var(--surface);
  border-radius: 12px;
  padding: 10px 10px;
  min-width: 0;
}
.phone-people-tile .label {
  display: block;
  font-family: var(--mono);
  font-size: 7.5px;
  letter-spacing: 0.06em;
  color: var(--text-tertiary);
  margin-bottom: 4px;
}
.phone-people-tile .value {
  font-family: var(--mono);
  font-size: 13.5px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
}
.phone-people-tile .value.success {
  color: var(--success);
}
.phone-people-tile .value.danger {
  color: var(--danger);
}
.phone-people-amt {
  text-align: right;
  flex: none;
}
.phone-people-amt .amt {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 700;
}
.phone-people-amt .amt.success {
  color: var(--success);
}
.phone-people-amt .amt.danger {
  color: var(--danger);
}
.phone-people-amt .caption {
  font-size: 8px;
  color: var(--text-tertiary);
  margin-top: 1px;
}

/* Analytics screen mockup */
.phone-trend-value {
  font-family: var(--mono);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 4px 0 18px;
}
.phone-trend-delta {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  color: var(--danger);
  margin-left: 8px;
}
.phone-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 76px;
  margin-bottom: 22px;
}
.phone-bar {
  flex: 1;
  background: var(--surface);
  border-radius: 4px 4px 0 0;
  position: relative;
}
.phone-bar.active {
  background: var(--primary);
}
.phone-bar span {
  position: absolute;
  bottom: -14px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--mono);
  font-size: 7px;
  color: var(--text-tertiary);
}
.phone-bar.active span {
  color: var(--primary);
  font-weight: 700;
}
.phone-cat-row {
  margin-bottom: 10px;
}
.phone-cat-row-head {
  display: flex;
  justify-content: space-between;
  font-size: 9.5px;
  margin-bottom: 4px;
}
.phone-cat-row-head .name {
  font-weight: 600;
}
.phone-cat-row-head .amt {
  font-family: var(--mono);
  font-weight: 700;
}
.phone-cat-track {
  height: 5px;
  border-radius: 3px;
  background: var(--surface);
}
.phone-cat-fill {
  height: 100%;
  border-radius: 3px;
  background: var(--primary);
}

.device-caption {
  text-align: center;
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--text-tertiary);
  margin-top: 16px;
}
.device-caption .status {
  color: var(--primary);
}

/* ---------- Sections ---------- */
section {
  padding: 84px 0;
}
.section-head {
  max-width: 620px;
  margin: 0 0 44px;
}
.prompt-tag {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
h2 {
  font-size: 28px;
  margin-bottom: 12px;
}
.section-head p {
  color: var(--text-secondary);
  font-size: 15.5px;
  font-weight: 500;
  margin: 0;
}

/* Feature cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.feature {
  padding: 22px;
}
.feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--surface-accent);
  border: 1px solid var(--border-accent);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature h3 {
  font-size: 15px;
  margin-bottom: 8px;
}
.feature p {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}
.feature:hover {
  border-color: var(--border-accent);
}

/* How it works */
.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.flow-step {
  padding: 20px;
  position: relative;
}
.flow-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
}
.flow-step h3 {
  font-size: 14.5px;
  margin-bottom: 8px;
}
.flow-step p {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

/* Security band */
.security {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.security-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 26px;
}
.security-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.security-item .mark {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(255, 195, 0, 0.14);
  color: var(--primary);
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
}
.security-item div p {
  margin: 2px 0 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}
.security-item div strong {
  font-size: 14.5px;
  font-weight: 700;
}
.gmail-callout {
  padding: 22px;
}
.gmail-callout .scope {
  font-family: var(--mono);
  color: var(--primary);
  background: var(--bg);
  border-radius: 6px;
  padding: 1px 6px;
}
.gmail-callout p {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 10px 0 0;
}
.gmail-callout h3 {
  font-size: 15px;
}

/* Showcase grid */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  align-items: start;
}

/* FAQ */
.faq-card {
  padding: 6px 22px 10px;
}
.faq-card details {
  border-bottom: 1px solid var(--surface);
  padding: 18px 0;
}
.faq-card details:last-of-type {
  border-bottom: none;
}
.faq-card summary {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.faq-card summary::-webkit-details-marker {
  display: none;
}
.faq-card summary::before {
  content: "+";
  color: var(--primary);
  font-weight: 700;
  width: 14px;
  flex: none;
}
.faq-card details[open] > summary::before {
  content: "\2212";
}
.faq-card details p {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 12px 0 0 24px;
}

/* CTA band */
.cta-band {
  text-align: center;
  padding: 52px 32px;
}
.cta-band h2 {
  margin-bottom: 10px;
}
.cta-band p {
  color: var(--text-secondary);
  font-weight: 500;
  margin: 0 0 8px;
}

/* Builder note */
.builder-card {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 30px;
}
.builder-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--surface-accent);
}
.builder-note {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 10px;
}
.builder-byline {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-tertiary);
  margin: 0 0 16px;
}
.builder-byline a {
  color: var(--text-secondary);
}
.builder-byline a:hover {
  color: var(--text);
}
.builder-more {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  margin: 0;
}
.builder-more a {
  color: var(--primary);
}
@media (max-width: 640px) {
  .builder-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 44px 0 32px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 14px;
}
.footer-brand img {
  width: 26px;
  height: 26px;
  border-radius: 7px;
}
.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}
.footer-links a:hover {
  color: var(--text);
}
.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--surface);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.02em;
  color: var(--text-tertiary);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* Legal pages */
.legal-head {
  padding: 120px 0 36px;
  border-bottom: 1px solid var(--border);
}
.legal-head h1 {
  font-size: 30px;
  margin-bottom: 8px;
}
.legal-meta {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--text-tertiary);
}
.legal-body {
  padding: 52px 0 100px;
  max-width: 720px;
}
.legal-body h2 {
  font-size: 17px;
  margin: 38px 0 12px;
}
.legal-body h2:first-child {
  margin-top: 0;
}
.legal-body p,
.legal-body li {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.75;
}
.legal-body ul {
  padding-left: 20px;
}
.legal-body li {
  margin-bottom: 8px;
}
.legal-body strong {
  color: var(--text);
}
.legal-body a {
  color: var(--primary);
}
.legal-body code {
  font-size: 13px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 5px;
}
.callout {
  margin: 24px 0;
  padding: 16px 18px;
  border-left: 3px solid var(--primary);
}
.callout p {
  margin: 0;
  color: var(--text);
  font-size: 13.5px;
}
.toc {
  margin-bottom: 8px;
  padding: 18px 20px;
}
.toc div {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--text-tertiary);
  margin-bottom: 10px;
}
.toc ol {
  margin: 0;
  padding-left: 18px;
  font-size: 13.5px;
}
.toc li {
  margin-bottom: 6px;
}
.toc a {
  color: var(--text-secondary);
}
.toc a:hover {
  color: var(--primary);
}

@media (max-width: 900px) {
  .flow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 860px) {
  .nav-links {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .security-grid {
    grid-template-columns: 1fr;
  }
  .showcase-grid {
    grid-template-columns: 1fr;
  }
  h1 {
    font-size: 32px;
  }
  .phone {
    margin-top: 12px;
  }
}
@media (max-width: 560px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .flow-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    flex-direction: column;
  }
}
