@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background: url("img/bg1.jpg") center / cover no-repeat fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

/* MAIN WRAPPER */
.glass-page {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* GLASS BOX */
.glass-box {
  max-width: 900px;
  width: 100%;
  padding: 45px;
  text-align: center;

  /* GLASS EFFECT (STRONGER & VISIBLE) */
  background: rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);

  /* VISUAL DEFINITION */
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);

  margin: auto;
}

/* TEXT */
.coming {
  color: #357638;
  letter-spacing: 3px;
}

.tagline {
  font-weight: 500;
  margin-bottom: 20px;
}

.logo {
  max-width: 180px;
  margin: 20px auto;
}

.intro {
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.highlight-text {
  display: block;
  
max-width:500px;
margin:10px auto;
}

/* COUNTDOWN */
.countdown {
  margin: 25px 0;
}

.countdown div {
  display: inline-block;
  margin: 0 12px;
}

.countdown span {
  font-size: 2.2em;
  font-weight: 600;
}

/* TRACKER */
.tracker {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
  margin: 30px 0;

}

.tracker-box {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
}

/* FOUNDER INFO */
.founder-info {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.info-box {
  padding: 20px;
  background: rgba(255,255,255,0.8);
  border-radius: 12px;
}

.info-box.platinum { border-left: 5px solid #ffcb08; }
.info-box.gold { border-left: 5px solid #357638; }

/* FORM */
.subscribe-form {
  margin-top: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 12px;
  margin-bottom: 12px;
}

/* UNDERLINE FORM STYLE */
.subscribe-form input,
.subscribe-form select {
  width: 100%;
  padding: 10px 4px;
  background: transparent;
  border: none;
  border-bottom: 2px solid #000;
  border-radius: 0;

  font-size: 0.95rem;
  color: #111;

  transition: border-color 0.25s ease;
}

/* PLACEHOLDER */
.subscribe-form input::placeholder {
  color: #000;
}

/* FOCUS STATE */
.subscribe-form input:focus,
.subscribe-form select:focus {
  outline: none;
  border-bottom-color: #357638;
border-bottom-width: 3px;
}

/* SELECT ARROW FIX */
.subscribe-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #357638 50%),
    linear-gradient(135deg, #357638 50%, transparent 50%);
  background-position:
    calc(100% - 15px) 50%,
    calc(100% - 10px) 50%;
  background-size: 5px 5px;
  background-repeat: no-repeat;
}

/* FORM ROW SPACING */
.form-row {
  margin-bottom: 20px;
}

button {
  margin-top: 15px;
  padding: 14px;
  border-radius: 30px;
  border: none;
  font-weight: 600;
  background: linear-gradient(135deg,#ffcb08,#357638);
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  color: #000;
}
.form-message {color:red; font-weight:bold;margin:10px suto}
.read-more-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 36px;

  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  color: #1f3d2b;

  background: linear-gradient(135deg, #ffcb08, #357638);
  border-radius: 5px;

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.read-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}


/* MOBILE */
@media(max-width:768px){
  .glass-box { padding: 25px; }
  .form-row,
  .tracker,
  .founder-info {
    grid-template-columns: 1fr;
  }
}

/* FEATURES */
.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 25px;
}

.feature-card {
  text-align: center;
  padding: 10px;
}

.feature-card .icon {
  font-size: 38px;
  display: block;
  margin-bottom: 12px;
}

.feature-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 13px;
  color: #000;
}

/* TABLE */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 15px;
 border: 1px solid #e0e0e0;
}

.comparison-table thead th {
  background: #f5f5f5;
  padding: 14px;
  text-align: left;
  font-weight: 600;
}

.comparison-table td {
  padding: 14px;
background: rgba(245,245,245,0.23);
  border-bottom: 1px solid #e0e0e0;
}

.comparison-table .highlight {
  background: #ffcb08;
  font-weight: 600;
}

/* ===== RESPONSIVE COMPARISON TABLE ===== */
@media (max-width: 768px) {

    .feature-row {
        grid-template-columns: 1fr;
    }


  .comparison-table {
    border: 0;
  }

  .comparison-table thead {
    display: none;
  }

  .comparison-table,
  .comparison-table tbody,
  .comparison-table tr,
  .comparison-table td {
    display: block;
    width: 100%;
  }

  .comparison-table tr {
    margin-bottom: 18px;
    border-radius: 10px;
    background: rgba(255,255,255,0.85);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    padding: 14px;
  }

  .comparison-table tr.highlight {
    border: 2px solid #357638;
    background: #ffcb08;
  }

  .comparison-table td {
    text-align: right;
    padding: 8px 10px;
    position: relative;
    border: none;
    font-size: 14px;
  }

  .comparison-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 10px;
    top: 8px;
    font-weight: 600;
    color: #357638;
    text-transform: uppercase;
    font-size: 12px;
  }

  .comparison-table td strong {
    color: #357638;
  }
}




/* TRACKER */


.tracker-box {
  padding: 15px;
  background: #fff;
  border-radius: 8px;
  text-align: center;
}

.tracker-number {
  font-size: 26px;
  font-weight: 700;
  color: #000;
  margin-top: 10px;
  display: block;}

.left-align {
  text-align: left;
}

.left-align .section-title {
  text-align: left;
}

.left-align .section-text {
  text-align: left;
}

.left-align .icon-list {
  text-align: left;
}

.left-align .icon-list li {
  justify-content: flex-start;
  text-align: left;
}
 .icon-list {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

