:root {
  --bg: #070707;
  --surface: rgba(18, 18, 18, 0.9);
  --surface-soft: rgba(14, 14, 14, 0.82);
  --text: #f6e3a2;
  --text-soft: #efe5c6;
  --muted: #a58a4f;
  --line: rgba(246, 227, 162, 0.14);
  --gold-1: #f4d983;
  --gold-2: #be8829;
  --success: #9ff0b5;
  --danger: #ff9d84;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text-soft);
  background:
    radial-gradient(circle at top center, rgba(244, 217, 131, 0.12), transparent 24%),
    linear-gradient(180deg, #020202 0%, #101010 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(244, 217, 131, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 217, 131, 0.03) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 78%);
}

.page-shell {
  width: min(100% - 18px, 980px);
  margin: 0 auto;
  padding: 18px 0 42px;
}

.hero-block,
.form-section {
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at top, rgba(244, 217, 131, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(11, 11, 11, 0.96), rgba(25, 18, 9, 0.94));
  box-shadow: var(--shadow);
}

.hero-block {
  display: grid;
  justify-items: center;
  text-align: center;
  padding: 28px 18px 24px;
}

.eyebrow,
.launch-note,
.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.launch-note {
  margin-top: 32px;
  margin-bottom: 6px;
  line-height: 1.7;
}

.hero-block h1,
.form-header h2 {
  margin: 10px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  line-height: 0.92;
  color: var(--text);
}

.hero-block h1 {
  font-size: clamp(3.6rem, 14vw, 7rem);
  letter-spacing: 0.04em;
}

.tm-mark {
  font-size: 0.24em;
  vertical-align: super;
  margin-left: 0.14em;
}

.hero-copy,
.form-header p {
  max-width: 38rem;
  line-height: 1.75;
  color: rgba(239, 229, 198, 0.88);
}

.contact-strip {
  display: grid;
  gap: 10px;
  justify-items: center;
  margin-top: 18px;
  padding-top: 14px;
}

/* ICON CONTAINER */
.contact-icons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 26px;
}

/* ICON BUTTON */
.icon-link {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--gold-1);

  border: 1px solid var(--line);
  background: rgba(244, 217, 131, 0.05);

  transition: all 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}

/* ICON SIZE */
.icon-link svg {
  width: 22px;
  height: 22px;
}

/* 🔥 PREMIUM HOVER */
.icon-link:hover {
  transform: translateY(-6px) scale(1.08);

  border-color: var(--gold-1);

  background: radial-gradient(
    circle,
    rgba(244, 217, 131, 0.18),
    rgba(244, 217, 131, 0.04)
  );

  box-shadow:
    0 10px 30px rgba(244, 217, 131, 0.18),
    0 0 18px rgba(244, 217, 131, 0.12);
}

/* ✨ subtle glow */
.icon-link::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(244, 217, 131, 0.2),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.icon-link:hover::before {
  opacity: 1;
}

/* LABEL */
.icon-link::after {
  content: attr(data-label);
  position: absolute;
  bottom: -26px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0;
  transition: 0.3s ease;
}

.icon-link:hover::after {
  opacity: 1;
}

.button {
  min-height: 54px;
  padding: 14px 26px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.button:disabled {
  opacity: 0.78;
  cursor: not-allowed;
}

.button-primary {
  background: linear-gradient(180deg, var(--gold-1), var(--gold-2));
  color: #1a1308;
}

.reveal-stage {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 300px;
  margin-top: 20px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface-soft);
  overflow: hidden;
  isolation: isolate;
}

.reveal-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0;
  transition: opacity 1.1s ease, transform 1.1s ease;
}

.reveal-glow-one {
  width: 72%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(244, 217, 131, 0.32), transparent 68%);
}

.reveal-glow-two {
  width: 48%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(190, 136, 41, 0.24), transparent 68%);
}

.hero-logo {
  position: relative;
  width: min(100%, 390px);
  opacity: 0;
  filter: blur(18px) brightness(1.2);
  transform: translateY(32px) scale(0.88);
  transition:
    opacity 1.1s ease,
    transform 1.1s cubic-bezier(0.19, 1, 0.22, 1),
    filter 1.1s ease;
}

.reveal-stage.is-live .reveal-glow-one {
  opacity: 1;
  transform: scale(1.14);
}

.reveal-stage.is-live .reveal-glow-two {
  opacity: 0.72;
  transform: scale(1.3);
}

.reveal-stage.is-live .hero-logo {
  opacity: 1;
  filter: blur(0) brightness(1);
  transform: translateY(0) scale(1);
}

.form-section {
  margin-top: 18px;
  padding: 22px 18px;
}

.form-header h2 {
  font-size: clamp(2rem, 8vw, 3.6rem);
}

.is-hidden {
  display: none;
}

.signup-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.signup-form label {
  font-size: 0.92rem;
}

/* =========================
   FORM INPUTS
========================= */

.signup-form input {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(244, 217, 131, 0.14);
  border-radius: 14px;
  background: rgba(255, 244, 210, 0.05);
  color: var(--text-soft);
  font: inherit;
  transition: all 0.25s ease;
}

.signup-form input::placeholder {
  color: rgba(239, 229, 198, 0.42);
}

/* 🔥 Premium focus effect */
.signup-form input:focus {
  border-color: var(--gold-1);
  background: rgba(244, 217, 131, 0.06);
}

.signup-form input:focus-visible,
.button:focus-visible {
  outline: 2px solid var(--gold-1);
  outline-offset: 3px;
}


/* =========================
   FORM STATUS
========================= */

.status-success {
  color: var(--success);
}

.status-error {
  color: var(--danger);
}


/* =========================
   CONTACT ICON ANIMATION
========================= */

/* hidden initially */
.contact-icons {
  opacity: 0;
  transform: translateY(10px);
}

/* visible after launch */
.contact-icons.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease;
}


/* =========================
   BUTTON UPGRADE
========================= */

.button-primary:hover {
  background: linear-gradient(180deg, #ffe7a8, #c6922f);
}


/* =========================
   RESPONSIVE
========================= */

@media (min-width: 768px) {
  .page-shell {
    width: min(100% - 28px, 1120px);
    padding-top: 24px;
  }

  .hero-block {
    padding: 34px 28px 28px;
  }

  .reveal-stage {
    min-height: 380px;
    padding: 24px;
  }

  .hero-logo {
    width: min(76%, 430px);
  }

  .form-section {
    padding: 28px;
  }
}

@media (min-width: 1024px) {
  .page-shell {
    width: min(100% - 40px, 1180px);
    padding-top: 28px;
  }

  .hero-block {
    padding: 40px 40px 32px;
  }

  .hero-copy {
    max-width: 42rem;
  }

  .reveal-stage {
    min-height: 460px;
  }

  .hero-logo {
    width: min(70%, 470px);
  }

  .form-section {
    padding: 30px 40px;
  }

  .signup-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 16px;
  }

  .signup-form label[for="name"],
  .signup-form label[for="email"],
  .signup-form label[for="phone"],
  .signup-form label[for="city"],
  .signup-form input {
    grid-column: span 1;
  }

  .signup-form button,
  .signup-form .form-note {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1440px) {
  .page-shell {
    width: min(100% - 64px, 1280px);
  }

  .hero-block {
    padding: 46px 46px 36px;
  }

  .reveal-stage {
    min-height: 520px;
  }

  .hero-logo {
    width: min(64%, 510px);
  }
}