/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #F5A623;
  --primary-dark: #D4891A;
  --text: #2D1B00;
  --text-light: #6B5B4F;
  --bg: #FFF8E7;
  --bg-card: #FFFFFF;
  --border: #F0E6D6;
  --radius: 12px;
  --shadow: 0 2px 12px rgba(45, 27, 0, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Mochiy Pop One', sans-serif;
  line-height: 1.2;
}

a {
  color: var(--primary-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

/* ===== Layout ===== */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.container--wide {
  max-width: 1000px;
}

/* ===== Nav ===== */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.nav__logo {
  height: 40px;
  width: auto;
}

.lang-toggle {
  display: flex;
  gap: 4px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3px;
}

.lang-toggle a {
  display: block;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.2s;
}

.lang-toggle a.active {
  background: var(--primary);
  color: #fff;
}

.lang-toggle a:hover:not(.active) {
  background: var(--border);
}

/* ===== Hero ===== */
.hero {
  text-align: center;
  padding: 40px 20px 20px;
}

.hero__illustration {
  max-width: 320px;
  margin: 0 auto 24px;
}

.hero__title {
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--text);
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero__badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Early Access Badge ===== */
.early-access {
  margin-bottom: 24px;
}

.early-access__badge {
  display: inline-block;
  padding: 4px 14px;
  background: var(--text);
  color: var(--primary);
  font-family: 'Mochiy Pop One', sans-serif;
  font-size: 0.8rem;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.early-access__text {
  margin-top: 8px;
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ===== CTA Button ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--primary);
  color: #fff;
  font-family: 'Mochiy Pop One', sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  box-shadow: 0 4px 0 var(--primary-dark);
}

.btn:hover {
  background: var(--primary-dark);
  text-decoration: none;
}

.btn:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--primary-dark);
}

.btn--outline {
  background: transparent;
  color: var(--primary-dark);
  border: 2px solid var(--primary);
  box-shadow: none;
}

.btn--outline:hover {
  background: var(--primary);
  color: #fff;
}

.store-badge {
  height: 48px;
  width: auto;
  border-radius: 8px;
}

/* ===== Sections ===== */
.section {
  padding: 48px 20px;
}

.section__title {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 32px;
}

/* ===== How it Works (Steps) ===== */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.step__number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: #fff;
  font-family: 'Mochiy Pop One', sans-serif;
  font-size: 1.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step__text h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.step__text p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ===== Feature Cards ===== */
.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.feature {
  padding: 24px;
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature__icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.feature h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.feature p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ===== Trust Badges ===== */
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.trust__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ===== CTA Section ===== */
.cta {
  text-align: center;
  padding: 48px 20px;
}

.cta__illustration {
  max-width: 200px;
  margin: 0 auto 20px;
}

.cta__title {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.cta__subtitle {
  color: var(--text-light);
  margin-bottom: 24px;
}

/* ===== Footer ===== */
.footer {
  text-align: center;
  padding: 32px 20px;
  border-top: 1px solid var(--border);
  color: var(--text-light);
  font-size: 0.85rem;
}

.footer__links {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.footer__links a {
  color: var(--text-light);
}

.footer__links a:hover {
  color: var(--primary-dark);
}

/* ===== Legal Pages ===== */
.legal {
  padding: 40px 20px 60px;
  max-width: 700px;
  margin: 0 auto;
}

.legal h1 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.legal__date {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.legal h2 {
  font-size: 1.2rem;
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--primary-dark);
}

.legal p,
.legal ul {
  margin-bottom: 16px;
  color: var(--text-light);
  font-size: 0.95rem;
}

.legal ul {
  padding-left: 24px;
}

.legal li {
  margin-bottom: 6px;
}

.legal a {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* ===== 404 Page ===== */
.not-found {
  text-align: center;
  padding: 80px 20px;
}

.not-found h1 {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.not-found p {
  color: var(--text-light);
  margin-bottom: 24px;
}

/* ===== Responsive ===== */
@media (min-width: 600px) {
  .hero__title {
    font-size: 2.5rem;
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .step {
    flex-direction: column;
    text-align: center;
  }

  .step__number {
    margin: 0 auto;
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .hero__title {
    font-size: 2.8rem;
  }
}
