@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --primary: #07172d;
  --primary-light: #122b4f;
  --secondary: #f5b400;
  --accent: #19b4c6;
  --muted: #8da0bf;
  --surface: rgba(8, 19, 38, 0.75);
  --surface-alt: rgba(12, 30, 54, 0.85);
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 60px rgba(4, 10, 20, 0.55);
}

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

body {
  font-family: 'Space Grotesk', 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top, #11284d 0%, #050b15 55%, #03060d 100%);
  color: #f5f7fb;
  line-height: 1.6;
  min-height: 100vh;
  padding-bottom: 4rem;
}

body::before,
body::after {
  content: '';
  position: fixed;
  width: 30vw;
  height: 30vw;
  filter: blur(90px);
  opacity: 0.45;
  z-index: -1;
  border-radius: 50%;
}

body::before {
  top: 5vh;
  left: 10vw;
  background: rgba(245, 180, 0, 0.35);
}

body::after {
  bottom: 10vh;
  right: 5vw;
  background: rgba(25, 180, 198, 0.35);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

main,
.site-header,
.site-footer {
  width: min(1200px, 94vw);
  margin: 0 auto;
}

.site-header {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem 2rem;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--surface);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: var(--shadow);
}

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

.brand img {
  width: clamp(120px, 12vw, 180px);
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

.brand-copy p {
  font-size: 0.95rem;
  color: var(--muted);
}

.tag-pill {
  display: inline-flex;
  padding: 0.2rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.quick-contact {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-weight: 600;
}

.quick-contact__item {
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(10, 24, 48, 0.7);
  transition: background 0.3s ease, color 0.3s ease;
}

.quick-contact__item:hover {
  background: rgba(25, 180, 198, 0.15);
  color: var(--accent);
}

main {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.hero {
  position: relative;
  border-radius: 32px;
  padding: clamp(2rem, 4vw, 4rem);
  overflow: hidden;
  background-image: linear-gradient(125deg, rgba(5, 10, 20, 0.85), rgba(7, 23, 45, 0.7)), url('../img/hero.jpg');
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(7, 23, 45, 0.8), rgba(9, 38, 72, 0.2));
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.78rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

h1,
h2,
h3 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
}

.lead {
  font-size: 1.1rem;
  color: #d4d9e6;
  margin-bottom: 2rem;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.countdown__item {
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(5, 9, 18, 0.5);
  text-align: center;
}

.countdown__number {
  font-size: 2rem;
  font-weight: 600;
  display: block;
}

.countdown__label {
  font-size: 0.85rem;
  color: var(--muted);
}

.countdown__message {
  font-size: 0.95rem;
  color: #d6dae6;
  margin-bottom: 1.5rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn-primary {
  background: linear-gradient(120deg, #f5b400, #ffcf4a);
  color: #0c1a2f;
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  background: transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.hero__highlights {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  list-style: none;
  font-size: 0.95rem;
}

.hero__highlights strong {
  font-size: 1.8rem;
  display: block;
}

.status,
.pillars,
.contact {
  background: var(--surface);
  border-radius: 32px;
  padding: clamp(2rem, 3vw, 3rem);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.status header p {
  color: var(--muted);
}

.status-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.update-card {
  padding: 1.5rem;
  border-radius: 24px;
  background: var(--surface-alt);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.pill {
  padding: 0.2rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.pill--progress {
  background: rgba(245, 180, 0, 0.15);
  color: var(--secondary);
  border-color: rgba(245, 180, 0, 0.3);
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.progress-bar span {
  display: block;
  height: 100%;
  width: var(--progress-value, 0%);
  background: linear-gradient(120deg, var(--secondary), #ffe082);
  border-radius: inherit;
  transition: width 0.8s ease;
}

.update-card ul {
  list-style: none;
  color: var(--muted);
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

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

.feature-card {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-card img {
  border-radius: 22px;
  object-fit: cover;
  max-height: 240px;
  width: 100%;
}

.feature-card--solid {
  background: rgba(9, 23, 45, 0.9);
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.check-list li,
.roadmap li {
  position: relative;
  padding-left: 1.4rem;
}

.check-list li::before,
.roadmap li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
}

.roadmap {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.roadmap small {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.contact-card {
  border-radius: 24px;
  background: rgba(11, 26, 47, 0.8);
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.contact-list span {
  font-size: 0.85rem;
  color: var(--muted);
}

.contact-list a,
.contact-list p {
  font-weight: 600;
}

.contact-list__emails {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.contact-form {
  background: rgba(5, 10, 20, 0.6);
  border-radius: 24px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(13, 23, 43, 0.9);
  color: #fff;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--accent);
}

.form-feedback {
  min-height: 1.2rem;
  font-size: 0.85rem;
  color: var(--accent);
}

.map-panel {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  background: rgba(255, 255, 255, 0.02);
}

.map-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85);
}

.site-footer {
  text-align: center;
  padding: 2rem 0 4rem;
  color: var(--muted);
}

.site-footer p {
  margin-bottom: 0.5rem;
}

@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .quick-contact {
    width: 100%;
  }
}

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

  .hero__highlights {
    flex-direction: column;
    gap: 1rem;
  }
}
