@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* ═══════════════════════════════════════
   DESIGN TOKENS
   Saffron-amber palette — distinct from Luxe Haven's yellow-gold
═══════════════════════════════════════ */
:root {
  --navy:       #0C1220;
  --navy-mid:   #141D30;
  --navy-light: #1D2C48;
  --amber:      #E07B2A;
  --amber-light: #F2A252;
  --white:      #ffffff;
  --text-muted: #7C8DAA;
  --border:     rgba(224, 123, 42, 0.22);
}

/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html, body {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--navy);
  color: var(--white);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

img {
  display: block;
  max-width: 100%;
}

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 80px;
  background: rgba(12, 18, 32, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  height: 100%;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--amber);
  background: rgba(224, 123, 42, 0.08);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.3px;
}

.logo-tagline {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--amber);
}

.nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 7px 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(224, 123, 42, 0.06);
}

.nav-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse 2s ease-in-out infinite;
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 110px 5% 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 55% at 68% 50%, rgba(20, 50, 90, 0.55) 0%, transparent 70%),
    radial-gradient(ellipse 45% 45% at 15% 85%, rgba(224, 123, 42, 0.07) 0%, transparent 60%),
    linear-gradient(155deg, #0C1220 0%, #141D30 55%, #0E1A2E 100%);
}

.hero-image-panel {
  position: absolute;
  right: -2%;
  top: 0;
  bottom: 0;
  width: 50%;
  background:
    linear-gradient(to right, #0C1220 0%, transparent 38%),
    url('https://images.unsplash.com/photo-1571896349842-33c89424de2d?w=1200&q=80') center / cover no-repeat;
  opacity: 0.4;
}

/* Dotted grid — distinct from Luxe Haven's line grid */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(224, 123, 42, 0.07) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 660px;
  animation: fadeInUp 0.85s ease both;
}

/* ─── BADGE ─── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 7px 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(224, 123, 42, 0.07);
  margin-bottom: 30px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse 2s ease-in-out infinite;
}

/* ─── HEADLINE ─── */
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(46px, 5.8vw, 80px);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.5px;
  color: var(--white);
  margin-bottom: 12px;
}

.hero-headline em {
  font-style: italic;
  color: var(--amber);
}

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(19px, 2.4vw, 27px);
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.hero-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.62);
  max-width: 510px;
  margin-bottom: 38px;
}

/* ─── EMAIL FORM ─── */
.notify-form {
  display: flex;
  max-width: 500px;
  margin-bottom: 12px;
}

.notify-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-right: none;
  border-radius: 6px 0 0 6px;
  padding: 14px 20px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--white);
  outline: none;
  transition: border-color 0.25s;
}

.notify-input::placeholder {
  color: var(--text-muted);
}

.notify-input:focus {
  border-color: rgba(224, 123, 42, 0.55);
}

.notify-btn {
  background: linear-gradient(135deg, var(--amber), var(--amber-light));
  color: var(--navy);
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 24px;
  border: none;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.25s;
}

.notify-btn:hover {
  opacity: 0.85;
}

.form-hint {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
}

.success-msg {
  display: none;
  align-items: center;
  gap: 12px;
  background: rgba(224, 123, 42, 0.08);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 400;
  color: var(--amber);
  max-width: 500px;
}

.success-icon {
  font-size: 18px;
  font-weight: 600;
}

/* ─── COUNTDOWN ─── */
.countdown {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 60px;
}

.countdown-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.countdown-grid {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.countdown-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 82px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 20px;
  background: transparent;
}

.cnt-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 300;
  color: var(--amber);
  line-height: 1;
  min-width: 2ch;
  text-align: center;
}

.cnt-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}

.countdown-colon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1;
}

/* ═══════════════════════════════════════
   LAUNCH STRIP
   Dark with amber accent — inverted from Luxe Haven
═══════════════════════════════════════ */
.strip {
  position: relative;
  z-index: 1;
  background: var(--navy-mid);
  border-top: 2px solid var(--amber);
  border-bottom: 1px solid var(--border);
  padding: 18px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.strip-ornament {
  font-size: 14px;
  color: var(--amber);
  opacity: 0.7;
}

.strip-text {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.strip-tag {
  background: var(--amber);
  color: var(--navy);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
}

/* ═══════════════════════════════════════
   FEATURES
═══════════════════════════════════════ */
.features {
  padding: 90px 5%;
  background: var(--navy-mid);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 3.8vw, 54px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
}

.section-title em {
  font-style: italic;
  color: var(--amber);
}

.section-rule {
  width: 44px;
  height: 2px;
  background: var(--amber);
  margin: 22px auto 0;
  border-radius: 2px;
}

/* Rounded cards with top accent — distinct from Luxe Haven's sharp flat grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-card {
  background: var(--navy);
  padding: 44px 32px;
  border-radius: 10px;
  border-top: 3px solid var(--amber);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.feature-icon {
  font-size: 30px;
  margin-bottom: 22px;
}

.feature-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: #070E1A;
  border-top: 1px solid var(--border);
  padding: 48px 5% 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-mark {
  font-size: 22px;
  color: var(--amber);
  flex-shrink: 0;
}

.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.4px;
}

.footer-motto {
  font-size: 11px;
  font-weight: 300;
  color: var(--text-muted);
  margin-top: 4px;
}

.footer-mid {
  text-align: center;
}

.footer-domain {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 300;
  color: var(--amber);
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.footer-copy {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
}

.footer-contact {
  text-align: right;
}

.footer-contact-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
}

.footer-email {
  font-size: 14px;
  font-weight: 300;
  color: var(--white);
  text-decoration: none;
  transition: color 0.25s;
}

.footer-email:hover {
  color: var(--amber);
}

/* ═══════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET (max 960px)
═══════════════════════════════════════ */
@media (max-width: 960px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE (max 768px)
═══════════════════════════════════════ */
@media (max-width: 768px) {
  .hero-image-panel {
    display: none;
  }

  .nav-pill {
    display: none;
  }

  .logo-name {
    font-size: 20px;
  }

  .logo-mark {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .notify-form {
    flex-direction: column;
    gap: 8px;
  }

  .notify-input {
    border-right: 1px solid var(--border);
    border-radius: 6px;
  }

  .notify-btn {
    border-radius: 6px;
    padding: 14px;
    text-align: center;
  }

  .countdown-block {
    min-width: 68px;
    padding: 14px 16px;
  }

  .cnt-num {
    font-size: 34px;
  }

  .countdown-colon {
    font-size: 26px;
    margin-bottom: 18px;
  }

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

  .feature-card {
    padding: 36px 28px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-contact {
    text-align: center;
  }

  .strip {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

/* ═══════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (max 480px)
═══════════════════════════════════════ */
@media (max-width: 480px) {
  .hero {
    padding: 100px 5% 56px;
  }

  .badge {
    font-size: 9px;
    padding: 6px 12px;
  }

  .countdown-grid {
    gap: 6px;
  }

  .countdown-block {
    min-width: 60px;
    padding: 12px 12px;
  }

  .cnt-num {
    font-size: 28px;
  }

  .countdown-colon {
    font-size: 20px;
    margin-bottom: 14px;
  }

  .feature-card {
    padding: 32px 22px;
  }
}
