/* ===== BASE ===== */
:root {
  --bg: #0C0C10;
  --bg-card: #14141C;
  --bg-card-hover: #1A1A24;
  --border: #2A2A38;
  --text: #F0EEE8;
  --text-muted: #8A8A9A;
  --accent: #F5A623;
  --accent-dim: rgba(245, 166, 35, 0.12);
  --green: #22C55E;
  --green-dim: rgba(34, 197, 94, 0.15);
  --red: #EF4444;
  --red-dim: rgba(239, 68, 68, 0.15);
  --radius: 10px;
  --radius-lg: 18px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 12, 16, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.3px;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 24px 90px;
}
.hero-content {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 22px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 28px;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}

/* Hero visual — phone */
.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
  padding: 20px;
}
.phone-frame {
  width: 220px;
  background: #1A1A24;
  border-radius: 34px;
  padding: 14px 10px 10px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 30px 60px rgba(0,0,0,0.5);
  position: relative;
  z-index: 2;
}
.phone-screen {
  border-radius: 26px;
  background: #0C0C10;
  overflow: hidden;
  height: 380px;
  position: relative;
}
.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 22px;
  background: #1A1A24;
  border-radius: 0 0 14px 14px;
  z-index: 3;
}
.phone-home {
  width: 36px;
  height: 5px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
  margin: 10px auto 0;
}

/* Check screen */
.screen-check {
  padding: 32px 20px 20px;
  animation: fade-in 0.3s ease;
}
.check-header { margin-bottom: 16px; }
.check-label { font-size: 9px; color: var(--text-muted); letter-spacing: 0.08em; display: block; margin-bottom: 4px; }
.check-name { font-size: 15px; font-weight: 600; }
.check-amount-row { display: flex; align-items: flex-start; gap: 2px; margin-bottom: 16px; }
.check-dollar { font-size: 24px; font-weight: 300; color: var(--accent); line-height: 1; margin-top: 4px; }
.check-amount { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 700; color: var(--text); line-height: 1; }
.check-memo { margin-bottom: 14px; }
.check-memo-text { font-size: 12px; color: var(--text-muted); }
.check-routing { font-size: 11px; color: var(--text-muted); letter-spacing: 2px; }

/* Processing badge */
.processing-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 20px;
  padding: 8px 14px;
  margin: 0 20px;
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
}
.processing-spinner {
  width: 12px;
  height: 12px;
  border: 2px solid rgba(245,166,35,0.3);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Success screen */
.screen-success {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #0C0C10;
  animation: slide-up 0.4s ease;
}
@keyframes slide-up {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.success-icon { margin-bottom: 16px; }
.success-amount {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 6px;
}
.success-label { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.success-time {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--accent);
  font-weight: 500;
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Floating cards */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  z-index: 3;
}
.float-card-1 {
  right: -30px;
  top: 40px;
  animation: float-1 3s ease-in-out infinite;
}
.float-card-2 {
  left: -30px;
  bottom: 60px;
  animation: float-2 3s ease-in-out infinite 0.5s;
}
@keyframes float-1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes float-2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
.float-card-title { font-size: 12px; font-weight: 600; }
.float-card-sub { font-size: 10px; color: var(--text-muted); }

/* Hero geo shapes */
.hero-geo {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-geo-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}
.hero-geo-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245,166,35,0.05) 0%, transparent 70%);
  bottom: -50px;
  left: 200px;
}
.hero-geo-3 {
  width: 120px;
  height: 120px;
  border: 1px solid rgba(245,166,35,0.15);
  top: 120px;
  left: 30px;
  background: transparent;
}

/* ===== STATSBAR ===== */
.statsbar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.statsbar-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.1;
}
.stat-label { font-size: 11px; color: var(--text-muted); margin-top: 4px; max-width: 160px; }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

/* ===== FEATURES ===== */
.features {
  max-width: 1140px;
  margin: 0 auto;
  padding: 100px 24px;
}
.features-header { margin-bottom: 60px; }
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.feature-card {
  background: var(--bg-card);
  padding: 36px 32px;
  transition: background 0.2s;
}
.feature-card:hover { background: var(--bg-card-hover); }
.feature-card-primary {
  grid-column: span 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 40px;
  align-items: start;
}
.feature-icon { margin-bottom: 20px; }
.feature-card-primary .feature-icon { margin-bottom: 0; margin-top: 4px; }
.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.feature-detail span {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ===== PRICING ===== */
.pricing {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px 100px;
}
.pricing-header { margin-bottom: 48px; }
.pricing-sub { font-size: 16px; color: var(--text-muted); margin-top: 12px; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 760px;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.pricing-card-us {
  border-color: rgba(245,166,35,0.4);
  background: linear-gradient(135deg, #14141C 0%, rgba(245,166,35,0.04) 100%);
}
.pricing-card-header { margin-bottom: 24px; }
.competitor-name, .our-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}
.competitor-tag, .our-tag { font-size: 12px; color: var(--text-muted); }
.pricing-rate { margin-bottom: 16px; }
.rate-amount {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
}
.pricing-card-other .rate-amount { color: var(--red); }
.pricing-card-us .rate-amount { color: var(--green); }
.rate-label { font-size: 13px; color: var(--text-muted); }
.pricing-example { margin-bottom: 28px; padding: 14px; background: rgba(255,255,255,0.03); border-radius: 8px; }
.example-calc { display: flex; flex-direction: column; gap: 4px; }
.example-calc span { font-size: 12px; color: var(--text-muted); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}
.pricing-feature-hit { color: var(--text); }

/* ===== HOW IT WORKS ===== */
.howitworks {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px 100px;
}
.howitworks-header { margin-bottom: 56px; }
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 800;
  color: rgba(245,166,35,0.15);
  line-height: 1;
  margin-bottom: 16px;
}
.step-icon { margin-bottom: 16px; }
.step h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}
.step p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }
.step-connector {
  display: flex;
  align-items: center;
  padding: 0 8px;
  padding-top: 50px;
}

/* ===== CLOSING ===== */
.closing {
  border-top: 1px solid var(--border);
  padding: 100px 24px;
  text-align: center;
}
.closing-inner { max-width: 680px; margin: 0 auto; }
.closing-rule {
  width: 40px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 0 auto 40px;
}
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.closing-headline em { font-style: italic; color: var(--accent); }
.closing-sub { font-size: 16px; color: var(--text-muted); line-height: 1.65; margin-bottom: 40px; }
.closing-footer { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.closing-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
}
.closing-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}
.closing-note { font-size: 12px; color: var(--text-muted); }

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 24px;
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}
.footer-links { font-size: 13px; color: var(--text-muted); }
.footer-copy { font-size: 12px; color: var(--text-muted); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card-primary { grid-column: span 1; grid-template-columns: auto 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; }
  .step-connector { transform: rotate(90deg); padding: 0; align-self: center; }
  .statsbar-inner { flex-direction: column; gap: 16px; }
  .stat-divider { display: none; }
  .nav-links { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero { padding: 48px 16px 64px; }
  .features { padding: 60px 16px; }
  .pricing, .howitworks { padding: 0 16px 60px; }
  .closing { padding: 60px 16px; }
  .pricing-card { padding: 24px; }
  .step { padding: 24px; }
}