:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --ink: #12233d;
  --muted: #52647b;
  --line: #d7e0ea;
  --paper: #ffffff;
  --soft: #f4f7fb;
  --focus: #a94300;
  --shadow: 0 20px 60px rgba(18, 35, 61, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--soft);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 95% 0%, var(--accent-wash) 0, transparent 34rem),
    linear-gradient(180deg, #ffffff 0%, var(--soft) 100%);
  font-size: 1rem;
  line-height: 1.6;
}

.channel-exec {
  --accent: #5b3f9f;
  --accent-dark: #3d2776;
  --accent-wash: #eee9fb;
  --accent-soft: #f6f3fd;
}

.channel-gig {
  --accent: #08736d;
  --accent-dark: #04504c;
  --accent-wash: #dff4f1;
  --accent-soft: #effaf8;
}

a {
  color: var(--accent-dark);
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration-thickness: 0.18em;
}

a:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
  border-radius: 0.25rem;
}

.skip-link {
  position: fixed;
  z-index: 10;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: #ffffff;
  background: var(--ink);
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  width: min(72rem, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5.5rem;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 3rem;
  gap: 0.75rem;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border-radius: 0.9rem;
  color: #ffffff;
  background: var(--accent);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent) 22%, transparent);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

.benchserve-link {
  display: inline-flex;
  align-items: center;
  min-height: 3rem;
  padding: 0 0.25rem;
  font-weight: 700;
}

main {
  display: block;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  padding: clamp(4.5rem, 9vw, 8rem) 0 clamp(3.5rem, 7vw, 6.5rem);
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  margin: 0 0 1.25rem;
  padding: 0.3rem 0.75rem;
  border: 1px solid color-mix(in srgb, var(--accent) 42%, white);
  border-radius: 999px;
  color: var(--accent-dark);
  background: var(--accent-soft);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

h1,
h2 {
  text-wrap: balance;
}

h1 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 5.35rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.lede {
  max-width: 44rem;
  margin: 1.6rem 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  line-height: 1.65;
}

.primary-action {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  padding: 0.75rem 1.2rem;
  border: 2px solid var(--accent);
  border-radius: 0.7rem;
  color: #ffffff;
  background: var(--accent);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 28px color-mix(in srgb, var(--accent) 24%, transparent);
}

.primary-action:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.availability-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-card {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid color-mix(in srgb, var(--accent) 24%, var(--line));
  border-radius: 1.5rem;
  background: color-mix(in srgb, var(--paper) 88%, var(--accent-soft));
  box-shadow: var(--shadow);
}

.hero-card-label {
  margin: 0 0 0.8rem;
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-card p:last-child {
  margin-bottom: 0;
}

.benefits {
  padding: 0 0 clamp(4rem, 8vw, 7rem);
}

.section-intro {
  max-width: 44rem;
  margin: 0.75rem 0 2rem;
  color: var(--muted);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefit-card {
  min-height: 11.5rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  border-radius: 1rem;
  background: var(--paper);
}

.benefit-number {
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  color: #ffffff;
  background: var(--accent);
  font-weight: 900;
}

.boundary {
  margin-bottom: clamp(4rem, 8vw, 7rem);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 1.25rem;
  color: var(--ink);
  background: var(--accent-soft);
}

.boundary p {
  max-width: 55rem;
  margin-bottom: 0;
}

.content-page {
  max-width: 52rem;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.content-page h1 {
  max-width: 20ch;
  font-size: clamp(2.35rem, 5vw, 4.25rem);
}

.content-page h2 {
  margin-top: 2.5rem;
}

.content-page p,
.content-page li {
  color: var(--muted);
}

.content-page ul {
  padding-left: 1.25rem;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.secondary-action {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  padding: 0.6rem 0.2rem;
  font-weight: 800;
}

.site-footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.footer-links a {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  font-weight: 700;
}

.legal-line {
  max-width: 48rem;
  margin: 1.5rem 0 0;
}

@media (max-width: 760px) {
  .site-shell {
    width: min(100% - 1.25rem, 42rem);
  }

  .site-header {
    align-items: flex-start;
    padding: 0.75rem 0;
  }

  .benchserve-link {
    text-align: right;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 4rem;
  }

  .benefit-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: auto;
  }
}

@media (max-width: 420px) {
  .site-header {
    display: block;
  }

  .benchserve-link {
    margin-top: 0.5rem;
  }

  .primary-action {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (forced-colors: active) {
  .brand-mark,
  .benefit-number,
  .primary-action {
    border: 2px solid ButtonText;
  }
}
