/* ============================================
   TENWARD — Global Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:       #0D0D0D;
  --near-black:  #141414;
  --dark:        #1C1C1C;
  --mid:         #5C5C5C;
  --light-mid:   #8A8A8A;
  --border:      #E2E0DC;
  --warm-white:  #F7F5F1;
  --white:       #FFFFFF;
  --green:       #3A6351;
  --green-light: #EBF1EE;
  --green-dark:  #2C4D3E;
  --gold:        #B8956A;
  --gold-light:  #F5EDE0;
  --radius:      6px;
  --radius-lg:   12px;
  --transition:  0.22s ease;
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Typography --- */
.display { font-family: 'Playfair Display', Georgia, serif; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  line-height: 1.18;
  color: var(--black);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.15rem; }

p { color: var(--mid); line-height: 1.75; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}

/* --- Layout --- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
.container--narrow { max-width: 760px; margin: 0 auto; padding: 0 32px; }
.container--wide { max-width: 1320px; margin: 0 auto; padding: 0 32px; }

section { padding: 96px 0; }
section.tight { padding: 64px 0; }
section.loose { padding: 128px 0; }

.section-header { margin-bottom: 64px; }
.section-header.centered { text-align: center; }
.section-header .eyebrow { margin-bottom: 14px; }
.section-header h2 { margin-bottom: 18px; }
.section-header p { font-size: 1.05rem; max-width: 580px; }
.section-header.centered p { margin: 0 auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-secondary {
  background: var(--white);
  color: var(--dark);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover { border-color: var(--green); color: var(--green); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--mid);
  padding: 14px 20px;
}
.btn-ghost:hover { color: var(--dark); }

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--dark);
}
.btn-outline:hover { background: var(--dark); color: var(--white); transform: translateY(-1px); }

.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover { background: var(--near-black); transform: translateY(-1px); box-shadow: var(--shadow-lg); }

.btn-lg { padding: 17px 36px; font-size: 0.95rem; }
.btn-sm { padding: 10px 20px; font-size: 0.82rem; }

.btn-group { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

/* --- Navigation --- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.site-nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

.nav-logo {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
}

.nav-logo span { color: var(--green); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-item > a {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 450;
  color: var(--mid);
  cursor: pointer;
  transition: color var(--transition);
  border-radius: var(--radius);
}

.nav-item > a:hover,
.nav-item.active > a { color: var(--dark); }

button.nav-chevron {
  background: none;
  border: none;
  padding: 4px 2px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  opacity: 0.5;
  transition: transform var(--transition), opacity var(--transition);
  margin-left: -8px;
}

button.nav-chevron .chevron {
  width: 14px; height: 14px;
  transition: transform var(--transition);
}

.nav-item:hover button.nav-chevron,
.nav-item.open button.nav-chevron { opacity: 1; }

.nav-item:hover button.nav-chevron .chevron,
.nav-item.open button.nav-chevron .chevron { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.18s ease;
  pointer-events: none;
}

/* Invisible hover bridge — fills the 8px gap so mouse doesn't lose :hover */
.nav-dropdown::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 12px;
}

.nav-item:hover .nav-dropdown,
.nav-item.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}

.nav-dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: 0.855rem;
  color: var(--mid);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.nav-dropdown a:hover { background: var(--warm-white); color: var(--dark); }

.nav-actions { display: flex; align-items: center; gap: 8px; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--dark);
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav open state */
@media (max-width: 768px) {
  .nav-links.mobile-open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0; bottom: 0;
    background: var(--white);
    padding: 24px 20px;
    overflow-y: auto;
    z-index: 999;
    gap: 0;
  }
  .nav-links.mobile-open .nav-item {
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
    align-items: center;
  }
  .nav-links.mobile-open .nav-item > a {
    flex: 1;
    padding: 16px 4px;
    font-size: 1rem;
    color: var(--dark);
    font-weight: 500;
  }
  .nav-links.mobile-open button.nav-chevron {
    padding: 16px 8px;
    opacity: 1;
  }
  .nav-links.mobile-open .nav-dropdown {
    position: static;
    transform: none !important;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 12px 16px;
    display: none;
    width: 100%;
    pointer-events: all;
  }
  .nav-links.mobile-open .nav-item.mobile-dropdown-open .nav-dropdown {
    display: block;
  }
  .nav-links.mobile-open .nav-item.mobile-dropdown-open button.nav-chevron .chevron {
    transform: rotate(180deg);
  }
  .nav-links.mobile-open .nav-dropdown a {
    padding: 10px 8px;
    font-size: 0.9rem;
  }
  .nav-actions.mobile-open {
    display: flex !important;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    padding: 16px 20px;
    background: var(--white);
    border-top: 1px solid var(--border);
    z-index: 1000;
    gap: 12px;
  }
  .nav-actions.mobile-open .btn { flex: 1; justify-content: center; }
}

/* --- Hero --- */
.hero {
  padding-top: 160px;
  padding-bottom: 100px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(58,99,81,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-light);
  color: var(--green);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  margin-bottom: 32px;
}

.hero-label::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
}

.hero h1 { margin-bottom: 24px; max-width: 760px; }
.hero h1 em { font-style: italic; color: var(--green); }

.hero-sub {
  font-size: 1.15rem;
  color: var(--mid);
  max-width: 560px;
  margin-bottom: 44px;
  line-height: 1.7;
}

.hero-meta {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-meta-item { text-align: left; }
.hero-meta-item .num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--black);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-meta-item .label { font-size: 0.78rem; color: var(--light-mid); letter-spacing: 0.04em; }

/* --- Divider --- */
.divider { height: 1px; background: var(--border); margin: 0; }

/* --- Color Sections --- */
.bg-warm { background: var(--warm-white); }
.bg-dark { background: var(--black); color: var(--white); }
.bg-dark h2, .bg-dark h3, .bg-dark h1 { color: var(--white); }
.bg-dark p { color: rgba(255,255,255,0.6); }
.bg-dark .eyebrow { color: var(--gold); }
.bg-green { background: var(--green); }
.bg-green h2, .bg-green h3 { color: var(--white); }
.bg-green p { color: rgba(255,255,255,0.75); }
.bg-green .eyebrow { color: rgba(255,255,255,0.6); }

/* --- Framework Ladder --- */
.framework-ladder {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
}

.framework-rung {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}

.framework-rung:last-child { border-bottom: none; }
.framework-rung:hover { padding-left: 8px; }

.rung-num {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  color: var(--light-mid);
  min-width: 28px;
  padding-top: 4px;
}

.rung-body { flex: 1; }
.rung-body h4 { color: var(--black); margin-bottom: 4px; font-size: 1rem; font-weight: 600; font-family: 'Inter', sans-serif; }
.rung-body p { font-size: 0.88rem; margin: 0; }

.rung-tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-light);
  padding: 3px 9px;
  border-radius: 100px;
  white-space: nowrap;
  margin-top: 4px;
}

/* --- Feature Grid --- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature-cell {
  background: var(--white);
  padding: 36px 32px;
  transition: background var(--transition);
}

.feature-cell:hover { background: var(--warm-white); }

.feature-icon {
  width: 40px; height: 40px;
  background: var(--green-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg { width: 20px; height: 20px; color: var(--green); }
.feature-cell h4 { font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 600; margin-bottom: 8px; color: var(--black); }
.feature-cell p { font-size: 0.875rem; margin: 0; }

/* --- Two Column --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* --- Vision Block --- */
.vision-block {
  background: var(--black);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
}

.vision-block::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(58,99,81,0.3) 0%, transparent 70%);
  pointer-events: none;
}

.vision-block .eyebrow { color: var(--gold); }
.vision-block h2 { color: var(--white); margin-bottom: 20px; }
.vision-block p { color: rgba(255,255,255,0.65); margin-bottom: 36px; }

/* --- Dashboard Mockup --- */
.dashboard-preview {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.dash-topbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dash-topbar-dots { display: flex; gap: 6px; }
.dash-topbar-dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--border); }
.dash-topbar-dots span:first-child { background: #FF6B6B; }
.dash-topbar-dots span:nth-child(2) { background: #FFD93D; }
.dash-topbar-dots span:nth-child(3) { background: #6BCB77; }

.dash-topbar-title { font-size: 0.78rem; color: var(--light-mid); font-weight: 500; }

.dash-body { display: grid; grid-template-columns: 200px 1fr; min-height: 340px; }

.dash-sidebar {
  background: var(--near-black);
  padding: 20px 16px;
}

.dash-sidebar-logo {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
  padding: 0 8px;
}

.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--radius);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2px;
  cursor: default;
}

.dash-nav-item.active {
  background: rgba(58,99,81,0.3);
  color: rgba(255,255,255,0.9);
}

.dash-nav-item .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}
.dash-nav-item.active .dot { background: var(--green); }

.dash-main { padding: 24px; background: var(--warm-white); }

.dash-greeting { font-size: 0.95rem; font-weight: 500; color: var(--dark); margin-bottom: 4px; }
.dash-date { font-size: 0.75rem; color: var(--light-mid); margin-bottom: 20px; }

.dash-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 16px; }

.dash-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}

.dash-card-label { font-size: 0.67rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--light-mid); margin-bottom: 8px; }
.dash-card-value { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--dark); }
.dash-card-sub { font-size: 0.7rem; color: var(--light-mid); margin-top: 3px; }

.dash-progress { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; }
.dash-progress-label { font-size: 0.72rem; color: var(--mid); margin-bottom: 10px; }
.progress-bar { height: 5px; background: var(--border); border-radius: 100px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--green); border-radius: 100px; }

/* --- Testimonial / Quote --- */
.pull-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--black);
  position: relative;
  padding-left: 28px;
}

.pull-quote::before {
  content: '';
  position: absolute;
  left: 0; top: 4px; bottom: 4px;
  width: 3px;
  background: var(--green);
  border-radius: 100px;
}

/* --- Horizon Strip --- */
.horizon-strip {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.horizon-item {
  flex: 1;
  padding: 28px 24px;
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}

.horizon-item:last-child { border-right: none; }
.horizon-item:hover { background: var(--warm-white); }
.horizon-item.active { background: var(--green); }
.horizon-item.active .h-label { color: rgba(255,255,255,0.65); }
.horizon-item.active .h-title { color: var(--white); }
.horizon-item.active .h-desc { color: rgba(255,255,255,0.7); }

.h-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--light-mid); margin-bottom: 8px; }
.h-title { font-family: 'Inter', sans-serif; font-size: 0.92rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.h-desc { font-size: 0.78rem; color: var(--mid); line-height: 1.5; }

/* --- People Grid --- */
.pod-visual {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.pod-person {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.pod-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--green-light);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--green);
}

.pod-avatar.you {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  box-shadow: 0 0 0 4px var(--green-light);
}

.pod-name { font-size: 0.7rem; color: var(--light-mid); text-align: center; }

/* --- Pricing --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.price-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  background: var(--white);
  transition: all var(--transition);
}

.price-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.price-card.featured {
  border-color: var(--green);
  background: var(--green);
}

.price-card.featured h3,
.price-card.featured .price-amount,
.price-card.featured li { color: var(--white); }
.price-card.featured .price-period { color: rgba(255,255,255,0.65); }
.price-card.featured .price-desc { color: rgba(255,255,255,0.75); }
.price-card.featured .price-divider { border-color: rgba(255,255,255,0.2); }

.price-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.price-card h3 { font-family: 'Inter', sans-serif; font-size: 1.1rem; font-weight: 600; color: var(--black); margin-bottom: 8px; }
.price-desc { font-size: 0.85rem; color: var(--mid); margin-bottom: 24px; }
.price-amount { font-family: 'Playfair Display', serif; font-size: 2.8rem; color: var(--black); line-height: 1; }
.price-period { font-size: 0.82rem; color: var(--light-mid); margin-bottom: 28px; }
.price-divider { border: none; border-top: 1px solid var(--border); margin: 24px 0; }

.price-features { list-style: none; }
.price-features li {
  font-size: 0.86rem;
  color: var(--mid);
  padding: 7px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.price-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 600;
  font-size: 0.8rem;
  margin-top: 1px;
  flex-shrink: 0;
}

.price-card.featured .price-features li::before { color: rgba(255,255,255,0.8); }

/* --- Trust Strip --- */
.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.trust-item .num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--black);
  line-height: 1;
}

.trust-item .label { font-size: 0.78rem; color: var(--light-mid); }

/* --- Footer --- */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.55);
  padding: 72px 0 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  margin-bottom: 56px;
}

.footer-brand { }
.footer-logo {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-logo span { color: var(--green); }
.footer-tagline { font-size: 0.875rem; line-height: 1.65; max-width: 240px; }

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  padding: 4px 0;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
}

.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* --- Utility --- */
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-green { color: var(--green) !important; }
.text-gold { color: var(--gold) !important; }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }

.italic { font-style: italic; }
.serif { font-family: 'Playfair Display', serif; }

/* --- Page Header (inner pages) --- */
.page-header {
  padding-top: 140px;
  padding-bottom: 72px;
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
}

.page-header .eyebrow { margin-bottom: 16px; }
.page-header h1 { margin-bottom: 20px; max-width: 680px; }
.page-header p { font-size: 1.1rem; max-width: 580px; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container, .container--narrow, .container--wide { padding: 0 20px; }
  section { padding: 72px 0; }
  .two-col, .two-col.reverse { grid-template-columns: 1fr; gap: 48px; direction: ltr; }
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  .feature-grid { grid-template-columns: 1fr; }
  .horizon-strip { flex-direction: column; }
  .horizon-item { border-right: none; border-bottom: 1px solid var(--border); }
  .pod-visual { grid-template-columns: repeat(3, 1fr); }
  .dash-body { grid-template-columns: 1fr; }
  .dash-sidebar { display: none; }
  .dash-cards { grid-template-columns: 1fr; }
  .trust-strip { gap: 32px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .vision-block { padding: 40px 32px; }
}

@media (max-width: 480px) {
  .btn-group { flex-direction: column; align-items: flex-start; }
  .hero-meta { gap: 24px; }
  .pod-visual { grid-template-columns: repeat(3, 1fr); }
}
