/* ===== FONTS ===== */
/* Fraunces for headings, DM Sans for body — warm serif meets clean sans-serif */

/* ===== TOKENS ===== */
:root {
  --bg: #F9F6EF;
  --surface: #FFFFFF;
  --teal: #0B4D4D;
  --teal-mid: #0D6060;
  --teal-light: #E8F4F4;
  --amber: #F59A0B;
  --amber-dark: #D97706;
  --text: #1A1A1A;
  --text-muted: #6B6B6B;
  --border: #E2DDD5;
}

/* ===== RESET ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  line-height: 1.15;
}
a { color: inherit; text-decoration: none; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(249, 246, 239, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: -0.5px;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--teal); }

/* ===== HERO ===== */
.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 80px 32px 72px;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.hero-headline {
  font-size: clamp(40px, 5vw, 60px);
  color: var(--teal);
  margin-bottom: 20px;
}
.hero-lede {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 36px;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 20px;
}
.proof-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.proof-number {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--teal);
}
.proof-label {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
  max-width: 120px;
}
.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Phone mockup */
.hero-visual {
  display: flex;
  justify-content: center;
}
.phone-frame {
  background: #1A1A1A;
  border-radius: 36px;
  padding: 14px;
  width: 240px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18), 0 4px 12px rgba(0,0,0,0.12);
}
.phone-screen {
  background: #FAFAFA;
  border-radius: 26px;
  overflow: hidden;
  padding: 16px 14px;
}
.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.phone-title {
  font-family: 'Fraunces', serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--teal);
}
.phone-status {
  font-size: 9px;
  font-weight: 600;
  color: #22c55e;
  background: #dcfce7;
  padding: 2px 7px;
  border-radius: 99px;
}
.phone-transactions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}
.tx {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 9px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #f0eeea;
}
.tx-in { background: #f0fdf4; border-color: #bbf7d0; }
.tx-out { background: #fff; }
.tx-auto { background: #fff8ec; border-color: #fde68a; }
.tx-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.tx-in .tx-icon { background: #22c55e; color: #fff; }
.tx-out .tx-icon { background: #ef4444; color: #fff; }
.tx-auto .tx-icon { background: var(--amber); color: #fff; }
.tx-detail { flex: 1; }
.tx-name { font-size: 9px; color: var(--text); font-weight: 500; display: block; }
.tx-amount { font-size: 10px; font-weight: 600; color: var(--text); }
.tx-time { font-size: 8px; color: var(--text-muted); }
.phone-summary {
  display: flex;
  gap: 10px;
}
.summary-item {
  flex: 1;
  background: var(--teal);
  border-radius: 10px;
  padding: 8px 10px;
}
.summary-label { font-size: 8px; color: rgba(255,255,255,0.7); display: block; }
.summary-value { font-size: 11px; font-weight: 700; color: #fff; }

/* ===== HOW IT WORKS ===== */
.how-it-works {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 32px;
}
.section-inner { max-width: 1120px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--teal);
  margin-bottom: 12px;
}
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.step-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.step-number {
  font-family: 'Fraunces', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--border);
  margin-bottom: 16px;
}
.step-icon { margin-bottom: 16px; }
.step-card h3 {
  font-size: 18px;
  color: var(--teal);
  margin-bottom: 10px;
}
.step-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ===== FEATURES ===== */
.features { padding: 80px 32px; }
.features-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}
.features-label h2 {
  font-size: clamp(24px, 3vw, 34px);
  color: var(--teal);
  position: sticky;
  top: 80px;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.feature-item {
  display: flex;
  gap: 16px;
}
.feature-icon {
  width: 36px;
  height: 36px;
  background: var(--teal-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-text h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.feature-text p { font-size: 13px; color: var(--text-muted); line-height: 1.55; }

/* ===== PRICING ===== */
.pricing {
  background: var(--teal);
  padding: 80px 32px;
}
.pricing .section-header h2 { color: #fff; }
.pricing .section-sub { color: rgba(255,255,255,0.7); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}
.pricing-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
}
.pricing-card-pro {
  background: rgba(255,255,255,0.14);
  border-color: var(--amber);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 99px;
  white-space: nowrap;
}
.pricing-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.price-currency {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}
.price-amount {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}
.price-period {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.pricing-desc { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 20px; line-height: 1.5; }
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.pricing-features li::before {
  content: '✓';
  color: var(--amber);
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-note {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* ===== CLOSING ===== */
.closing {
  background: var(--bg);
  padding: 96px 32px;
  text-align: center;
}
.closing-content { max-width: 680px; margin: 0 auto; }
.closing h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  color: var(--teal);
  margin-bottom: 20px;
}
.closing p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--teal);
  color: #fff;
  padding: 48px 32px 32px;
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
}
.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.5); max-width: 240px; }
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  max-width: 1120px;
  margin: 0 auto;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .phone-frame { width: 200px; }
  .steps-grid { grid-template-columns: 1fr; }
  .features-layout { grid-template-columns: 1fr; gap: 32px; }
  .features-label h2 { position: static; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 24px; }
}
@media (max-width: 600px) {
  .hero { padding: 48px 20px 56px; }
  .how-it-works, .features, .pricing, .closing { padding: 56px 20px; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 13px; }
  .features-grid { grid-template-columns: 1fr; }
  .phone-frame { width: 180px; }
  .hero-proof { gap: 14px; }
}