:root {
  --primary: #e85d04;
  --primary-dark: #c44e00;
  --primary-light: #fff3e8;
  --primary-lighter: #fff8f0;

  --bg: #fff8f0;
  --surface: #ffffff;

  --text: #2a1c12;
  --text-secondary: #6f5d4e;
  --text-tertiary: #9c8a7b;

  --border: #e8d5b7;
  --border-subtle: #f0ebe0;

  --radius-lg: 14px;
  --radius-xl: 18px;
  --radius-2xl: 24px;

  --shadow-md: 0 4px 20px rgba(92, 58, 30, 0.09);
  --shadow-lg: 0 10px 32px rgba(92, 58, 30, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.display {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
}

img { max-width: 100%; display: block; }

a { color: var(--primary); }

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.content {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 248, 240, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-subtle);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text);
}
.brand img { width: 28px; height: 32px; }
.brand span {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}
.nav-links a:hover { color: var(--primary); }
.nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 700 !important;
  box-shadow: 0 4px 14px rgba(232, 93, 4, 0.35);
}

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--primary) 0%, #f07840 55%, #ffb07a 100%);
  padding: 72px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: -1px;
  color: #fff;
  margin: 0 0 20px;
  font-weight: 700;
}
.hero p.lead {
  font-size: 19px;
  color: rgba(255,255,255,0.9);
  max-width: 480px;
  margin: 0 0 32px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 26px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-light { background: #fff; color: var(--primary-dark); box-shadow: var(--shadow-lg); }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.6); }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 6px 20px rgba(232,93,4,0.4); }
.btn-primary:hover { background: var(--primary-dark); }

.hero-visual {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-2xl);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual img { width: 100%; max-width: 260px; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.25)); }

.hero-note {
  margin-top: 28px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
}

/* Sections */
section { padding: 88px 0; }
.section-eyebrow {
  color: var(--primary);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin: 0 0 12px;
  text-align: center;
}
.section-title {
  text-align: center;
  font-size: 34px;
  letter-spacing: -0.5px;
  margin: 0 auto 16px;
  max-width: 640px;
  font-weight: 700;
}
.section-sub {
  text-align: center;
  color: var(--text-secondary);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 56px;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-md);
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.feature-card h3 {
  font-size: 18px;
  margin: 0 0 8px;
  font-weight: 700;
}
.feature-card p {
  color: var(--text-secondary);
  font-size: 15px;
  margin: 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step-card { text-align: center; padding: 0 8px; }
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 15px;
}
.step-card h4 { font-size: 16px; margin: 0 0 6px; font-weight: 700; }
.step-card p { font-size: 14px; color: var(--text-secondary); margin: 0; }

.band {
  background: var(--primary-lighter);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.cta-final {
  text-align: center;
  padding: 96px 0;
}
.cta-final h2 {
  font-size: 34px;
  letter-spacing: -0.5px;
  margin: 0 0 16px;
  font-weight: 700;
}
.cta-final p { color: var(--text-secondary); font-size: 17px; margin: 0 0 32px; }

/* Footer */
footer {
  border-top: 1px solid var(--border-subtle);
  padding: 40px 0;
}
footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand { display: flex; align-items: center; gap: 8px; color: var(--text-tertiary); font-size: 14px; }
.footer-brand img { width: 18px; height: 21px; opacity: 0.7; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 14px; }
.footer-links a:hover { color: var(--primary); }

/* Simple content pages (privacy/support) */
.content h1 { font-size: 34px; letter-spacing: -0.5px; margin: 0 0 8px; }
.content .updated { color: var(--text-tertiary); font-size: 14px; margin: 0 0 40px; }
.content h2 { font-size: 21px; margin: 40px 0 12px; }
.content p, .content li { color: var(--text-secondary); font-size: 16px; }
.content ul { padding-left: 20px; }
.content a { font-weight: 600; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}
.back-link:hover { color: var(--primary); }

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
  padding: 24px 0;
}
.faq-item h3 { margin: 0 0 8px; font-size: 17px; }
.faq-item p { margin: 0; }

.support-contact {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  text-align: center;
  margin: 32px 0 48px;
  box-shadow: var(--shadow-md);
}
.support-contact p { margin: 0 0 16px; }

@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 220px; margin: 0 auto; padding: 24px; }
  .hero h1 { font-size: 36px; }
  .nav-links { display: none; }
  .features { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
}
