/* ═══════════════════════════════════════════════════════════════════
   OnePulse CRM — Landing Page Styles
   Brand System: VAOne Agency
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   Edit colours via CSS custom properties in :root
   ═══════════════════════════════════════════════════════════════════ */

/* ── Reset ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { display: block; max-width: 100%; }
a { color: inherit; }

/* ── Brand tokens ───────────────────────────────────────────────────── */
:root {
  --navy:         #0D1B2A;
  --midnight:     #1C2E42;
  --gold:         #C9A84C;
  --gold-light:   rgba(201, 168, 76, 0.15);
  --gold-border:  rgba(201, 168, 76, 0.30);
  --cream:        #F5F0E8;
  --cream-2:      #EDE7DA;
  --steel:        #8A9BB0;
  --steel-light:  rgba(138, 155, 176, 0.12);
  --white:        #FFFFFF;
  --body-text:    #3A4A5C;
  --muted:        #6B7A8D;
  --border:       rgba(138, 155, 176, 0.20);
  --border-gold:  rgba(201, 168, 76, 0.25);
  --teal:         #5BC8A8;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;

  --radius:    4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --container: 1200px;
}

/* ── Base ───────────────────────────────────────────────────────────── */
html   { scroll-behavior: smooth; font-size: 16px; }
body   { font-family: var(--font-sans); background: var(--cream); color: var(--navy); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 300; line-height: 1.1; }

/* ── Layout helpers ─────────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 5%; }
.section { padding: 100px 0; }
.section--cream   { background: var(--cream); }
.section--navy    { background: var(--navy); }
.section--midnight{ background: var(--midnight); }

/* ── Shared typography ──────────────────────────────────────────────── */
.eyebrow {
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }

.section-h {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300; letter-spacing: -1px;
  color: var(--navy); margin-bottom: 16px;
}
.section--navy .section-h,
.section--midnight .section-h { color: var(--cream); }
.section-h em { font-style: italic; color: var(--gold); }

.section-p {
  font-size: 16px; color: var(--body-text); line-height: 1.8;
  font-weight: 300; max-width: 560px; margin-bottom: 56px;
}
.section--navy .section-p,
.section--midnight .section-p { color: var(--steel); }

/* ── Buttons ────────────────────────────────────────────────────────── */
.btn-gold {
  display: inline-block;
  background: var(--gold); color: var(--navy);
  padding: 14px 32px; font-size: 13px;
  font-family: var(--font-sans); font-weight: 500;
  letter-spacing: 1px; text-transform: uppercase;
  text-decoration: none; transition: background 0.25s, transform 0.2s;
}
.btn-gold:hover { background: #b8942e; transform: translateY(-1px); }

.btn-ghost {
  color: var(--steel); font-size: 13px; font-weight: 300;
  text-decoration: none; letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border); padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--cream); border-color: var(--steel); }

/* ── NAV ────────────────────────────────────────────────────────────── */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 32px; object-fit: contain; filter: brightness(1.1); }
.nav-wordmark { font-family: var(--font-serif); font-size: 20px; font-weight: 400; color: var(--cream); letter-spacing: 0.5px; }
.nav-wordmark span { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-size: 13px; color: var(--steel); text-decoration: none; font-weight: 300; letter-spacing: 0.8px; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  border: 1px solid var(--gold-border); color: var(--gold);
  background: transparent; padding: 9px 22px;
  font-family: var(--font-sans); font-size: 12px;
  font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
  text-decoration: none; transition: all 0.25s;
}
.nav-cta:hover { background: var(--gold); color: var(--navy); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--steel); transition: all 0.25s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── HERO ───────────────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  min-height: 90vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
  padding: 80px 5%; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 55%; height: 100%;
  background: radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content .eyebrow { color: var(--gold); margin-bottom: 28px; }
.hero h1 { font-family: var(--font-serif); font-size: clamp(46px, 5.5vw, 76px); font-weight: 300; color: var(--cream); margin-bottom: 24px; letter-spacing: -1px; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub { font-size: 16px; color: var(--steel); line-height: 1.8; margin-bottom: 44px; font-weight: 300; max-width: 460px; border-left: 1px solid var(--gold-border); padding-left: 20px; }
.hero-actions { display: flex; align-items: center; gap: 24px; }
.hero-metrics { display: flex; margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--border); }
.hero-metric { padding-right: 32px; }
.hero-metric--bordered { padding-left: 32px; border-left: 1px solid var(--border); }
.metric-n { font-family: var(--font-serif); font-size: 44px; font-weight: 300; color: var(--gold); line-height: 1; }
.metric-l { font-size: 12px; color: var(--muted); margin-top: 6px; letter-spacing: 0.5px; text-transform: uppercase; font-weight: 300; }

/* Dashboard card */
.hero-dashboard {
  background: var(--midnight); border: 1px solid var(--border-gold);
  padding: 28px; position: relative; overflow: hidden;
}
.hero-dashboard::before {
  content: ''; position: absolute; top: -1px; left: 40px; right: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.dash-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.dash-brand { font-family: var(--font-serif); font-size: 14px; color: var(--cream); letter-spacing: 1px; }
.dash-brand span { color: var(--gold); }
.dash-tag { font-size: 10px; letter-spacing: 1.5px; color: var(--muted); text-transform: uppercase; }
.kpi-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.kpi { background: rgba(13,27,42,0.6); border: 1px solid var(--border); padding: 14px 16px; }
.kpi-label { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; font-weight: 500; }
.kpi-val { font-family: var(--font-serif); font-size: 26px; font-weight: 300; color: var(--cream); line-height: 1; }
.kpi-val--gold { color: var(--gold); }
.kpi-val--teal { color: var(--teal); }
.kpi-delta { font-size: 11px; margin-top: 4px; color: var(--muted); }
.kpi-delta--up { color: var(--teal); }
.feed { display: flex; flex-direction: column; gap: 8px; }
.feed-item { display: flex; align-items: center; gap: 12px; background: rgba(13,27,42,0.5); border: 1px solid var(--border); padding: 10px 14px; }
.feed-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.feed-dot--teal  { background: var(--teal); }
.feed-dot--gold  { background: var(--gold); }
.feed-dot--steel { background: var(--steel); }
.feed-text { font-size: 12px; color: var(--steel); flex: 1; font-weight: 300; }
.feed-time { font-size: 10px; color: var(--muted); letter-spacing: 0.3px; }

/* ── STATEMENT STRIP ────────────────────────────────────────────────── */
.statement-strip { background: var(--gold); padding: 28px 5%; display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.statement-quote { font-family: var(--font-serif); font-size: 20px; font-weight: 300; font-style: italic; color: var(--navy); text-align: center; }
.statement-divider { width: 1px; height: 40px; background: rgba(13,27,42,0.2); }
.statement-attr { font-size: 13px; color: rgba(13,27,42,0.55); font-family: var(--font-sans); font-weight: 300; text-align: center; }

/* ── PHILOSOPHY PILLARS ─────────────────────────────────────────────── */
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); }
.pillar { background: var(--cream); padding: 36px 28px; transition: background 0.25s; }
.pillar:hover { background: var(--white); }
.pillar-num { font-family: var(--font-serif); font-size: 48px; font-weight: 300; color: var(--gold-border); line-height: 1; margin-bottom: 20px; }
.pillar h3 { font-family: var(--font-serif); font-size: 20px; font-weight: 400; color: var(--navy); margin-bottom: 12px; line-height: 1.3; }
.pillar p { font-size: 14px; color: var(--body-text); line-height: 1.7; font-weight: 300; }
.pillar-quote { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border); font-size: 13px; font-style: italic; color: var(--gold); line-height: 1.6; font-family: var(--font-serif); font-weight: 300; }

/* ── MODULES ────────────────────────────────────────────────────────── */
.modules-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(138,155,176,0.15); }
.module-card { background: var(--navy); padding: 32px 24px; border-top: 2px solid transparent; transition: all 0.25s; }
.module-card:hover { background: var(--midnight); border-top-color: var(--gold); }
.module-glyph { font-family: var(--font-sans); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; font-weight: 500; }
.module-card h3 { font-family: var(--font-serif); font-size: 20px; font-weight: 300; color: var(--cream); margin-bottom: 10px; }
.module-card p { font-size: 13px; color: var(--steel); line-height: 1.6; font-weight: 300; }

/* ── SOCIAL PUBLISHER ───────────────────────────────────────────────── */
.publisher-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.publisher-badge { display: inline-block; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--navy); background: var(--gold); padding: 5px 14px; margin-bottom: 24px; font-weight: 500; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.check-item { display: flex; align-items: flex-start; gap: 14px; font-size: 14px; color: var(--body-text); font-weight: 300; }
.check-mark { width: 18px; height: 18px; border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; font-size: 10px; color: var(--gold); font-weight: 500; }

.publisher-card { background: var(--navy); padding: 36px; border: 1px solid var(--border-gold); position: relative; overflow: hidden; }
.publisher-card::before { content: ''; position: absolute; top: -1px; left: 30px; right: 30px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.pub-card-header { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; font-weight: 500; }
.channel-list { display: flex; flex-direction: column; gap: 10px; }
.channel { display: flex; align-items: center; gap: 14px; border: 1px solid var(--border); padding: 12px 16px; }
.channel-icon { width: 36px; height: 36px; background: rgba(201,168,76,0.1); display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.channel-info { flex: 1; }
.channel-name { font-size: 13px; font-weight: 500; color: var(--cream); }
.channel-stat { font-size: 11px; color: var(--muted); margin-top: 2px; font-weight: 300; }
.channel-badge { font-size: 10px; letter-spacing: 0.5px; padding: 3px 10px; font-weight: 500; }
.channel-badge--live  { background: rgba(91,200,168,0.12); color: var(--teal); }
.channel-badge--sched { background: rgba(138,155,176,0.15); color: var(--steel); }

/* ── OFFER / INVESTMENT ─────────────────────────────────────────────── */
.offer-grid { display: grid; grid-template-columns: 1fr 1.1fr 1fr; gap: 1px; background: var(--border); }
.offer-card { background: var(--midnight); padding: 40px 32px; position: relative; }
.offer-card--featured { background: var(--navy); border-top: 2px solid var(--gold); }
.offer-badge { position: absolute; top: -1px; right: 32px; background: var(--gold); color: var(--navy); font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 12px; font-weight: 500; }
.offer-tier-label { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; font-weight: 500; }
.offer-name { font-family: var(--font-serif); font-size: 28px; font-weight: 300; color: var(--cream); margin-bottom: 8px; }
.offer-price { font-family: var(--font-serif); font-size: 38px; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.offer-period { font-size: 12px; color: var(--muted); margin-bottom: 28px; font-weight: 300; }
.offer-divider { border: none; border-top: 1px solid var(--border); margin-bottom: 24px; }
.offer-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.offer-list li { font-size: 13px; color: var(--steel); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; font-weight: 300; }
.offer-list li::before { content: '—'; color: var(--gold); flex-shrink: 0; }
.offer-btn { display: block; width: 100%; text-align: center; padding: 13px; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; font-family: var(--font-sans); font-weight: 500; transition: all 0.25s; cursor: pointer; border: none; }
.offer-btn--outline { border: 1px solid var(--border-gold); color: var(--gold); background: transparent; }
.offer-btn--outline:hover { background: var(--gold-light); }
.offer-btn--filled { background: var(--gold); color: var(--navy); }
.offer-btn--filled:hover { background: #b8942e; }

/* ── FOUNDER QUOTE ──────────────────────────────────────────────────── */
.founder-section { background: var(--cream); padding: 80px 5%; }
.founder-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.quote-mark { font-family: var(--font-serif); font-size: 80px; line-height: 0.6; color: var(--gold-border); font-weight: 300; margin-bottom: 8px; }
.founder-quote { font-family: var(--font-serif); font-size: clamp(20px, 2.8vw, 32px); font-weight: 300; font-style: italic; color: var(--navy); line-height: 1.5; margin-bottom: 28px; }
.founder-attr { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 500; display: flex; align-items: center; justify-content: center; gap: 16px; }
.founder-attr::before, .founder-attr::after { content: ''; display: block; width: 40px; height: 1px; background: var(--gold-border); }

/* ── FINAL CTA ──────────────────────────────────────────────────────── */
.final-cta { background: var(--navy); padding: 100px 5%; text-align: center; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 65%); pointer-events: none; }
.final-cta h2 { font-family: var(--font-serif); font-size: clamp(36px, 5vw, 64px); font-weight: 300; color: var(--cream); letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 20px; position: relative; }
.final-cta p { font-size: 16px; color: var(--steel); margin: 0 auto 44px; font-weight: 300; position: relative; max-width: 500px; line-height: 1.8; }
.final-actions { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; position: relative; }
.final-divider { width: 1px; height: 44px; background: var(--border); }

/* ── FOOTER ─────────────────────────────────────────────────────────── */
.site-footer { background: var(--navy); border-top: 1px solid rgba(201,168,76,0.15); padding: 40px 5%; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.footer-logo img { height: 26px; object-fit: contain; filter: brightness(1.1); }
.footer-wordmark { font-family: var(--font-serif); font-size: 16px; color: var(--steel); font-weight: 300; }
.footer-wordmark span { color: var(--gold); }
.footer-nav { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-nav a { font-size: 12px; letter-spacing: 0.8px; text-transform: uppercase; color: var(--muted); text-decoration: none; font-weight: 300; transition: color 0.2s; }
.footer-nav a:hover { color: var(--gold); }
.footer-tagline { font-family: var(--font-serif); font-size: 13px; font-style: italic; color: var(--muted); font-weight: 300; }

/* ── RESPONSIVE ─────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pillars-grid  { grid-template-columns: 1fr 1fr; }
  .modules-grid  { grid-template-columns: 1fr 1fr; }
  .offer-grid    { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .hero              { grid-template-columns: 1fr; min-height: auto; padding: 60px 5%; }
  .publisher-grid    { grid-template-columns: 1fr; gap: 40px; }
  .nav-links         { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--navy); border-bottom: 1px solid var(--border); padding: 24px 5%; flex-direction: column; gap: 20px; }
  .nav-links.open    { display: flex; }
  .nav-hamburger     { display: flex; }
  .pillars-grid      { grid-template-columns: 1fr; }
  .modules-grid      { grid-template-columns: 1fr; }
  .hero-metrics      { gap: 0; }
  .statement-strip   { gap: 20px; }
  .statement-divider { display: none; }
}

.products-grid{display:grid;grid-template-columns:1fr 1fr;gap:2px;background:rgba(138,155,176,0.15)}
.product-card{background:var(--navy);padding:44px 36px;border-top:2px solid transparent;transition:all 0.25s}
.product-card:hover{background:var(--midnight);border-top-color:var(--gold)}
.product-card--featured{border-top-color:var(--gold)}
.product-label{font-size:10px;letter-spacing:2.5px;text-transform:uppercase;color:var(--gold);margin-bottom:16px;font-weight:500}
.product-card h3{font-family:var(--font-serif);font-size:28px;font-weight:300;color:var(--cream);margin-bottom:12px}
.product-card>p{font-size:14px;color:var(--steel);line-height:1.7;font-weight:300;margin-bottom:20px}
.product-features{list-style:none;display:flex;flex-direction:column;gap:8px;margin-bottom:24px}
.product-features li{font-size:13px;color:var(--steel);display:flex;gap:10px;font-weight:300}
.product-features li::before{content:'—';color:var(--gold);flex-shrink:0}
.product-price{font-family:var(--font-serif);font-size:13px;color:var(--gold);font-style:italic;margin-bottom:20px;font-weight:300}
.btn-outline-dark{display:inline-block;border:1px solid var(--border-gold);color:var(--gold);background:transparent;padding:13px 30px;font-size:12px;font-family:var(--font-sans);font-weight:500;letter-spacing:1px;text-transform:uppercase;text-decoration:none;transition:all 0.25s}
.btn-outline-dark:hover{background:var(--gold-light)}
.hero-tagline{font-family:var(--font-serif);font-size:17px;font-style:italic;color:var(--gold);margin-bottom:10px;font-weight:300;opacity:0.85}
.services-intro{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:start;margin-bottom:56px}
.services-grid{display:grid;grid-template-columns:1fr 1fr;gap:2px;background:var(--border-gold)}
.service-card{background:var(--cream);padding:36px 30px;border-top:2px solid transparent;transition:all 0.25s}
.service-card:hover{border-top-color:var(--gold);background:var(--white)}
.service-tier{font-size:10px;letter-spacing:2.5px;text-transform:uppercase;color:var(--gold);margin-bottom:8px;font-weight:500}
.service-card h3{font-family:var(--font-serif);font-size:22px;font-weight:400;color:var(--navy);margin-bottom:4px}
.service-sub{font-family:var(--font-serif);font-size:14px;font-style:italic;color:var(--muted);margin-bottom:14px;font-weight:300}
.service-card>p{font-size:14px;color:var(--body-text);line-height:1.7;font-weight:300;margin-bottom:16px}
.service-list{list-style:none;display:flex;flex-direction:column;gap:7px;margin-bottom:14px}
.service-list li{font-size:13px;color:var(--body-text);display:flex;gap:8px;font-weight:300}
.service-list li::before{content:'·';color:var(--gold);flex-shrink:0;font-size:16px;line-height:1.2}
.service-addons{font-size:12px;color:var(--muted);margin-bottom:18px;font-style:italic;line-height:1.6}
.service-price{font-family:var(--font-serif);font-size:26px;font-weight:300;color:var(--navy);margin-bottom:20px}
.service-price span{font-size:13px;color:var(--muted);font-family:var(--font-sans);font-weight:300}
.service-btn{display:inline-block;border:1px solid var(--border-gold);color:var(--gold);background:transparent;padding:10px 22px;font-size:11px;letter-spacing:1.5px;text-transform:uppercase;text-decoration:none;font-family:var(--font-sans);font-weight:500;transition:all 0.25s}
.service-btn:hover{background:var(--gold);color:var(--navy)}
.discovery-box{background:var(--navy);padding:36px;border-left:3px solid var(--gold);margin-top:2px}
.discovery-box h3{font-family:var(--font-serif);font-size:22px;font-weight:300;color:var(--cream);margin-bottom:10px}
.discovery-box p{font-size:14px;color:var(--steel);line-height:1.7;font-weight:300;margin-bottom:24px}
.final-sub{font-family:var(--font-serif);font-size:17px;font-style:italic;color:var(--gold);margin-bottom:12px;font-weight:300;position:relative;opacity:0.85}
@media(max-width:900px){.products-grid,.services-intro,.services-grid{grid-template-columns:1fr}}
