:root {
  --bg: #070707;
  --bg-soft: #111111;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-soft: rgba(255, 255, 255, 0.025);
  --text: #f5f1e8;
  --muted: #b7b1a4;
  --gold: #c8a03a;
  --gold-soft: #efd98d;
  --line: rgba(200, 160, 58, 0.18);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(200, 160, 58, 0.10), transparent 24%),
    radial-gradient(circle at bottom right, rgba(200, 160, 58, 0.08), transparent 22%),
    linear-gradient(180deg, #050505 0%, #0b0b0b 100%);
  overflow-x: hidden;
  padding-bottom: 110px;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 42px;
  background: rgba(6, 6, 6, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.nav-scrolled {
  background: rgba(10, 10, 10, 0.92);
  border-bottom: 1px solid rgba(200, 160, 58, 0.24);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #bb922f, #efd98d);
  color: #111;
  font-weight: 800;
  animation: logoFloat 3.8s ease-in-out infinite;
}

.logo-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  letter-spacing: 6px;
  font-weight: 700;
  color: var(--gold-soft);
  position: relative;
  animation: logoGlow 2.8s ease-in-out infinite;
}

.logo-text::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  opacity: 0.7;
  animation: logoLine 2.6s ease-in-out infinite;
}

.logo-glow {
  text-shadow:
    0 0 10px rgba(239, 217, 141, 0.25),
    0 0 24px rgba(239, 217, 141, 0.18),
    0 0 40px rgba(239, 217, 141, 0.12);
}

@keyframes logoFloat {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-4px); }
  100% { transform: translateY(0px); }
}

@keyframes logoGlow {
  0% { text-shadow: 0 0 0 rgba(239, 217, 141, 0); }
  50% { text-shadow: 0 0 18px rgba(239, 217, 141, 0.25); }
  100% { text-shadow: 0 0 0 rgba(239, 217, 141, 0); }
}

@keyframes logoLine {
  0% { transform: scaleX(0.4); opacity: 0.25; }
  50% { transform: scaleX(1); opacity: 0.9; }
  100% { transform: scaleX(0.4); opacity: 0.25; }
}

.nav nav {
  display: flex;
  gap: 28px;
}

.nav nav a {
  color: #d5cebf;
  font-size: 15px;
  transition: color 0.25s ease;
}

.nav nav a:hover {
  color: var(--gold-soft);
}

/* BUTTONS */
.btn-gold,
.btn-primary,
.btn-secondary,
.floating-cta-button,
.selector-btn,
.popup-later {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.btn-gold,
.btn-primary,
.floating-cta-button,
.selector-btn {
  background: linear-gradient(135deg, #bb922f, #efd98d);
  color: #111;
  box-shadow: 0 14px 35px rgba(200, 160, 58, 0.22);
}

.btn-secondary,
.popup-later {
  border: 1px solid rgba(200, 160, 58, 0.28);
  background: rgba(255, 255, 255, 0.02);
  color: var(--gold-soft);
}

.btn-gold:hover,
.btn-primary:hover,
.btn-secondary:hover,
.floating-cta-button:hover,
.selector-btn:hover,
.popup-later:hover {
  transform: translateY(-3px);
}

/* HERO */
.hero {
  padding: 90px 42px 60px;
}

.hero-visual {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.38)),
    url("https://images.unsplash.com/photo-1441986300917-64674bd600d8?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
  transform: scale(1.04);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.03), transparent 45%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--gold-soft);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-badge {
  display: inline-flex;
  padding: 10px 16px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 160, 58, 0.18);
  color: var(--gold-soft);
  font-size: 13px;
}

.hero h1,
.section-head h2,
.cta h2,
.popup-capture h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero h1 {
  font-size: 88px;
  line-height: 0.92;
  margin-bottom: 22px;
}

.hero p,
.section-head p,
.visual-card-content p,
.showcase-overlay p,
.selector-result p,
.deliver-card p,
.quote-card p,
.faq-item p,
.popup-capture p,
.brand-card p,
.hero-panel p {
  color: var(--muted);
  line-height: 1.75;
}

.hero p {
  font-size: 20px;
  margin-bottom: 28px;
  max-width: 720px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-points span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(200, 160, 58, 0.12);
  color: #ddd4c1;
  font-size: 14px;
}

.hero-side {
  display: grid;
  gap: 18px;
}

.hero-panel {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.025));
  border: 1px solid rgba(200,160,58,0.14);
  box-shadow: var(--shadow);
}

.hero-panel-gold {
  background: linear-gradient(135deg, rgba(200,160,58,0.18), rgba(255,255,255,0.03));
}

.hero-panel span,
.visual-card-content span,
.showcase-overlay span,
.quote-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold-soft);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-panel h3,
.brand-card h3,
.visual-card-content h3,
.showcase-overlay h3,
.selector-result-box h3,
.quote-card h3,
.deliver-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  line-height: 1.1;
  margin-bottom: 10px;
}

.hero-panel ul {
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

/* SECTIONS */
.section {
  padding: 90px 42px;
}

.section-head {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-head h2 {
  font-size: 62px;
  line-height: 1.02;
  margin-bottom: 14px;
}

/* GRIDS */
.brand-intro-grid,
.visual-proof-grid,
.showcase-grid,
.deliver-grid,
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* CARDS */
.brand-card,
.deliver-card,
.stat-card,
.quote-card,
.selector-box,
.selector-result {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.025));
  border: 1px solid rgba(200,160,58,0.14);
  box-shadow: var(--shadow);
}

.brand-card,
.deliver-card,
.stat-card,
.quote-card,
.plan-card,
.visual-card,
.showcase-item {
  transition: transform 0.18s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.brand-card,
.deliver-card,
.stat-card,
.quote-card {
  padding: 30px;
  border-radius: 28px;
}

.brand-card:hover,
.deliver-card:hover,
.stat-card:hover,
.quote-card:hover,
.visual-card:hover,
.showcase-item:hover,
.plan-card:hover {
  box-shadow: 0 28px 60px rgba(0,0,0,0.36);
  border-color: rgba(239, 217, 141, 0.22);
}

.brand-number,
.deliver-number {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #bb922f, #efd98d);
  color: #111;
  font-weight: 800;
}

/* VISUAL BLOCKS */
.visual-card,
.showcase-item {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(200,160,58,0.14);
  background: #111;
  box-shadow: var(--shadow);
  min-height: 420px;
}

.visual-card img,
.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.visual-card:hover img,
.showcase-item:hover img {
  transform: scale(1.06);
}

.visual-card-content,
.showcase-overlay {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(0,0,0,0.72);
  border: 1px solid rgba(200,160,58,0.16);
  backdrop-filter: blur(12px);
}

.industry-cta {
  margin-top: 28px;
  padding: 36px;
  border-radius: 30px;
  text-align: center;
  background: linear-gradient(135deg, rgba(200,160,58,0.16), rgba(255,255,255,0.03));
  border: 1px solid rgba(200,160,58,0.18);
  box-shadow: var(--shadow);
}

.industry-cta h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 46px;
  margin-bottom: 10px;
}

.industry-cta p {
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 20px;
  line-height: 1.8;
}

/* SELECTOR */
.selector-box {
  padding: 30px;
  border-radius: 30px;
}

.selector-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.selector-field label {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-soft);
  font-size: 14px;
}

.selector-field select {
  width: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(200,160,58,0.18);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  font-size: 15px;
  outline: none;
}

.selector-field select option {
  color: #111;
}

.selector-actions {
  margin-top: 20px;
}

.selector-result {
  margin-top: 20px;
  border-radius: 24px;
  padding: 24px;
}

.selector-placeholder {
  color: var(--muted);
  text-align: center;
  line-height: 1.8;
}

.selector-result-box {
  display: grid;
  gap: 12px;
}

.selector-result-box h3 {
  font-size: 38px;
  line-height: 1.1;
}

.selector-benefits {
  padding-left: 20px;
  color: var(--text);
  line-height: 1.8;
}

.selector-benefits li {
  margin-bottom: 6px;
}

.selector-plan-tag {
  display: inline-block;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #bb922f, #efd98d);
  color: #111;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.selector-cta {
  width: fit-content;
  margin-top: 6px;
}

/* STATS / QUOTES */
.stat-card {
  text-align: center;
  padding: 30px;
  border-radius: 28px;
}

.stat-card strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 66px;
  line-height: 1;
  color: var(--gold-soft);
  margin-bottom: 10px;
}

.stat-card span {
  color: var(--muted);
  line-height: 1.6;
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 28px;
}

.quote-card {
  padding: 30px;
  border-radius: 28px;
}

.quote-card-gold {
  background: linear-gradient(135deg, rgba(200,160,58,0.18), rgba(255,255,255,0.03));
}

/* PLANS */
.plans-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.plan-card {
  background: #111;
  padding: 30px;
  border-radius: 20px;
  width: 300px;
  border: 1px solid #222;
  text-align: left;
  box-shadow: var(--shadow);
}

.plan-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
}

.plan-price {
  font-size: 48px;
  color: gold;
  margin: 10px 0;
  font-weight: 800;
}

.plan-hook {
  color: #ccc;
  margin-bottom: 15px;
  line-height: 1.6;
}

.plan-result {
  color: gold;
  margin-top: 15px;
  line-height: 1.6;
}

.plan-card ul {
  padding-left: 20px;
}

.plan-card li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.featured-plan {
  border: 1px solid gold;
  transform: scale(1.05);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(200,160,58,0.08));
}

.plan-badge {
  display: inline-block;
  background: gold;
  color: #111;
  padding: 5px 10px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 8px;
}

/* FAQ */
.faq-grid {
  display: grid;
  gap: 18px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.025));
  border: 1px solid rgba(200,160,58,0.14);
  border-radius: 22px;
  padding: 22px 24px;
  box-shadow: var(--shadow);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: var(--text);
  font-size: 18px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin-top: 14px;
}

/* CTA */
.cta {
  text-align: center;
  padding: 100px 20px;
}

.cta h2 {
  font-size: 70px;
  line-height: 1.02;
  max-width: 980px;
  margin: 0 auto 14px;
}

.cta p {
  color: var(--muted);
  font-size: 19px;
  max-width: 700px;
  margin: 0 auto 24px;
}

/* FLOATING CTA */
.floating-cta-bar {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(8, 8, 8, 0.88);
  border: 1px solid rgba(200, 160, 58, 0.2);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.35);
}

.floating-cta-text strong {
  display: block;
  color: var(--gold-soft);
  margin-bottom: 4px;
  font-size: 16px;
}

.floating-cta-text span {
  color: var(--muted);
  font-size: 14px;
}

/* POPUP */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  z-index: 1300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.popup-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.popup-capture {
  position: fixed;
  z-index: 1301;
  right: 24px;
  bottom: 110px;
  width: min(420px, calc(100vw - 32px));
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(18,18,18,0.96), rgba(10,10,10,0.96));
  border: 1px solid rgba(200,160,58,0.2);
  box-shadow: 0 28px 70px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(30px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.popup-capture.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: var(--text);
  font-size: 22px;
  cursor: pointer;
}

.popup-capture h3 {
  font-size: 42px;
  line-height: 1;
  margin-bottom: 10px;
}

.popup-capture p {
  margin-bottom: 18px;
}

.popup-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* REVEAL */
.reveal-up {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-up.show {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.24s;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .hero-inner,
  .brand-intro-grid,
  .visual-proof-grid,
  .showcase-grid,
  .deliver-grid,
  .stats-grid,
  .selector-grid,
  .quote-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .section-head h2,
  .hero h1,
  .cta h2 {
    font-size: 52px;
  }
}

@media (max-width: 780px) {
  body {
    padding-bottom: 140px;
  }

  .nav {
    padding: 16px 20px;
  }

  .nav nav {
    display: none;
  }

  .hero,
  .section,
  .cta {
    padding-left: 20px;
    padding-right: 20px;
  }

  .brand-intro-grid,
  .visual-proof-grid,
  .showcase-grid,
  .deliver-grid,
  .stats-grid,
  .selector-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .section-head h2,
  .cta h2,
  .industry-cta h3,
  .popup-capture h3 {
    font-size: 36px;
  }

  .hero p,
  .section-head p,
  .industry-cta p,
  .cta p,
  .faq-item p {
    font-size: 16px;
  }

  .logo-text {
    font-size: 34px;
  }

  .plans-grid {
    flex-direction: column;
    align-items: center;
  }

  .featured-plan {
    transform: none;
  }

  .floating-cta-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .floating-cta-button {
    width: 100%;
  }

  .popup-capture {
    right: 16px;
    left: 16px;
    width: auto;
    bottom: 150px;
  }
}