:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  /* Background image from user's images folder on top of subtle gradient overlays */
  background-image: url("images/bg.png"),
                    radial-gradient(circle at top, rgba(106, 201, 255, 0.12), transparent 28%),
                    radial-gradient(circle at 20% 15%, rgba(34, 197, 94, 0.08), transparent 18%),
                    radial-gradient(circle at 90% 10%, rgba(168, 85, 247, 0.08), transparent 16%),
                    linear-gradient(180deg, rgba(2,4,10,0.6) 0%, rgba(3,6,15,0.9) 80%);
  background-size: cover, auto, auto, auto, auto;
  background-repeat: no-repeat;
  background-position: center;
  color: #eef2ff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: inherit;
}

.page-shell {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 60px;
}

.topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  margin-bottom: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo {
  width: 240px;
  height: auto;
  display: block;
  object-fit: cover;
}

.hero-image {
  display: grid;
  place-items: center;
}

.hero-image img {
  width: min(280px, 130%);
  display: block;
  margin-bottom: 100px;
}

.hero-image-column {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-text {
  display: flex;
  align-items: center;
}
.brand-name {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.brand-tag {
  display: block;
  font-size: 0.82rem;
  color: #9ca3af;
}

.socials {
  display: flex;
  justify-content: end;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.socials a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.socials a:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.18);
}

.socials a img {
  width: 20px;
  height: 20px;
  display: block;
}

.notify-btn {
  border: none;
  background: linear-gradient(135deg, #22d3ee, #8b5cf6);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr 1fr;
  gap: 25px;
  align-items: center;
}

.side-panel {
  display: grid;
  gap: 20px;
}

.panel-card {
  padding: 24px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(22px);
  box-shadow: 0 20px 60px rgba(3, 6, 15, 0.28),
              inset 0 0 40px rgba(56, 189, 248, 0.07);
}

.panel-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.panel-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

.panel-icon img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  display: block;
}

.panel-icon-blue {
  background: rgba(59, 130, 246, 0.16);
  box-shadow: 0 0 18px rgba(59, 130, 246, 0.18);
}

.panel-icon-green {
  background: rgba(34, 197, 94, 0.16);
  box-shadow: 0 0 18px rgba(34, 197, 94, 0.18);
}

.panel-icon-cyan {
  background: rgba(6, 182, 212, 0.14);
  box-shadow: 0 0 18px rgba(6, 182, 212, 0.16);
}

.panel-icon-purple {
  background: rgba(168, 85, 247, 0.16);
  box-shadow: 0 0 18px rgba(168, 85, 247, 0.18);
}

.panel-card h3 {
  margin: 0;
  font-size: 1rem;
  color: #fff;
}

.panel-card p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.8;
}



.hero-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(14, 165, 233, 0.14), transparent 28%);
  pointer-events: none;
}

.hero-intro {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  color: #7dd3fc;
  font-size: 0.85rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.hero-intro h1 {
  margin: 0 0 22px;
  font-size: clamp(3rem, 4vw, 5.25rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: #fff;
}

.hero-intro h1 span {
  background: linear-gradient(90deg, #3b82f6, #22d3ee, #a855f7);
  -webkit-background-clip: text;
  color: transparent;
}

.countdown-section .countdown-card span {
    background: linear-gradient(90deg, #3b82f6, #22d3ee, #a855f7);
    -webkit-background-clip: text;
    color: transparent;
}
.hero-intro p {
  font-size: 1rem;
  color: #cbd5e1;
  line-height: 1.9;
  margin: 0 0 18px;
}

.highlight {
  color: #7dd3fc;
  font-weight: 600;
}

.email-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 20px;
}

.email-form input {
  width: 100%;
  padding: 16px 20px;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(15, 23, 42, 0.88);
  color: #f8fafc;
  font-size: 0.95rem;
  transition: box-shadow 200ms ease, transform 150ms ease, border-color 180ms ease;
  outline: none;
}

.email-form input:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(2, 6, 23, 0.45);
  border-color: rgba(59, 130, 246, 0.36);
}

.email-form input:focus {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.14);
  border-color: #38bdf8;
}

.email-form button {
  border: none;
  padding: 16px 26px;
  border-radius: 16px;
  background: linear-gradient(135deg, #22d3ee, #8b5cf6);
  color: white;
  font-weight: 700;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 200ms ease, filter 160ms ease;
  will-change: transform;
}

.email-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(139, 92, 246, 0.25);
  filter: brightness(1.03);
}

.email-form button:active {
  transform: translateY(0) scale(0.99);
}

.email-form button:focus {
  outline: none;
  box-shadow: 0 12px 36px rgba(34, 211, 238, 0.16);
}

.form-message {
  margin-top: 12px;
  color: #a5f3fc;
  font-size: 0.95rem;
  min-height: 22px;
}

.countdown-section {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: center;
  justify-content: center;
  width: min(1080px, 100%);
  margin: 42px auto 34px;
}

.countdown-card {
  padding: 28px 18px;
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.16);
  text-align: center;
}

.countdown-card span {
  display: block;
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
}

.countdown-card.days span {
  background: linear-gradient(90deg, #34d399, #22c55e);
  -webkit-background-clip: text;
  color: transparent;
}

.countdown-card.hours span {
  background: linear-gradient(90deg, #38bdf8, #3b82f6);
  -webkit-background-clip: text;
  color: transparent;
}

.countdown-card.minutes span {
  background: linear-gradient(90deg, #8b5cf6, #6366f1);
  -webkit-background-clip: text;
  color: transparent;
}

.countdown-card.seconds span {
  background: linear-gradient(90deg, #ec4899, #a855f7);
  -webkit-background-clip: text;
  color: transparent;
}

.countdown-card small {
  display: block;
  margin-top: 8px;
  color: #9ca3af;
  letter-spacing: 0.18em;
}

.expect-section {
  padding: 42px 0 0;
}

.expect-panel {
  padding: 36px 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(8,12,22,0.72), rgba(6,10,20,0.6));
  border: 1px solid rgba(255,255,255,0.03);
  box-shadow: 0 20px 60px rgba(1,6,20,0.55), inset 0 0 40px rgba(56,189,248,0.02);
  overflow: hidden;
}

.expect-section h2 {
  margin: 0 auto 32px;
  font-size: 2rem;
  letter-spacing: -0.03em;
  text-align: center;
  max-width: 640px;
  position: relative;
  color: #f8fafc;
}

.expect-section h2::before,
.expect-section h2::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 70px;
  height: 2px;
  background: linear-gradient(90deg, rgba(56, 189, 248, 0.9), rgba(99, 102, 241, 0.7));
  transform: translateY(-50%);
}

.expect-section h2::before {
  left: -90px;
}

.expect-section h2::after {
  right: -90px;
}

.expect-grid {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap; /* keep one line on wide screens */
  text-align: center;
  padding: 10px 6px 6px;
}

.feature-card {
  position: relative;
  min-width: 0;
  /* force seven equal cards to fit precisely: 6 gaps of 30px = 180px */
  flex: 0 0 calc((100% - 180px) / 7);
  padding: 20px 18px;
  background: rgba(10, 14, 24, 0.46);
  border: 1px solid rgba(255,255,255,0.03);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(255,255,255,0.02);
  height: 320px; /* fixed height so all cards match */
  box-sizing: border-box;
}

.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.02);
  box-shadow: 0 8px 30px rgba(0,0,0,0.6), inset 0 0 22px rgba(255,255,255,0.02);
  overflow: hidden;
}

.feature-icon img {
  width: 56%;
  height: 56%;
  object-fit: contain;
  display: block;
}

.feature-card h3 {
  margin: 8px 0 6px;
  font-size: 1.05rem;
  line-height: 1.25;
  font-weight: 800;
  color: #e6f9ff;
  text-align: center;
}

.feature-card p {
  margin: 0;
  color: #bcd5df;
  line-height: 1.6;
  max-width: 220px;
  text-align: center;
}

.feature-card.green .feature-icon,
.feature-card .icon-green {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.16), rgba(34, 197, 94, 0.28));
}

.feature-card.teal .feature-icon,
.feature-card .icon-teal {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.16), rgba(6, 182, 212, 0.28));
}

.feature-card.purple .feature-icon,
.feature-card .icon-purple {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.16), rgba(168, 85, 247, 0.28));
}

.feature-card.blue .feature-icon,
.feature-card .icon-blue {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.16), rgba(59, 130, 246, 0.28));
}

.feature-card.indigo .feature-icon,
.feature-card .icon-indigo {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.16), rgba(79, 70, 229, 0.28));
}

.feature-card.yellow .feature-icon,
.feature-card .icon-yellow {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.16), rgba(251, 191, 36, 0.28));
}

.feature-card.cyan .feature-icon,
.feature-card .icon-cyan {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.16), rgba(14, 165, 233, 0.28));
}

/* vertical divider between cards on wide screens */
.feature-card:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 14%;
  bottom: 14%;
  width: 1px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
}

@media (max-width: 1200px) {
  .expect-grid { flex-wrap: wrap; justify-content: center; }
  .feature-card:not(:last-child)::after { display: none; }
}

.interest-bar {
  margin-top: 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 24px 30px;
  border-radius: 28px;
  background: rgba(8, 12, 22, 0.9);
  border: 1px solid rgba(56, 189, 248, 0.2);
  box-shadow: 0 20px 60px rgba(1, 9, 24, 0.25),
              inset 0 0 30px rgba(56, 189, 248, 0.08);
}

.interest-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.3), rgba(99, 102, 241, 0.3));
  box-shadow: inset 0 0 24px rgba(56, 189, 248, 0.18);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
  padding: 24px;
}

.modal-overlay.open {
  display: flex;
}

.modal-card {
  width: min(520px, 100%);
  background: rgba(8, 12, 22, 0.96);
  border: 1px solid rgba(59, 130, 246, 0.22);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.45), inset 0 0 60px rgba(56, 189, 248, 0.08);
  position: relative;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: #eef2ff;
  font-size: 1.4rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
}

.modal-card h2 {
  margin: 0 0 10px;
  font-size: 1.8rem;
}

.modal-card p {
  margin: 0 0 22px;
  color: #cbd5e1;
  line-height: 1.7;
}

.popup-form {
  display: grid;
  gap: 16px;
}

.popup-form label {
  display: grid;
  gap: 8px;
  color: #cbd5e1;
  font-size: 0.95rem;
}

.popup-form input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(15, 23, 42, 0.9);
  color: #f8fafc;
}

.popup-form .notify-btn {
  width: fit-content;
  justify-self: end;
  padding: 14px 26px;
}

#popupMessage {
  margin-top: 12px;
  font-size: 0.95rem;
  color: #a5f3fc;
}

.interest-icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
  display: block;
}

.interest-bar p {
  margin: 0;
  color: #e2e8f0;
  line-height: 1.8;
}

.interest-bar button {
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  padding: 16px 30px;
  color: white;
  font-weight: 700;
  cursor: pointer;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.feature-card p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.75;
}

.feature-card.green {border-color: rgba(34, 197, 94, 0.28);}
.feature-card.teal {border-color: rgba(56, 189, 248, 0.28);}
.feature-card.purple {border-color: rgba(168, 85, 247, 0.28);}
.feature-card.blue {border-color: rgba(59, 130, 246, 0.28);}
.feature-card.indigo {border-color: rgba(79, 70, 229, 0.28);}
.feature-card.yellow {border-color: rgba(251, 191, 36, 0.28);}
.feature-card.cyan {border-color: rgba(6, 182, 212, 0.28);}

.interest-bar {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 28px;
  border-radius: 34px;
  background: linear-gradient(90deg, rgba(6,10,20,0.6), rgba(8,12,22,0.6));
  border: 1px solid rgba(255,255,255,0.03);
  box-shadow: inset 0 0 40px rgba(255,255,255,0.01);
}

.interest-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: radial-gradient(circle at 30% 30%, rgba(59,130,246,0.18), rgba(99,102,241,0.06));
  box-shadow: 0 10px 30px rgba(0,0,0,0.6), inset 0 0 20px rgba(255,255,255,0.02);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.interest-bar p {
  margin: 0;
  color: #e6f9ff;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
}

.interest-bar button {
  border: none;
  border-radius: 999px;
  background: linear-gradient(90deg, #22d3ee, #8b5cf6);
  padding: 14px 34px;
  color: white;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(139,92,246,0.18);
}

@media (max-width: 860px) {
  .expect-grid { gap: 18px; }
}

@media (max-width: 620px) {
  .interest-bar { flex-direction: column; align-items: stretch; gap: 12px; }
  .interest-bar button { justify-self: stretch; width: 100%; }
}

@media (max-width: 1080px) {
  .hero-section {
    grid-template-columns: 1fr;
  }
  .topbar {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .socials {
    justify-content: center;
  }
}

@media (max-width: 860px) {
  .countdown-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .topbar, .countdown-section, .interest-bar {
    grid-template-columns: 1fr;
  }
  .expect-panel {
    overflow-x: hidden;
  }
  .expect-panel .expect-grid {
    justify-content: start;
  }
  .interest-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .email-form {
    grid-template-columns: 1fr;
  }
}
