:root {
  --primary: #FF6B00;
  --primary-hover: #e55f00;
  --accent: #00C853;
  --text: #0F172A;
  --text-secondary: #64748B;
  --background: #FFFFFF;
  --border: #E2E8F0;
  --card-bg: #F8FAFC;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  --shadow-hover: 0 8px 32px rgba(15, 23, 42, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.logo {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.logo:hover { color: var(--primary); }

.nav { display: flex; gap: 1.5rem; }
.nav a { color: var(--text-secondary); text-decoration: none; font-weight: 500; font-size: 0.95rem; }
.nav a:hover { color: var(--primary); }

.hero {
  padding: 4rem 1.5rem 5rem;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.hero__label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin: 0 0 1rem;
}

.hero__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0 0 1.25rem;
}
.hero__title em { font-style: italic; color: var(--primary); }

.hero__text {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin: 0 auto;
  max-width: 520px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn--primary {
  background: var(--primary);
  color: white;
  border: none;
  box-shadow: var(--shadow);
}
.btn--primary:hover { background: var(--primary-hover); box-shadow: var(--shadow-hover); }

.btn--secondary {
  background: var(--background);
  color: var(--text);
  border: 2px solid var(--border);
}
.btn--secondary:hover { border-color: var(--primary); color: var(--primary); }
.btn--large { padding: 1rem 1.75rem; font-size: 1.0625rem; }

.about {
  padding: 4rem 1.5rem;
  background: var(--card-bg);
}
.about__inner { max-width: 640px; margin: 0 auto; }
.about__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 1.5rem;
  text-align: center;
}
.about__list { list-style: none; padding: 0; margin: 0; }
.about__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--background);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
  font-size: 1rem;
  color: var(--text-secondary);
}
.about__item:last-child { margin-bottom: 0; }
.about__item strong { color: var(--text); margin-right: 0.25rem; }
.about__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: rgba(255, 107, 0, 0.12);
  border-radius: var(--radius);
}
.about__icon i { font-size: 1.25rem; }

/* Sellers section */
.sellers {
  padding: 4rem 1.5rem 5rem;
  background: var(--background);
}
.sellers__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.sellers__label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin: 0 0 0.5rem;
}
.sellers__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}
.sellers__intro {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}
.sellers__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  text-align: left;
}
.sellers__card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.sellers__card:hover {
  box-shadow: var(--shadow);
  border-color: var(--primary);
}
.sellers__icon {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 0, 0.12);
  color: var(--primary);
  border-radius: var(--radius);
  font-size: 1.125rem;
  margin-bottom: 1rem;
}
.sellers__cardTitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.35rem;
}
.sellers__cardText {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}
.sellers__outro {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text);
  margin: 2.5rem 0 0;
  letter-spacing: -0.01em;
}

.download { padding: 4rem 1.5rem 5rem; text-align: center; }
.download__inner { max-width: 520px; margin: 0 auto; }
.download__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.5rem;
}
.download__text { color: var(--text-secondary); margin: 0; }

.footer {
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer__copy { font-size: 0.875rem; color: var(--text-secondary); margin: 0; }

@media (max-width: 640px) {
  .hero { padding: 3rem 1rem 4rem; }
  .btn { width: 100%; max-width: 280px; }
  .sellers__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .sellers__card { padding: 1.25rem; }
}
