:root {
  --black: #030303;
  --soft-black: #0d0b08;
  --gold: #c8a055;
  --gold-light: #f1d58a;
  --white: #ffffff;
  --muted: rgba(255,255,255,.72);
  --line: rgba(200,160,85,.32);
  --glass: rgba(255,255,255,.055);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white);
  background: var(--black);
}

.page-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 15%, rgba(200,160,85,.20), transparent 27rem),
    radial-gradient(circle at 8% 88%, rgba(200,160,85,.12), transparent 28rem),
    linear-gradient(135deg, #000 0%, #070604 45%, #100d08 100%);
  overflow: hidden;
}

.hero {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 34px 0 42px;
  display: flex;
  flex-direction: column;
}

.ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  pointer-events: none;
  opacity: .55;
}
.ambient-one {
  width: 360px;
  height: 360px;
  border: 1px solid rgba(200,160,85,.23);
  right: -150px;
  top: 80px;
}
.ambient-two {
  width: 190px;
  height: 190px;
  border: 1px solid rgba(255,255,255,.12);
  left: -90px;
  bottom: 110px;
}

.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 800;
  font-size: .92rem;
}
.brand img { width: 36px; height: 48px; object-fit: contain; }
.contact-link {
  color: var(--gold-light);
  text-decoration: none;
  border: 1px solid var(--line);
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.035);
}

.hero-grid {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 64px;
  padding: 72px 0 46px;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .76rem;
  font-weight: 800;
}
h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: .92;
  letter-spacing: -.055em;
  max-width: 780px;
}
.intro {
  margin: 28px 0 34px;
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.8;
}
.notify-form {
  width: min(620px, 100%);
  padding: 8px;
}
.notify-form label {
  display: block;
  margin-bottom: 10px;
  font-size: .87rem;
  color: rgba(255,255,255,.78);
}
.form-row {
  display: flex;
  gap: 10px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(18px);
}
input {
  flex: 1;
  min-width: 0;
  color: var(--white);
  background: transparent;
  border: 0;
  outline: 0;
  padding: 0 18px;
  font: inherit;
}
input::placeholder { color: rgba(255,255,255,.44); }
button {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 15px 24px;
  color: #120e05;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 18px 44px rgba(200,160,85,.22);
}
.form-message { min-height: 22px; color: var(--gold-light); margin: 10px 18px 0; }

.feature-card {
  position: relative;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.025));
  box-shadow: 0 30px 90px rgba(0,0,0,.4);
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(200,160,85,.18);
  border-radius: 26px;
  pointer-events: none;
}
.logo-stage {
  min-height: 320px;
  display: grid;
  place-items: center;
}
.logo-stage img {
  width: min(190px, 54vw);
  height: auto;
  filter: drop-shadow(0 26px 44px rgba(200,160,85,.18));
}
.card-kicker {
  margin: 10px 0 24px;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .74rem;
  font-weight: 800;
}
.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.countdown div {
  padding: 15px 10px;
  text-align: center;
  border-radius: 18px;
  background: rgba(0,0,0,.34);
  border: 1px solid rgba(255,255,255,.08);
}
.countdown strong { display: block; font-size: 1.45rem; color: var(--white); }
.countdown span { display: block; color: rgba(255,255,255,.58); font-size: .72rem; margin-top: 4px; }
.small-note { color: var(--muted); line-height: 1.7; margin: 24px 0 0; }

.service-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: var(--line);
}
.service-strip span {
  padding: 18px 16px;
  text-align: center;
  background: rgba(0,0,0,.46);
  color: rgba(255,255,255,.82);
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

@media (max-width: 880px) {
  .hero { width: min(100% - 28px, 720px); padding-top: 24px; }
  .hero-grid { grid-template-columns: 1fr; gap: 34px; padding-top: 58px; }
  .feature-card { padding: 26px; }
  .logo-stage { min-height: 220px; }
  .service-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .topbar { align-items: flex-start; }
  .contact-link { display: none; }
  .form-row { border-radius: 24px; flex-direction: column; }
  input { padding: 14px 16px; }
  button { width: 100%; }
  .countdown { grid-template-columns: repeat(2, 1fr); }
  .service-strip { grid-template-columns: 1fr; }
}
.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
}

.logo {
    height: 100px;
    width: auto;
}

.contact-link {
    color: #C9A55C;
    text-decoration: none;
    font-weight: 500;
}