:root {
  --bg-main: #020617;
  --bg-card: #020617;
  --bg-panel: rgba(15, 23, 42, 0.85);
  --accent: #38bdf8;
  --accent-soft: rgba(56, 189, 248, 0.15);
  --accent-strong: #0ea5e9;
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --border-soft: rgba(148, 163, 184, 0.3);
  --chip-bg: rgba(15, 23, 42, 0.9);
  --danger: #f97373;
  --shadow-soft: 0 20px 40px rgba(15, 23, 42, 0.75);
  --radius-lg: 1.5rem;
  --radius-md: 0.75rem;
  --radius-pill: 999px;
  --transition-fast: 0.18s ease-out;
}

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

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #0f172a 0, #020617 40%, #000 100%);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.page-wrapper {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  isolation: isolate;
}

/* Soft glow circles */
.glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.16;
  z-index: -1;
  pointer-events: none;
}

.glow-1 {
  width: 320px;
  height: 320px;
  background: #38bdf8;
  top: -80px;
  left: -40px;
}

.glow-2 {
  width: 360px;
  height: 360px;
  background: #6366f1;
  bottom: -80px;
  right: -40px;
}

/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

/* Logo image wrapper */
.brand-logo-wrap {
  width: 46px;
  height: 46px;
  border-radius: 1.5rem;
  padding: 2px;
  background: radial-gradient(circle at 30% 0, #38bdf8 0, #0f172a 50%, #020617 100%);
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.85), 0 0 28px rgba(56, 189, 248, 0.6);
  position: relative;
  overflow: hidden;
}

.brand-logo-wrap::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  border: 2px solid rgba(56, 189, 248, 0.6);
  opacity: 0.5;
  animation: pulse-ring 2.4s ease-out infinite;
}

.brand-logo-wrap::after {
  content: "";
  position: absolute;
  inset: 16%;
  border-radius: inherit;
  border: 1px solid rgba(15, 23, 42, 0.9);
  background: radial-gradient(
    circle at 20% 0,
    rgba(248, 250, 252, 0.15),
    transparent 55%
  );
  pointer-events: none;
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  display: block;
  position: relative;
  z-index: 1;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(1.12);
    opacity: 0;
  }
  100% {
    transform: scale(1.12);
    opacity: 0;
  }
}

.brand-text-main {
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 1rem;
  text-transform: uppercase;
  color: #e5e7eb;
}

.brand-text-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.badge-soon {
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.35);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #e5e7eb;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(8px);
  white-space: nowrap;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.2);
}

/* Layout */
.content {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: stretch;
}

@media (max-width: 768px) {
  .content {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Left section */
.hero {
  background: linear-gradient(
      135deg,
      rgba(15, 23, 42, 0.9),
      rgba(15, 23, 42, 0.92)
    );
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.8rem 1.9rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(56, 189, 248, 0.19),
    transparent 55%
  );
  opacity: 0.8;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.9rem;
  border-radius: var(--radius-pill);
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
}

.pill i {
  color: var(--accent);
  font-size: 0.85rem;
}

.hero-title {
  font-size: clamp(1.9rem, 4vw, 2.4rem);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.7rem;
}

.hero-title span.highlight {
  background: linear-gradient(120deg, #22d3ee, #38bdf8, #a855f7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 0.96rem;
  max-width: 34rem;
  margin-bottom: 0.8rem;
}

/* Countdown */
.countdown-section {
  margin-bottom: 1.2rem;
}

.section-label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.countdown {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.countdown-box {
  min-width: 70px;
  background: var(--chip-bg);
  border-radius: var(--radius-md);
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  text-align: center;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.8);
}

.countdown-value {
  font-size: 1.2rem;
  font-weight: 600;
  color: #e5e7eb;
  line-height: 1.2;
}

.countdown-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-top: 0.08rem;
}

@media (max-width: 480px) {
  .countdown-box {
    flex: 1 1 calc(50% - 0.5rem);
  }
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.3rem;
}

.tag-chip {
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  background: var(--chip-bg);
  border: 1px solid rgba(148, 163, 184, 0.3);
  color: #e5e7eb;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.tag-chip i {
  font-size: 0.9rem;
  color: var(--accent);
}

.notify-wrapper {
  margin-bottom: 1.2rem;
}

.notify-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.notify-input-wrap {
  flex: 1 1 180px;
  position: relative;
}

.notify-input-wrap i {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.notify-input {
  width: 100%;
  padding: 0.65rem 0.85rem 0.65rem 2.2rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.85);
  color: var(--text-main);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition-fast),
    box-shadow var(--transition-fast), background var(--transition-fast);
}

.notify-input::placeholder {
  color: #6b7280;
}

.notify-input:focus {
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.45);
  background: rgba(15, 23, 42, 0.95);
}

.btn-primary {
  border: none;
  outline: none;
  cursor: pointer;
  padding: 0.65rem 1.3rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
  color: #f9fafb;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.5);
  white-space: nowrap;
  transition: transform var(--transition-fast),
    box-shadow var(--transition-fast), filter var(--transition-fast);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.65);
  filter: brightness(1.02);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.5);
}

.notify-note {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.notify-note i {
  color: #22c55e;
  margin-right: 0.25rem;
}

.focus-areas {
  border-top: 1px dashed rgba(148, 163, 184, 0.45);
  padding-top: 1rem;
  margin-top: 0.8rem;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

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

.focus-item {
  background: rgba(15, 23, 42, 0.85);
  border-radius: var(--radius-md);
  padding: 0.7rem 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.focus-icon {
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 0.1rem;
}

.focus-title {
  font-size: 0.86rem;
  font-weight: 600;
  color: #e5e7eb;
}

.focus-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Right section */
.panel {
  background: var(--bg-panel);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.5rem 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.2rem;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.panel-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #f9fafb;
}

.panel-tag {
  font-size: 0.75rem;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-pill);
  background: var(--accent-soft);
  color: #e0f2fe;
  border: 1px solid rgba(56, 189, 248, 0.45);
  white-space: nowrap;
}

.timeline {
  background: rgba(15, 23, 42, 0.9);
  border-radius: var(--radius-md);
  padding: 0.9rem 0.85rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  margin-bottom: 0.8rem;
}

.timeline-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.timeline-row:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(56, 189, 248, 0.2);
  margin-top: 0.18rem;
  flex-shrink: 0;
}

.timeline-text-main {
  font-size: 0.86rem;
  color: #e5e7eb;
  margin-bottom: 0.1rem;
  font-weight: 500;
}

.timeline-text-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.progress-wrapper {
  margin: 0.3rem 0 0.7rem;
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.progress-bar-outer {
  width: 100%;
  height: 7px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 1);
  border: 1px solid rgba(148, 163, 184, 0.4);
  overflow: hidden;
}

.progress-bar-inner {
  width: 78%; /* adjust as needed */
  height: 100%;
  background: linear-gradient(90deg, #22c55e, #eab308);
  border-radius: 999px;
  box-shadow: 0 0 16px rgba(52, 211, 153, 0.65);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-bottom: 0.7rem;
}

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

.metric-card {
  background: rgba(15, 23, 42, 0.9);
  border-radius: var(--radius-md);
  padding: 0.6rem 0.7rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
}

.metric-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 0.18rem;
}

.metric-value {
  font-size: 0.96rem;
  font-weight: 600;
  color: #e5e7eb;
}

.metric-note {
  font-size: 0.76rem;
  color: var(--text-muted);
}

.contact-block {
  border-top: 1px dashed rgba(148, 163, 184, 0.5);
  padding-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.contact-email {
  font-size: 0.86rem;
  color: #e5e7eb;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.contact-email a {
  color: #e5e7eb;
  text-decoration: none;
  border-bottom: 1px dashed rgba(148, 163, 184, 0.7);
}

.contact-email a:hover {
  color: var(--accent-strong);
  border-color: var(--accent-strong);
}

.contact-email i {
  color: var(--accent);
}

.contact-note {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.socials {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.1rem;
}

.social-link {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  background: rgba(15, 23, 42, 0.9);
  transition: background var(--transition-fast),
    color var(--transition-fast), border-color var(--transition-fast),
    transform var(--transition-fast);
}

.social-link:hover {
  background: var(--accent-soft);
  color: #e0f2fe;
  border-color: var(--accent-strong);
  transform: translateY(-1px);
}

/* Footer (tiny) */
.footer {
  margin-top: 1.4rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer span {
  color: #e5e7eb;
}
