:root {
  --ink: #12141a;
  --ink-2: #1c1f27;
  --paper: #f3eee4;
  --paper-2: #e8e0d2;
  --cream: #faf6ef;
  --now: #e24a12;
  --now-deep: #b8340a;
  --sage: #2c6b5c;
  --gold: #c4921a;
  --muted: #6b665c;
  --line: rgba(18, 20, 26, 0.12);
  --shadow: 0 30px 60px -28px rgba(18, 20, 26, 0.45);
  --sans: "Outfit", system-ui, sans-serif;
  --serif: "Fraunces", Georgia, serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  overflow-x: hidden;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.7rem 1.15rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn.solid { background: var(--ink); color: var(--cream); }
.btn.solid:hover { background: #000; }
.btn.ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn.ghost:hover { background: rgba(18,20,26,0.04); }
.btn.lg { padding: 0.9rem 1.4rem; font-size: 1.02rem; }
.btn.invert { background: var(--cream); color: var(--ink); }

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.5rem;
  background: rgba(243, 238, 228, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.logo { display: flex; align-items: center; gap: 0.6rem; font-weight: 600; }
.logo-mark {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  background: var(--ink); color: var(--paper);
  border-radius: 8px;
  font-family: var(--serif);
  font-weight: 700;
}
.logo-mark.sm { width: 26px; height: 26px; font-size: 0.85rem; }
.logo-word { letter-spacing: -0.02em; }
.nav-links { display: flex; gap: 1.35rem; font-size: 0.92rem; color: var(--muted); }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; gap: 0.5rem; }
.menu-btn {
  display: none;
  width: 40px; height: 40px;
  border: 0; background: transparent;
  flex-direction: column; justify-content: center; gap: 6px;
}
.menu-btn span { display: block; height: 2px; width: 18px; background: var(--ink); }
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 1.5rem 1.25rem;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.mobile-nav.open { display: flex; }

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
  padding: 5.5rem 6vw 4.5rem;
  max-width: 1280px;
  margin: 0 auto;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--now-deep);
  margin-bottom: 1rem;
}
.eyebrow.light { color: #f0b59a; }
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--now);
  box-shadow: 0 0 0 0 rgba(226, 74, 18, 0.6);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 8px rgba(226, 74, 18, 0); }
}
h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5.4vw, 4.6rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin-bottom: 1.15rem;
}
h1 em { font-style: italic; color: var(--now); }
.lede {
  font-size: 1.12rem;
  color: #3a372f;
  max-width: 36rem;
  margin-bottom: 1.6rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
  list-style: none;
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 0.86rem;
}
.trust-row li { position: relative; padding-left: 0.9rem; }
.trust-row li::before {
  content: "";
  position: absolute; left: 0; top: 0.45em;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--sage);
}

.hero-stage { position: relative; min-height: 540px; }
.phone {
  width: 280px;
  margin-left: auto;
  background: #0e1014;
  border-radius: 36px;
  padding: 12px;
  box-shadow: var(--shadow);
  border: 1px solid #2a2e38;
  transform: rotate(3deg);
}
.phone-notch {
  width: 92px; height: 10px;
  background: #1a1d24;
  border-radius: 0 0 10px 10px;
  margin: 0 auto 10px;
}
.phone-screen {
  background: #171a21;
  color: #efe8dc;
  border-radius: 26px;
  padding: 16px;
  min-height: 460px;
}
.app-bar {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.75rem; color: #b7b1a6; margin-bottom: 14px;
}
.pill.now {
  background: var(--now);
  color: white;
  border-radius: 999px;
  padding: 0.15rem 0.5rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 0.64rem;
}
.list-card {
  background: #232833;
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 12px;
}
.list-card h3 { font-size: 0.95rem; margin-bottom: 8px; font-weight: 600; }
.list-card ul { list-style: none; font-size: 0.86rem; color: #d7d0c4; }
.list-card li { display: flex; gap: 8px; align-items: center; padding: 5px 0; }
.list-card li span {
  width: 12px; height: 12px; border-radius: 3px;
  border: 1px solid #6d675c;
}
.list-card li.hit { color: #f3c9b4; }
.list-card li.hit span { background: var(--now); border-color: var(--now); }
.offer-stack { display: grid; gap: 8px; }
.offer {
  background: linear-gradient(180deg, #2a211c, #1d1916);
  border: 1px solid rgba(226, 74, 18, 0.35);
  border-radius: 14px;
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 10px;
}
.offer.dim { opacity: 0.72; border-color: #333; background: #1c2028; }
.offer strong { display: block; font-size: 0.88rem; }
.offer small { color: #c9b8ab; font-size: 0.72rem; }
.offer .pct {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: #ff8a4c;
  grid-row: span 2;
  align-self: center;
}
.offer p { grid-column: 1; font-size: 0.72rem; color: #a59c91; }

.float-card {
  position: absolute;
  left: 0; bottom: 48px;
  width: 220px;
  height: 138px;
  border-radius: 16px;
  padding: 16px;
  color: #efe8dc;
  background: linear-gradient(145deg, #2b2f38 0%, #12141a 60%, #3a2a22 140%);
  box-shadow: var(--shadow);
  transform: rotate(-11deg);
  border: 1px solid #444;
}
.chip {
  width: 32px; height: 24px; border-radius: 5px;
  background: linear-gradient(135deg, #d8c48a, #8a7a48);
  margin-bottom: 34px;
}
.card-brand { letter-spacing: 0.22em; font-size: 0.78rem; font-weight: 600; }
.card-meta {
  display: flex; justify-content: space-between;
  margin-top: 18px; font-size: 0.72rem; color: #c4bdb3;
}
.stamp {
  position: absolute;
  right: 18px; top: 18px;
  width: 92px; height: 92px;
  border: 3px solid var(--now);
  color: var(--now);
  border-radius: 50%;
  display: grid; place-items: center;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  transform: rotate(12deg);
  background: rgba(243, 238, 228, 0.85);
}

.strip {
  background: var(--ink);
  color: var(--paper);
  padding: 1.6rem 6vw;
}
.strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.strip p { color: #cfc6b8; max-width: 22rem; }
.tiers { display: flex; gap: 0.7rem; }
.tier {
  min-width: 120px;
  padding: 0.85rem 1rem;
  border: 1px solid #333;
  border-radius: 14px;
  text-align: center;
  background: #1a1d24;
}
.tier.featured { border-color: var(--now); background: #2a1c16; }
.tier-pct { display: block; font-family: var(--serif); font-size: 2rem; }
.tier-rule { font-size: 0.8rem; color: #b7b1a6; }

.section { padding: 5.5rem 6vw; max-width: 1180px; margin: 0 auto; position: relative; z-index: 1; }
.section-head { margin-bottom: 2.4rem; max-width: 40rem; }
h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
}
.sub { margin-top: 0.8rem; color: var(--muted); font-size: 1.05rem; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.step {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.4rem;
}
.step .n {
  font-family: var(--serif);
  color: var(--now);
  font-size: 1.2rem;
}
.step h3 { margin: 0.7rem 0 0.45rem; font-size: 1.15rem; }
.step p { color: #4a463d; font-size: 0.98rem; }

.demo-wrap { padding: 0 6vw 5.5rem; max-width: 1180px; margin: 0 auto; }
.demo {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.4rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.4rem;
}
.field-label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.45rem;
}
textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0.9rem 1rem;
  resize: vertical;
  min-height: 160px;
}
.demo-actions { display: flex; gap: 0.5rem; margin-top: 0.8rem; }
.fine { margin-top: 0.7rem; font-size: 0.82rem; color: var(--muted); }
.results { display: grid; gap: 0.7rem; min-height: 220px; }
.results.empty {
  place-items: center;
  text-align: center;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: 16px;
  padding: 1.5rem;
}
.merchant {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.25rem 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.95rem 1rem;
}
.merchant h4 { font-size: 1.02rem; }
.merchant .dist { color: var(--muted); font-size: 0.82rem; }
.merchant .rate {
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--now-deep);
}
.merchant .meta { grid-column: 1 / -1; font-size: 0.86rem; color: #4a463d; }
.match { color: var(--sage); font-weight: 600; }

.sale-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}
.sale-card {
  background: var(--ink);
  color: var(--paper);
  border-radius: 18px;
  padding: 1.15rem;
  min-height: 180px;
}
.sale-tag { font-size: 0.75rem; color: #f0b59a; margin-bottom: 1.1rem; }
.sale-card h3 { font-family: var(--serif); font-weight: 500; font-size: 1.35rem; margin-bottom: 0.45rem; }
.sale-card p { color: #cfc6b8; font-size: 0.92rem; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.split-pane { padding: 4.2rem 6vw; }
.split-pane.dark { background: var(--ink); color: var(--paper); }
.split-pane.paper { background: var(--paper-2); }
.split-pane h2 { margin-bottom: 0.9rem; }
.split-pane p { margin-bottom: 1.2rem; max-width: 34rem; }
.checks { list-style: none; margin-bottom: 1.6rem; }
.checks li { padding: 0.35rem 0 0.35rem 1.3rem; position: relative; }
.checks li::before { content: "→"; position: absolute; left: 0; color: var(--now); }
.dark-check li::before { color: var(--sage); }

.arch {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.arch article {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.25rem;
}
.arch h3 { margin-bottom: 0.45rem; font-size: 1.08rem; }
.arch p { color: #4a463d; font-size: 0.96rem; }
.privacy-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  background: #1c1f27;
  color: var(--paper);
  border-radius: 18px;
  padding: 1.3rem 1.4rem;
}
.privacy-bar p { color: #cfc6b8; margin-top: 0.3rem; }

.apply { padding: 2rem 6vw 5.5rem; }
.apply-card {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow);
}
.apply-form { display: grid; gap: 0.9rem; margin-top: 1.2rem; }
.apply-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.apply-form label { display: grid; gap: 0.35rem; font-size: 0.88rem; font-weight: 500; }
.apply-form input[type="text"],
.apply-form input[type="email"] {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  background: var(--cream);
}
fieldset { border: 0; display: flex; flex-wrap: wrap; gap: 1rem; }
legend { font-size: 0.88rem; font-weight: 500; margin-bottom: 0.35rem; }
.radio { display: flex; align-items: center; gap: 0.4rem; font-weight: 400; }

.foot {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  padding: 2.4rem 6vw 3rem;
  border-top: 1px solid var(--line);
  color: #4a463d;
  background: var(--paper-2);
}
.foot .muted { color: var(--muted); margin-top: 0.5rem; font-size: 0.86rem; }
.foot strong { display: inline-block; margin: 0 0.4rem; }

@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .menu-btn { display: flex; }
  .hero, .steps, .demo, .sale-grid, .split, .arch, .privacy-bar, .foot, .strip-inner, .apply-form .row {
    grid-template-columns: 1fr;
  }
  .hero { padding-top: 3rem; }
  .hero-stage { min-height: 480px; }
  .phone { margin: 0 auto; }
  .float-card { left: 8%; bottom: 20px; }
  .split-pane { padding: 3rem 6vw; }
  .tiers { width: 100%; }
  .tier { flex: 1; min-width: 0; }
}
