/* ACE Group — Sector 150 Noida | Brand overrides (load after style.css) */
:root {
  --asc-navy:        #0d0d0d;
  --asc-accent:      #E2231A;
  --asc-accent-deep: #B3141A;
  --asc-warm:        #FFFFFF;
  --saffron:         #E2231A;
  --saffron-dark:    #B3141A;
  --saffron-glow:    rgba(226, 35, 26, 0.38);
  --gold:            #E2231A;
}

/* ── Nav accent stripe → gold ── */
.nav::after {
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(226, 35, 26,0) 20%,
    rgba(226, 35, 26,0.6) 50%,
    rgba(226, 35, 26,0) 80%,
    transparent 100%);
  background-size: 200% 100%;
  animation: navStripe 9s ease-in-out infinite;
}

/* ── Hero: black bg with subtle ACE-red glow ── */
.hero-bg {
  background:
    radial-gradient(60% 50% at 50% 38%, rgba(226,35,26,0.16) 0%, rgba(226,35,26,0) 60%),
    linear-gradient(135deg, #000000 0%, #120304 55%, #000000 100%);
  opacity: 1;
}

/* ── ACE logo (hero + nav) ── */
.hero-logo-mark {
  display: block;
  height: 76px;
  width: auto;
  margin: 0 auto 22px;
  filter: drop-shadow(0 8px 28px rgba(226,35,26,0.35));
}
.nav-brand-logo { height: 30px !important; width: auto !important; display: block !important; }
/* No header logo → keep the CTA pinned right */
.nav-call { margin-left: auto; }

/* Nav live status tag (urgency) */
.nav-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FF4238;
}
.nav-status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #E2231A;
  box-shadow: 0 0 0 0 rgba(226,35,26,0.6);
  animation: navStatusPulse 1.6s ease-out infinite;
}
@keyframes navStatusPulse {
  0% { box-shadow: 0 0 0 0 rgba(226,35,26,0.55); }
  70% { box-shadow: 0 0 0 7px rgba(226,35,26,0); }
  100% { box-shadow: 0 0 0 0 rgba(226,35,26,0); }
}
@media (max-width: 600px) {
  .hero-logo-mark { height: 56px; margin-bottom: 16px; }
  .nav-brand-logo { height: 26px !important; }
}

/* ── Hero tag location pill ── */
.hero-tag {
  color: var(--asc-warm);
  font-weight: 500;
  letter-spacing: 0.04em;
  font-size: clamp(13px, 1.8vw, 15px);
  margin-bottom: 12px;
}

/* ── Pre-launch badge ── */
.hero-prelaunch-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(226, 35, 26,0.18);
  border: 1px solid rgba(226, 35, 26,0.45);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero-prelaunch-badge .badge-dot {
  width: 6px; height: 6px;
  background: #E2231A;
  border-radius: 50%;
  animation: pulseDot 1.6s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.5; transform:scale(1.4); }
}

/* ── Saving callout strip ── */
.hero-saving {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(226, 35, 26,0.12);
  border: 1px solid rgba(226, 35, 26,0.3);
  border-radius: 12px;
  padding: 10px 20px;
  margin-bottom: 28px;
}
.hero-saving-label {
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  letter-spacing: 0.04em;
}
.hero-saving-amount {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.hero-saving-sep { color: rgba(255,255,255,0.2); font-size: 14px; }

/* ── Facebook video section ── */
.fb-video-section {
  background: #111;
  padding: 60px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.fb-video-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #E2231A;
  display: flex;
  align-items: center;
  gap: 8px;
}
.fb-video-eyebrow::before,
.fb-video-eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(226, 35, 26,0.4);
}
.fb-video-title {
  color: #fff;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 600;
  text-align: center;
  max-width: 600px;
  line-height: 1.35;
}
.fb-video-subtitle {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  text-align: center;
  max-width: 480px;
}
.fb-embed-wrap {
  width: 100%;
  max-width: 560px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  background: #1c1c1e;
  display: flex;
  justify-content: center;
}
.fb-embed-wrap iframe,
.fb-embed-wrap .fb-post,
.fb-embed-wrap .fb-video {
  width: 100% !important;
  border-radius: 16px;
}

/* ── Invest / trust cards (ACE gold accent) ── */
.invest-number {
  color: #E2231A;
}

/* ── Pre-launch note in offering section ── */
.prelaunch-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(226, 35, 26,0.1);
  border: 1px solid rgba(226, 35, 26,0.25);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-top: 16px;
}
.prelaunch-note svg { color: #E2231A; flex-shrink: 0; }

/* ── EOI card grid ── */
.eoi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.eoi-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(226, 35, 26,0.2);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.eoi-card-type {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #E2231A;
}
.eoi-card-size {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.eoi-card-area {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.eoi-card-sep {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 8px 0;
}
.eoi-card-label { font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 0.04em; }
.eoi-card-eoi { font-size: 17px; font-weight: 700; color: #FFFFFF; }
.eoi-card-save { font-size: 12px; color: rgba(226, 35, 26,0.85); font-weight: 500; }

/* ── Saving strip inside units accordion ── */
.saving-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(226, 35, 26,0.1);
  border: 1px solid rgba(226, 35, 26,0.25);
  border-radius: 10px;
  padding: 14px 20px;
  margin-top: 20px;
  font-size: 14px;
  color: #FFFFFF;
  text-align: center;
}
.saving-strip strong { color: #fff; }

/* ── Location dots → gold ── */
.location-dot { background: #E2231A; }

/* ── Rhythm banner heading ── */
.rhythm-banner h2 { color: #fff; }

/* ── btn-primary gold override ── */
.btn-primary {
  background: linear-gradient(135deg, #E2231A 0%, #B3141A 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(226, 35, 26,0.3);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #FF3B30 0%, #B3141A 100%);
  box-shadow: 0 12px 32px rgba(226, 35, 26,0.4);
}
.pulse-glow { animation: pulseGlowGold 2.4s ease-in-out infinite; }
@keyframes pulseGlowGold {
  0%,100% { box-shadow: 0 8px 24px rgba(226, 35, 26,0.3); }
  50% { box-shadow: 0 8px 32px rgba(226, 35, 26,0.55), 0 0 0 6px rgba(226, 35, 26,0.1); }
}

/* ──────────────────────────────────────────────
   HERO — missing classes (price, pills, disclaimer)
   Base style.css never defined these → add here.
   ────────────────────────────────────────────── */

/* Big pre-launch price block */
.hero-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin: 8px 0 26px;
}
.hero-price-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.hero-lead {
  font-size: clamp(40px, 8vw, 68px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #FFFFFF 0%, #E2231A 55%, #B3141A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #E2231A;
  filter: drop-shadow(0 4px 24px rgba(226, 35, 26,0.35));
}

/* USP pills row */
.hero-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 640px;
  margin: 0 auto 36px;
  padding: 0;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #FFFFFF;
  background: rgba(226, 35, 26,0.10);
  border: 1px solid rgba(226, 35, 26,0.32);
  border-radius: 999px;
  padding: 9px 18px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-pill::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #E2231A;
  flex-shrink: 0;
}

/* Hero trust line under CTAs */
.hero-disclaimer {
  margin-top: 22px;
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.5);
}

/* Hero pre-launch badge spacing tweak (badge styled above) */
.hero .hero-prelaunch-badge { margin-bottom: 18px; }

@media (max-width: 600px) {
  .hero-pills { gap: 8px; }
  .hero-pill { font-size: 12px; padding: 8px 14px; }
  .hero-lead { letter-spacing: -0.02em; }
}

/* ──────────────────────────────────────────────
   FORM OPTIONS — gold accent override
   (base form-option CSS hardcodes orange #E2231A)
   ────────────────────────────────────────────── */
.form-option:hover .form-option-box { border-color: rgba(226, 35, 26,0.4); }
.form-option input[type="radio"]:focus-visible + .form-option-box { box-shadow: 0 0 0 3px rgba(226, 35, 26,0.22); }
.form-option input[type="radio"]:checked + .form-option-box {
  background: rgba(226, 35, 26,0.12);
  border-color: rgba(226, 35, 26,0.55);
}
.form-option input[type="radio"]:checked + .form-option-box::after {
  border-color: #E2231A;
  background: radial-gradient(circle, #E2231A 38%, transparent 42%);
  box-shadow: 0 0 10px rgba(226, 35, 26,0.5);
}
.form-option-icon { background: rgba(226, 35, 26,0.12); color: #E2231A; }
.form-option input[type="radio"]:checked + .form-option-box .form-option-icon {
  background: #E2231A; color: #fff; box-shadow: 0 4px 14px rgba(226, 35, 26,0.35);
}

/* ──────────────────────────────────────────────
   UNIT CARD LOCKED MEDIA (blurred lead-magnet)
   Pattern matched from Aspire build.
   ────────────────────────────────────────────── */
.accordion-wrap .type-v2-media {
  margin: -22px -22px 18px -22px;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  position: relative;
}
.accordion-wrap .type-v2-media img {
  width: 100%;
  height: clamp(148px, 26vw, 220px);
  object-fit: cover;
  display: block;
}
.type-v2-media { position: relative; overflow: hidden; }
.type-v2-media--locked img {
  filter: blur(18px) brightness(0.7);
  transform: scale(1.06);
  transition: filter 0.5s ease;
}
.type-v2-lock-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  background: rgba(21, 17, 12, 0.5);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  color: #fff;
  transition: background 0.2s ease;
}
.type-v2-lock-overlay:hover { background: rgba(226, 35, 26, 0.28); }
.type-v2-lock-overlay svg { opacity: 0.92; color: #FFFFFF; }
.type-v2-lock-overlay span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.95;
}

/* ──────────────────────────────────────────────
   LOCAL VIDEO (replaces FB SDK embed)
   ────────────────────────────────────────────── */
.fb-video-frame {
  width: 100%;
  max-width: 360px;          /* portrait reel (9:16) */
  border-radius: 18px;
  overflow: hidden;
  background: #0a0a0a;
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
  border: 1px solid rgba(226, 35, 26,0.22);
  position: relative;
  aspect-ratio: 9 / 16;
}
.fb-video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #0a0a0a;
}
@media (max-width: 420px) {
  .fb-video-frame { max-width: 300px; }
}

/* ══════════════════════════════════════════════
   MOBILE-FIRST HERO (base = mobile, then desktop)
   Redesigned for Meta-ads traffic (mostly mobile)
   ══════════════════════════════════════════════ */
.hero { min-height: auto; }
.hero-scroll { display: none !important; }

.hero-content {
  padding: 78px 20px 34px !important;
  max-width: 440px;
  margin: 0 auto;
}
.hero-logo-mark { height: 46px !important; margin: 0 auto 14px !important; }

.hero .hero-prelaunch-badge {
  margin-bottom: 14px !important;
  font-size: 11px !important;
  padding: 6px 14px !important;
}

.hero-title {
  font-size: clamp(27px, 8vw, 34px) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.02em !important;
  margin-bottom: 12px !important;
}

/* Focal line: 3 & 4 BHK · Sector 150 */
.hero-focal {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.72);
  margin-bottom: 20px;
}
.hero-focal .hl-red { color: #FF4238; font-weight: 800; }
.hero-focal-sep { color: rgba(226,35,26,0.7); font-weight: 700; }

/* Stat grid — 2×2 on mobile */
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  max-width: 340px;
  margin: 0 auto 22px;
}
.hero-stat {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(226,35,26,0.22);
  border-radius: 14px;
  padding: 12px 8px;
  text-align: center;
}
.hero-stat strong {
  display: block;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  color: #E2231A;
  letter-spacing: -0.02em;
}
.hero-stat strong em { font-style: normal; font-size: 14px; }
.hero-stat span {
  display: block;
  margin-top: 5px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.6);
}

/* CTAs — full-width stacked, thumb-friendly */
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
}
.hero-actions .btn-primary,
.hero-actions .btn-secondary {
  width: 100%;
  justify-content: center;
  height: 52px;
  font-size: 16px;
}

.hero-disclaimer {
  margin-top: 14px !important;
  font-size: 11px !important;
  line-height: 1.5;
}

/* ── Desktop / tablet enhancement ── */
@media (min-width: 768px) {
  .hero-content { padding: 104px 24px 64px !important; max-width: 780px; }
  .hero-logo-mark { height: 68px !important; margin-bottom: 20px !important; }
  .hero-title { font-size: clamp(40px, 5vw, 60px) !important; line-height: 1.06 !important; }
  .hero-focal { font-size: 19px; margin-bottom: 28px; }
  .hero-stats { grid-template-columns: repeat(4, 1fr); max-width: 720px; gap: 14px; margin-bottom: 30px; }
  .hero-stat { padding: 16px 10px; }
  .hero-stat strong { font-size: 30px; }
  .hero-stat span { font-size: 12px; }
  .hero-actions { flex-direction: row; justify-content: center; max-width: none; }
  .hero-actions .btn-primary, .hero-actions .btn-secondary { width: auto; height: 54px; }
}

/* ── About grid: image removed → text full-width ── */
.about-grid { grid-template-columns: 1fr !important; }

/* ── Lead-magnet CTA band badge ── */
.leadmagnet-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(226, 35, 26,0.16);
  border: 1px solid rgba(226, 35, 26,0.4);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.leadmagnet-badge svg { color: #E2231A; }

/* ── Misc wrappers used in markup (polish) ── */
.hero-tag-icon { vertical-align: -2px; margin-right: 2px; }
.featured-tag {
  background: #E2231A !important;
  color: #fff !important;
  border-color: #E2231A !important;
}
.rhythm-banner-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.location-text { display: flex; flex-direction: column; }

/* ── Footer brand text ── */
.footer-brand p { color: rgba(255,255,255,0.45); }
.footer-cta.footer-cta-link { color: #E2231A; }

/* ═══════════════════════════════════════════════════════════
   ACE LIGHT THEME  —  white background · black text · red key
   (overrides dark holdouts from base + earlier dark rules)
   ═══════════════════════════════════════════════════════════ */

/* Page + hero → white */
body {
  background:
    radial-gradient(ellipse 80% 50% at top right, rgba(226,35,26,0.05), transparent 60%),
    #ffffff !important;
  color: #141414 !important;
}
.hero { background: #ffffff !important; }
.hero-bg {
  background:
    radial-gradient(66% 55% at 50% 30%, rgba(226,35,26,0.10) 0%, rgba(226,35,26,0) 62%),
    linear-gradient(180deg, #ffffff 0%, #fff5f5 55%, #ffffff 100%) !important;
  opacity: 1 !important;
}
.hero-gradient { background: none !important; }

/* Hero logo shadow softer on white */
.hero-logo-mark { filter: drop-shadow(0 6px 18px rgba(0,0,0,0.12)) !important; }

/* Hero text → dark */
.hero-title { color: #0e0e0e !important; }
.hero-focal { color: #555 !important; }
.hero-focal .hl-red { color: #E2231A !important; }
.hero-disclaimer { color: #8a8a8a !important; }

/* Pre-launch badge → solid red pill */
.hero-prelaunch-badge {
  background: #E2231A !important;
  border-color: #E2231A !important;
  color: #ffffff !important;
}
.hero-prelaunch-badge .badge-dot { background: #ffffff !important; }

/* Stat cards → white */
.hero-stat {
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,0.09) !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05) !important;
}
.hero-stat strong { color: #E2231A !important; }
.hero-stat span { color: #666 !important; }

/* Secondary button → dark outline on white */
.btn-secondary {
  background: #ffffff !important;
  color: #141414 !important;
  border: 1px solid rgba(0,0,0,0.16) !important;
}
.btn-secondary:hover { background: #f5f5f5 !important; border-color: rgba(0,0,0,0.32) !important; }

/* Nav */
.nav-status { color: #E2231A !important; }
.nav-call { color: #141414 !important; border-color: rgba(0,0,0,0.18) !important; }
.nav-call:hover { background: rgba(226,35,26,0.06) !important; border-color: #E2231A !important; color: #E2231A !important; }

/* Video section → light */
.fb-video-section { background: #fafafa !important; }
.fb-video-title { color: #111 !important; }
.fb-video-subtitle { color: #777 !important; }
.fb-video-frame { background: #f0f0f0 !important; border-color: rgba(226,35,26,0.25) !important; }

/* Lead-magnet band → light */
.rhythm-banner {
  background:
    radial-gradient(ellipse at top, rgba(226,35,26,0.06), transparent 55%),
    #ffffff !important;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.rhythm-banner h2 { color: #111 !important; }
.rhythm-banner p { color: #666 !important; }

/* Accordion text (light base) */
.accordion-intro { color: #999 !important; }

/* Investment dark panel → light */
.dd-body-inner.dd-body-dark, .dd-body-dark {
  background: #fbf5f5 !important;
}
.invest-card { background: #ffffff !important; border: 1px solid rgba(0,0,0,0.08) !important; }
.invest-card h3 { color: #111 !important; }
.invest-card p { color: #555 !important; }
.invest-number { color: #E2231A !important; }
.invest-cta p { color: #444 !important; }

/* Final CTA → light red band */
.final-cta {
  background:
    radial-gradient(ellipse at bottom, rgba(226,35,26,0.08), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #fff2f2 100%) !important;
}
.final-cta h2 { color: #111 !important; }
.final-cta p { color: #666 !important; }

/* Footer → black anchor (ACE primary), light text */
.footer { background: #0e0e0e !important; }
.footer p, .footer a, .footer-bottom, .footer-disclaimer { color: rgba(255,255,255,0.66) !important; }
.footer-brand p { color: rgba(255,255,255,0.5) !important; }
.footer-cta.footer-cta-link { color: #FF4238 !important; }

/* Lead form modal → light */
.form-modal-content { background: #ffffff !important; color: #141414 !important; }
.form-inner h3, #formHeading, .form-header h3 { color: #111 !important; }
.form-header p, #formSubheading, .form-inner p, .form-field-label, .form-field label { color: #555 !important; }
.form-field input { background: #f6f6f6 !important; color: #111 !important; border-color: rgba(0,0,0,0.14) !important; }
.phone-input-wrap { background: #f6f6f6 !important; border-color: rgba(0,0,0,0.14) !important; }
.phone-prefix { color: #333 !important; }
.form-option-box { background: #f6f6f6 !important; border-color: rgba(0,0,0,0.12) !important; }
.form-option-text { color: #222 !important; }
.form-option input[type="radio"]:checked + .form-option-box { background: rgba(226,35,26,0.08) !important; }
.form-modal-close { color: #111 !important; }
.form-consent-note, .form-footer-text { color: #888 !important; }
.form-success h3 { color: #111 !important; }
.form-success p { color: #555 !important; }

/* ═══════════════════════════════════════════════════════════
   LIGHT THEME — contrast fixes (white-on-white + grey→black)
   ═══════════════════════════════════════════════════════════ */

/* Offering spec cards (About dropdown) — were white on white */
.offering-spec-text strong { color: #0a0a0a !important; }
.offering-spec-text span   { color: #444 !important; }
.offering-spec-icon        { color: #E2231A !important; background: rgba(226,35,26,0.09) !important; }
.offering-spec-icon svg    { stroke: #E2231A !important; }

/* Lead-magnet badge — white text on light-red → red text */
.leadmagnet-badge      { color: #E2231A !important; background: rgba(226,35,26,0.1) !important; border-color: rgba(226,35,26,0.3) !important; }
.leadmagnet-badge svg  { color: #E2231A !important; stroke: #E2231A !important; }

/* Glass-light buttons — white on white → dark on light */
.btn-glass-light {
  background: #ffffff !important;
  color: #141414 !important;
  border: 1px solid rgba(0,0,0,0.16) !important;
}
.btn-glass-light:hover { background: #f5f5f5 !important; border-color: #E2231A !important; color: #E2231A !important; }
.btn-white { background:#ffffff !important; color:#E2231A !important; }
.btn-white:hover { background:#f5f5f5 !important; }

/* Glass-dark buttons — red-tint secondary on light */
.btn-glass-dark {
  background: rgba(226,35,26,0.06) !important;
  color: #E2231A !important;
  border: 1px solid rgba(226,35,26,0.32) !important;
}
.btn-glass-dark:hover { background: rgba(226,35,26,0.12) !important; }
.btn-glass-dark svg { stroke: #E2231A !important; }

/* ── Darken all content text → black / near-black ── */
.dd-title { color: #0a0a0a !important; }
.dd-eyebrow { color: #E2231A !important; }
.accordion-intro { color: #888 !important; }
.section-desc, .dd-body-inner .section-desc, .dd-body-inner p { color: #262626 !important; }
.section-desc strong, .dd-body-inner p strong { color: #0a0a0a !important; }
.type-v2-card h4 { color: #0a0a0a !important; }
.type-v2-card p  { color: #333 !important; }
.type-v2-stats strong { color: #0a0a0a !important; }
.type-v2-stats span { color: #555 !important; }
.type-v2-tag { color: #E2231A !important; }
.floor-note { color: #555 !important; }
.floor-unlock-cta h4 { color: #0a0a0a !important; }
.location-item strong { color: #0a0a0a !important; }
.location-item span { color: #444 !important; }
.type-v2-cta { color: #E2231A !important; }
.type-v2-cta svg { stroke: #E2231A !important; }

/* Hero muted text → darker */
.hero-focal { color: #222 !important; }
.hero-stat span { color: #444 !important; }
.hero-disclaimer { color: #666 !important; }

/* Video + band + final-cta subtext → darker */
.fb-video-subtitle { color: #555 !important; }
.rhythm-banner p { color: #444 !important; }
.final-cta p { color: #444 !important; }

/* Any leftover inline svg inheriting light color inside light content */
.dd-body-inner .offering-spec-icon svg,
.dd-actions .btn-glass-dark svg { stroke: #E2231A !important; }

/* Featured tag = solid red → white text (not red-on-red) */
.type-v2-tag.featured-tag { color: #ffffff !important; background: #E2231A !important; border-color: #E2231A !important; }

/* ═══════════════════════════════════════════════════════════
   PREMIUM HERO — Apple / Tesla / SpaceX aesthetic
   Ultra-minimal · white · huge type · massive whitespace
   ═══════════════════════════════════════════════════════════ */
.hero {
  min-height: 94vh !important;
  display: flex; align-items: center; justify-content: center;
  background: #ffffff !important;
  overflow: hidden; position: relative;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(58% 42% at 50% 8%, rgba(226,35,26,0.055), transparent 62%) !important;
  opacity: 1 !important;
}
.hero-gradient { background: none !important; }

.hero-content.hero-lux {
  position: relative; z-index: 2;
  max-width: 860px !important;
  padding: 92px 24px 88px !important;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}

.hero-lux-logo {
  height: 38px !important; width: auto !important;
  margin: 0 0 40px !important; filter: none !important;
  opacity: 0.95;
}

.hero-lux-eyebrow {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: #a0a0a0; margin-bottom: 22px;
}

.hero-lux-title {
  font-size: clamp(40px, 11.5vw, 94px);
  font-weight: 700; line-height: 1.0;
  letter-spacing: -0.038em;
  color: #0a0a0a; margin: 0 0 28px;
}
.hero-lux-title .lux-accent { color: #0a0a0a; }
.hero-lux-title .lux-dot { color: #E2231A; }

.hero-lux-sub {
  font-size: clamp(16px, 2.1vw, 20px);
  font-weight: 400; line-height: 1.55;
  color: #6b6b6b; max-width: 33ch; margin: 0 auto 42px;
}

.hero-lux-cta { display: flex; flex-direction: column; align-items: center; gap: 20px; width: 100%; }
.hero-lux-cta .btn-primary {
  height: 58px !important; padding: 0 40px !important;
  font-size: 16px !important; font-weight: 600 !important;
  border-radius: 100px !important; width: auto; min-width: 240px; justify-content: center;
  box-shadow: 0 10px 30px rgba(226,35,26,0.28) !important;
}
.hero-lux-film {
  background: none; border: none; cursor: pointer; padding: 6px;
  font-family: inherit; font-size: 15px; font-weight: 600; color: #0a0a0a;
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-lux-film span { color: #E2231A; font-size: 19px; line-height: 1; transition: transform .22s ease; }
.hero-lux-film:hover span { transform: translateX(4px); }

.hero-lux-scroll {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: none; border: none; cursor: pointer; z-index: 3; padding: 6px;
}
.hero-lux-scroll span {
  display: block; width: 22px; height: 36px;
  border: 1.5px solid rgba(0,0,0,0.22); border-radius: 12px; position: relative;
}
.hero-lux-scroll span::after {
  content: ''; position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 7px; border-radius: 2px; background: #E2231A;
  animation: luxScroll 1.9s ease-in-out infinite;
}
@keyframes luxScroll {
  0% { opacity: 0; transform: translate(-50%, 0); }
  35% { opacity: 1; }
  75% { opacity: 0; transform: translate(-50%, 11px); }
  100% { opacity: 0; }
}

@media (min-width: 768px) {
  .hero-content.hero-lux { padding: 120px 24px 104px !important; }
  .hero-lux-logo { height: 46px !important; margin-bottom: 50px !important; }
  .hero-lux-cta { flex-direction: row; justify-content: center; gap: 30px; }
}

/* ═══════════════════════════════════════════════════════════
   APPLE / TESLA DESIGN SYSTEM — applied to ALL sections
   Big tight headings · tracked eyebrows · whitespace · restraint
   ═══════════════════════════════════════════════════════════ */

/* Pill buttons everywhere (premium) */
.btn-primary, .btn-secondary, .btn-glass-light, .btn-glass-dark, .form-submit, .footer-cta, .sticky-cta-btn {
  border-radius: 100px !important;
}
.btn-primary { box-shadow: 0 8px 26px rgba(226,35,26,0.24) !important; }

/* Shared section eyebrow style */
.fb-video-eyebrow, .accordion-intro, .leadmagnet-badge {
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.28em !important;
  text-transform: uppercase !important;
}

/* ── VIDEO SECTION ── */
.fb-video-section { padding: 92px 24px !important; gap: 22px !important; }
.fb-video-eyebrow { color: #a2a2a2 !important; }
.fb-video-eyebrow::before, .fb-video-eyebrow::after { background: rgba(0,0,0,0.14) !important; width: 40px !important; }
.fb-video-title {
  font-size: clamp(28px, 5.5vw, 46px) !important;
  font-weight: 700 !important; letter-spacing: -0.032em !important;
  line-height: 1.08 !important; color: #0a0a0a !important; max-width: 660px; margin-top: 4px;
}
.fb-video-subtitle { color: #6b6b6b !important; font-size: 16px !important; }

/* ── LEAD-MAGNET BAND ── */
.rhythm-banner { padding: 96px 24px !important; }
.leadmagnet-badge { background: transparent !important; border: none !important; color: #E2231A !important; padding: 0 !important; margin-bottom: 20px !important; }
.rhythm-banner h2 {
  font-size: clamp(30px, 6.2vw, 50px) !important;
  font-weight: 700 !important; letter-spacing: -0.035em !important;
  line-height: 1.05 !important; color: #0a0a0a !important; margin-bottom: 18px !important;
}
.rhythm-banner p { color: #6b6b6b !important; font-size: 17px !important; max-width: 540px; margin: 0 auto 26px !important; line-height: 1.55; }

/* ── ACCORDION ── */
.accordion-wrap { padding: 64px 20px 96px !important; }
.accordion-container { max-width: 900px !important; }
.accordion-intro { color: #a2a2a2 !important; text-align: center; margin-bottom: 36px !important; }
.dd {
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  border-radius: 22px !important;
  box-shadow: 0 4px 22px rgba(0,0,0,0.04) !important;
  margin-bottom: 14px !important;
  overflow: hidden;
}
.dd.open { box-shadow: 0 12px 40px rgba(0,0,0,0.08) !important; border-color: rgba(226,35,26,0.22) !important; }
.dd-head { padding: 24px 24px !important; }
.dd-eyebrow { font-size: 11px !important; letter-spacing: 0.22em !important; text-transform: uppercase !important; color: #E2231A !important; font-weight: 600 !important; }
.dd-title { font-size: clamp(18px, 3.2vw, 23px) !important; font-weight: 700 !important; letter-spacing: -0.02em !important; color: #0a0a0a !important; margin-top: 3px; }
.dd-head-icon { background: rgba(226,35,26,0.08) !important; color: #E2231A !important; border-radius: 14px !important; box-shadow: none !important; }
.dd.open .dd-head-icon { background: #E2231A !important; color: #ffffff !important; }
.dd-chevron { background: rgba(0,0,0,0.04) !important; border: 1px solid rgba(0,0,0,0.08) !important; color: #111 !important; }
.dd.open .dd-chevron { background: #E2231A !important; color: #ffffff !important; border-color: #E2231A !important; }
.dd-body-inner { padding: 4px 24px 28px !important; }
.section-desc { font-size: 16px !important; line-height: 1.65 !important; color: #3a3a3a !important; }

/* ── FINAL CTA ── */
.final-cta { padding: 116px 24px !important; }
.final-cta h2 {
  font-size: clamp(34px, 7.2vw, 62px) !important;
  font-weight: 700 !important; letter-spacing: -0.04em !important;
  line-height: 1.0 !important; color: #0a0a0a !important; margin-bottom: 20px !important;
}
.final-cta p { color: #6b6b6b !important; font-size: 18px !important; line-height: 1.5; }

/* ── FOOTER refine ── */
.footer { padding: 64px 24px 44px !important; }

/* Tighten headings globally in content */
.invest-card h3, .floor-unlock-cta h4, .type-v2-card h4 { letter-spacing: -0.02em !important; }

/* ═══════════════════════════════════════════════════════════
   PREMIUM POLISH v2 — 50% → 100% Apple/Tesla feel
   Motion · section rhythm · Apple ink · restraint · micro-interactions
   ═══════════════════════════════════════════════════════════ */

:root {
  --ink: #1d1d1f;          /* Apple near-black */
  --ink-soft: #6e6e73;     /* Apple grey text */
  --ink-faint: #86868b;    /* Apple faint label */
  --apple-grey: #f5f5f7;   /* Apple section grey */
}
body { color: var(--ink) !important; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* 1 ─ Refined reveal motion (ease-out-expo, scale+fade) */
.fade-up {
  opacity: 0;
  transform: translateY(32px) scale(0.985);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1);
  will-change: opacity, transform;
}
.fade-up.visible { opacity: 1; transform: none; }

/* 2 ─ Alternating section backgrounds (Apple rhythm) */
.fb-video-section { background: var(--apple-grey) !important; }
.accordion-wrap   { background: var(--apple-grey) !important; }
.rhythm-banner    { background: #ffffff !important; }
.final-cta        { background: #ffffff !important; }
.fb-video-frame   { background: #e8e8ea !important; }

/* 3 ─ Apple ink typography */
.hero-lux-title, .fb-video-title, .rhythm-banner h2, .final-cta h2, .dd-title,
.type-v2-card h4, .invest-card h3, .floor-unlock-cta h4, .offering-spec-text strong,
.location-item strong { color: var(--ink) !important; }
.hero-lux-title { letter-spacing: -0.04em !important; }
.hero-lux-sub, .fb-video-subtitle, .rhythm-banner p, .final-cta p, .section-desc,
.type-v2-card p, .invest-card p { color: var(--ink-soft) !important; }

/* 4 ─ Eyebrows → Apple grey (red reserved for CTAs / interactive) */
.fb-video-eyebrow, .accordion-intro, .leadmagnet-badge, .dd-eyebrow,
.offering-spec-text span, .type-v2-stats span, .hero-lux-eyebrow { color: var(--ink-faint) !important; }
.dd.open .dd-eyebrow { color: #E2231A !important; }   /* red only when section is open */
.leadmagnet-badge { color: #E2231A !important; }      /* keep the one promo eyebrow red */
.fb-video-eyebrow::before, .fb-video-eyebrow::after { background: rgba(0,0,0,0.12) !important; }

/* 5 ─ Micro-interactions (hover lift + scale) */
.dd { transition: transform 0.45s cubic-bezier(0.16,1,0.3,1), box-shadow 0.45s ease, border-color 0.3s ease !important; }
.dd:hover:not(.open) { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,0.08) !important; }
.type-v2-card { transition: transform 0.45s cubic-bezier(0.16,1,0.3,1), box-shadow 0.45s ease !important; }
.type-v2-card:hover { transform: translateY(-5px); box-shadow: 0 22px 50px rgba(0,0,0,0.11) !important; }
.invest-card { transition: transform 0.45s cubic-bezier(0.16,1,0.3,1), box-shadow 0.45s ease !important; }
.invest-card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,0.08) !important; }
.btn-primary, .btn-secondary, .btn-glass-light, .btn-glass-dark {
  transition: transform 0.28s cubic-bezier(0.16,1,0.3,1), box-shadow 0.32s ease, background 0.3s ease, border-color 0.3s ease !important;
}
.btn-primary:hover { transform: translateY(-2px) scale(1.015); }
.btn-primary:active { transform: translateY(0) scale(0.99); }
.hero-lux-scroll:hover span { border-color: rgba(0,0,0,0.4); }

/* 6 ─ Details: video frame, nav, hairlines */
.fb-video-frame { box-shadow: 0 34px 80px rgba(0,0,0,0.16) !important; border: none !important; border-radius: 24px !important; }
.nav { transition: box-shadow 0.4s ease, background 0.4s ease !important; }
.nav.scrolled { box-shadow: 0 8px 30px rgba(0,0,0,0.07) !important; }
.floor-note { color: var(--ink-faint) !important; }

/* Reduced-motion respect */
@media (prefers-reduced-motion: reduce) {
  .fade-up { transition: opacity 0.4s ease; transform: none; }
  .dd:hover, .type-v2-card:hover, .invest-card:hover, .btn-primary:hover { transform: none; }
}

/* v3 ─ Flatten floating cards → clean full-width sections (Apple) */
.rhythm-banner-inner, .final-cta-inner {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
  max-width: 620px !important;
  margin: 0 auto !important;
}
.rhythm-banner-inner::before, .final-cta-inner::before,
.rhythm-banner::before, .final-cta::before { display: none !important; }

/* ═══════════════════════════════════════════════════════════
   CINEMATIC IMAGERY — full-bleed showcase + section renders
   ═══════════════════════════════════════════════════════════ */
.showcase { position: relative; width: 100%; overflow: hidden; background: #0a0a0a; }
.showcase-img {
  width: 100%; height: clamp(320px, 60vh, 660px);
  object-fit: cover; display: block;
  transform: scale(1.001);
  transition: transform 1.2s cubic-bezier(0.16,1,0.3,1);
}
.showcase:hover .showcase-img { transform: scale(1.04); }
.showcase.showcase-tall .showcase-img { height: clamp(360px, 66vh, 720px); }
.showcase::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0) 38%, rgba(0,0,0,0.62) 100%);
}
.showcase-overlay {
  position: absolute; left: 0; right: 0; bottom: clamp(28px, 5vw, 60px);
  z-index: 2; text-align: center; padding: 0 24px;
}
.showcase-eyebrow {
  display: block; font-size: 12px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.78); margin-bottom: 14px;
}
.showcase-overlay h2 {
  font-size: clamp(26px, 5.4vw, 54px); font-weight: 700;
  letter-spacing: -0.035em; line-height: 1.04; color: #ffffff;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4); margin: 0;
}

/* About section render */
.about-render {
  width: 100%; height: auto; display: block;
  border-radius: 20px; margin-top: 26px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.14);
}

/* Unit-card interior render (blurred lock media) sits taller/cinematic */
.accordion-wrap .type-v2-media--locked img { filter: blur(16px) brightness(0.72); transform: scale(1.06); }

/* Imageless first showcase → clean Apple text-statement band */
.showcase:not(.showcase-tall) { background: #ffffff !important; padding: clamp(70px,10vw,120px) 24px !important; }
.showcase:not(.showcase-tall)::after { display: none !important; }
.showcase:not(.showcase-tall) .showcase-overlay { position: static !important; padding: 0 !important; bottom: auto !important; }
.showcase:not(.showcase-tall) .showcase-eyebrow { color: #86868b !important; }
.showcase:not(.showcase-tall) .showcase-overlay h2 { color: #1d1d1f !important; text-shadow: none !important; }

/* Hero subtitle highlight */
.hero-lux-sub .lux-hl { color: #E2231A !important; font-weight: 600; }

/* Nav header logo (left) + EOI status */
.nav-left { display: flex; align-items: center; gap: 12px; }
.nav-brand-img { height: 30px; width: auto; display: block; }
.nav-left .nav-status { padding-left: 12px; border-left: 1px solid rgba(0,0,0,0.14); }
@media (max-width: 600px) {
  .nav-brand-img { height: 24px; }
  .nav-left { gap: 9px; }
  .nav-left .nav-status { padding-left: 9px; font-size: 10px; }
}

/* Nav "Get Details" → solid black button, white icon + text */
.nav-call { background: #111 !important; color: #ffffff !important; border: 1px solid #111 !important; }
.nav-call svg { stroke: #ffffff !important; }
.nav-call:hover { background: #000 !important; border-color: #000 !important; color: #ffffff !important; }
.nav-call:hover svg { stroke: #ffffff !important; }

/* Video play-button overlay (clear "tap to play" cue) */
.fb-video-frame { position: relative; }
.video-play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 74px; height: 74px; border-radius: 50%;
  background: rgba(226,35,26,0.94); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 34px rgba(0,0,0,0.4);
  transition: transform .25s cubic-bezier(0.16,1,0.3,1), background .25s ease;
  z-index: 4;
}
.video-play-btn svg { margin-left: 4px; }
.video-play-btn:hover { transform: translate(-50%, -50%) scale(1.08); background: #E2231A; }
.video-play-btn::after {
  content: ''; position: absolute; inset: -10px; border-radius: 50%;
  border: 2px solid rgba(226,35,26,0.55);
  animation: acePlayPulse 1.9s ease-out infinite;
}
@keyframes acePlayPulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.4); opacity: 0; } }
.video-play-btn.hidden { display: none; }
@media (max-width: 600px) { .video-play-btn { width: 62px; height: 62px; } .video-play-btn svg { width: 26px; height: 26px; } }

/* ── FAQ — premium expandable list (was flat paragraphs) ── */
.faq-list { border-top: 1px solid rgba(0,0,0,0.09); }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.09); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px 2px; font-size: clamp(15px,2.4vw,17px); font-weight: 600;
  color: #1d1d1f; letter-spacing: -0.01em; transition: color .2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ''; flex-shrink: 0; width: 10px; height: 10px; margin-right: 5px;
  border-right: 2px solid #E2231A; border-bottom: 2px solid #E2231A;
  transform: rotate(45deg); transition: transform .3s cubic-bezier(0.16,1,0.3,1);
}
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-item summary:hover { color: #E2231A; }
.faq-answer { padding: 0 2px 22px; animation: faqReveal .35s cubic-bezier(0.16,1,0.3,1); }
.faq-answer p { font-size: 15px; line-height: 1.65; color: #6e6e73; margin: 0; }
@keyframes faqReveal { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* Floor-plan cards: lighter blur so plan is recognizable, text/labels unreadable */
.floor-card.locked img { filter: brightness(0.94) !important; }

/* Floor-plan lock overlay text → centered, white, readable on blurred plan */
.floor-lock-overlay { text-align: center !important; }
.floor-lock-overlay p {
  color: #ffffff !important;
  text-align: center !important;
  font-weight: 600 !important;
  line-height: 1.45 !important;
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
  margin: 0 auto !important;
}
.floor-lock-icon { color: #ffffff !important; }
.floor-lock-icon svg { stroke: #ffffff !important; }
