* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #222;
}

html {
  scroll-behavior: smooth;
}

/* Container */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Buttons  */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.ea-inner .btn {
  padding: 14px 28px;
  font-size: 15px;
}

.btn-primary {
  background: #28a745;
  color: #fff;
  border: 1px solid #28a745;
}

.btn-primary:hover {
  background: #218838;
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 1);
  border-radius: 4px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(40, 167, 69, 0.25);

}

.btn-outline:hover {
  box-shadow: 0 0 15px 1px #d0d6dd80;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* navbar  */
.navbar {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.menu {
  display: flex;
  gap: 32px;
}

.menu a {
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  color: #222;
  opacity: 0.9;
  transition: all 0.2s ease;
}

.menu a:hover {
  color: #28a745;
  text-decoration: underline;
}

/* hero Section */

.badge-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 1);
  color: #30B868;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all .2s ease;
}

/* green dot */
.status-badge .dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

.status-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.25),
      rgba(0, 0, 0, 0.35)),
    url("./assets/hero-bg.png");
  background-size: cover;
  background-position: center;
  min-height: 620px;
  display: flex;
  align-items: center;
}

.hero-content {
  text-align: center;
  max-width: 820px;
}

.badge {
  background: rgba(255, 255, 255, 1);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  color: #30B868;
  display: inline-block;
}

.hero-title {
  font-size: 72px;
  font-weight: 700;
  margin-top: 20px;
  color: #fff;
  line-height: 1.15;
}

.accent {
  color: #28a745;
}

.hero-sub {
  margin-top: 18px;
  color: #d9d9d9;
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Notes Section */
.notes {
  background: #f9fafb;
  padding: 80px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: 48px;
  font-weight: 700;
}

.muted {
  margin-top: 10px;
  color: #666;
  font-size: 16px;
  font-weight: 400;
}

.cards-row {
  display: flex;
  gap: 24px;
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  flex: 1;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: auto;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(249, 85, 85, 1);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.card p {
  font-size: 13px;
  color: #666;
}

/* Second brain */
.second-brain {
  padding: 90px 0;
}

.brain-row {
  display: flex;
  align-items: center;
  gap: 48px;
}

.brain-image {
  flex: 1;
}

.brain-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.brain-content {
  flex: 1;
}

.kicker {
  color: #28a745;
  font-weight: 500;
  font-size: 16px;
}

.brain-content h2 {
  font-size: 48px;
  margin: 12px 0 16px;
  font-weight: 700;
  line-height: 58px;
}

.brain-content p {
  color: #666;
  line-height: 1.7;
  font-size: 16px;
  font-weight: 400;
}

.benefits {
  list-style: none;
  margin-top: 20px;
}

.benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 12px;
}

/* Early Access */
.early-access {
  background: #ffffff;
  padding: 100px 0;
  display: flex;
  justify-content: center;
}

.ea-card {
  background: #faf8f4;
  max-width: 1190px;
  min-height: 384px;
  width: 100%;
  height: auto;
  padding: 70px 20px;
  border-radius: 12px;
  text-align: center;
}

.ea-card h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0b1f33;
}

.ea-card .muted {
  font-weight: 400;
  margin-top: 16px;
  font-size: 16px;
  line-height: 24px;
  color: #6b7a8c;
}

.ea-inner {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.ea-notes {
  margin-top: 8px;
  display: flex;
  gap: 8px;
  color: #6b7a8c;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

/* Footer  */
.site-footer {
  background: #001931;
  color: #ffffff;
  padding: 60px 0 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left img {
  width: 139px;
  height: 60px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
}

.social-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}

.social-icons {
  display: flex;
  gap: 14px;
}

.social-icons a {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: black;
  color: whitesmoke;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-top: 10px;
}

.social-icons a:hover {
  transform: translateY(-6px);
  background-color: #218838;
  box-shadow: 0 0 20px 10px #28a74580;
}

.divider {
  margin: 30px 0 20px;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  border: none;
}

.copyright {
  text-align: center;
  color: rgba(250, 250, 250, 1);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0%;
}

/*  RESPONSIVE BREAKPOINTS  */

/* Tablet (Max 992px) */
@media (max-width: 992px) {
  .hero-title {
    font-size: 56px;
  }

  .cards-row {
    flex-wrap: wrap;
    justify-content: center;
  }

  .card {
    flex: none;
    width: calc(50% - 24px);
    min-width: 280px;
  }

  .brain-row {
    flex-direction: column;
    text-align: center;
  }

  .benefits li {
    justify-content: center;
  }
}

/* Small (Max 768px) */
@media (max-width: 768px) {
  .nav-inner {
    flex-direction: column;
    height: auto;
    padding: 20px 0;
    gap: 15px;
  }

  .nav-inner img {
    
    margin-bottom: 10px;
    width: 120px;
  }

  .menu {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-title {
    font-size: 40px;
  }

  .section-head h2 {
    font-size: 32px;
  }

  .brain-content h2 {
    font-size: 32px;
    line-height: 40px;
  }

  .card {
    width: 100%;
  }

  .footer-top {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .footer-right {
    align-items: center;
  }
}

/* Extra Small Phones (Max 480px) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    justify-content: center;
  }

  .ea-card h2 {
    font-size: 28px;
  }
}