:root {
  --navy:       #01061f;
  --navy-mid:   #122050;
  --navy-light: #1A2D6B;
  --gold:       #A66932;
  --gold-light: #E6BF96;
  --white:      #FFFFFF;
  --off-white:  #F7F5F0;
  --muted:      #8899BB;
  --gutter:     clamp(24px, 6vw, 96px);
  --max-w:      1160px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a { text-decoration: none; color: inherit; }

@keyframes fadeUp  { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:none; } }
@keyframes fadeIn  { from { opacity:0; } to { opacity:1; } }
@keyframes csWordIn { to { opacity:1; transform:translateY(0); } }
@keyframes csBlink  { 0%,100% { opacity:1; } 50% { opacity:0; } }
@keyframes pip-pulse {
  0%,100% { box-shadow:0 0 0 0 rgba(196,146,74,0.6); }
  50%      { box-shadow:0 0 0 6px rgba(196,146,74,0); }
}
@keyframes breathe {
  0%,100% { transform:translateX(-50%) scale(1); opacity:1; }
  50%      { transform:translateX(-50%) scale(1.1); opacity:0.75; }
}
@keyframes scrollLine {
  0%   { transform:scaleY(0); transform-origin:top; opacity:1; }
  50%  { transform:scaleY(1); transform-origin:top; opacity:1; }
  51%  { transform:scaleY(1); transform-origin:bottom; }
  100% { transform:scaleY(0); transform-origin:bottom; opacity:0.3; }
}

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #01061f;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(196,146,74,0.15);
  height: 68px;
  transition: background 0.3s;
}
.site-header.scrolled { background: #01061f; }
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo { display:flex; align-items:center; gap:13px; cursor:default; }
.logo-icon { width:36px; height:36px; flex-shrink:0; }
.logo-text { display:flex; flex-direction:column; gap:2px; }
.logo-name {
  font-family:'Montserrat','Cormorant Garamond', Georgia, serif;
  font-size: 21px; font-weight: 600;
  letter-spacing: 0.12em; color: var(--white); line-height: 1;
}
.logo-sub {
  font-size: 9px; font-weight: 400;
  letter-spacing: 0.28em; color: var(--gold-light);
  text-transform: uppercase; line-height: 1;
}

.logo {
	width: 170px; 
	max-width: 100%;
}

.header-coming-soon { display:flex; align-items:center; }
.cs-label { display:flex; align-items:center; gap:7px; overflow:hidden; }
.cs-word {
  font-family:'Montserrat','Cormorant Garamond', Georgia, serif;
  font-size: 16px; font-weight: 600; letter-spacing: 0.1em;
  display: inline-block; opacity: 0; transform: translateY(12px);
  animation: csWordIn 0.6s cubic-bezier(0.22,1,0.36,1) forwards;
}
.cs-word:nth-child(1) { color: rgba(255,255,255,0.85); animation-delay: 0.5s; }
.cs-word:nth-child(2) { color: var(--gold-light); animation-delay: 0.72s; }
.cs-cursor {
  width: 2px; height: 16px; background: var(--gold); border-radius: 1px; opacity: 0;
  animation: csWordIn 0.3s ease 1.1s forwards, csBlink 1.1s step-end 1.4s infinite;
}

.hero {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 0 72px;
  overflow: hidden;
  background: var(--navy);
}

#particle-canvas { position:absolute; inset:0; pointer-events:none; z-index:0; }

.hero-glow { position:absolute; border-radius:50%; pointer-events:none; z-index:0; }
.hero-glow-1 {
  width: 900px; height: 900px; top: -260px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(196,146,74,0.11) 0%, transparent 62%);
  animation: breathe 7s ease-in-out infinite;
}
.hero-glow-2 {
  width: 500px; height: 500px; bottom: -120px; right: -80px;
  background: radial-gradient(circle, rgba(26,45,107,0.7) 0%, transparent 70%);
}
.hero-glow-3 {
  width: 380px; height: 380px; top: 25%; left: -80px;
  background: radial-gradient(circle, rgba(196,146,74,0.06) 0%, transparent 70%);
  animation: breathe 9s ease-in-out infinite reverse;
}

.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(196,146,74,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,146,74,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-inner {
  position: relative; z-index: 1;
  text-align: center;
  width: 100%;
  max-width: 640px;
  padding: 0 var(--gutter);
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(196,146,74,0.1); border: 1px solid rgba(196,146,74,0.3);
  border-radius: 40px; padding: 5px 16px 5px 11px; margin-bottom: 22px;
  font-size: 10.5px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-light); opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) 0.2s forwards;
}
.eyebrow-pip {
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
  animation: pip-pulse 2.2s ease-in-out infinite;
}

.hero-headline {
  font-family:'Montserrat','Cormorant Garamond', Georgia, serif;
  font-size: clamp(56px, 9.5vw, 112px);
  font-weight: 700; line-height: 1.04; letter-spacing: -0.01em;
  color: var(--white); margin-bottom: 10px;
  opacity: 0; animation: fadeUp 1s cubic-bezier(0.22,1,0.36,1) 0.35s forwards;
}
.hl-coming { font-weight: 700; color: var(--white); }
.hl-soon   { font-weight: 700; color: var(--gold); -webkit-text-fill-color: var(--gold); }

.hero-rule {
  width: 50px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 16px auto; opacity: 0; animation: fadeIn 1s ease 0.55s forwards;
}

.hero-sub {
  font-size: 16px; font-weight: 300; line-height: 1.72;
  color: rgba(255,255,255,0.58); max-width: 460px;
  margin: 0 auto 28px; opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.22,1,0.36,1) 0.5s forwards;
}

.form-wrap { opacity:0; animation: fadeUp 1s cubic-bezier(0.22,1,0.36,1) 0.65s forwards; }
.form-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(196,146,74,0.22);
  border-radius: 14px; backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 22px 26px; max-width: 480px; margin: 0 auto;
  box-shadow: 0 0 60px rgba(13,27,62,0.5), inset 0 1px 0 rgba(255,255,255,0.07);
}
.form-label {
  font-size: 10.5px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 11px; display: block;
}
.form-row { display: flex; gap: 9px; }
.form-input {
  flex: 1; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px; padding: 12px 16px;
  font-family: 'Inter', sans-serif; font-size: 14px; color: var(--white);
  outline: none; transition: border-color 0.2s, background 0.2s;
}
.form-input::placeholder { color: rgba(255,255,255,0.3); }
.form-input:focus { border-color: rgba(196,146,74,0.55); background: rgba(255,255,255,0.09); }
.form-input.err { border-color: rgba(220,80,80,0.6); }
.form-btn {
  background: linear-gradient(135deg, var(--gold-light) 0%, #A87030 100%);
  border: none; border-radius: 8px; padding: 12px 22px;
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; color: #1A0E00;
  cursor: pointer; white-space: nowrap;
  transition: transform 0.15s, opacity 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(196,146,74,0.3);
}
.form-btn:hover  { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(196,146,74,0.45); }
.form-btn:active { transform: translateY(0); }
.form-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.form-note  { font-size: 11px; color: rgba(255,255,255,0.25); margin-top: 11px; }
.form-error { font-size: 12px; color: #E07070; margin-top: 8px; display: none; }
.form-error.show { display: block; }
.form-success {
  display: none; align-items: center; gap: 9px;
  font-size: 14px; color: #6EC9A0; font-weight: 500;
}
.form-success.show { display: flex; }
.success-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(110,201,160,0.15);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 6px;
  opacity: 0; animation: fadeIn 1s ease 1.4s forwards;
}
.scroll-cue-label { font-size: 9.5px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.26); }
.scroll-cue-line {
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, rgba(196,146,74,0.6), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

footer {
  background: var(--navy);
  border-top: 1px solid rgba(196,146,74,0.12);
  padding: 36px 0 24px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 18px;
}
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand-copy {
  font-size: 13px; line-height: 1.65;
  color: rgba(255,255,255,0.32); max-width: 240px;
}
.footer-col-title {
  font-size: 10.5px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.footer-col-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link-ph {
  height: 9px; border-radius: 4px; background: rgba(255,255,255,0.08);
  animation: shimmer 2.4s ease-in-out infinite;
}
@keyframes shimmer { 0%,100% { opacity:0.6; } 50% { opacity:1; } }
.footer-link-ph.w80{width:80%;} .footer-link-ph.w65{width:65%;}
.footer-link-ph.w55{width:55%;} .footer-link-ph.w75{width:75%;} .footer-link-ph.w90{width:90%;}

.footer-bottom {
  display: flex; align-items: center;
  justify-content: space-between; gap: 14px; flex-wrap: wrap;
}
.footer-legal { font-size: 11.5px; color: rgba(255,255,255,0.22); line-height: 1.6; }
.footer-legal a { color: rgba(196,146,74,0.55); transition: color 0.2s; }
.footer-legal a:hover { color: var(--gold-light); }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(196,146,74,0.18);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.social-btn:hover { background: rgba(196,146,74,0.12); border-color: rgba(196,146,74,0.4); }
.social-btn svg { opacity: 0.5; transition: opacity 0.2s; }
.social-btn:hover svg { opacity: 1; }

@media (max-width: 700px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .form-row { flex-direction: column; }
  .form-card { padding: 18px 16px; }
  .logo-text { display: none; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .scroll-cue { display: none; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
