
/* ═══════════════════════════════════════════════════
   THE TECH DISCIPLE — DARK LUXURY EDITORIAL
   ═══════════════════════════════════════════════════ */

:root {
  /* Palette sampled pixel-by-pixel from The Tech Disciple mark.
     #506FFF blue (44% of the logo), #FFFFFF white (45%), #FFCA28 halo gold (4.5%),
     plus the logo's own blue tints #627FFF / #8298FF / #C9D3FF / #E1E7FF.
     Workhorse accent is #627FFF so 10px labels clear WCAG AA on dark.
     --brand-pure carries the exact #506FFF on large type and button fills. */
  --bg-primary: #0A0A0E;
  --bg-elevated: #10101A;
  --bg-card: #15151F;
  --bg-card-hover: #1C1C29;
  --gold: #627FFF;
  --gold-dim: #3F5AE0;
  --gold-bright: #8298FF;
  --gold-glow: rgba(80, 111, 255, 0.15);
  --brand-pure: #506FFF;
  --halo: #FFCA28;
  --cream: #E1E7FF;
  --cream-dim: #C9D3FF;
  --text-primary: #E8EBF7;
  --text-secondary: #9BA1BC;
  --text-tertiary: #656B85;
  --border: rgba(80, 111, 255, 0.11);
  --border-hover: rgba(80, 111, 255, 0.26);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', sans-serif;
  --mono: 'JetBrains Mono', monospace;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

::selection {
  background: var(--gold);
  color: var(--bg-primary);
}

/* ═══ UTILITY ═══ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 16px;
}

.eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.section-heading {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  color: var(--cream);
  margin-top: 20px;
}

.section-heading em {
  font-style: italic;
  color: var(--gold);
}

/* ═══ GRAIN OVERLAY ═══ */
body::after {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}

/* ═══ NAVIGATION ═══ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 clamp(24px, 5vw, 80px);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(9, 9, 11, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: all 0.4s ease;
}

nav.scrolled {
  background: rgba(9, 9, 11, 0.92);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-logo img {
  height: 48px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--bg-primary) !important;
  background: var(--gold);
  padding: 10px 28px;
  text-decoration: none;
  transition: all 0.3s;
}

.nav-cta:hover {
  background: var(--gold-bright);
  color: var(--bg-primary) !important;
}

.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: all 0.3s;
}

/* ═══ HERO ═══ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,10,14,0.3) 0%, rgba(10,10,14,0.1) 30%, rgba(10,10,14,0.6) 65%, rgba(10,10,14,0.97) 90%),
    linear-gradient(to right, rgba(10,10,14,0.8) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(60px, 10vh, 120px);
  max-width: 800px;
}

.hero-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #FFFFFF;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(42px, 6vw, 80px);
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--brand-pure);
}

.hero-sub {
  font-family: var(--sans);
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}

.btn-primary {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bg-primary);
  background: var(--gold);
  padding: 16px 40px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(80, 111, 255, 0.25);
}

.btn-secondary {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid var(--text-tertiary);
  transition: all 0.3s;
}

.btn-secondary:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}

.hero-scroll span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.hero-scroll .line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* ═══ TRUST BAR ═══ */
.trust-bar {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(40px, 6vw, 80px);
  flex-wrap: wrap;
}

.trust-item {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-tertiary);
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.3s;
}

.trust-item:hover {
  color: var(--text-secondary);
}

.trust-separator {
  width: 4px;
  height: 4px;
  background: var(--gold-dim);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ═══ ABOUT ═══ */
.about {
  padding: clamp(80px, 12vw, 160px) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 22%;
  filter: none;
}
.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 55%, rgba(10,10,14,.42) 100%);
}

.about-image::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 1px solid var(--brand-pure);
  opacity: 0.45;
  z-index: -1;
}

.about-text p {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-top: 24px;
}

.about-text p + p {
  margin-top: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.stat-number {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-top: 8px;
}

/* ═══ SERVICES ═══ */
.services {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--bg-elevated);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
}

.services-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.services-header p {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  color: var(--text-secondary);
  margin-top: 20px;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 2px;
}

.service-card {
  background: var(--bg-card);
  padding: 40px;
  position: relative;
  cursor: pointer;
  transition: all 0.4s ease;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.5s ease;
}

.service-card:hover {
  background: var(--bg-card-hover);
}

.service-card:hover::before {
  width: 100%;
}

.service-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-tertiary);
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.service-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-desc {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-price {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 1px;
}

.service-arrow {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s;
}

.service-card:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
}

.service-arrow svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

/* ═══ FEATURED SERVICE (Turnkey) ═══ */
.featured-service {
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
}

.featured-service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
}

.featured-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.featured-header p {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  color: var(--text-secondary);
  margin-top: 20px;
  line-height: 1.7;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-card);
  padding: 48px 40px;
  text-align: left;
  position: relative;
  transition: all 0.4s;
}

.pricing-card.featured {
  background: var(--bg-card-hover);
  border: 1px solid var(--border-hover);
}

.pricing-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--bg-primary);
  background: var(--halo);
  padding: 6px 20px;
}

.pricing-tier {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.pricing-name {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 4px;
}

.pricing-subtitle {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.pricing-best-for {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 400;
  font-style: italic;
  color: var(--gold-dim);
  margin-bottom: 24px;
}

.pricing-amount {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--gold);
  margin: 0 0 4px;
}

.pricing-amount span {
  font-size: 18px;
  color: var(--text-tertiary);
  font-family: var(--sans);
  font-weight: 300;
}

.pricing-billing {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--text-tertiary);
  margin-bottom: 20px;
}

.pricing-descriptor {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-secondary);
  background: rgba(80, 111, 255, 0.06);
  border: 1px solid var(--border);
  padding: 10px 16px;
  margin-bottom: 28px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 36px;
}

.pricing-features li {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-secondary);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.pricing-features li::before {
  content: '+';
  color: var(--gold);
  font-family: var(--mono);
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-cta {
  display: block;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  padding: 14px 32px;
  text-decoration: none;
  transition: all 0.3s;
}

.pricing-cta.primary {
  background: var(--gold);
  color: var(--bg-primary);
}

.pricing-cta.primary:hover {
  background: var(--gold-bright);
}

.pricing-cta.outline {
  border: 1px solid var(--border-hover);
  color: var(--cream);
}

.pricing-cta.outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ═══ COACHING (for individuals) ═══ */
.coaching {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--bg-elevated);
  position: relative;
}
.coaching::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
}
.coaching-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.coaching-header p {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  color: var(--text-secondary);
  margin-top: 20px;
  line-height: 1.7;
}
.coaching .pricing-grid { max-width: 1100px; margin: 0 auto; }
.coaching .pricing-card.featured::before { content: 'PREMIUM'; }
.coaching .pricing-amount.free {
  color: var(--cream);
}
.coaching .pricing-amount.free span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
}
@media (max-width: 900px) {
  .coaching .pricing-grid { grid-template-columns: 1fr; }
}

/* ═══ PROCESS ═══ */
.process {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--bg-elevated);
  position: relative;
}

.process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
}

.process-header {
  max-width: 560px;
  margin-bottom: 80px;
}

.process-header p {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  color: var(--text-secondary);
  margin-top: 20px;
  line-height: 1.7;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.process-step {
  background: var(--bg-card);
  padding: 48px 36px;
  position: relative;
  transition: all 0.4s;
}

.process-step:hover {
  background: var(--bg-card-hover);
}

.step-num {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 24px;
}

.step-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 12px;
}

.step-desc {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ═══ CREDENTIALS ═══ */
.credentials {
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
}

.credentials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
}

.cred-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  margin-top: 64px;
}

.cred-col h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.cred-list {
  list-style: none;
}

.cred-list li {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--text-secondary);
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cred-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.cred-experience {
  list-style: none;
}

.cred-experience li {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.cred-company {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--cream);
}

.cred-role {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--text-tertiary);
  margin-top: 4px;
}

/* ═══ CONTACT ═══ */
.contact {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--bg-elevated);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  margin-top: 64px;
}

.contact-info p {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.contact-detail-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-tertiary);
  min-width: 80px;
}

.contact-detail a,
.contact-detail span {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-detail a:hover {
  color: var(--gold);
}

.contact-cta-block {
  background: var(--bg-card);
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.contact-cta-block h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 16px;
}

.contact-cta-block p {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 24px;
  margin-top: 32px;
}

.social-links a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--text-tertiary);
  text-decoration: none;
  transition: color 0.3s;
}

.social-links a:hover {
  color: var(--gold);
}

/* ═══ FOOTER ═══ */
footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--text-tertiary);
}

.footer-right {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-tertiary);
}

/* ═══ ANIMATIONS ═══ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.2); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    padding: 40px;
    gap: 24px;
    z-index: 999;
  }

  .nav-links.open .nav-cta {
    display: block;
    text-align: center;
    margin-top: 16px;
  }

  .about-grid { grid-template-columns: 1fr; }
  .about-image { max-width: 320px; margin: 0 auto; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .cred-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .trust-inner { gap: 24px; }
  .trust-separator { display: none; }

  .hero-actions { flex-direction: column; align-items: flex-start; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

@media (max-width: 480px) {
  .about-stats { grid-template-columns: 1fr; }
  .about-image { max-width: 220px; }
}

/* ═══════════════════════════════════════
   MANAGED IT / DFW SMALL BUSINESS
   ═══════════════════════════════════════ */
.managed {
  padding: clamp(90px, 12vw, 160px) 0;
  background: var(--bg-elevated);
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.managed::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .5;
}
.managed-header { text-align: center; max-width: 760px; margin: 0 auto 26px; }
.managed-header p {
  color: var(--text-secondary);
  font-size: clamp(15px, 1.6vw, 17px);
  margin-top: 22px;
  line-height: 1.7;
}
.managed-area {
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 56px;
  line-height: 2;
}

/* entry offer band */
.entry-offer {
  max-width: 940px;
  margin: 0 auto 64px;
  background: linear-gradient(135deg, rgba(80, 111, 255,.10), rgba(80, 111, 255,.02));
  border: 1px solid var(--border-hover);
  border-left: 3px solid var(--gold);
  padding: clamp(28px, 4vw, 44px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
}
.entry-offer h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 3.2vw, 36px);
  color: var(--cream);
  line-height: 1.15;
}
.entry-offer p {
  margin-top: 14px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  max-width: 60ch;
}
.entry-offer p strong { color: var(--gold-bright); font-weight: 400; }
.entry-price { text-align: center; }
.entry-price .amt {
  font-family: var(--serif);
  font-size: clamp(52px, 7vw, 76px);
  font-weight: 300;
  color: var(--gold);
  line-height: .9;
  display: block;
}
.entry-price .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-tertiary);
  display: block;
  margin-top: 14px;
}
.entry-price a {
  display: inline-block;
  margin-top: 22px;
  padding: 14px 28px;
  background: var(--gold);
  color: var(--bg-primary);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  white-space: nowrap;
  transition: background .3s ease;
}
.entry-price a:hover { background: var(--gold-bright); }

/* plan meta line */
.managed-plans-note {
  text-align: center;
  color: var(--text-tertiary);
  font-size: 13.5px;
  margin: 0 auto 34px;
  max-width: 640px;
  line-height: 1.7;
}

/* commitments strip */
.commitments {
  max-width: 1060px;
  margin: 64px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.commitments > div { background: var(--bg-elevated); padding: 28px 24px; }
.commitments h4 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 12px;
}
.commitments p { font-size: 13.5px; color: var(--text-secondary); line-height: 1.6; }
.commitments p b { color: var(--text-primary); font-weight: 400; }

/* hourly line */
.hourly-line {
  max-width: 1060px;
  margin: 34px auto 0;
  text-align: center;
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.8;
}
.hourly-line b { color: var(--gold); font-weight: 400; }

/* ═══ LEAD FORM ═══ */
.lead-form { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.lead-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lead-form label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--text-tertiary);
  display: block;
  margin-bottom: 7px;
}
.lead-form input, .lead-form textarea, .lead-form select {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-family: var(--sans);
  font-size: 14.5px;
  padding: 13px 15px;
  border-radius: 0;
  transition: border-color .25s ease;
}
.lead-form select { appearance: none; cursor: pointer; }
.lead-form option { background: var(--bg-card); color: var(--text-primary); }
.lead-form input:focus, .lead-form textarea:focus, .lead-form select:focus {
  outline: none;
  border-color: var(--gold);
}
.lead-form textarea { min-height: 110px; resize: vertical; }
.lead-form button {
  background: var(--gold);
  color: var(--bg-primary);
  border: none;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .04em;
  padding: 16px 24px;
  cursor: pointer;
  transition: background .3s ease;
}
.lead-form button:hover { background: var(--gold-bright); }
.lead-form .hint { font-size: 12px; color: var(--text-tertiary); line-height: 1.6; }

@media (max-width: 900px) {
  .commitments { grid-template-columns: repeat(2, 1fr); }
  .entry-offer { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .commitments { grid-template-columns: 1fr; }
  .lead-row { grid-template-columns: 1fr; }
}

/* honor reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* visible keyboard focus */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ═══ MASCOT HERO ═══ */
.hero.hero-branded { align-items: center; }
.hero-bg.hero-brand {
  background:
    radial-gradient(1000px 680px at 74% 48%, rgba(80,111,255,.12), transparent 66%),
    radial-gradient(760px 520px at 8% 88%, rgba(80,111,255,.05), transparent 72%),
    var(--bg-primary);
}
.hero-bg.hero-brand::after {
  background: linear-gradient(to bottom, transparent 0%, transparent 62%, rgba(10,10,14,.5) 84%, var(--bg-primary) 100%);
}

/* two real columns on the site's 1280px grid */
.hero.hero-branded .hero-content {
  max-width: 1280px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  width: 100%;
  padding-bottom: 0;
}
.hero-copy { max-width: 620px; }

.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-art::before {
  content: '';
  position: absolute;
  width: 108%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(80,111,255,.20) 0%, transparent 62%);
  filter: blur(28px);
  z-index: 0;
}
img.hero-mark {
  position: relative;
  z-index: 1;
  width: 100% !important;
  max-width: 520px;
  height: auto !important;
  object-fit: contain !important;
  animation: markIn 1.1s cubic-bezier(.2,.7,.3,1) .25s both;
}
@keyframes markIn {
  from { opacity: 0; transform: translateY(14px) scale(.95); }
  to   { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .hero.hero-branded .hero-content { grid-template-columns: 1fr; }
  .hero-copy { max-width: 100%; position: relative; z-index: 2; }
  .hero-art {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
  }
  .hero-art::before { display: none; }
  img.hero-mark { max-width: 74vw; opacity: .14; }
  @keyframes markIn { from { opacity: 0 } to { opacity: .14 } }
}

/* ═══ COACHING ILLUSTRATION ═══ */
.coaching-illus {
  width: clamp(148px, 16vw, 196px);
  margin: 0 auto 38px;
  position: relative;
}
.coaching-illus img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(.55) contrast(1.05) brightness(.86);
}
.coaching-illus::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(80,111,255,.34);
  mix-blend-mode: color;
  pointer-events: none;
}
.coaching-illus::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px; right: 12px; bottom: 12px;
  border: 1px solid var(--brand-pure);
  opacity: .45;
  z-index: -1;
}
@media (max-width: 620px) { .coaching-illus { width: 132px; margin-bottom: 28px; } }

/* ═══ RATE CARD DOWNLOAD ═══ */
.ratecard-cta {
  max-width: 1060px;
  margin: 34px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 22px;
  text-align: center;
}
.ratecard-cta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border: 1px solid var(--border-hover);
  color: var(--gold);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 400;
  letter-spacing: .02em;
  transition: border-color .3s ease, color .3s ease, background .3s ease;
}
.ratecard-cta a:hover {
  border-color: var(--brand-pure);
  color: var(--cream);
  background: var(--gold-glow);
}
.ratecard-cta span { font-size: 13.5px; color: var(--text-tertiary); }
@media (max-width: 620px) { .ratecard-cta { flex-direction: column; gap: 12px; } }


/* ═══════════════════════════════════════════════════
   MULTI-PAGE ADDITIONS
   ═══════════════════════════════════════════════════ */

/* nav active state */
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }

/* page header, used on interior pages in place of the hero */
.page-head {
  padding: clamp(150px, 17vw, 220px) 0 clamp(60px, 7vw, 90px);
  background:
    radial-gradient(900px 560px at 78% 30%, rgba(80,111,255,.11), transparent 66%),
    var(--bg-primary);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.page-head .container { position: relative; z-index: 1; }
.page-head h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1.04;
  color: var(--cream);
  letter-spacing: -.01em;
  margin-top: 20px;
  max-width: 17ch;
}
.page-head h1 em { font-style: italic; color: var(--brand-pure); }
.page-head .lede {
  margin-top: 26px;
  font-size: clamp(16px, 1.7vw, 19px);
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 62ch;
}

/* ═══ EXPERIENCE LOGO WALL ═══ */
.experience { padding: clamp(70px, 9vw, 110px) 0; background: var(--bg-elevated); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.experience-label {
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 8px;
}
.experience-sub {
  text-align: center;
  font-size: 13.5px;
  color: var(--text-tertiary);
  margin-bottom: 44px;
}
.logo-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  max-width: 1100px;
  margin: 0 auto;
}
.logo-wall .cell {
  background: var(--bg-elevated);
  min-height: 128px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 22px 16px;
  transition: background .3s ease;
}
.logo-wall .cell:hover { background: var(--bg-card); }
.logo-wall img {
  max-width: 118px;
  max-height: 34px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(2.2) opacity(.62);
  transition: filter .3s ease;
}
.logo-wall .cell:hover img { filter: grayscale(0) brightness(1) opacity(1); }
/* fallback wordmark shown until a real logo file is dropped in */
.logo-wall .wordmark {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
  color: var(--cream-dim);
  line-height: 1.1;
  text-align: center;
  transition: color .3s ease;
}
.logo-wall .cell:hover .wordmark { color: var(--gold); }
.logo-wall .role {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--text-tertiary);
  text-align: center;
  line-height: 1.5;
}
@media (max-width: 900px) { .logo-wall { grid-template-columns: repeat(3, 1fr); } .logo-wall .cell:nth-child(n+7) { display: none; } }
@media (max-width: 620px) { .logo-wall { grid-template-columns: repeat(2, 1fr); } .logo-wall .cell:nth-child(n+7) { display: flex; } .logo-wall .cell { min-height: 108px; padding: 18px 12px; } .logo-wall .wordmark { font-size: 20px; } }

.experience-note {
  text-align: center;
  margin-top: 30px;
  font-size: 12.5px;
  color: var(--text-tertiary);
  max-width: 74ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ═══ CASE STUDIES ═══ */
.case-list { display: flex; flex-direction: column; gap: 26px; }
.case {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--brand-pure);
  padding: clamp(30px, 4vw, 46px);
}
.case-top { display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px 18px; margin-bottom: 8px; }
.case-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(255,202,40,.28);
  padding: 5px 11px;
}
.case-meta { font-family: var(--mono); font-size: 11px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--text-tertiary); }
.case h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(27px, 3.2vw, 37px); color: var(--cream); line-height: 1.15; margin-bottom: 26px; }
.case-body { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.case-body h4 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 11px;
}
.case-body p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }
.case-results { margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--border); display: flex; flex-wrap: wrap; gap: 26px 52px; }
.case-results .r .n { font-family: var(--serif); font-size: clamp(34px, 4vw, 46px); font-weight: 300; color: var(--brand-pure); line-height: 1; }
.case-results .r .l { font-family: var(--mono); font-size: 10px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--text-tertiary); margin-top: 9px; }
@media (max-width: 820px) { .case-body { grid-template-columns: 1fr; gap: 22px; } }

/* ═══ FAQ ═══ */
.faq-list { max-width: 900px; margin: 0 auto; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  padding: 28px 46px 28px 0;
  position: relative;
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 25px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.35;
  transition: color .25s ease;
}
.faq-q:hover { color: var(--gold); }
.faq-q::after {
  content: '+';
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--sans);
  font-size: 26px;
  font-weight: 200;
  color: var(--gold);
  transition: transform .3s ease;
}
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.4,0,.2,1); }
.faq-item.open .faq-a { max-height: 640px; }
.faq-a p { font-size: 16px; color: var(--text-secondary); line-height: 1.8; padding: 0 46px 30px 0; }
.faq-a p + p { padding-top: 14px; }

/* ═══ CROSS-PAGE CTA BAND ═══ */
.cta-band { padding: clamp(70px, 9vw, 110px) 0; text-align: center; background: var(--bg-elevated); border-top: 1px solid var(--border); }
.cta-band h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(30px, 4vw, 46px); color: var(--cream); line-height: 1.15; }
.cta-band h2 em { font-style: italic; color: var(--brand-pure); }
.cta-band p { margin: 20px auto 34px; max-width: 58ch; color: var(--text-secondary); font-size: 16px; line-height: 1.75; }
.cta-band .row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
