/* =========================================================
   BASE
========================================================= */
body {
  font-family: Inter, Arial, sans-serif;
  margin: 0;
  background: #f9fafb;
  color: #111;
}

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

/* =========================================================
   NAVBAR
========================================================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}

.logo {
  font-weight: 600;
  font-size: 20px;
}

/* =========================================================
   BUTTONS
========================================================= */
.btn {
  padding: 10px 18px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  font-weight: 500;
  box-sizing: border-box;
}

.btn-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.primary {
  background: #4f46e5;
  color: #fff;
}

.primary:hover {
  background: #4338ca;
}

.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.secondary {
  border: 1px solid #d1d5db;
  background: #fff;
  color: #111;
}

/* =========================================================
   HERO
========================================================= */
/* =========================================================
   HERO
========================================================= */
.hero {
  padding: 100px 40px;
  background: #f9fafb;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
}

.hero-text {
  max-width: 640px;
}

.hero-text h1 {
  font-size: 48px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.hero-muted {
  color: #6b7280;
  font-size: 15px;
  margin-bottom: 28px;
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-image {
  flex-shrink: 0;
  display: flex;
  justify-content: flex-end;
}

.hero-image img {
  width: 100%;
  max-width: 520px;
  height: auto;
}

/* =========================================================
   DIFFERENCE SECTION
========================================================= */
.difference {
  padding: 80px 40px;
  background: #ffffff;
}

.difference h2 {
  margin-bottom: 32px;
}

/* Comparison Table */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
}

.compare-table th,
.compare-table td {
  padding: 16px;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
  vertical-align: middle;
}

.compare-table th {
  background: #f9fafb;
  font-weight: 600;
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.label {
  font-weight: 500;
}

/* Cell wrapper (important: flex INSIDE td only) */
.cell {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Icons */
.icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.icon.green {
  background: #e6f7ee;
  color: #16a34a;
}

.icon.red {
  background: #fee2e2;
  color: #dc2626;
}

.icon.amber {
  background: #fef3c7;
  color: #d97706;
}

/* =========================================================
   FAQ / STRAIGHT ANSWERS
========================================================= */
.faq-section {
  background: #f9fafb;
  padding: 96px 0;
}

.faq-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.faq-section h2 {
  margin-bottom: 36px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 900px;
}

.faq-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 26px;
}

.faq-card h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.faq-card p {
  font-size: 15px;
  color: #374151;
  line-height: 1.6;
}

/* =========================================================
   FULL-WIDTH WAITLIST CTA
========================================================= */
.waitlist-section.full-width {
  width: 100%;
  background: #ffffff;
  padding: 96px 0;
  border-top: 1px solid #e5e7eb;
}

.waitlist-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.waitlist-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.waitlist-sub {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 28px;
  max-width: 560px;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

.waitlist-form input {
  flex: 1;
  min-width: 260px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 15px;
}

.waitlist-form input:focus {
  outline: none;
  border-color: #4f46e5;
}

.waitlist-form button {
  padding: 14px 24px;
  border-radius: 10px;
  background: #4f46e5;
  color: #ffffff;
  font-weight: 500;
  border: none;
  cursor: pointer;
}

.waitlist-form button:hover {
  background: #4338ca;
}

.waitlist-row {
  display: flex;
  gap: 12px;
  align-items: stretch;
  max-width: 920px;
}

.waitlist-row input {
  flex: 1;
}

.form-message {
  min-height: 1.2em;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.support-section {
  background: #f9fafb;
  padding: 64px 20px;
  text-align: center;
}

.support-inner {
  max-width: 600px;
  margin: 0 auto;
}

.support-text {
  margin-bottom: 16px;
  color: #374151;
  font-size: 15px;
}

.donation-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.donate-btn {
  border: none;
  cursor: pointer;
}

.donate-btn,
.coffee-btn {
  width: 220px;
  height: 44px;
  padding: 10px 18px;
  font-size: 16px;
  line-height: 1;
}

.coffee-btn {
  margin-top: 14px;
}

.donation-message {
  min-height: 1.2em;
  margin: 14px 0 0;
  font-size: 0.9rem;
}


/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 640px) {
  .hero {
    padding: 72px 24px;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .difference {
    padding: 64px 24px;
  }

  .faq-inner,
  .waitlist-inner {
    padding: 0 24px;
  }

  .waitlist-section h2 {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .waitlist-row {
    flex-direction: column;
  }

  .waitlist-row .btn {
    width: 100%;
  }

  .donate-btn {
    width: 100%;
  }

  .coffee-btn {
    width: 100%;
  }
}


/* =========================================================
   HERO RESPONSIVE
========================================================= */
@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-image {
    justify-content: center;
    margin-top: 40px;
  }
}

/* =========================================================
   COMMING SOON RESPONSIVE
========================================================= */

.coming-soon {
  background: #fafafa;
  padding: 64px 20px;
}

.coming-soon-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.coming-soon h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.coming-sub {
  color: #666;
  margin-bottom: 40px;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.status-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.status-card h3 {
  margin-bottom: 12px;
}

.status-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.status-card li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.status-card.available {
  border-left: 4px solid #2ecc71;
}

.status-card.coming {
  border-left: 4px solid #f1c40f;
}

.coming-note {
  margin-top: 32px;
  font-size: 0.9rem;
  color: #777;
}
