/* ===========================================================
   AMNA — Modern fintech aesthetic
   Reference: Mercury, Linear, Ramp, Stripe, Vercel
   Sharp sans-serif, clean whites, restrained accent, generous whitespace
   =========================================================== */

:root {
  /* Surfaces — crisp white-on-near-white */
  --bg: #ffffff;
  --bg-2: #fafaf9;
  --bg-3: #f4f4f2;
  --surface: #ffffff;
  --ink: #0a0a0a;
  --ink-2: #404040;
  --ink-3: #737373;
  --ink-4: #a3a3a3;
  --line: #ededeb;
  --line-2: #d4d4d2;

  /* Accent — single brand color, sharp blue (matches Amna logo) */
  --accent: #2540e8;
  --accent-2: #1a2eb8;
  --accent-tint: #eef0ff;
  --accent-soft: #d7dcff;

  /* States */
  --pos: #16a34a;
  --neg: #dc2626;
  --warn: #ea580c;
  --pos-tint: #ecfdf5;
  --neg-tint: #fef2f2;
  --warn-tint: #fff7ed;

  /* Type — modern grotesk + mono for labels */
  --sans: "Geist", "Inter Tight", "Inter", system-ui, -apple-system, sans-serif;
  --mono: "Geist Mono", "JetBrains Mono", ui-monospace, monospace;
  --arabic: "IBM Plex Sans Arabic", "Noto Kufi Arabic", system-ui;

  /* Layout */
  --container: 1240px;
  --container-narrow: 1080px;
  --pad-x: clamp(24px, 5vw, 56px);
  --radius: 8px;
  --radius-sm: 6px;
  --radius-lg: 14px;
}

* { box-sizing: border-box; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.005em;
  font-feature-settings: "ss01", "cv11", "kern", "calt";
}

/* ========== Layout primitives ========== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad-x); }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--pad-x); }

/* ========== Typography — sharp grotesk, tight tracking ========== */

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--sans);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(44px, 6.5vw, 80px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.04em;
}
h1 em {
  font-style: normal;
  color: var(--accent);
  font-weight: 600;
}

h2 {
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.035em;
}
h2 em {
  font-style: normal;
  color: var(--accent);
  font-weight: 600;
}

h3 {
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.015em;
}

p { margin: 0; color: var(--ink-2); }

.lede {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--ink-2);
  font-weight: 400;
  letter-spacing: -0.005em;
  max-width: 56ch;
}

.mono {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0;
  color: var(--ink-3);
  font-weight: 400;
}
.mono-caps {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}

a { color: var(--accent); text-decoration: none; transition: color .15s; }
a:hover { color: var(--accent-2); }

/* ========== Section eyebrow ========== */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--accent);
  margin-bottom: 16px;
}
.eyebrow .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 4px;
  background: var(--accent-tint);
  color: var(--accent);
  font-size: 10px;
  font-weight: 600;
}

/* ========== Buttons — clean, modern ========== */

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line-2);
  background: white;
  color: var(--ink);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -0.005em;
  transition: all .15s ease;
}
.btn:hover {
  background: var(--bg-2);
  border-color: var(--ink-3);
}
.btn-primary {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.btn-primary:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
}
.btn-accent {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
}
.btn-ghost {
  background: transparent;
  border-color: transparent;
  padding-left: 12px;
  padding-right: 12px;
}
.btn-ghost:hover {
  background: var(--bg-2);
  border-color: transparent;
}
.btn-lg {
  padding: 12px 22px;
  font-size: 15px;
  border-radius: var(--radius);
}
.btn .arrow {
  font-size: 14px;
  transition: transform .15s;
}
.btn:hover .arrow { transform: translateX(2px); }

/* ========== Pills / badges ========== */

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 99px;
  background: var(--bg-2);
  color: var(--ink-2);
  border: 1px solid var(--line);
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.pill.accent {
  color: var(--accent);
  background: var(--accent-tint);
  border-color: var(--accent-soft);
}
.pill.pos {
  color: var(--pos);
  background: var(--pos-tint);
  border-color: #bbf7d0;
}
.pill.neg {
  color: var(--neg);
  background: var(--neg-tint);
  border-color: #fecaca;
}
.pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: currentColor;
}
.pill.live .dot {
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
  background: var(--pos);
}

/* ========== Nav ========== */

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  padding: 14px 0;
  gap: 36px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}
.nav-logo .logo-img {
  height: 26px;
  width: auto;
  display: block;
}
footer.foot .nav-logo .logo-img {
  height: 22px;
}
.nav-items {
  display: flex;
  gap: 28px;
  margin-left: 8px;
  flex: 1;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-cta .lang {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0;
  cursor: pointer;
}
.lang-link {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-2);
  padding: 8px 13px;
  border: 1px solid var(--line-2);
  border-radius: 8px;
  transition: border-color .15s, color .15s;
}
.lang-link:hover {
  border-color: var(--ink-3);
  color: var(--ink);
}

/* ========== Section base ========== */

section {
  padding: clamp(80px, 9vw, 120px) 0;
  position: relative;
}
section.compact {
  padding: clamp(60px, 7vw, 90px) 0;
}

/* ========== HERO ========== */

.hero {
  padding-top: clamp(60px, 8vw, 100px);
  padding-bottom: clamp(60px, 9vw, 100px);
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
  overflow: visible;
}

/* subtle gradient orb */
.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-tint) 0%, transparent 65%);
  z-index: 0;
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 560px;
}
.hero-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.hero .lede {
  max-width: 520px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  gap: 8px 24px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-3);
}
.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-trust-item .check {
  width: 14px;
  height: 14px;
  color: var(--pos);
}

/* Hero visual — clean device frame */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.phone {
  width: 260px;
  position: relative;
  background: #1a1a1a;
  border-radius: 36px;
  padding: 8px;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.04),
    0 30px 60px -15px rgba(0,0,0,0.18);
  flex-shrink: 0;
}
.phone .screen {
  background: white;
  border-radius: 28px;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}
.phone-notch {
  width: 90px;
  height: 22px;
  background: #1a1a1a;
  border-radius: 0 0 14px 14px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.phone.muted {
  transform: rotate(-3deg) translateY(20px);
}
.phone.muted .screen {
  filter: grayscale(0.4) brightness(0.98);
}
.phone.featured {
  transform: rotate(2deg);
  z-index: 2;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.04),
    0 30px 80px -10px rgba(37, 99, 235, 0.25);
}

/* Phone screen content — clean ecommerce */
.psc-top {
  display: flex; justify-content: space-between;
  padding: 14px 18px 4px;
  font-family: var(--mono); font-size: 10px; color: var(--ink-3);
  height: 32px;
}
.psc-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px 12px;
  border-bottom: 1px solid var(--line);
}
.psc-brand {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.psc-icons { display: flex; gap: 8px; opacity: .4; }
.psc-icons svg { width: 13px; height: 13px; }

.psc-hero-img {
  width: 100%;
  height: 150px;
  background: linear-gradient(135deg, #d4d4d2 0%, #a3a3a3 100%);
  position: relative;
}
.psc-hero-img.alt {
  background: linear-gradient(135deg, var(--accent-tint) 0%, #c7d8fb 100%);
}

.psc-body {
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.psc-prod-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.psc-prod-sub {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: 0.02em;
}
.psc-price {
  font-size: 19px;
  font-weight: 700;
  margin-top: 4px;
  letter-spacing: -0.02em;
}
.psc-price .strike {
  text-decoration: line-through;
  color: var(--ink-3);
  font-size: 12px;
  margin-left: 6px;
  font-weight: 400;
}

.psc-rtl { direction: rtl; text-align: right; font-family: var(--arabic); }
.psc-rtl .psc-prod-name { font-family: var(--arabic); }

.psc-pay {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px;
  color: var(--ink-3);
  margin-top: 4px;
}
.psc-pay .logos { display: flex; gap: 4px; margin-left: auto; }
.psc-rtl .psc-pay .logos { margin-left: 0; margin-right: auto; }
.psc-pay .logos span {
  background: var(--bg-3);
  border-radius: 4px;
  padding: 2px 6px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  color: var(--ink);
}

.psc-cta {
  margin-top: auto;
  padding: 10px;
  background: var(--ink);
  color: white;
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.psc-cta.accent {
  background: var(--accent);
}

/* Checkout screen layout (hero phones) */
.psc-checkout {
  padding: 12px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.psc-checkout.psc-rtl .psc-row,
.psc-checkout.psc-rtl .psc-line,
.psc-checkout.psc-rtl .psc-pay-section {
  direction: rtl;
}
.psc-line {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.psc-line-name {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
}
.psc-line-sub {
  font-family: var(--mono);
  font-size: 9.5px;
  color: var(--ink-3);
  margin-top: 2px;
  letter-spacing: 0.02em;
}
.psc-line-amt {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.psc-totals {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.psc-row {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--ink-3);
}
.psc-row.warn { color: var(--warn); font-weight: 500; }
.psc-row.ok { color: var(--pos); font-weight: 500; }
.psc-row.total {
  border-top: 1px solid var(--line);
  padding-top: 6px;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}
.psc-pay-section {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 2px;
}
.psc-pay-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  text-transform: uppercase;
}
.psc-pay-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.psc-pay-grid.one {
  grid-template-columns: 1fr;
}
.psc-pay-method {
  padding: 5px 7px;
  font-size: 10px;
  font-weight: 500;
  border: 1px solid var(--line-2);
  border-radius: 4px;
  background: white;
  text-align: center;
  color: var(--ink-2);
}
.psc-pay-method.selected {
  border-color: var(--accent);
  background: var(--accent-tint);
  color: var(--accent);
  font-weight: 600;
}
.phone.muted .psc-pay-method.selected {
  border-color: var(--line-2);
  background: var(--bg-2);
  color: var(--ink);
}

.psc-warn {
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 4px;
  margin-top: 4px;
  text-align: center;
  font-weight: 500;
}
.psc-warn.neg {
  color: var(--neg);
  background: var(--neg-tint);
}
.psc-warn.ok {
  color: var(--pos);
  background: var(--pos-tint);
}

.phone-tag {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}

/* ========== Logo strip / opportunity stats ========== */

.stats {
  padding: 80px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-head {
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}
.stats-head .lede { padding-bottom: 6px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat-cell {
  background: var(--bg-2);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat-cell .label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.stat-cell .v {
  font-family: var(--sans);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-top: 4px;
}
.stat-cell .v em {
  font-style: normal;
  color: var(--accent);
}
.stat-cell .l {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.4;
  max-width: 240px;
}

/* ========== Comparison table — Mercury-style clean ========== */

.cmp-head {
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}
.cmp-head .lede { padding-bottom: 6px; }

.cmp-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
table.cmp { width: 100%; border-collapse: collapse; }
.cmp th, .cmp td {
  padding: 18px 22px;
  text-align: left;
  vertical-align: middle;
  font-size: 14.5px;
}
.cmp thead th {
  background: var(--bg-2);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
  padding: 14px 22px;
}
.cmp thead th.amna-col {
  background: var(--accent);
  color: white;
  border-bottom-color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  text-transform: none;
  letter-spacing: -0.005em;
}
.cmp tbody tr { border-bottom: 1px solid var(--line); }
.cmp tbody tr:last-child { border-bottom: none; }
.cmp tbody td:first-child {
  font-weight: 500;
  color: var(--ink);
  width: 30%;
}
.cmp tbody td {
  color: var(--ink-2);
}
.cmp td.amna-col {
  background: var(--accent-tint);
  color: var(--ink);
  font-weight: 500;
}
.cmp .cell {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cmp .cell svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.cmp-foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.cmp-foot-cell {
  padding: 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.cmp-foot-cell.accent {
  background: var(--accent-tint);
  border-color: var(--accent-soft);
}
.cmp-foot-cell .pill {
  margin-bottom: 10px;
}
.cmp-foot-cell p {
  font-size: 14px;
  line-height: 1.5;
}

/* ========== Compliance grid ========== */

.compl-head {
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}
.compl-head .lede { padding-bottom: 6px; }

.compl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.compl-card {
  padding: 26px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all .2s;
}
.compl-card:hover {
  border-color: var(--accent-soft);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -12px rgba(0,0,0,0.08);
}
.compl-card .icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--accent-tint);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.compl-card h4 {
  font-size: 17px;
  font-weight: 600;
}
.compl-card p {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.5;
}

/* ========== Buyer experience trio ========== */

.buyer-head {
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}

.buyer-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.buyer-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.buyer-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.buyer-card-head h4 {
  font-size: 16px;
  font-weight: 600;
}
.buyer-screen {
  height: 220px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-3);
  margin-bottom: 16px;
}
.buyer-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink-2);
}
.buyer-list-item {
  display: flex;
  gap: 8px;
  align-items: center;
}
.buyer-list-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* ========== Customer ownership split ========== */

.split-head {
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}
.split-head .lede { padding-bottom: 6px; }

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: white;
  overflow: hidden;
  position: relative;
}
.split-grid::before {
  content: "";
  position: absolute;
  left: 50%; top: 32px; bottom: 32px;
  width: 1px;
  background: var(--line);
}
.split-card {
  padding: 36px 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.split-card .who {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}
.split-card .who .badge {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  padding: 3px 10px;
  border-radius: 99px;
  color: white;
  text-transform: none;
  letter-spacing: -0.005em;
}
.split-card .who .badge.amna { background: var(--accent); }
.split-card .who .badge.brand { background: var(--ink); }
.split-card h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-top: 4px;
}
.split-card h3 em {
  color: var(--accent);
  font-style: normal;
}
.split-card.brand h3 em {
  color: var(--ink);
}
.split-card .desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-3);
}
.split-card ul {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.split-card ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.4;
}
.split-card ul li svg {
  flex-shrink: 0;
  margin-top: 3px;
}
.split-card .footnote {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 12.5px;
  color: var(--ink-3);
  letter-spacing: -0.005em;
}
.split-card .footnote svg {
  flex-shrink: 0;
  color: var(--accent);
}
.split-card.brand .footnote svg {
  color: var(--ink);
}

@media (max-width: 1024px) {
  .split-head { grid-template-columns: 1fr; gap: 24px; }
  .split-grid { grid-template-columns: 1fr; }
  .split-grid::before { display: none; }
  .split-card { border-bottom: 1px solid var(--line); }
  .split-card:last-child { border-bottom: none; }
}


/* ========== Payouts band ========== */

.payouts-band {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.payouts-head {
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}
.payouts-head .lede { padding-bottom: 6px; }

.payouts-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: white;
  overflow: hidden;
}
.payouts-col {
  padding: 32px 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.payouts-col.typical { border-right: 1px solid var(--line); }
.payouts-col.amna { background: var(--ink); color: white; }
.payouts-col-head {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.payouts-col.amna .payouts-col-head {
  color: rgba(255,255,255,0.6);
  border-bottom-color: rgba(255,255,255,0.15);
}
.payouts-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.payouts-stat .v {
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink-3);
}
.payouts-col.amna .payouts-stat .v {
  color: white;
}
.payouts-stat .v em {
  font-style: normal;
  color: #8eb1fa;
}
.payouts-stat .l {
  font-size: 14px;
  color: var(--ink-3);
}
.payouts-col.amna .payouts-stat .l {
  color: rgba(255,255,255,0.7);
}

@media (max-width: 1024px) {
  .payouts-head { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 640px) {
  .payouts-compare { grid-template-columns: 1fr; }
  .payouts-col.typical { border-right: none; border-bottom: 1px solid var(--line); }
}

.founders {
  text-align: center;
  padding: clamp(80px, 9vw, 110px) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.founders .container { max-width: 720px; }
.founders h2 { margin: 14px 0 0; }
.founders p {
  margin-top: 20px;
  font-size: 17px;
  color: var(--ink-2);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== Signup band — clean dark CTA ========== */

.signup-band {
  background: var(--ink);
  color: white;
  padding: clamp(80px, 10vw, 120px) 0;
  position: relative;
  overflow: hidden;
}
.signup-band::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.18) 0%, transparent 60%);
  z-index: 0;
}
.signup-band .container { position: relative; z-index: 1; }
.signup-band h2 { color: white; }
.signup-band h2 em { color: #8eb1fa; }
.signup-band p { color: rgba(255, 255, 255, 0.72); }
.signup-band .eyebrow { color: #8eb1fa; }
.signup-band .eyebrow .num { background: rgba(37, 99, 235, 0.2); color: #8eb1fa; }

.signup-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.signup-bullets {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}
.signup-bullet {
  display: flex;
  gap: 12px;
  align-items: center;
}
.signup-bullet svg {
  color: #8eb1fa;
  flex-shrink: 0;
}
.signup-bullet span {
  color: white;
  font-size: 15.5px;
}

.signup-form {
  background: white;
  color: var(--ink);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -15px rgba(0,0,0,0.4);
}
.signup-form h3 {
  font-size: 22px;
  margin-bottom: 4px;
}
.signup-form .form-sub {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-3);
  margin-bottom: 24px;
}
.form-grid { display: grid; gap: 16px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field label {
  display: block;
  font-size: 12.5px;
  color: var(--ink-2);
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 10px 12px;
  font-family: var(--sans);
  font-size: 14.5px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  background: white;
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-tint);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--ink-4); }
.field textarea {
  resize: vertical;
  min-height: 70px;
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23737373' stroke-width='1.4' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 10px 7px;
  padding-right: 32px;
  cursor: pointer;
}
.form-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  gap: 16px;
  flex-wrap: wrap;
}
.form-foot .mono {
  color: var(--ink-3);
  font-size: 11px;
}

/* Checkbox grid (logistics) */
.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin-top: 4px;
}
.field .checkbox {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 13px;
  line-height: 1.2;
  color: var(--ink-2);
  cursor: pointer;
  user-select: none;
  margin-bottom: 0;
}
.checkbox span { padding-top: 1px; }
.checkbox input {
  appearance: none;
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  padding: 0;
  margin: 0;
  border: 1px solid var(--line-2);
  border-radius: 3px;
  background: white;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition: border-color .12s, background .12s;
}
.checkbox input:checked {
  background: var(--accent);
  border-color: var(--accent);
}
.checkbox input:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 3px;
  height: 7px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.checkbox input:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--accent-tint);
}

/* ========== Footer ========== */

footer.foot {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  background: white;
}
.foot-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.foot-links {
  display: flex;
  gap: 24px;
}
.foot-links a {
  color: var(--ink-3);
  font-size: 14px;
}
.foot-links a:hover {
  color: var(--ink);
}
.foot-meta {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--ink-3);
}

/* ========== Reveal animation ========== */

[data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Responsive ========== */

@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { transform: scale(0.92); }
  .stats-head, .cmp-head, .compl-head, .buyer-head { grid-template-columns: 1fr; gap: 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .compl-grid { grid-template-columns: repeat(2, 1fr); }
  .buyer-trio { grid-template-columns: 1fr; }
  .cmp-foot { grid-template-columns: 1fr; }
  .signup-grid { grid-template-columns: 1fr; gap: 40px; }
  .nav-items { display: none; }
}

@media (max-width: 640px) {
  body { font-size: 15px; }
  section { padding: 56px 0; }
  .stats-grid { grid-template-columns: 1fr; }
  .compl-grid { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr; }
  /* Hero phones — stack vertically, kill rotations, fit width */
  .hero-visual {
    flex-direction: column;
    gap: 36px;
    transform: none;
    align-items: center;
    width: 100%;
  }
  .phone {
    width: 100%;
    max-width: 280px;
    transform: none !important;
  }
  .phone.muted,
  .phone.featured {
    transform: none !important;
  }
  .phone .screen { min-height: 440px; }
  .phone-tag {
    position: static;
    transform: none;
    margin-bottom: 8px;
    align-self: center;
  }
  /* Comparison: stack as cards on mobile */
  .cmp thead { display: none; }
  .cmp, .cmp tbody, .cmp tr, .cmp td { display: block; width: 100%; }
  .cmp tr {
    border-bottom: 1px solid var(--line);
    padding: 14px 18px;
  }
  .cmp tr:last-child { border-bottom: none; }
  .cmp td {
    padding: 6px 0;
    display: flex;
    justify-content: space-between;
    gap: 12px;
  }
  .cmp tbody td:first-child {
    width: auto;
    font-weight: 600;
    border-bottom: 1px solid var(--line);
    padding-bottom: 8px;
    margin-bottom: 4px;
  }
  .cmp td:not(:first-child)::before {
    content: attr(data-col);
    font-family: var(--mono);
    font-size: 11px;
    color: var(--ink-3);
  }
  .cmp td.amna-col {
    background: var(--accent-tint);
    padding: 8px 12px;
    border-radius: 6px;
    margin: 4px 0;
  }
  .signup-form { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
}
