/* Reset & base */

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

html, body {
  height: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(ellipse at top, #0f1424 0%, #060910 40%, #020306 100%);
  color: #f3f4ff;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

/* Layout shell */

.page-bg {
  min-height: 100vh;
  padding: 24px 16px 40px;
}

.shell {
  max-width: 1040px;
  margin: 24px auto 0;
}

/* Header */

.site-header {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 4px 0;
}

.header-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.header-logo-icon {
  height: 32px;
  width: auto;
}

.header-wordmark {
  height: 24px;
  width: auto;
}

.top-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 13px;
}

.top-nav a {
  color: rgba(237, 239, 255, 0.78);
  text-decoration: none;
  padding: 4px 0;
}

.top-nav a:hover {
  color: #ffffff;
}

.nav-cta {
  padding: 10px 32px;
  border-radius: 999px;
  border: 1px solid rgba(233, 180, 76, 0.4);
  background: linear-gradient(135deg, rgba(233, 180, 76, 0.15), rgba(11, 24, 51, 0.9));
  color: #e9b44c !important;
  font-weight: 500;
  transition: all 0.2s ease;
}

.nav-cta:hover {
  border-color: rgba(233, 180, 76, 0.7);
  background: linear-gradient(135deg, rgba(233, 180, 76, 0.25), rgba(11, 24, 51, 0.95));
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(233, 180, 76, 0.2);
}

/* Hero card */

.hero-card {
  margin-top: 32px;
  padding: 48px 40px 44px;
  border-radius: 32px;
  background: radial-gradient(ellipse at top, #141a30 0%, #080c18 45%, #040610 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(255, 255, 255, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  text-align: center;
  position: relative;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(233, 180, 76, 0.4), transparent);
}

.hero-image-wrap {
  max-width: 520px;
  margin: 0 auto 24px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
}

.hero-wordmark {
  margin-bottom: 8px;
}

.hero-wordmark-img {
  height: 100px;
  width: auto;
  max-width: 100%;
}

.hero-tagline {
  margin-top: 4px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(233, 235, 255, 0.7);
}

.hero-subtitle {
  max-width: 680px;
  margin: 24px auto 36px;
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(232, 235, 255, 0.9);
  font-weight: 400;
}

/* Value lines */

.value-lines {
  margin: 12px auto 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
}

.value-line {
  color: rgba(226, 229, 255, 0.9);
}

.value-line.payoff {
  font-size: 13px;
  color: rgba(219, 223, 255, 0.9);
}

.value-plus {
  margin: 0 4px;
  opacity: 0.7;
}

.value-pill,
.value-pill-soft {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 2px 10px;
  margin: 2px 2px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle at top left, rgba(37, 55, 106, 0.85), rgba(9, 14, 35, 0.95));
  font-size: 12px;
}

.value-pill-accent {
  border-color: rgba(255, 215, 128, 0.65);
  background: radial-gradient(circle at 20% 10%, #ffe9ae, #f2c35f 50%, #9a6d22 100%);
  color: #201209;
}

.value-pill-accent sup {
  font-size: 9px;
  margin-left: 1px;
}

.value-pill-soft {
  border-color: rgba(121, 148, 255, 0.35);
  background: rgba(26, 40, 90, 0.7);
}

.value-pill-soft-gold {
  border-color: rgba(255, 215, 128, 0.6);
  background: rgba(92, 64, 18, 0.8);
}

/* Hero CTA */

.hero-cta {
  margin-top: 40px;
  background: linear-gradient(145deg, rgba(15, 22, 45, 0.9), rgba(8, 12, 25, 0.95));
  border: 1px solid rgba(233, 180, 76, 0.2);
  border-radius: 20px;
  padding: 32px 48px;
  display: inline-block;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.cta-tagline {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #f0f2ff;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: #0a1208;
  background: linear-gradient(135deg, #a8ecd0 0%, #5dd9b5 50%, #3cc99f 100%);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.5),
    0 4px 15px rgba(93, 217, 181, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.25s ease;
}

.primary-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.55),
    0 8px 25px rgba(93, 217, 181, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.primary-cta:active {
  transform: translateY(0);
}

.cta-caption {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(211, 216, 255, 0.8);
}

.cta-caption a {
  color: #8de6c6;
  text-decoration: none;
}

.cta-caption a:hover {
  text-decoration: underline;
}

/* Sections generic */

.section {
  margin-top: 56px;
}

.section-header {
  max-width: 680px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.875rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #ffffff 0%, #d4d8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header h2 em {
  font-style: italic;
  background: linear-gradient(135deg, #e9b44c, #d4a03a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 1rem;
  color: rgba(220, 224, 255, 0.85);
  line-height: 1.6;
}

.problem-lead,
.approach-lead {
  font-size: 1.125rem;
  margin-top: 8px;
}

/* Problem section */

.section-problem {
  padding: 32px 16px 10px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.problem-card {
  padding: 22px 22px 20px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(18, 22, 42, 0.95), rgba(8, 11, 22, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: all 0.25s ease;
}

.problem-card:hover {
  border-color: rgba(233, 180, 76, 0.2);
  transform: translateY(-2px);
}

.problem-card-accent {
  border-color: rgba(233, 180, 76, 0.5);
  background: linear-gradient(145deg, rgba(40, 32, 18, 0.95), rgba(15, 12, 8, 0.98));
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(233, 180, 76, 0.15),
    inset 0 1px 0 rgba(233, 180, 76, 0.1);
}

.problem-card-accent h3 {
  color: #e9b44c;
}

.problem-card-accent:hover {
  border-color: rgba(233, 180, 76, 0.7);
  box-shadow:
    0 24px 55px rgba(0, 0, 0, 0.65),
    0 0 40px rgba(233, 180, 76, 0.25),
    inset 0 1px 0 rgba(233, 180, 76, 0.15);
}

.problem-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #f3f4ff;
}

.problem-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(213, 218, 255, 0.88);
}

.consultant-line {
  margin-top: 18px;
  text-align: center;
  font-size: 13px;
  color: rgba(201, 206, 255, 0.85);
}

/* Approach timeline */

.section-approach {
  padding: 30px 16px 10px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.timeline-stage {
  padding: 24px 24px 20px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(16, 20, 40, 0.95), rgba(8, 10, 22, 0.98));
  border: 1px solid rgba(113, 132, 255, 0.2);
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: all 0.25s ease;
  position: relative;
}

.timeline-stage:hover {
  border-color: rgba(113, 132, 255, 0.4);
  transform: translateY(-2px);
}

.stage-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e9b44c;
  margin-bottom: 8px;
  font-weight: 600;
}

.timeline-stage h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.timeline-stage ul {
  list-style: none;
  padding-left: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(217, 222, 255, 0.9);
}

.timeline-stage ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.timeline-stage ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e9b44c;
}

.timeline-stage ul li:last-child {
  margin-bottom: 0;
}

/* Who it's for */

.section-who {
  padding: 30px 16px 4px;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.who-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 36px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(18, 21, 40, 0.95), rgba(6, 8, 18, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.who-intro {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #f0f2ff;
  margin-bottom: 20px;
}

.who-list {
  list-style: none;
  padding-left: 0;
}

.who-list li {
  position: relative;
  padding-left: 24px;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(220, 224, 255, 0.9);
  margin-bottom: 14px;
}

.who-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e9b44c;
}

.who-list li:last-child {
  margin-bottom: 0;
}

.who-closing {
  margin-top: 24px;
  font-size: 1.0625rem;
  font-weight: 500;
  color: #e9b44c;
  font-style: italic;
}

/* About */

.section-about {
  padding: 30px 16px 8px;
}

.bio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.bio-card {
  padding: 28px 24px 24px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(18, 21, 40, 0.95), rgba(6, 8, 18, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: all 0.25s ease;
}

.bio-card:hover {
  border-color: rgba(233, 180, 76, 0.2);
  transform: translateY(-2px);
}

.bio-headshot {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  border: 3px solid rgba(233, 180, 76, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.bio-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.bio-title {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(189, 197, 255, 0.86);
  margin-bottom: 8px;
}

.bio-card p {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(214, 219, 255, 0.9);
}

.bio-link {
  margin-top: 10px;
}

.bio-link a {
  font-size: 13px;
  color: #8de6c6;
  text-decoration: none;
}

.bio-link a:hover {
  text-decoration: underline;
}

/* Final CTA */

.section-final-cta {
  padding: 32px 16px 10px;
}

.final-card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 24px 24px 22px;
  border-radius: 26px;
  background: radial-gradient(circle at top, #181b30, #070713);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.8);
}

.final-card h2 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  margin-bottom: 8px;
}

.final-card p {
  font-size: 14px;
  color: rgba(220, 224, 255, 0.88);
  margin-bottom: 16px;
}

/* Responsive tweaks */

@media (max-width: 720px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .top-nav {
    flex-wrap: wrap;
    gap: 10px;
  }

  .hero-card {
    padding: 28px 18px 26px;
  }

  .hero-image-wrap {
    margin-bottom: 18px;
  }
}
