/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background-color: #07070a;
  color: #f8f8f5;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* === VARIABLES === */
:root {
  --black:   #07070a;
  --black-2: #0e0e12;
  --black-3: #161619;
  --black-4: #1e1e22;
  --gold:       #c9a96e;
  --gold-light: #e4c98e;
  --white:   #f8f8f5;
  --white-2: #d0d0cc;
  --gray:    #7a7a76;
  --border:      rgba(255,255,255,0.065);
  --border-gold: rgba(201,169,110,0.25);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', -apple-system, sans-serif;
  --max-width: 1200px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* === BASE === */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* === LAYOUT === */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  position: relative;
}
.btn--gold { background: var(--gold); color: var(--black); box-shadow: 0 4px 24px rgba(201,169,110,0.2); }
.btn--gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 44px rgba(201,169,110,0.38); }
.btn--ghost { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.2); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); box-shadow: 0 0 0 1px rgba(201,169,110,0.2); }
.btn--outline-gold { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
.btn--outline-gold:hover { background: var(--gold); color: var(--black); }

/* === NAV === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 28px 0;
  transition: padding 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 18px 0;
  background: rgba(7,7,10,0.96);
  backdrop-filter: blur(24px);
  border-bottom-color: var(--border);
}
.nav__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.3s var(--ease);
}
.nav__logo:hover { color: var(--gold); }
.nav__logo-mark {
  width: 30px;
  height: 30px;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav__logo-mark svg { width: 14px; height: 14px; color: var(--gold); }
.nav__logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: invert(1);
  mix-blend-mode: screen;
  flex-shrink: 0;
  transition: opacity 0.3s var(--ease);
}
.nav__logo:hover .nav__logo-img { opacity: 0.75; }
.footer__logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: invert(1);
  mix-blend-mode: screen;
  opacity: 0.85;
  display: block;
  margin-bottom: 12px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 44px;
}
.nav__link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-2);
  transition: color 0.3s var(--ease);
  position: relative;
  padding-bottom: 4px;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav__link:hover::after,
.nav__link.active::after { width: 100%; }
.nav__link:hover,
.nav__link.active { color: var(--white); }
.nav__cta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 11px 28px;
  transition: all 0.3s var(--ease);
}
.nav__cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s var(--ease);
  transform-origin: center;
}
.nav__hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* === MOBILE NAV === */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99;
  padding: 110px 48px 48px;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border-gold);
}
.nav__mobile.open { display: flex; }
.nav__mobile-link {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 400;
  color: var(--white-2);
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.3s var(--ease), padding-left 0.3s var(--ease);
}
.nav__mobile-link:hover { color: var(--gold); padding-left: 8px; }
.nav__mobile-cta { margin-top: 40px; align-self: flex-start; }

/* === HERO === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #07070a 0%, #0c0c18 55%, #07070a 100%);
}
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,169,110,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,0.035) 1px, transparent 1px);
  background-size: 88px 88px;
}
.hero__glow {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(201,169,110,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 80px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 7.5vw, 112px);
  font-weight: 400;
  line-height: 0.97;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 32px;
  max-width: 620px;
}
.hero__headline em {
  font-style: italic;
  color: var(--gold);
  text-shadow: 0 0 80px rgba(201,169,110,0.35);
}
.hero__sub {
  font-size: 16px;
  color: var(--white-2);
  max-width: 440px;
  margin-bottom: 44px;
  line-height: 1.75;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.hero__scroll-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
}
.hero__scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDown 2.2s ease-in-out infinite;
}
@keyframes scrollDown {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* === MARQUEE === */
.marquee {
  background: var(--gold);
  padding: 15px 0;
  overflow: hidden;
}
.marquee__track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
  width: fit-content;
}
.marquee__track span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  flex-shrink: 0;
}
.marquee__sep { opacity: 0.35; }
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === SECTION SHARED === */
.section { padding: 128px 0; }
.section--alt { background: var(--black-2); }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 20px;
}
.section-sub {
  font-size: 16px;
  color: var(--gray);
  max-width: 540px;
  line-height: 1.75;
}

/* === PROBLEM SECTION === */
.problem__header { margin-bottom: 80px; }
.problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}
.problem__item {
  padding: 52px;
  border-right: 1px solid var(--border);
  border-bottom: none;
  position: relative;
  overflow: hidden;
  transition: background 0.35s var(--ease);
}
.problem__item:last-child { border-right: none; }
.problem__item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}
.problem__item:hover::after { width: 100%; }
.problem__item:hover { background: var(--black-3); }
.problem__stat {
  font-family: var(--font-display);
  font-size: 88px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  text-shadow: 0 0 56px rgba(201,169,110,0.25);
}
.problem__label {
  font-size: 15px;
  color: var(--white-2);
  line-height: 1.65;
  max-width: 320px;
}
.problem__label strong { color: var(--white); display: block; margin-bottom: 6px; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.problem__insight {
  margin-top: 52px;
  font-size: 16px;
  color: var(--white-2);
  line-height: 1.85;
  max-width: 860px;
  border-left: 2px solid var(--gold);
  padding-left: 28px;
}
.problem__sources {
  margin-top: 16px;
  font-size: 12px;
  color: var(--gray);
  padding-left: 30px;
  letter-spacing: 0.03em;
}

/* === WHO WE SERVE === */
.serve__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  margin-top: 72px;
}
.serve__card {
  background: var(--black);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.35s var(--ease);
}
.serve__card:hover { background: var(--black-3); }
.serve__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.serve__card:hover::before { transform: scaleX(1); }
.serve__card__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.serve__card__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}
.serve__card__text {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.75;
}

/* === LINKEDIN STATS === */
.linkedin-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  margin-top: 80px;
}
.linkedin-stat {
  background: var(--black-3);
  padding: 56px 44px;
  text-align: center;
  transition: background 0.35s var(--ease);
}
.linkedin-stat:hover { background: var(--black-4); }
.linkedin-stat__number {
  font-family: var(--font-display);
  font-size: 68px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  text-shadow: 0 0 48px rgba(201,169,110,0.22);
}
.linkedin-stat__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}
.linkedin-stat__desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.65;
  max-width: 240px;
  margin: 0 auto;
}

/* === CTA AUDIENCE CARDS === */
.cta-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
  text-align: left;
}
.cta-audience-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  padding: 36px;
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease);
}
.cta-audience-card:hover {
  border-color: var(--border-gold);
  background: rgba(201,169,110,0.04);
}
.cta-audience-card__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.cta-audience-card__text {
  font-size: 14px;
  color: var(--white-2);
  line-height: 1.75;
  margin-bottom: 28px;
}

/* === PLATFORM COMPARISON (about.html) === */
.platform-compare {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  margin-top: 0;
}
.platform-card {
  background: var(--black-3);
  padding: 44px 36px;
  position: relative;
  transition: background 0.35s var(--ease);
}
.platform-card--featured {
  background: var(--black-4);
  border-top: 2px solid var(--gold);
}
.platform-card:not(.platform-card--featured):hover { background: var(--black-4); }
.platform-card__badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 4px 12px;
  margin-bottom: 24px;
}
.platform-card__name {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}
.platform-card--featured .platform-card__name { color: var(--gold); }
.platform-card__audience {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 16px;
}
.platform-card__intent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gray);
  margin-bottom: 24px;
}
.platform-card__intent::before {
  content: '';
  display: block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gray);
  flex-shrink: 0;
}
.platform-card--featured .platform-card__intent { color: var(--gold); }
.platform-card--featured .platform-card__intent::before { background: var(--gold); }
.platform-card__desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.75;
}

/* === SERVICES OVERVIEW === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  margin-top: 80px;
}
.service-card {
  background: var(--black);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  transition: background 0.35s var(--ease);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--black-3); }
.service-card__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 28px;
}
.service-card__icon {
  margin-bottom: 28px;
  color: var(--gold);
}
.service-card__icon svg { width: 40px; height: 40px; }
.service-card__title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 16px;
}
.service-card__text {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 36px;
}
.service-card__link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s var(--ease);
}
.service-card:hover .service-card__link { gap: 14px; }

/* === PROCESS === */
.process__header { margin-bottom: 88px; }
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process__connector {
  position: absolute;
  top: 30px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 1px;
  background: var(--border-gold);
}
.process__step {
  text-align: center;
  padding: 0 28px;
  position: relative;
}
.process__num {
  width: 60px;
  height: 60px;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold);
  margin: 0 auto 28px;
  background: var(--black-2);
  position: relative;
  z-index: 1;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.process__step:hover .process__num {
  background: var(--black-3);
  border-color: var(--gold);
}
.process__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
}
.process__text {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

/* === TESTIMONIALS === */
.testimonials__header { margin-bottom: 80px; }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--black-3);
  border: 1px solid var(--border);
  padding: 44px;
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.testimonial-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-6px);
}
.testimonial-card__quote {
  font-size: 40px;
  color: var(--gold);
  font-family: Georgia, serif;
  line-height: 0.8;
  margin-bottom: 20px;
  opacity: 0.7;
}
.testimonial-card__text {
  font-size: 15px;
  color: var(--white-2);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 32px;
}
.testimonial-card__anon {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card__anon::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--border-gold);
  flex-shrink: 0;
}
.testimonial-card__role {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gray);
  text-transform: uppercase;
  font-style: italic;
}
.testimonial-card__result {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* === CTA BAND === */
.cta-band {
  padding: 110px 0;
  background: var(--black-2);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(ellipse, rgba(201,169,110,0.055) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band__label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.cta-band__label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
}
.cta-band__sub {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 44px;
}
.cta-band__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* === FOOTER === */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 72px 0 40px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 56px;
}
.footer__brand-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.footer__brand-domain {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.footer__tagline {
  font-size: 14px;
  color: var(--gray);
  max-width: 260px;
  line-height: 1.7;
}
.footer__col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer__links a {
  font-size: 14px;
  color: var(--gray);
  transition: color 0.3s var(--ease);
}
.footer__links a:hover { color: var(--white); }
.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--gray);
}

/* === PAGE HERO === */
.page-hero {
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-gold);
}
.page-hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at right center, rgba(201,169,110,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.page-hero__eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--gold);
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(52px, 6.5vw, 88px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--white);
  max-width: 720px;
  margin-bottom: 28px;
}
.page-hero__sub {
  font-size: 16px;
  color: var(--gray);
  max-width: 520px;
  line-height: 1.75;
}

/* === PRICING === */
.pricing__header { margin-bottom: 80px; }
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}
.pricing-card {
  background: var(--black);
  padding: 52px 44px;
  transition: background 0.35s var(--ease);
  position: relative;
}
.pricing-card:hover { background: var(--black-3); }
.pricing-card--featured {
  background: var(--black-3);
  border-top: 2px solid var(--gold);
}
.pricing-card--featured:hover { background: var(--black-4); }
.pricing-card__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 5px 14px;
  margin-bottom: 36px;
}
.pricing-card__name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 20px;
}
.pricing-card__price {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.pricing-card__price sup {
  font-size: 24px;
  vertical-align: super;
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: 0;
}
.pricing-card__period {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 36px;
}
.pricing-card__divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 36px;
}
.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 44px;
}
.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--white-2);
  line-height: 1.5;
}
.pricing-card__check {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-card__check svg { width: 15px; height: 15px; }

/* === SERVICES DETAIL === */
.service-detail {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 100px;
  align-items: start;
}
.service-detail__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.service-detail__title {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.service-detail__number {
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 400;
  color: var(--border);
  line-height: 1;
  margin-top: 12px;
  letter-spacing: -0.03em;
}
.service-detail__text {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 36px;
}
.service-detail__items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service-detail__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  color: var(--white-2);
}
.service-detail__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 6px;
}

/* === ABOUT STORY === */
.about-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-story__img-wrap {
  position: relative;
  padding-bottom: 120px;
}
.about-story__img-wrap .about-img--main {
  width: 100%;
  height: auto;
  display: block;
}
.about-story__img-wrap .about-img--accent {
  position: absolute;
  bottom: 0;
  right: -20px;
  width: 54%;
  height: auto;
  display: block;
  border: 4px solid var(--black);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.about-story__label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.about-story__label::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--gold);
}
.about-story__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.12;
}
.about-story__text {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 20px;
}

/* === VALUES === */
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  margin-top: 72px;
}
.value-item {
  padding: 52px 44px;
  border-right: 1px solid var(--border);
  transition: background 0.35s var(--ease);
}
.value-item:last-child { border-right: none; }
.value-item:hover { background: var(--black-3); }
.value-item__icon {
  color: var(--gold);
  margin-bottom: 28px;
}
.value-item__icon svg { width: 36px; height: 36px; }
.value-item__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 14px;
}
.value-item__text {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.75;
}

/* === CONTACT === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: start;
}
.contact-info {
  padding-top: 8px;
}
.contact-info__block {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.contact-info__block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.contact-info__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.contact-info__value {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--white);
  line-height: 1.3;
}
.contact-info__value a:hover { color: var(--gold); }
.contact-form {
  background: var(--black-3);
  border: 1px solid var(--border);
  padding: 52px;
}
.contact-form__title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}
.contact-form__sub {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 36px;
}
.form-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--black-4);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s var(--ease);
  border-radius: 0;
  -webkit-appearance: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--black-4); }
.form-success {
  display: none;
  padding: 20px;
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-size: 14px;
  margin-top: 20px;
  text-align: center;
}

/* === CALENDLY === */
.calendly-section {
  padding: 100px 0;
  background: var(--black-2);
  border-top: 1px solid var(--border);
}
.calendly-section__header { margin-bottom: 60px; }
.calendly-widget-wrap {
  border: 1px solid var(--border);
  overflow: hidden;
  min-height: 650px;
  background: var(--black-3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.calendly-placeholder {
  text-align: center;
  padding: 80px 40px;
}
.calendly-placeholder p {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 8px;
}
.calendly-placeholder a {
  color: var(--gold);
  font-size: 15px;
}
.calendly-inline-widget {
  width: 100%;
  min-height: 650px;
}

/* === ANIMATE ON SCROLL === */
.anim {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.anim.visible {
  opacity: 1;
  transform: translateY(0);
}
.anim--d1 { transition-delay: 0.1s; }
.anim--d2 { transition-delay: 0.2s; }
.anim--d3 { transition-delay: 0.3s; }
.anim--d4 { transition-delay: 0.4s; }

/* === SECTION TITLE EM === */
.section-title em { font-style: italic; color: var(--gold); }

/* === HERO VISUAL === */
.hero__visual {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 44%;
  pointer-events: none;
  z-index: 1;
}
.hero__visual::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 70%;
  background: linear-gradient(to right, #07070a 40%, rgba(7,7,10,0.6) 70%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}
.hero__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(7,7,10,0.72) 0%, transparent 22%),
    linear-gradient(to top,    rgba(7,7,10,0.72) 0%, transparent 22%);
  z-index: 3;
  pointer-events: none;
}
.hero__photo {
  position: absolute;
  overflow: hidden;
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(18%) brightness(0.72);
}
.hero__photo--1 {
  top: 8%;
  right: 10%;
  width: 52%;
  height: 60%;
  border: 1px solid rgba(201,169,110,0.18);
}
.hero__photo--2 {
  top: 40%;
  right: 1%;
  width: 37%;
  height: 48%;
  border: 1px solid rgba(201,169,110,0.24);
}
.hero__photo--3 {
  bottom: 12%;
  right: 46%;
  width: 26%;
  height: 32%;
  border: 1px solid rgba(201,169,110,0.1);
}

/* === ATHLETES WALL === */
.athletes {
  padding: 128px 0;
  background: var(--black);
  overflow: hidden;
}
.athletes__header { margin-bottom: 72px; }
.athletes__wall {
  display: flex;
  gap: 5px;
  align-items: flex-start;
}
.athletes__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}
.athletes__col:nth-child(even) { padding-top: 56px; }
.athlete-photo {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  cursor: default;
  aspect-ratio: 3 / 4;
}
.athlete-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: grayscale(22%) brightness(0.78);
  transition: filter 0.55s var(--ease), transform 0.65s var(--ease);
}
.athlete-photo:hover img {
  filter: grayscale(0%) brightness(0.95);
  transform: scale(1.04);
}
.athlete-photo__info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 16px 16px;
  background: linear-gradient(transparent, rgba(7,7,10,0.9));
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.athlete-photo:hover .athlete-photo__info {
  opacity: 1;
  transform: translateY(0);
}
.athlete-photo__name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  display: block;
  letter-spacing: -0.01em;
}
.athlete-photo__tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-top: 5px;
}

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 48px; }
  .service-detail__grid { grid-template-columns: 1fr; gap: 40px; }
  .service-detail__number { display: none; }
  .hero__visual { display: none; }
  .serve__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 800px) {
  .platform-compare { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .container { padding: 0 28px; }
  .nav__container { padding: 0 28px; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .process__steps { grid-template-columns: repeat(2, 1fr); gap: 48px; }
  .process__connector { display: none; }
  .about-story__grid { grid-template-columns: 1fr; gap: 60px; }
  .about-story__img-wrap { padding-bottom: 100px; }
  .about-story__img-wrap .about-img--main { height: 420px; }
  .about-story__img-wrap .about-img--accent { right: 0; width: 50%; height: 180px; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .athletes__col { flex: 1; }
  .athletes__col:nth-child(even) { padding-top: 36px; }
  /* Hero text unconstrained when images are hidden */
  .hero__headline { max-width: 680px; }
  .linkedin-stats__grid { grid-template-columns: 1fr; }
  .cta-audience-grid { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 700px) {
  .nav__mobile { padding: 100px 28px 40px; }
  .nav__mobile-link { font-size: 40px; }

  /* Hero mobile: centered, properly sized */
  .hero__content { text-align: center; }
  .hero__eyebrow { justify-content: center; }
  .hero__headline {
    font-size: clamp(44px, 11vw, 56px);
    max-width: 100%;
  }
  .hero__sub { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__actions .btn { flex: 1 1 auto; justify-content: center; min-width: 0; }

  .section { padding: 88px 0; }
  .problem__grid { grid-template-columns: 1fr; }
  .problem__grid { grid-template-columns: 1fr; }
  .problem__stat { font-size: 72px; }
  .problem__item { border-right: none; border-bottom: 1px solid var(--border); }
  .problem__item:last-child { border-bottom: none; }
  .serve__grid { grid-template-columns: 1fr; }
  .linkedin-stats__grid { grid-template-columns: 1fr; }
  .cta-audience-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: 1fr; }
  .value-item { border-right: none; border-bottom: 1px solid var(--border); }
  .value-item:last-child { border-bottom: none; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }

  /* Athletes wall mobile: 2-col static grid */
  .athletes { padding: 72px 0; }
  .athletes__wall {
    flex-wrap: wrap;
    gap: 6px;
    padding: 0 16px;
  }
  .athletes__col {
    flex: 0 0 calc(50% - 3px);
    padding-top: 0 !important;
  }
  .athletes__col:nth-child(2) { padding-top: 40px !important; }
  .athletes__col:nth-child(3) { display: none; }
  .athlete-photo { height: auto !important; aspect-ratio: 3/4; }

  /* Service detail mobile padding */
  .service-card { padding: 36px 28px; }
  .problem__item { padding: 36px 28px; }
  .testimonial-card { padding: 32px 28px; }
}
