:root {
  --ink: #171510;
  --muted: #d9d5cd;
  --paper: #f7f3ea;
  --primary: #1c2d5c;
  --secondary: #ab1722;
  --secondary-dark: #861019;
  --white: #ffffff;
  --glass: rgba(11, 15, 28, 0.62);
  --line: rgba(255, 255, 255, 0.18);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  font-family: Roboto, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white);
  background: var(--ink);
}

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

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

.coming-soon {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: clamp(16px, 4vh, 48px);
  overflow: hidden;
}

.background-video,
.page-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
}

.background-video {
  object-fit: cover;
}

.page-overlay {
  background:
    linear-gradient(90deg, rgba(9, 11, 18, 0.92), rgba(9, 11, 18, 0.68) 48%, rgba(9, 11, 18, 0.32)),
    linear-gradient(0deg, rgba(9, 11, 18, 0.78), rgba(9, 11, 18, 0.18));
}

.notice {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding: clamp(20px, 3vh, 32px);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: clamp(20px, 4vh, 36px);
  padding: 8px 10px;
  background: var(--white);
  border-radius: 8px;
}

.brand img {
  width: clamp(90px, 12vw, 120px);
  height: auto;
}

.eyebrow {
  margin: 0 0 8px;
  color: #f0c64a;
  font-family: Lato, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  max-width: 680px;
  margin: 0 0 16px;
  font-family: Lato, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: 0;
}

.intro {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.6;
}

.launch-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(8px, 2vw, 16px);
  width: min(540px, 100%);
  margin: clamp(20px, 3.5vh, 28px) 0 8px;
}

.launch-panel div {
  min-width: 0;
  padding: clamp(10px, 2vh, 16px);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  text-align: center;
}

.launch-panel div:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(240, 198, 74, 0.15);
  border-color: rgba(240, 198, 74, 0.3);
}

.launch-panel span,
.launch-panel small {
  display: block;
  font-family: Lato, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.launch-panel span {
  color: var(--white);
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 900;
  line-height: 1;
}

.launch-panel small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.launch-note {
  min-height: 20px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(18px, 3vh, 24px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 24px;
  font-family: Lato, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 900;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.button.primary {
  color: var(--white);
  background: var(--secondary);
  border-color: var(--secondary);
}

.button.primary:hover {
  background: var(--secondary-dark);
  border-color: var(--secondary-dark);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.38);
}

.button.secondary:hover {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.14);
}

.contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: clamp(20px, 3.5vh, 28px);
  color: rgba(255, 255, 255, 0.74);
  font-style: normal;
  font-size: 13px;
}

.contact a {
  transition: color 0.2s ease;
}

.contact a:hover {
  color: var(--white);
}

.contact span {
  width: 1px;
  background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 680px) {
  .coming-soon {
    align-items: end;
    padding: 18px;
  }

  .notice {
    padding: 22px;
  }

  .brand {
    margin-bottom: 34px;
  }

  .launch-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .contact {
    display: grid;
  }

  .contact span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .background-video {
    display: none;
  }

  body {
    background: linear-gradient(135deg, var(--primary), var(--ink));
  }
}
