 :root {
  --bg: #090705;
  --bg-soft: #130b06;
  --gold: #f48a19;
  --gold-light: #ffd37c;
  --gold-deep: #a95409;
  --text: #fff7e8;
  --muted: #d9b98a;
  --glass: rgba(255, 255, 255, 0.07);
  --border: rgba(244, 138, 25, 0.34);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 72% 18%, rgba(244, 138, 25, 0.22), transparent 34%),
    radial-gradient(circle at 20% 78%, rgba(255, 211, 124, 0.12), transparent 28%),
    linear-gradient(135deg, #040302 0%, #140b05 46%, #070504 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
}

.background-sparkles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(255, 211, 124, 0.85) 0 2px, transparent 3px) 8% 22% / 180px 180px,
    radial-gradient(circle, rgba(244, 138, 25, 0.75) 0 1.5px, transparent 3px) 70% 18% / 220px 220px,
    radial-gradient(circle, rgba(255, 255, 255, 0.55) 0 1px, transparent 2px) 40% 72% / 260px 260px;
  opacity: 0.45;
  animation: sparkleMove 9s linear infinite;
}

.site-header,
.hero,
.seo-content,
.site-footer {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--text);
}

.brand img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(244, 138, 25, 0.18));
}

.brand span {
  font-size: clamp(1rem, 2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.header-note {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold-light);
  padding: 11px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.18);
}

.hero {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 46px;
  align-items: center;
  min-height: calc(100vh - 142px);
  padding: 28px 0 58px;
}

.hero-content {
  animation: rise 0.9s ease both;
}

.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--gold-light);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin: 0 0 18px;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

h1 {
  margin: 0;
  font-size: clamp(2.7rem, 8vw, 6.8rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
  max-width: 780px;
}

h1 span {
  color: transparent;
  background: linear-gradient(90deg, #fff7df, var(--gold-light), var(--gold), #fff4c9);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

.hero-text {
  margin: 28px 0 0;
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.25rem);
  line-height: 1.75;
}

.notify-form {
  margin-top: 34px;
  display: flex;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.035));
  border-radius: 28px;
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  max-width: 650px;
}

.notify-form label {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  overflow: hidden;
  white-space: nowrap;
}

.notify-form input {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(255, 211, 124, 0.22);
  background: rgba(0,0,0,0.22);
  color: var(--text);
  border-radius: 18px;
  padding: 17px 18px;
  font-size: 1rem;
  outline: none;
}

.notify-form input::placeholder {
  color: rgba(255, 247, 232, 0.55);
}

.notify-form input:focus {
  border-color: rgba(255, 211, 124, 0.72);
  box-shadow: 0 0 0 4px rgba(244, 138, 25, 0.15);
}

.notify-form button {
  border: 0;
  border-radius: 18px;
  padding: 0 24px;
  font-weight: 800;
  cursor: pointer;
  color: #170c04;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 16px 36px rgba(244, 138, 25, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.notify-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(244, 138, 25, 0.34);
}

.form-message {
  min-height: 24px;
  margin: 12px 0 0 16px;
  color: var(--gold-light);
}

.launch-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.launch-tags span {
  border: 1px solid rgba(255, 211, 124, 0.2);
  color: #ffe2a3;
  background: rgba(0,0,0,0.18);
  padding: 10px 13px;
  border-radius: 999px;
  font-size: 0.92rem;
}

.hero-visual {
  animation: floatIn 1.1s ease both;
}

.visual-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 42px;
  padding: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.visual-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 180deg, transparent, rgba(255, 211, 124, 0.22), transparent, rgba(244, 138, 25, 0.2), transparent);
  animation: spin 8s linear infinite;
}

.visual-card img {
  position: relative;
  width: 100%;
  display: block;
  border-radius: 30px;
  background: #090705;
}

.seo-content {
  padding: 32px 0 46px;
  color: var(--muted);
}

.seo-content h2 {
  color: var(--gold-light);
  font-size: 1.2rem;
  margin: 0 0 10px;
}

.seo-content p {
  max-width: 850px;
  line-height: 1.7;
  margin: 0;
}

.site-footer {
  border-top: 1px solid rgba(255, 211, 124, 0.16);
  padding: 22px 0 32px;
  color: rgba(255, 247, 232, 0.65);
  font-size: 0.95rem;
}

@keyframes shimmer {
  to { background-position: -250% 0; }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes floatIn {
  from { opacity: 0; transform: translateY(28px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes sparkleMove {
  from { transform: translateY(0); }
  to { transform: translateY(-28px); }
}

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

  .header-note {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 12px;
  }

  .hero-visual {
    order: -1;
  }

  .visual-card {
    border-radius: 30px;
  }
}

@media (max-width: 620px) {
  .brand img {
    width: 74px;
    height: 74px;
  }

  .notify-form {
    flex-direction: column;
    border-radius: 22px;
  }

  .notify-form button {
    min-height: 54px;
  }

  h1 {
    letter-spacing: -0.065em;
  }
}
