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

:root {
  --orange: #E8944A;
  --orange-dark: #d97f30;
  --bg-cream: #FFF8F0;
  --bg-card: #ffffff;
  --text-dark: #1A1A2E;
  --text-muted: #666666;
  --border-soft: #FFE8CC;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  background: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }

/* Nav */
.nav {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-soft);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  height: 34px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

.nav-cta {
  background: var(--orange);
  color: white !important;
  padding: 10px 18px;
  border-radius: 10px;
}

/* Hero */
.hero {
  padding: 80px 24px 64px;
  text-align: center;
}

.hero-inner {
  max-width: 700px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
}

.btn-primary {
  background: var(--orange);
  color: white;
}

.btn-primary:hover {
  background: var(--orange-dark);
}

/* Sections */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 24px;
}

h2 {
  font-size: 30px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}

/* Benefits */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.benefit-card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 28px 22px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  text-align: center;
}

.benefit-icon {
  font-size: 36px;
  margin-bottom: 14px;
}

.benefit-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 14px;
  color: var(--text-muted);
}

/* How it works */
.how {
  background: var(--bg-card);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.step {
  text-align: center;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step p {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 280px;
  margin: 0 auto;
}

/* FAQ */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--orange);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* CTA section */
.cta-section {
  text-align: center;
}

.cta-inner p {
  color: var(--text-muted);
  margin: -16px 0 28px;
}

.cta-inner .preorder-note {
  margin: 24px 0 0;
  font-size: 14px;
}

.preorder-link {
  color: var(--orange);
  font-weight: 700;
  text-decoration: underline;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border-soft);
  background: var(--bg-card);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

@media (max-width: 600px) {
  .nav-links { gap: 14px; font-size: 13px; }
  .hero h1 { font-size: 30px; }
  .hero-sub { font-size: 16px; }
}
