:root {
  --ink: #111111;
  --muted: #5f6368;
  --soft: #f5f3ee;
  --paper: #ffffff;
  --accent: #ff4d2e;
  --accent-dark: #d93418;
  --line: #dedbd2;
  --shadow: 0 24px 70px rgba(17, 17, 17, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--soft);
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 8%, rgba(255, 77, 46, 0.16), transparent 24rem),
    radial-gradient(circle at 90% 2%, rgba(17, 17, 17, 0.08), transparent 24rem);
  z-index: -1;
}

.site-header {
  width: min(1160px, calc(100% - 40px));
  margin: 22px auto 0;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(222, 219, 210, 0.86);
  border-radius: 999px;
  backdrop-filter: blur(16px);
  position: sticky;
  top: 14px;
  z-index: 10;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 850;
  letter-spacing: -0.04em;
  font-size: 1.08rem;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1rem;
  font-weight: 750;
  cursor: pointer;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 650;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
}

.nav-links .nav-cta {
  background: var(--ink);
  color: var(--paper);
  padding: 10px 16px;
  border-radius: 999px;
}

.main {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: 74vh;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 42px;
  align-items: center;
  padding: 82px 0 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 850;
  color: var(--accent-dark);
  margin-bottom: 16px;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h1 {
  font-size: clamp(3.2rem, 7vw, 6.8rem);
}

h2 {
  font-size: clamp(2.1rem, 4.4vw, 4.4rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.lead {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  color: #333333;
  max-width: 740px;
  margin: 22px 0 0;
}

.copy {
  color: var(--muted);
  font-size: 1.02rem;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 20px;
  border: 1px solid var(--ink);
  text-decoration: none;
  color: var(--ink);
  font-weight: 800;
}

.button.primary {
  background: var(--ink);
  color: var(--paper);
}

.button.accent {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--paper);
}

.hero-card {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  border: 1px solid var(--line);
  transform: rotate(1deg);
}

.deck-card {
  min-height: 420px;
  border-radius: 20px;
  background: #151515;
  color: var(--paper);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}

.deck-card::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: var(--accent);
  right: -90px;
  bottom: -90px;
  opacity: 0.95;
}

.deck-card strong {
  font-size: clamp(2rem, 4vw, 4.5rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  position: relative;
  z-index: 1;
}

.deck-card span {
  color: #d9d9d9;
  font-weight: 700;
  max-width: 260px;
  position: relative;
  z-index: 1;
}

.grid-3,
.grid-2,
.people-grid {
  display: grid;
  gap: 20px;
}

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

.grid-2,
.people-grid {
  grid-template-columns: repeat(2, 1fr);
}

.section {
  padding: 62px 0;
}

.section-header {
  max-width: 820px;
  margin-bottom: 28px;
}

.card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}

.card p:last-child,
.stat p:last-child,
.person p:last-child {
  margin-bottom: 0;
}

.kicker {
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 850;
  font-size: 0.78rem;
  margin-bottom: 10px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.stat {
  background: var(--ink);
  color: var(--paper);
  padding: 22px;
  border-radius: 20px;
}

.stat strong {
  display: block;
  font-size: 2.15rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.stat p {
  color: #d7d7d7;
  margin: 10px 0 0;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 14px;
}

.step {
  counter-increment: step;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px;
}

.step::before {
  content: counter(step);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--paper);
  font-weight: 900;
}

.person {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.08);
}

.person-image {
  aspect-ratio: 4 / 3;
  background: #e9e4da;
  object-fit: cover;
  width: 100%;
}

.person-body {
  padding: 24px;
}

.person-body h3 {
  margin-bottom: 8px;
}

.role {
  color: var(--accent-dark);
  font-weight: 850;
  margin: 0 0 12px;
}

.page-hero {
  padding: 86px 0 42px;
  max-width: 900px;
}

.band {
  background: var(--ink);
  color: var(--paper);
  padding: 64px;
  border-radius: calc(var(--radius) + 8px);
  margin: 52px 0;
  overflow: hidden;
  position: relative;
}

.band::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: var(--accent);
  right: -80px;
  top: -100px;
}

.band > * {
  position: relative;
  z-index: 1;
}

.band p {
  color: #e0e0e0;
  max-width: 720px;
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.form-note {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.field {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

label {
  font-weight: 800;
  font-size: 0.92rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  background: #fafafa;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.site-footer {
  width: min(1160px, calc(100% - 40px));
  margin: 50px auto 24px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.site-footer a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    border-radius: 26px;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 8px 0 4px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 10px 8px;
  }

  .hero,
  .grid-3,
  .grid-2,
  .people-grid,
  .stat-row,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 54px;
  }

  .band {
    padding: 34px 24px;
  }

  .site-footer {
    flex-direction: column;
  }
}
