@font-face {
  font-family: 'Beyond Infinity';
  src: url('/hip-team-training/assets/Beyond-Infinity.ttf') format('truetype');
  font-display: swap;
}

:root {
  --primary: #0a0b09;
  --secondary: #f08017;
  --secondary-hover: #c36915;
  --text: #0a0b09;
  --muted: #3f444b;
  --line: #e1e1e1;
  --bg: #ffffff;
  --soft: #f5f5f3;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1140px;
  width: calc(100% - 40px);
  margin: 0 auto;
}

.narrow {
  max-width: 1120px;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
}

.site-header-dark .nav a { color: var(--text); }

.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 148px;
  height: auto;
  display: block;
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
}

.hero-entrepreneur {
  background: linear-gradient(135deg, #fff7ef 0%, #ffffff 58%, #fff1e3 100%);
  color: var(--text);
  padding: 170px 0 110px;
}

.hero-entrepreneur-grid,
.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 480px);
  gap: 72px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--secondary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  font-size: clamp(38px, 4.9vw, 64px);
  font-weight: 700;
  color: var(--text);
  max-width: none;
}

h2 {
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 700;
  max-width: 20ch;
  color: var(--text);
}

h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}

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

.lead-dark {
  color: var(--muted);
  max-width: 600px;
  margin: 26px 0 0;
  font-size: 18px;
  line-height: 1.8;
}

.hero-entrepreneur-media,
.image-block {
  width: 100%;
}

.hero-entrepreneur-media img,
.image-block img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all .3s;
}

.btn-primary {
  background: var(--secondary);
  color: #fff;
}

.btn-primary:hover { background: var(--secondary-hover); }

.btn-secondary {
  border: 1px solid rgba(10,11,9,0.18);
  color: var(--text);
  background: rgba(255,255,255,0.72);
}

.section {
  padding: 118px 0;
}

.white-section { background: #fff; }
.soft-section { background: var(--soft); }
.dark-cta {
  background: var(--primary);
  color: #fff;
}

.text-block p:first-of-type + h2,
.section-head h2 {
  margin-bottom: 24px;
}

.text-block h2,
.section-head h2,
.hero-entrepreneur-copy h1,
.cta h2,
.approach h2,
.intro h2 {
  max-width: none;
}

.stack-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.stack-item {
  background: #fff;
  border: 1px solid rgba(240,128,23,0.18);
  border-top: 4px solid var(--secondary);
  padding: 28px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(10,11,9,0.04);
}

.subline {
  margin: 14px 0 20px;
  color: var(--text);
  font-weight: 700;
}

.stack-item h3 {
  margin-bottom: 10px;
}

.stack-item ul li::marker {
  color: var(--secondary);
}

.stack-item ul {
  margin: 20px 0 0;
  padding-left: 20px;
}

.stack-item li {
  color: var(--muted);
  line-height: 1.7;
}

.check-list {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.check-list div,
.cta-points span {
  border: 1px solid rgba(240,128,23,0.22);
  padding: 16px 20px;
  font-weight: 700;
}

.cta-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 32px;
}

.dark-cta h2,
.dark-cta p,
.dark-cta .eyebrow,
.dark-cta .cta-points span {
  color: #fff;
}

.hero-entrepreneur .eyebrow {
  color: var(--secondary);
}

.dark-cta .cta-points span {
  border-color: rgba(255,255,255,0.18);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }

@media (max-width: 980px) {
  .hero-entrepreneur-grid,
  .split-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .stack-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .reverse-mobile .image-block {
    order: -1;
  }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .container { width: calc(100% - 24px); }
  .header-inner {
    min-height: auto;
    padding: 18px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .nav { flex-wrap: wrap; gap: 14px; }
  .hero-entrepreneur,
  .section { padding: 78px 0; }
  .hero-entrepreneur { padding-top: 130px; }
  .stack-list {
    grid-template-columns: 1fr;
  }
  .stack-item { padding: 28px; }
  h1 { font-size: clamp(38px, 10vw, 52px); }
  h2 {
    max-width: none;
    font-size: clamp(28px, 8vw, 36px);
  }
  .lead-dark { font-size: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
