:root {
  --ink: #0d1f17;
  --ink-2: #10281d;
  --card: rgba(26, 61, 40, 0.38);
  --card-strong: rgba(19, 46, 31, 0.78);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(201, 147, 58, 0.2);
  --gold: #c9933a;
  --gold-lt: #e7b768;
  --mint: #8dcf9d;
  --text: #eee9df;
  --text-2: rgba(238, 233, 223, 0.76);
  --text-3: rgba(238, 233, 223, 0.48);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(55, 125, 84, 0.2), transparent 26%),
    radial-gradient(circle at bottom left, rgba(201, 147, 58, 0.12), transparent 28%),
    linear-gradient(180deg, #0d1f17 0%, #10281d 100%);
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.024;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 9999;
}
a { color: inherit; text-decoration: none; }

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 76px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  transition: background .35s ease, border-color .35s ease;
}
nav.scrolled {
  background: rgba(13, 31, 23, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 147, 58, 0.14);
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 700;
}
.nav-logo-text { font-size: 16px; font-weight: 600; letter-spacing: -.01em; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 13.5px;
  color: var(--text-2);
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 10px; }

.btn {
  border: 1px solid transparent;
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 600;
  padding: 11px 18px;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--gold); color: var(--ink); }
.btn-primary:hover { background: var(--gold-lt); }
.btn-secondary {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--text);
}
.btn-secondary:hover {
  border-color: rgba(201, 147, 58, 0.35);
  color: var(--gold-lt);
}

.hero,
.section-shell,
footer {
  padding-left: 48px;
  padding-right: 48px;
}

.hero {
  padding-top: 144px;
  padding-bottom: 88px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  right: -140px;
  top: -140px;
  width: 660px;
  height: 660px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 147, 58, 0.11) 0%, transparent 68%);
  pointer-events: none;
}
.hero-grid,
.section-inner,
.cta-panel,
footer {
  max-width: 1220px;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.eyebrow {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero h1,
.section-title,
.pricing-card h3,
.cta-panel h3,
.blog-title,
.problem-card h3,
.pillar-card h3,
.role-card h3 {
  font-family: var(--serif);
  letter-spacing: -.02em;
}
.hero h1 {
  margin: 14px 0 18px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.02;
  font-weight: 600;
  max-width: 760px;
}
.hero-copy,
.section-copy,
.problem-card p,
.pillar-card p,
.role-card p,
.blog-excerpt,
.pricing-copy,
.cta-panel p,
.journal-mini-copy {
  color: var(--text-2);
  line-height: 1.7;
}
.hero-copy {
  font-size: 17px;
  max-width: 630px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.hero-proof-card {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.hero-proof-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--gold-lt);
}
.hero-proof-card span {
  color: var(--text-3);
  font-size: 12px;
  line-height: 1.6;
}

.hero-preview {
  position: relative;
}
.preview-shell {
  position: relative;
  border-radius: 30px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(28, 66, 44, 0.92), rgba(12, 29, 20, 0.98));
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.preview-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(201, 147, 58, 0.12), transparent 28%),
    radial-gradient(circle at bottom right, rgba(141, 207, 157, 0.1), transparent 36%);
  pointer-events: none;
}
.preview-topbar,
.preview-stat-row,
.preview-grid {
  position: relative;
  z-index: 1;
}
.preview-topbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  margin-bottom: 18px;
}
.preview-topbar-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold);
  font-weight: 700;
}
.preview-topbar-title {
  margin-top: 6px;
  font-size: 26px;
  font-family: var(--serif);
  line-height: 1.1;
}
.preview-status {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--mint);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}
.preview-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}
.preview-stat-chip {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.preview-chip-label {
  display: block;
  color: var(--text-3);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}
.preview-stat-chip strong {
  font-size: 20px;
  line-height: 1.1;
}
.preview-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 14px;
}
.preview-card {
  border-radius: 22px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  animation: floatCard 7s ease-in-out infinite;
}
.preview-card-ops { animation-delay: .8s; }
.preview-card-governance {
  grid-column: 1 / -1;
  animation-delay: 1.6s;
}
.preview-card-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold-lt);
  font-weight: 700;
  margin-bottom: 8px;
}
.preview-card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}
.preview-bars { margin-top: 14px; }
.preview-bar-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  color: var(--text-2);
  margin-bottom: 8px;
}
.preview-bar {
  height: 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 12px;
}
.preview-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
}
.preview-bar.is-warm span {
  background: linear-gradient(90deg, #b57432, #d79d57);
}
.preview-list {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}
.preview-list div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text-2);
  font-size: 12px;
}
.preview-list strong {
  color: var(--gold-lt);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.preview-note {
  margin-top: 14px;
  padding: 15px 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(141, 207, 157, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(141, 207, 157, 0.12);
}
.preview-note-title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}
.preview-note-text {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-2);
}

.section-shell {
  padding-top: 84px;
  padding-bottom: 84px;
}
.section-tinted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}
.section-title {
  margin: 10px 0 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}
.section-copy {
  max-width: 540px;
  font-size: 15px;
}

.problem-grid,
.pillar-grid,
.role-grid,
.pricing-grid {
  display: grid;
  gap: 22px;
}
.problem-grid { grid-template-columns: repeat(3, 1fr); }
.pillar-grid { grid-template-columns: repeat(3, 1fr); }
.role-grid { grid-template-columns: repeat(4, 1fr); }
.pricing-grid { grid-template-columns: 1fr 1fr; }

.problem-card,
.pillar-card,
.role-card,
.pricing-card,
.journal-feature,
.journal-mini {
  border-radius: 24px;
  border: 1px solid var(--line);
}
.problem-card,
.role-card {
  background: rgba(255, 255, 255, 0.028);
  padding: 24px;
}
.problem-number,
.pillar-kicker,
.role-tag,
.pricing-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(201, 147, 58, 0.12);
  color: var(--gold-lt);
  border: 1px solid rgba(201, 147, 58, 0.16);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
}
.problem-card h3,
.pillar-card h3,
.role-card h3 {
  margin: 16px 0 12px;
  font-size: 24px;
  line-height: 1.15;
}
.problem-card p,
.pillar-card p,
.role-card p {
  margin: 0;
  font-size: 14px;
}

.pillar-card {
  padding: 26px;
  background: linear-gradient(180deg, rgba(26, 61, 40, 0.48), rgba(13, 31, 23, 0.8));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}
.pillar-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  color: var(--text-2);
  font-size: 13px;
}
.pillar-list div {
  padding: 11px 13px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.role-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
}

.pricing-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
}
.pricing-card.featured {
  background: linear-gradient(180deg, rgba(26, 61, 40, 0.72), rgba(16, 40, 29, 0.96));
  border-color: rgba(201, 147, 58, 0.28);
  box-shadow: var(--shadow);
}
.pricing-card h3 { margin: 0 0 10px; font-size: 26px; }
.pricing-copy { font-size: 14px; margin-bottom: 20px; }
.pricing-price {
  display: flex;
  align-items: end;
  gap: 10px;
  margin-bottom: 20px;
}
.pricing-price strong {
  font-size: 40px;
  line-height: 1;
  letter-spacing: -.03em;
}
.pricing-price span {
  color: var(--text-3);
  font-size: 14px;
  margin-bottom: 4px;
}
.pricing-list {
  display: grid;
  gap: 10px;
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.pricing-list div::before {
  content: '•';
  color: var(--gold-lt);
  margin-right: 10px;
}
.pricing-actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.journal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 22px;
}
.journal-feature {
  display: grid;
  grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
  background: rgba(255, 255, 255, 0.025);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease;
}
.journal-feature:hover,
.journal-mini:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 147, 58, 0.28);
}
.journal-feature-cover {
  display: grid;
  place-items: center;
  font-size: 58px;
  background: linear-gradient(135deg, #173524, #0d1f17);
}
.journal-feature-body {
  padding: 24px;
}
.blog-kicker {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
  font-size: 11px;
  color: var(--text-3);
}
.blog-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(201, 147, 58, 0.12);
  color: var(--gold-lt);
  border: 1px solid rgba(201, 147, 58, 0.16);
}
.blog-title {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.18;
}
.blog-excerpt { margin: 0; font-size: 14px; }
.blog-actions {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--gold-lt);
  font-weight: 600;
  font-size: 13px;
}
.journal-list {
  display: grid;
  gap: 14px;
}
.journal-mini {
  display: block;
  padding: 22px;
  background: rgba(255, 255, 255, 0.02);
  transition: transform .25s ease, border-color .25s ease;
}
.journal-mini-title {
  font-size: 19px;
  font-family: var(--serif);
  line-height: 1.25;
  margin-bottom: 8px;
}
.journal-mini-copy {
  font-size: 13px;
}
.journal-mini-action {
  background: linear-gradient(135deg, rgba(201, 147, 58, 0.09), rgba(255, 255, 255, 0.02));
}

.cta-band {
  padding: 0 48px 84px;
}
.cta-panel {
  border-radius: 30px;
  border: 1px solid rgba(201, 147, 58, 0.18);
  background: linear-gradient(135deg, rgba(26, 61, 40, 0.9), rgba(13, 31, 23, 0.97));
  padding: 38px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-panel h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 40px);
}
.cta-panel p {
  margin: 10px 0 0;
  font-size: 14px;
  max-width: 560px;
}

footer {
  border-top: 1px solid var(--line);
  padding-top: 34px;
  padding-bottom: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--text-3);
  font-size: 13px;
}
.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-links a:hover { color: var(--text); }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@media (max-width: 1100px) {
  .hero-grid,
  .problem-grid,
  .pillar-grid,
  .pricing-grid,
  .journal-grid {
    grid-template-columns: 1fr;
  }

  .role-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-proof-grid,
  .preview-stat-row {
    grid-template-columns: 1fr;
  }

  .preview-grid,
  .journal-feature {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .hero,
  .section-shell,
  .cta-band,
  footer,
  nav {
    padding-left: 20px;
    padding-right: 20px;
  }

  nav { height: 74px; }
  .nav-links { display: none; }
  .nav-actions { gap: 8px; }
  .btn { padding: 10px 14px; }

  .hero {
    padding-top: 118px;
    padding-bottom: 68px;
  }

  .hero h1 {
    font-size: clamp(36px, 12vw, 58px);
  }

  .hero-actions,
  .pricing-actions,
  .nav-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .hero-actions .btn,
  .pricing-actions .btn,
  .cta-panel .nav-actions .btn {
    width: 100%;
  }

  .hero-proof-grid,
  .role-grid {
    grid-template-columns: 1fr;
  }

  .preview-shell,
  .pricing-card,
  .problem-card,
  .pillar-card,
  .role-card,
  .journal-mini,
  .journal-feature-body {
    padding-left: 20px;
    padding-right: 20px;
  }

  .preview-shell {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .cta-panel {
    padding: 30px 24px;
  }

  footer {
    align-items: start;
  }
}
