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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #fff;
  color: #000;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  border-bottom: 1px solid #000;
  padding: 1.5rem 2rem;
}

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  font-weight: 600;
  font-size: 1.25rem;
  text-decoration: none;
  color: #000;
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  width: auto;
  margin-right: 0.5rem;
}

.logo span {
  font-weight: 600;
  font-size: 1.25rem;
}

.tab {
  font-size: 0.9rem;
  text-decoration: none;
  color: #000;
  padding-bottom: 2px;
}

.tab.active { border-bottom: 1px solid #000; }

main {
  flex: 1;
  padding: 4rem 2rem;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

.hero {
  margin-bottom: 3rem;
}

.hero h1 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.tagline {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.cta {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid #000;
  text-decoration: none;
  color: #000;
  font-size: 0.9rem;
}

.cta:hover {
  background: #000;
  color: #fff;
}

.how-it-works,
.payment-info,
#contact {
  margin-bottom: 3rem;
}

.how-it-works h2,
.payment-info h2,
#contact h2 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.how-it-works ul,
.payment-info p,
#contact p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.how-it-works ul {
  list-style: none;
  padding: 0;
}

.how-it-works li {
  padding: 0.4rem 0;
  padding-left: 1.2rem;
  position: relative;
}

.how-it-works li::before {
  content: "•";
  position: absolute;
  left: 0;
}

#contact a {
  color: #000;
  text-decoration: underline;
}

.legal-page {
  max-width: 600px;
}

.legal-page h1 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-page h2 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-page p,
.legal-page ul {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #000;
  text-decoration: underline;
  font-size: 0.75rem;
}

#products h1 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.products-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.product-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  border-bottom: 1px solid #e0e0e0;
  text-decoration: none;
  color: #000;
  transition: background 0.15s ease;
}

.product-card:hover {
  background: #f5f5f5;
}

.product-name {
  font-size: 1rem;
}

.product-arrow {
  opacity: 0.5;
  font-size: 1rem;
}

.team-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.team-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  border-bottom: 1px solid #e0e0e0;
  text-decoration: none;
  color: #000;
  transition: background 0.15s ease;
}

.team-card:hover {
  background: #f5f5f5;
}

.team-name {
  font-size: 1rem;
}

#team h1 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

footer {
  border-top: 1px solid #000;
  padding: 1.5rem 2rem;
  text-align: center;
}

footer p {
  font-size: 0.75rem;
  color: #666;
}
