:root {
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-dark: #0f172a;
  --bg-darker: #020617;
  --text: #0f172a;
  --text-soft: #475569;
  --text-muted: #94a3b8;
  --border: #e2e8f0;
  --red: #dc2626;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  --radius: 28px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
section[id] { scroll-margin-top: 96px; }

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.section-space { padding: 96px 0; }
.light { background: var(--bg-soft); }
.dark {
  background: var(--bg-dark);
  color: #fff;
}
.dark-contact {
  background: var(--bg-darker);
  color: #fff;
}
.max-wide { max-width: 760px; }
.center { text-align: center; margin-inline: auto; }

.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid transparent;
  z-index: 50;
  transition: all .25s ease;
}
.navbar.scrolled {
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  border-color: var(--border);
  backdrop-filter: blur(12px);
}
.nav-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.brand-logo { width: auto; height: 48px; }
.brand-copy {
  padding-left: 16px;
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.brand-copy strong {
  font-size: .95rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.02em;
}
.brand-copy span {
  font-size: .55rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--red);
  font-weight: 800;
}
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-desktop > a:not(.button):not(.linkedin-link) {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: #64748b;
  font-weight: 800;
}
.nav-desktop > a:not(.button):not(.linkedin-link):hover { color: var(--red); }
.linkedin-link {
  display: inline-flex;
  width: 18px;
  height: 18px;
  color: #64748b;
}
.linkedin-link:hover { color: #0077b5; }
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: .2s ease;
}
.mobile-menu {
  position: fixed;
  inset: 82px 0 0 0;
  background: rgba(255,255,255,0.98);
  display: none;
  padding: 20px 16px 32px;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: block; }
.mobile-menu-panel {
  display: grid;
  gap: 14px;
}
.mobile-menu a:not(.button) {
  padding: 14px 2px;
  border-bottom: 1px solid var(--border);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 18px;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 900;
  transition: .25s ease;
  border: 1px solid transparent;
}
.button.full { width: 100%; }
.button-dark {
  background: var(--text);
  color: #fff;
}
.button-dark:hover { background: var(--red); }
.button-light {
  background: #fff;
  color: var(--text);
  border-color: var(--border);
}
.button-light:hover {
  border-color: var(--red);
  color: var(--red);
}
.button-red {
  background: var(--red);
  color: #fff;
}
.button-red:hover { background: #b91c1c; }

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 150px;
  background: #fff;
}
.hero-shape {
  position: absolute;
  top: 0;
  right: -10%;
  width: 45%;
  height: 100%;
  background: var(--bg-soft);
  transform: skewX(-12deg);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}
.eyebrow,
.section-kicker,
.strip-heading {
  display: inline-block;
  text-transform: uppercase;
  font-size: .65rem;
  letter-spacing: .24em;
  font-weight: 900;
  color: var(--red);
}
.eyebrow {
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-soft);
  margin-bottom: 22px;
}
.hero h1,
h2 {
  margin: 0 0 22px;
  line-height: .98;
  letter-spacing: -.04em;
  font-weight: 900;
}
.hero h1 {
  font-size: clamp(2.8rem, 8vw, 4.9rem);
  max-width: 16ch;
}
.hero h1 span,
h2 span { color: var(--red); font-style: italic; }
.lead,
.section-intro p,
.content-card p,
.training-copy p,
.startup-copy p,
.approach p,
.contact-copy p {
  color: var(--text-soft);
  font-size: clamp(1rem, 1.9vw, 1.18rem);
  line-height: 1.75;
  font-weight: 500;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; }
.card-frame {
  border-radius: 40px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  border: 14px solid #fff;
}
.card-frame img,
.training-image img,
.media-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-media { aspect-ratio: 4/5; }

.logo-strip {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.strip-heading-wrap {
  text-align: center;
  margin-bottom: 24px;
}
.strip-heading { color: #cbd5e1; }
.logo-marquee-wrap {
  position: relative;
  overflow: hidden;
}
.logo-marquee {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: marquee 45s linear infinite;
  align-items: center;
  padding: 12px 0;
}
.logo-marquee:hover { animation-play-state: paused; }
.logo-item {
  filter: grayscale(1);
  opacity: .42;
  transition: .3s ease;
  padding: 0 6px;
}
.logo-item:hover {
  filter: grayscale(0);
  opacity: 1;
}
.logo-item img {
  height: 48px;
  width: auto;
  max-width: 207px;
  object-fit: contain;
}
.logo-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 64px;
  z-index: 2;
  pointer-events: none;
}
.logo-fade.left { left: 0; background: linear-gradient(to right, #fff, rgba(255,255,255,0)); }
.logo-fade.right { right: 0; background: linear-gradient(to left, #fff, rgba(255,255,255,0)); }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.split-grid,
.training-wrap,
.startup-grid,
.contact-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}
.split-grid,
.training-wrap,
.contact-grid { grid-template-columns: 1fr 1fr; }
.startup-grid { grid-template-columns: 1.05fr .95fr; }
.media-card.large { aspect-ratio: 4/5; }
.content-card h2,
.training-copy h2,
.startup-copy h2,
.approach h2,
.contact-copy h2,
.section-intro h2 {
  font-size: clamp(2.2rem, 6vw, 4rem);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .06em;
}
.icon-badge {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #fff;
  color: var(--red);
  box-shadow: 0 10px 30px rgba(15,23,42,.06);
}

.section-intro { margin-bottom: 54px; }
.section-intro p { color: rgba(255,255,255,.7); }
.card-grid.three {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.service-card {
  background: rgba(15, 23, 42, .45);
  border: 1px solid rgba(148, 163, 184, .16);
  padding: 34px;
  border-radius: 30px;
  transition: .3s ease;
}
.service-card:hover {
  border-color: rgba(220, 38, 38, .8);
  transform: translateY(-4px);
}
.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.06);
  color: var(--red);
  font-size: 1.3rem;
  margin-bottom: 26px;
}
.service-card h3 { font-size: 1.5rem; margin: 0 0 14px; }
.service-card p { color: rgba(255,255,255,.68); line-height: 1.7; }

.training-wrap {
  background: #fff;
  border-radius: 44px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.training-image { min-height: 100%; }
.training-copy { padding: 56px; }
.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
}
.check-list li {
  position: relative;
  padding-left: 24px;
  font-weight: 700;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
}

.note-box {
  margin-top: 20px;
  padding: 18px 20px;
  background: #fff;
  border-left: 4px solid var(--red);
  border-radius: 0 20px 20px 0;
  color: #475569;
  text-transform: uppercase;
  font-size: .72rem;
  letter-spacing: .12em;
  font-weight: 800;
  line-height: 1.7;
}
.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.mini-card {
  padding: 28px 22px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .05);
  min-height: 140px;
  display: flex;
  align-items: end;
  border: 1px solid var(--border);
}
.mini-card h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.3;
}
.mini-grid .button { grid-column: 1 / -1; margin-top: 6px; }

.approach p { color: rgba(255,255,255,.7); max-width: 820px; margin: 0 auto 30px; }
.pill-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.pill-grid span {
  display: block;
  padding: 22px 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  background: rgba(255,255,255,.05);
  font-weight: 800;
  text-transform: uppercase;
  font-size: .82rem;
  letter-spacing: .14em;
}

.contact-copy h2 { font-size: clamp(2.5rem, 8vw, 5rem); }
.contact-copy p { color: rgba(255,255,255,.72); }
.mail-link,
.linkedin-text {
  display: inline-flex;
  margin-top: 16px;
  font-size: 1.05rem;
  font-weight: 800;
}
.mail-link:hover,
.linkedin-text:hover { color: #fff; }
.contact-form-card {
  background: #fff;
  color: var(--text);
  border-radius: 40px;
  padding: 32px;
}
.contact-form-card form { display: grid; gap: 16px; }
.contact-form-card label { display: grid; gap: 8px; }
.contact-form-card span {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: #94a3b8;
  font-weight: 900;
}
.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  border-radius: 18px;
  padding: 16px 18px;
  outline: none;
  color: var(--text);
}
.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
  border-color: var(--red);
}
.hidden-field { display: none; }

.site-footer {
  padding: 28px 0 40px;
  border-top: 1px solid var(--border);
  background: #fff;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-logo { height: 34px; width: auto; opacity: .34; }
.site-footer p {
  margin: 0;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 900;
  color: #94a3b8;
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-grid,
  .training-wrap,
  .startup-grid,
  .contact-grid,
  .card-grid.three,
  .pill-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy { text-align: center; }
  .hero-actions { justify-content: center; }
  .hero h1 { max-width: none; }
  .hero-shape { display: none; }
  .training-copy { padding: 36px 28px; }
  .pill-grid { max-width: 640px; margin: 0 auto; }
}

@media (max-width: 820px) {
  .nav-desktop { display: none; }
  .menu-toggle { display: block; }
  .brand-copy { display: none; }
  .hero { padding-top: 128px; }
  .section-space { padding: 74px 0; }
  .logo-item img { height: 41px; }
  .feature-grid,
  .check-list,
  .mini-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-card { padding: 24px; border-radius: 28px; }
}
