:root {
  --bg: #050506;
  --bg-elevated: #0b0c0f;
  --accent: #f5deba;
  --accent-soft: rgba(245, 222, 186, 0.22);
  --text-main: #f5f5f5;
  --text-muted: #9a9aa2;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --outline: rgba(245, 222, 186, 0.6);
  --shadow-soft: 0 40px 120px rgba(0, 0, 0, 0.85);
}

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

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top, #141620 0, #050506 55%);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.13;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n' x='0' y='0'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='noStitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
  z-index: 0;
}

.page {
  position: relative;
  min-height: 100vh;
  padding: 32px 6vw 28px;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: radial-gradient(circle at top left, #181926, #050506);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(24px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 11px;
}

.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(245, 222, 186, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 16px;
  color: var(--accent);
  background: radial-gradient(circle at 30% 0%, #f5deba 0%, #3a2d1f 40%, #050506 80%);
  box-shadow: 0 0 0 1px rgba(245, 222, 186, 0.18),
    0 18px 40px rgba(0, 0, 0, 0.8);
}

.logo-word {
  color: var(--text-main);
}

.nav {
  display: flex;
  gap: 24px;
  font-size: 12px;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transition: width 0.25s ease;
}

.nav a:hover {
  color: var(--accent);
}

.nav a:hover::after {
  width: 100%;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
  margin-top: 72px;
}

.hero-copy {
  max-width: 580px;
}

.eyebrow {
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 22px;
}

h1 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(2.9rem, 4vw, 3.9rem);
  line-height: 1.1;
  margin: 0 0 20px;
}

.outline {
  color: transparent;
  -webkit-text-stroke: 0.7px var(--outline);
  text-stroke: 0.7px var(--outline);
}

.subcopy {
  color: var(--text-muted);
  max-width: 460px;
  font-size: 0.98rem;
  line-height: 1.75;
}

.cta-group {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.notify-form {
  border-radius: 18px;
  padding: 18px 18px 16px;
  border: 1px solid var(--border-subtle);
  background: radial-gradient(circle at top left, #191b25 0, #050506 75%);
  box-shadow: var(--shadow-soft);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.field-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 10px;
  color: var(--text-muted);
}

.field-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.field-row input {
  flex: 1;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(5, 5, 6, 0.92);
  color: var(--text-main);
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.field-row input::placeholder {
  color: #5e6068;
}

.field-row input:focus {
  border-color: rgba(245, 222, 186, 0.6);
  box-shadow: 0 0 0 1px rgba(245, 222, 186, 0.4);
  background: rgba(9, 9, 11, 0.96);
}

.btn-primary {
  border: none;
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  background: linear-gradient(135deg, #f5deba, #d5b188, #8f6b3d);
  color: #15151a;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.85);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.6), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-primary:active {
  transform: translateY(1px) scale(0.99);
}

.field-hint {
  font-size: 11px;
  color: var(--text-muted);
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 11px;
}

.meta-item {
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  padding: 8px 12px;
  background: linear-gradient(145deg, rgba(11, 12, 15, 0.96), rgba(18, 19, 24, 0.96));
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.meta-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.meta-value {
  color: var(--accent);
  font-size: 12px;
}

.hero-visual {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  transform-origin: center;
}

.orb-main {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle at 30% 0%, #f5deba 0, #7d5a33 30%, #21140b 60%, #050506 85%);
  box-shadow: 0 50px 140px rgba(0, 0, 0, 0.95),
    0 0 0 1px rgba(245, 222, 186, 0.4);
}

.orb-soft {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle at 30% 10%, rgba(245, 222, 186, 0.6), transparent 55%);
  opacity: 0.25;
}

.frame {
  position: relative;
  width: min(380px, 100%);
  aspect-ratio: 3 / 4;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(245, 222, 186, 0.2);
  background: radial-gradient(circle at top, rgba(245, 222, 186, 0.15), transparent 55%),
    linear-gradient(160deg, rgba(13, 15, 20, 0.96), rgba(4, 4, 6, 1));
  backdrop-filter: blur(26px);
  box-shadow: var(--shadow-soft);
}

.frame-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(245, 222, 186, 0.8), transparent);
  opacity: 0.5;
}

.frame-line-top,
.frame-line-bottom {
  left: 8%;
  right: 8%;
  height: 1px;
}

.frame-line-top {
  top: 18%;
}

.frame-line-bottom {
  bottom: 20%;
}

.frame-line-left,
.frame-line-right {
  top: 10%;
  bottom: 12%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(245, 222, 186, 0.8), transparent);
}

.frame-line-left {
  left: 15%;
}

.frame-line-right {
  right: 18%;
}

.frame-inner {
  position: absolute;
  inset: 0;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.frame-tagline {
  font-size: 13px;
  color: rgba(244, 244, 244, 0.88);
  max-width: 210px;
  line-height: 1.7;
}

.bottom {
  margin-top: 80px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.timeline {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: var(--text-muted);
}

.timeline-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.timeline-track {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(245, 222, 186, 0.5), transparent);
  position: relative;
}

.timeline-dot {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(245, 222, 186, 0.4);
}

.timeline-copy {
  max-width: 250px;
}

.columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  font-size: 0.95rem;
}

.column h2,
.column h3 {
  font-family: "Playfair Display", "Times New Roman", serif;
  margin: 0 0 10px;
  font-weight: 500;
}

.column p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.btn-text {
  margin-top: 14px;
  padding: 0;
  border: none;
  background: none;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
}

.btn-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 32%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.pill {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(245, 222, 186, 0.6);
  font-size: 11px;
  color: var(--accent);
  background: rgba(5, 5, 6, 0.9);
}

.pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

.footer {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 14px;
}

.footer-dot {
  opacity: 0.5;
}

@media (max-width: 960px) {
  .page {
    padding: 20px 18px 22px;
  }

  .header {
    padding-inline: 18px;
    border-radius: 22px;
  }

  .nav {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1.1fr);
    margin-top: 48px;
  }

  .hero-visual {
    order: -1;
    margin-bottom: 24px;
  }

  .bottom {
    margin-top: 60px;
  }

  .columns {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }
}

/* Minimal hero layout */
.minimal-hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.brand-logo-container {
  margin-bottom: 48px;
}

.brand-logo {
  max-width: 240px;
  width: 50vw;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 26px 60px rgba(0, 0, 0, 0.9));
}

.minimal-copy {
  max-width: 600px;
}

.minimal-copy h1 {
  position: relative;
  display: inline-block;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin: 0 0 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  /* Gold paint base */
  background-image: linear-gradient(
      120deg,
      #8a612c 0%,
      #f5deba 20%,
      #fff4dd 40%,
      #c89a55 60%,
      #6b4a25 100%
    );
  background-size: 220% 220%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.minimal-copy h1::after {
  content: "";
  position: absolute;
  inset: -4px 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.6' numOctaves='2' stitchTiles='noStitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.8'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.35s ease-out;
}

.minimal-copy .tagline {
  margin: 0;
  color: var(--text-muted);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 300;
}

.minimal-copy h1:hover {
  animation: gold-shimmer 1.8s linear infinite;
}

.minimal-copy h1:hover::after {
  opacity: 0.45;
}

@keyframes gold-shimmer {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 120% 50%;
  }
}

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

  .field-row {
    flex-direction: column;
    align-items: stretch;
  }

  .field-row input {
    width: 100%;
  }

  .btn-primary {
    justify-content: center;
    width: 100%;
  }

  .meta {
    flex-direction: column;
  }

  .hero-visual {
    min-height: 260px;
  }

  .frame {
    border-radius: 22px;
  }

  .minimal-hero {
    padding: 32px 18px;
  }

  .brand-logo-container {
    margin-bottom: 36px;
  }

  .brand-logo {
    max-width: 180px;
  }
}




