@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Orbitron:wght@400;500&display=swap");

:root {
  --bg: #040506;
  --panel: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
  --panel-strong: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
  --border: rgba(255, 255, 255, 0.1);
  --text: #f5f7fb;
  --muted: rgba(245, 247, 251, 0.7);
  --soft: rgba(245, 247, 251, 0.46);
  --accent: #9acaff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

body {
  overflow-x: hidden;
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at top, rgba(122, 154, 255, 0.14), transparent 22%),
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.06), transparent 18%),
    linear-gradient(180deg, #090b0f 0%, #040506 100%);
}

.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 20px;
}

.topbar {
  width: min(100%, 1440px);
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 22px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--panel);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.brand,
.tag,
.eyebrow,
.card-label,
.live-chip {
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 11px;
}

.brand {
  color: rgba(255, 255, 255, 0.9);
}

.tag {
  color: rgba(255, 255, 255, 0.56);
  text-align: right;
}

.hero {
  width: min(100%, 1440px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 22px;
  align-items: stretch;
}

.hero-media,
.hero-content,
.support-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 40px;
  box-shadow: 0 32px 120px rgba(0, 0, 0, 0.42);
}

.hero-media {
  min-height: calc(100vh - 120px);
  background: #090b0f;
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 6, 8, 0.04) 0%, rgba(5, 6, 8, 0.14) 45%, rgba(5, 6, 8, 0.58) 100%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.live-chip {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: rgba(255, 255, 255, 0.84);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 42px;
  background:
    radial-gradient(circle at top, rgba(154, 202, 255, 0.08), transparent 22%),
    var(--panel);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
}

.eyebrow {
  color: var(--accent);
}

h1 {
  margin: 18px 0 0;
  font-family: "Orbitron", "Inter", sans-serif;
  font-size: clamp(3.2rem, 7vw, 6.6rem);
  line-height: 0.94;
  letter-spacing: 0.04em;
  font-weight: 400;
  text-transform: uppercase;
}

.lead {
  max-width: 34rem;
  margin: 24px 0 0;
  font-family: "Orbitron", "Inter", sans-serif;
  font-size: 1.08rem;
  line-height: 1.9;
  letter-spacing: 0.03em;
  font-weight: 400;
  color: var(--muted);
}

.info-card {
  margin-top: 28px;
  max-width: 34rem;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: var(--panel-strong);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.card-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
}

.card-copy {
  margin: 14px 0 0;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.card-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
}

.footer {
  width: min(100%, 1440px);
  margin: 18px auto 0;
  padding: 16px 6px 8px;
  text-align: center;
}

.footer p {
  margin: 0;
  font-family: "Orbitron", "Inter", sans-serif;
  color: var(--soft);
  font-size: 5px;
  font-weight: 400;
  letter-spacing: 0.28em;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 68vh;
  }
}

@media (max-width: 640px) {
  .page {
    padding: 14px;
  }

  .topbar {
    padding: 14px 16px;
    border-radius: 26px;
    flex-direction: column;
    align-items: flex-start;
  }

  .tag {
    text-align: left;
  }

  .hero-media,
  .hero-content {
    border-radius: 28px;
  }

  .hero-content {
    padding: 26px;
  }

  .info-card {
    padding: 20px;
    border-radius: 22px;
  }

  .live-chip {
    top: 18px;
    left: 18px;
  }
}
