/* ============================================
   BLACK HAUS CAPITAL — Website Styles
   PURE MONOCHROME — No accent color
   Black. White. Stone. Fortress. Absolute.
   ============================================ */

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

:root {
  /* PURE MONOCHROME PALETTE */
  --bg-primary: #000000;
  --bg-secondary: #0D0D0D;
  --bg-card: #1A1A1A;
  --bg-card-hover: #222222;
  --border-subtle: #2A2A2A;
  --border-hover: #FFFFFF;
  --accent: #FFFFFF;
  --accent-muted: #CCCCCC;
  --text-primary: #FFFFFF;
  --text-secondary: #CCCCCC;
  --text-body: #AAAAAA;
  --text-muted: #808080;
  --text-subtle: #555555;
  --white: #FFFFFF;
  --black: #000000;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-width: 1200px;
  --section-padding: 120px 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--white);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--text-secondary);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
}

p {
  color: var(--text-body);
  font-size: 1.05rem;
}

.accent-text {
  color: var(--white);
  font-weight: 700;
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 40px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 1px;
  background: var(--text-muted);
}

.section-title {
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-body);
  max-width: 600px;
  line-height: 1.8;
}

/* ---------- DIVIDER ---------- */
.divider {
  width: 60px;
  height: 2px;
  background: var(--white);
  margin: 2rem 0;
}

.divider--center {
  margin: 2rem auto;
}

/* ---------- NAVIGATION ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--transition-smooth);
  background: transparent;
}

.nav.scrolled {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  width: 90%;
  margin: 0 auto;
}

.nav__logo img {
  height: 44px;
  width: auto;
  transition: height var(--transition-smooth);
}

.nav.scrolled .nav__logo img {
  height: 36px;
}

.nav__links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.75rem;
}

.nav__links a {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition-fast);
  position: relative;
  white-space: nowrap;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--white);
  transition: width var(--transition-smooth);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--white);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

/* Nav CTA — white outlined, inverts on hover */
.nav__cta {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white) !important;
  background: transparent;
  border: 2px solid var(--white);
  padding: 0.6rem 1.75rem;
  border-radius: 0;
  transition: all var(--transition-fast);
}

.nav__cta::after {
  display: none !important;
}

.nav__cta:hover {
  background: var(--white) !important;
  color: var(--black) !important;
  transform: translateY(-1px);
}

/* Mobile menu toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition-fast);
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--black);
  z-index: 0;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.02) 0%,
    transparent 70%
  );
}

/* Hero background image */
.hero__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  z-index: 1;
  filter: grayscale(100%);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.7) 50%,
    rgba(0, 0, 0, 0.5) 100%
  );
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: var(--max-width);
  width: 90%;
  margin: 0 auto;
  padding: 8rem 0;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.3s;
}

.hero__label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--text-muted);
}

.hero h1 {
  max-width: 700px;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.5s;
}

.hero__desc {
  font-size: 1.2rem;
  color: var(--text-body);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.7s;
}

.hero__actions {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.9s;
}

/* BUTTONS — Pure monochrome, outlined, invert on hover */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  padding: 1rem 2.25rem;
  border: 2px solid var(--white);
  border-radius: 0;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-primary:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px) scale(1.02);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: transparent;
  padding: 1rem 2.25rem;
  border: 1px solid var(--text-muted);
  border-radius: 0;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-secondary:hover {
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 1.5s;
}

.hero__scroll span {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

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

/* ---------- ABOUT ---------- */
.about {
  padding: var(--section-padding);
  background: var(--bg-card);
  position: relative;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about__image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 0;
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter var(--transition-smooth);
}

.about__image:hover img {
  filter: grayscale(80%);
}

.about__image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-card) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 1px solid var(--border-subtle);
}

.about__image-placeholder svg {
  width: 48px;
  height: 48px;
  stroke: var(--text-subtle);
}

.about__image-placeholder span {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

.about__image::after {
  content: '';
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 100px;
  height: 100px;
  border: 1px solid var(--border-subtle);
  opacity: 0.4;
  z-index: -1;
}

.about__content {
  max-width: 520px;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-subtle);
}

.about__stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}

.about__stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

/* ---------- WHAT WE DO (3 PILLARS) ---------- */
.services {
  padding: var(--section-padding);
  background: var(--bg-card);
  position: relative;
}

.services__header {
  text-align: center;
  margin-bottom: 5rem;
}

.services__header .section-subtitle {
  margin: 0 auto;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  position: relative;
  padding: 3rem 2.5rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 0;
  transition: all var(--transition-smooth);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-smooth);
}

.service-card:hover {
  border-color: var(--white);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 0;
  margin-bottom: 1.75rem;
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--white);
}

.service-card h3 {
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-body);
}

.service-card__list {
  list-style: none;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.service-card__list li {
  font-size: 0.9rem;
  color: var(--text-body);
  padding: 0.4rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.service-card__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--text-muted);
  font-weight: 700;
}

/* ---------- EDGE / DIFFERENTIATION ---------- */
.edge {
  padding: var(--section-padding);
  background: var(--bg-primary);
  position: relative;
}

.edge__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.edge__content {
  max-width: 520px;
}

.edge__list {
  list-style: none;
  margin-top: 2.5rem;
}

.edge__list li {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.edge__list li:last-child {
  border-bottom: none;
}

.edge__list-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  margin-top: 2px;
}

.edge__list-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--white);
}

.edge__list h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.edge__list p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-body);
}

.edge__visual {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.edge__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.edge__visual-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-card) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 1px solid var(--border-subtle);
}

.edge__visual-placeholder svg {
  width: 48px;
  height: 48px;
  stroke: var(--text-subtle);
}

.edge__visual-placeholder span {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

/* ---------- THE BLACK HAUS PROCESS ---------- */
.process {
  padding: var(--section-padding);
  position: relative;
}

.process__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.process__step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.process__step:first-child {
  border-top: 1px solid var(--border-subtle);
}

.process__step-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-subtle);
  line-height: 1;
  min-width: 80px;
  transition: color var(--transition-smooth);
}

.process__step:hover .process__step-number {
  color: var(--white);
}

.process__step-content h3 {
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.process__step-content p {
  color: var(--text-body);
  line-height: 1.8;
}


/* ---------- SCARCITY / LIMITED PARTNERSHIPS ---------- */
.scarcity {
  padding: var(--section-padding);
  position: relative;
}

.scarcity__inner {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.scarcity__content {
  margin-top: 2.5rem;
}

.scarcity__content p {
  font-size: 1.1rem;
  line-height: 1.8;
}


/* ---------- HAUS MONEY STRATEGY ---------- */
.hausmoney {
  padding: var(--section-padding);
  position: relative;
}

.hausmoney__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hausmoney__steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.hausmoney__step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.hausmoney__step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  border: 1px solid var(--text-subtle);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
}

.hausmoney__step h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.hausmoney__step p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .hausmoney__inner {
    grid-template-columns: 1fr;
  }
}


/* ---------- BOARD OF ADVISORS ---------- */
.advisors {
  padding: var(--section-padding);
  position: relative;
}

.advisors__grid {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
}

.advisors__card {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  max-width: 600px;
  padding: 2.5rem;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  transition: border-color var(--transition-smooth);
}

.advisors__card:hover {
  border-color: var(--text-subtle);
}

.advisors__photo {
  width: 140px;
  min-width: 140px;
  overflow: hidden;
}

.advisors__photo img {
  width: 100%;
  height: auto;
  filter: grayscale(100%);
}

.advisors__info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}

.advisors__title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.advisors__info p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.8;
}

.advisors__info p + p {
  margin-top: 1rem;
}

.advisors__credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.advisors__credentials span {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--border-subtle);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.advisors__credentials span:hover {
  border-color: var(--white);
  color: var(--white);
}

@media (max-width: 768px) {
  .advisors__card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .advisors__photo {
    width: 120px;
    min-width: 120px;
  }

  .advisors__credentials {
    justify-content: center;
  }
}


/* ---------- CTA COPY (Apply Section) ---------- */
.contact__cta-copy {
  margin-bottom: 3rem;
  text-align: center;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.contact__cta-copy p {
  font-size: 1.1rem;
  line-height: 1.8;
}


/* ---------- LEADERSHIP ---------- */
/* ---------- FOUNDING PARTNERS ---------- */
.founders {
  padding: var(--section-padding);
  background: var(--bg-primary);
  position: relative;
}

.founders__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 4rem;
}

.founders__card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 2.5rem;
  transition: border-color var(--transition-smooth);
}

.founders__card:hover {
  border-color: var(--text-subtle);
}

.founders__photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 2rem;
}

.founders__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(100%);
}

.founders__initials {
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
}

.founders__initials span {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--text-subtle);
  user-select: none;
}

.founders__name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.founders__title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.founders__subtitle {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 1.5rem;
}

.founders__card .divider {
  margin-bottom: 1.5rem;
}

.founders__card p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 1rem;
}

.founders__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.founders__tags span {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--border-subtle);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.founders__tags span:hover {
  border-color: var(--white);
  color: var(--white);
}

@media (max-width: 768px) {
  .founders__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ---------- CONTACT / CTA ---------- */
.contact {
  padding: var(--section-padding);
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.015) 0%,
    transparent 70%
  );
}

.contact__inner {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact__inner h2 {
  margin-bottom: 1.25rem;
}

.contact__inner .section-subtitle {
  margin: 0 auto 3rem;
}

.contact__form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 3rem;
  margin-top: 2rem;
}

.contact__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  position: relative;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: 0;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-subtle);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23808080' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: var(--bg-primary);
  color: var(--white);
}

.contact__submit {
  grid-column: 1 / -1;
  margin-top: 0.5rem;
}

.contact__submit .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 1.1rem 2rem;
}

/* Application-style contact */
.contact__application {
  margin-top: 3rem;
  text-align: center;
}

.contact__app-details {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2.5rem;
  padding: 2rem;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
}

.contact__app-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact__app-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact__app-value {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.btn-primary--large {
  display: inline-flex;
  padding: 1.25rem 3.5rem;
  font-size: 1rem;
  letter-spacing: 0.12em;
}

.contact__app-note {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

@media (max-width: 600px) {
  .contact__app-details {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

/* ---------- FOOTER ---------- */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-primary);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand img {
  height: 36px;
  width: auto;
  margin-bottom: 1.25rem;
}

.footer__brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 280px;
  line-height: 1.7;
}

.footer__col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-body);
  margin-bottom: 1.25rem;
}

.footer__col ul {
  list-style: none;
}

.footer__col ul li {
  margin-bottom: 0.65rem;
}

.footer__col ul li a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer__col ul li a:hover {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.footer__bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.2s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.3s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.4s; }

/* ---------- KEYFRAMES ---------- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  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: 1; transform: scaleY(1.2); }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px 0;
  }

  .about__grid {
    gap: 3rem;
  }

  .services__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .edge__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .edge__visual {
    order: -1;
    max-height: 400px;
  }

  .leadership__grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .leadership__photo {
    max-width: 380px;
    margin: 0 auto;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 64px 0;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-primary);
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    gap: 1.5rem;
    transition: right var(--transition-smooth);
    border-left: 1px solid var(--border-subtle);
  }

  .nav__links.open {
    right: 0;
  }

  .nav__toggle {
    display: flex;
    z-index: 1001;
  }

  .about__grid {
    grid-template-columns: 1fr;
  }

  .about__image {
    max-height: 350px;
  }

  .about__stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero__content {
    padding: 6rem 0;
  }

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

  .process__step {
    gap: 1.25rem;
    padding: 1.75rem 0;
  }

  .process__step-number {
    font-size: 2rem;
    min-width: 50px;
  }

  .contact__form {
    grid-template-columns: 1fr;
  }

  .leadership__credentials {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .about__stats {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .contact__form-wrapper {
    padding: 1.5rem;
  }
}
