:root {
  --gold: #f2c11c;
  --gold-light: #E8B84B;
  --gold-pale: #F5E9CC;
  --dark: #0D0D0D;
  --dark-2: #161616;
  --dark-3: #1E1E1E;
  --dark-4: #2A2A2A;
  --cream: #FAF7F2;
  --text-muted: #888;
  --text-dim: #555;
  --white: #FFFFFF;
  --red: #E03B3B;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 16px 60px;

    background: rgba(13, 13, 13, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(201, 149, 42, 0.15);
}

/* Left Side */
.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-left img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Brand */
.nav-brand {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.05;
}

.brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.02em;
    margin: 0;
}

.brand-tagline {
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 2px;
}

/* CTA Button */
.btn-nav {
    text-decoration: none;
    background: var(--gold);
    color: var(--dark);
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
}

.btn-nav:hover {
    background: var(--gold-light);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 60px 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,149,42,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(201,149,42,0.05) 0%, transparent 50%),
    var(--dark);
}
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,149,42,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,149,42,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 680px;
}
.hero-tag {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 6px 16px;
  margin-bottom: 32px;
  animation: fadeSlideUp 0.6s ease both;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 7vw, 86px);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 28px;
  animation: fadeSlideUp 0.6s 0.1s ease both;
}
.hero h1 em { color: var(--gold); font-style: italic; }
.hero p {
  font-size: 17px; line-height: 1.7; color: #AAAAAA;
  margin-bottom: 44px;
  max-width: 520px;
  animation: fadeSlideUp 0.6s 0.2s ease both;
}
.hero-ctas {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeSlideUp 0.6s 0.3s ease both;
}
.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 16px 36px;
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-ghost {
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  padding: 16px 36px;
  font-size: 14px; font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.hero-right {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 45%;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
  animation: fadeSlideLeft 0.9s 0.2s ease both;
}
.dashboard-preview {
  width: 90%;
  background: var(--dark-2);
  border: 1px solid rgba(201,149,42,0.2);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 60px rgba(201,149,42,0.08);
}
.dash-bar {
  background: var(--dark-3);
  padding: 12px 18px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dash-dot { width: 8px; height: 8px; border-radius: 50%; }
.dash-dot.r { background: #E03B3B; }
.dash-dot.y { background: var(--gold); }
.dash-dot.g { background: #2ECC71; }
.dash-bar span { font-size: 11px; color: var(--text-muted); margin-left: auto; }
.dash-body { padding: 20px; }
.dash-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-bottom: 14px;
}
.ds { background: var(--dark-3); padding: 14px; border: 1px solid rgba(255,255,255,0.05); }
.ds-label { font-size: 9px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px; }
.ds-val { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--gold); }
.ds-val.white { color: var(--white); }
.dash-chart { background: var(--dark-3); padding: 14px; border: 1px solid rgba(255,255,255,0.05); }
.dash-chart-label { font-size: 9px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
.chart-bars { display: flex; align-items: flex-end; gap: 5px; height: 50px; }
.chart-bar {
  flex: 1;
  background: rgba(201,149,42,0.2);
  border-radius: 1px;
  animation: growUp 1s ease both;
}
.chart-bar.active { background: var(--gold); }

/* ── OFFER STRIP ── */
.offer-strip {
  background: var(--gold);
  padding: 16px 60px;
  display: flex; align-items: center; justify-content: center; gap: 20px;
  flex-wrap: wrap;
}
.offer-strip p {
  color: var(--dark);
  font-size: 15px; font-weight: 600;
}
.offer-strip span.original { text-decoration: line-through; opacity: 0.5; font-weight: 400; }
.offer-strip span.price { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 700; }
.offer-strip a {
  background: var(--dark);
  color: var(--gold);
  padding: 10px 22px;
  font-size: 13px; font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: background 0.2s;
}
.offer-strip a:hover { background: #1a1a1a; }

/* ── SECTION COMMON ── */
section { padding: 100px 60px; }
.section-label {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 300; line-height: 1.1;
}
.section-title em { color: var(--gold); font-style: italic; }
.section-sub {
  font-size: 16px; color: var(--text-muted); line-height: 1.7;
  max-width: 560px; margin-top: 16px;
}

/* ── PAIN POINTS ── */
.pain { background: var(--dark-2); }
.pain-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.06);
  margin-top: 60px;
}
.pain-item {
  background: var(--dark-2);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}
.pain-item:hover { background: var(--dark-3); }
.pain-icon {
  font-size: 32px; margin-bottom: 20px;
  display: block;
}
.pain-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600;
  margin-bottom: 12px; color: var(--white);
}
.pain-item p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.pain-item::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.pain-item:hover::after { transform: scaleX(1); }

/* ── BENEFITS ── */
.benefits { background: var(--dark); }
.benefits-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  margin-top: 60px;
}
.benefit-list { display: flex; flex-direction: column; gap: 28px; }
.benefit-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.2s, background 0.2s;
  cursor: default;
}
.benefit-item:hover {
  border-color: rgba(201,149,42,0.3);
  background: rgba(201,149,42,0.03);
}
.benefit-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px; font-weight: 300;
  color: rgba(201,149,42,0.25);
  line-height: 1; flex-shrink: 0;
}
.benefit-text h4 {
  font-size: 16px; font-weight: 600; margin-bottom: 8px;
}
.benefit-text p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.benefits-visual {
  position: relative;
}
.bv-card {
  background: var(--dark-2);
  border: 1px solid rgba(201,149,42,0.2);
  padding: 32px;
  position: relative;
}
.bv-card::before {
  content: '';
  position: absolute; top: -1px; left: 30px; right: 30px;
  height: 2px; background: var(--gold);
}
.bv-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 600;
  color: var(--gold); margin-bottom: 24px;
}
.bv-stat {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.bv-stat:last-child { border-bottom: none; }
.bv-stat span:first-child { font-size: 13px; color: var(--text-muted); }
.bv-stat span:last-child { font-size: 15px; font-weight: 600; color: var(--white); }
.bv-stat span.highlight { color: var(--gold-light); }

/* ── FEATURES ── */
.features-section { background: var(--dark-3); }
.features-header { max-width: 700px; margin-bottom: 64px; }
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2px;
  background: rgba(201,149,42,0.08);
}
.feat {
  background: var(--dark-3);
  padding: 28px 24px;
  transition: background 0.2s;
}
.feat:hover { background: var(--dark-4); }
.feat-icon { font-size: 24px; margin-bottom: 12px; display: block; }
.feat h4 { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.feat p { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* ── DEMO SECTION ── */
.demo-section { background: var(--dark-2); }
.demo-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.demo-info .section-label { margin-bottom: 12px; }
.demo-info p { font-size: 15px; color: #999; line-height: 1.7; margin: 20px 0 32px; }
.demo-creds {
  background: var(--dark-3);
  border: 1px solid rgba(201,149,42,0.2);
  padding: 24px;
  margin-bottom: 28px;
}
.demo-creds h4 { font-size: 12px; letter-spacing: 0.1em; color: var(--gold); text-transform: uppercase; margin-bottom: 14px; }
.cred { display: flex; gap: 12px; margin-bottom: 8px; font-size: 13px; }
.cred span:first-child { color: var(--text-muted); width: 70px; flex-shrink: 0; }
.cred code { font-family: monospace; color: var(--white); font-size: 13px; }
.demo-frame-wrap {
  position: relative;
}
.demo-frame-wrap::before {
  content: 'LIVE DEMO';
  position: absolute; top: -12px; left: 20px;
  background: var(--gold);
  color: var(--dark);
  font-size: 10px; font-weight: 700; letter-spacing: 0.15em;
  padding: 4px 12px;
  z-index: 2;
}
.demo-frame-wrap::after {
  content: '';
  position: absolute; inset: -1px;
  border: 1px solid rgba(201,149,42,0.3);
  pointer-events: none;
}
.demo-frame-wrap iframe {
  width: 100%; height: 480px;
  border: none; display: block;
  filter: brightness(0.95);
}

/* ── PRICING ── */
.pricing-section { background: var(--dark); }
.pricing-center { text-align: center; max-width: 700px; margin: 0 auto 64px; }
.pricing-card {
  max-width: 560px; margin: 0 auto;
  background: var(--dark-2);
  border: 1px solid rgba(201,149,42,0.3);
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.pricing-badge {
  position: absolute; top: 24px; right: 24px;
  background: var(--red);
  color: white; font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; padding: 4px 12px;
}
.pricing-body { padding: 48px; }
.pricing-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 300; margin-bottom: 8px;
}
.pricing-prices { margin: 28px 0; }
.price-original {
  font-size: 18px; color: var(--text-muted);
  text-decoration: line-through; margin-bottom: 4px;
}
.price-current {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px; font-weight: 700; color: var(--gold);
  line-height: 1;
}
.price-curr { font-size: 24px; vertical-align: top; margin-top: 12px; display: inline-block; }
.price-note { font-size: 13px; color: var(--text-muted); margin-top: 8px; }
.price-includes {
  margin: 28px 0;
  display: flex; flex-direction: column; gap: 10px;
}
.pi { display: flex; align-items: center; gap: 12px; font-size: 14px; color: #CCC; }
.pi::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.pricing-body .btn-primary {
  width: 100%; text-align: center;
  padding: 18px; font-size: 15px;
  display: block; margin-top: 32px;
}
.guarantee {
  text-align: center; margin-top: 20px;
  font-size: 13px; color: var(--text-muted);
}

/* ── LEAD FORM ── */
.lead-section {
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
  position: relative; overflow: hidden;
}
.lead-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(201,149,42,0.07) 0%, transparent 60%);
}
.lead-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.lead-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300; line-height: 1.1;
  margin-bottom: 20px;
}
.lead-info h2 em { color: var(--gold); font-style: italic; }
.lead-info p { font-size: 15px; color: #999; line-height: 1.7; }
.lead-form {
  background: var(--dark);
  border: 1px solid rgba(201,149,42,0.2);
  padding: 40px;
}
.lead-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 600;
  color: var(--gold); margin-bottom: 6px;
}
.lead-form p { font-size: 13px; color: var(--text-muted); margin-bottom: 28px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; color: #888; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  padding: 12px 16px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--dark-2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.btn-submit {
  width: 100%;
  background: var(--gold);
  color: var(--dark);
  border: none; cursor: pointer;
  padding: 16px;
  font-size: 15px; font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.05em;
  margin-top: 8px;
  transition: background 0.2s;
}
.btn-submit:hover { background: var(--gold-light); }
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success .check { font-size: 48px; margin-bottom: 16px; display: block; }
.form-success h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; color: var(--gold); margin-bottom: 8px;
}
.form-success p { font-size: 14px; color: var(--text-muted); }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 40px 60px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-brand span:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 600; color: var(--gold);
}
footer p { font-size: 13px; color: var(--text-muted); }
footer a { color: var(--gold); text-decoration: none; font-size: 13px; }

/* ── ANIMATIONS ── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideLeft {
  from { opacity: 0; transform: translateX(32px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes growUp {
  from { height: 0 !important; }
  to { }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .hero { padding: 100px 24px 60px; }
  .hero-right { display: none; }
  section { padding: 64px 24px; }
  .benefits-layout, .demo-inner, .lead-inner { grid-template-columns: 1fr; gap: 40px; }
  .offer-strip { padding: 14px 24px; }
  footer { padding: 30px 24px; flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-ghost { text-align: center; }
}