:root {
  --ink: #102326;
  --night: #07191c;
  --teal: #22bfa9;
  --teal-dark: #127c75;
  --coral: #f27052;
  --gold: #f2bd57;
  --paper: #ffffff;
  --mist: #f4f8f6;
  --sage: #dfeae5;
  --line: #d8e4df;
  --muted: #5d716f;
  --shadow: 0 18px 50px rgba(10, 35, 38, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

p {
  margin-bottom: 0;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--paper);
  padding: 0.75rem 1rem;
  border-radius: 8px;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(216, 228, 223, 0.84);
  backdrop-filter: blur(16px);
}

.nav,
.section-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: block;
  box-shadow: 0 12px 28px rgba(18, 124, 117, 0.22);
}

.brand-name {
  font-size: 1.05rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.45rem;
  color: #314845;
  font-size: 0.96rem;
  font-weight: 650;
}

.nav-links a {
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--teal-dark);
}

.nav-cta {
  padding: 0.72rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}

.menu-line,
.menu-line::before,
.menu-line::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition:
    transform 160ms ease,
    opacity 160ms ease;
}

.menu-line {
  position: relative;
  margin: 0 auto;
}

.menu-line::before,
.menu-line::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-line::before {
  top: -7px;
}

.menu-line::after {
  top: 7px;
}

.menu-toggle[aria-expanded="true"] .menu-line {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-line::before {
  transform: translateY(7px) rotate(90deg);
}

.menu-toggle[aria-expanded="true"] .menu-line::after {
  opacity: 0;
}

.hero {
  position: relative;
  height: min(720px, calc(100svh - 112px));
  min-height: 520px;
  overflow: hidden;
  color: var(--paper);
  background: var(--night);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("assets/hero-new-hireizon.png");
  background-position: center center;
  background-size: cover;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 24, 27, 0.9), rgba(6, 24, 27, 0.65) 46%, rgba(6, 24, 27, 0.18)),
    linear-gradient(0deg, rgba(6, 24, 27, 0.35), rgba(6, 24, 27, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem 0;
}

.eyebrow,
.section-kicker,
.card-tag {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0.2rem 0 1rem;
  max-width: 820px;
  font-size: 4.75rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.28rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.78rem 1.1rem;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.2;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--coral);
  color: var(--paper);
  box-shadow: 0 16px 34px rgba(242, 112, 82, 0.26);
}

.button-secondary {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.button-outline {
  border-color: rgba(16, 35, 38, 0.2);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.68);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  width: min(760px, 100%);
  margin-top: 2.4rem;
}

.hero-metrics div {
  min-height: 92px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero-metrics span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-metrics strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--paper);
  font-size: 1rem;
  line-height: 1.35;
}

.signal-strip {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.signal-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 1.5rem;
  padding: 1.5rem 0;
  color: var(--muted);
}

.signal-grid strong {
  color: var(--ink);
}

.section-block {
  padding: 5.5rem 0;
}

.muted-section {
  background: var(--mist);
}

.two-column,
.values-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1.18fr);
  gap: 4rem;
  align-items: start;
}

.section-header {
  max-width: 680px;
  margin-bottom: 2.2rem;
}

.section-kicker {
  margin-bottom: 0.65rem;
}

h2 {
  margin-bottom: 0;
  font-size: 2.55rem;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.24rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.copy-stack {
  display: grid;
  gap: 1rem;
  color: var(--muted);
  font-size: 1.03rem;
}

.lead {
  color: #243b38;
  font-size: 1.24rem;
  line-height: 1.55;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-card,
.audience-card {
  min-height: 100%;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 12px 28px rgba(10, 35, 38, 0.06);
}

.service-card p,
.audience-card p {
  color: var(--muted);
}

.card-tag {
  display: inline-block;
  margin-bottom: 1.6rem;
  color: var(--teal-dark);
}

.audience-section {
  background: var(--paper);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.audience-card {
  padding: 2rem;
}

.accent-card {
  background: #fff7f3;
  border-color: #f8d4c9;
}

.check-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.3rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.55rem;
  color: #314845;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(34, 191, 169, 0.14);
}

.process-section {
  padding: 5.5rem 0;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(34, 191, 169, 0.12), rgba(242, 112, 82, 0.11)),
    var(--night);
}

.light-header .section-kicker {
  color: var(--gold);
}

.light-header h2 {
  color: var(--paper);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.process-step {
  min-height: 250px;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.process-step span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  border-radius: 8px;
  background: rgba(242, 189, 87, 0.16);
  color: var(--gold);
  font-weight: 900;
}

.process-step h3 {
  color: var(--paper);
}

.process-step p {
  color: rgba(255, 255, 255, 0.74);
}

.values-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem 2rem;
}

.values-list div {
  padding-top: 1rem;
  border-top: 2px solid var(--sage);
}

.values-list h3 {
  margin-bottom: 0.3rem;
}

.values-list p {
  color: var(--muted);
}

.contact-section {
  padding: 5.5rem 0;
  background:
    linear-gradient(120deg, rgba(34, 191, 169, 0.16), rgba(242, 189, 87, 0.2)),
    #f7fbf8;
  border-top: 1px solid var(--line);
}

.contact-copy {
  color: #314845;
  font-size: 1.08rem;
}

.contact-note {
  margin-top: 1.6rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer {
  padding: 1.5rem 0;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
}

.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--paper);
}

.legal-hero {
  padding: 4.5rem 0 3rem;
  color: var(--paper);
  background:
    linear-gradient(110deg, rgba(6, 24, 27, 0.92), rgba(18, 124, 117, 0.78)),
    var(--night);
}

.legal-content {
  padding: 4rem 0 5rem;
}

.legal-content .section-inner {
  max-width: 860px;
}

.legal-content h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.55rem;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-list {
  display: grid;
  gap: 0.8rem;
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.placeholder-note {
  padding: 1rem;
  border: 1px solid #f8d4c9;
  border-radius: 8px;
  background: #fff7f3;
  color: #6f3328;
}

.not-found {
  min-height: calc(100svh - 76px);
  display: grid;
  place-items: center;
  padding: 4rem 0;
  background: var(--mist);
}

.not-found-content {
  max-width: 620px;
}

@media (max-width: 980px) {
  .service-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-column,
  .values-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  h2 {
    font-size: 2.15rem;
  }
}

@media (max-width: 760px) {
  .nav,
  .section-inner {
    width: min(calc(100% - 28px), 1120px);
  }

  .nav {
    min-height: 68px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    flex: 0 0 44px;
    margin-left: auto;
    position: relative;
    z-index: 2;
  }

  .nav-links {
    position: fixed;
    inset: 68px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 0.75rem 14px 1.2rem;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 0.9rem 0;
  }

  .nav-cta {
    margin-top: 0.45rem;
    text-align: center;
  }

  .hero {
    height: min(680px, calc(100svh - 96px));
    min-height: 500px;
  }

  .hero-bg {
    background-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(6, 24, 27, 0.94), rgba(6, 24, 27, 0.74) 58%, rgba(6, 24, 27, 0.42)),
      linear-gradient(0deg, rgba(6, 24, 27, 0.35), rgba(6, 24, 27, 0.08));
  }

  .hero h1 {
    font-size: 3.05rem;
  }

  .hero-copy {
    font-size: 1.1rem;
    max-width: 100%;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    margin-top: 1.35rem;
  }

  .hero-metrics div {
    min-height: auto;
    padding: 0.85rem;
  }

  .signal-grid,
  .audience-grid,
  .values-list {
    grid-template-columns: 1fr;
  }

  .section-block,
  .process-section,
  .contact-section {
    padding: 4rem 0;
  }

  .service-card,
  .audience-card,
  .process-step {
    padding: 1.15rem;
  }

  .footer-layout {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .brand-name {
    font-size: 1rem;
  }

  .hero {
    height: auto;
    min-height: calc(100svh - 96px);
  }

  .hero-content {
    justify-content: center;
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  .hero-metrics {
    display: none;
  }

  .button,
  .hero-actions,
  .contact-actions {
    width: 100%;
  }

  .hero-actions,
  .contact-actions {
    max-width: 100%;
  }

  h2 {
    font-size: 1.85rem;
  }

  .service-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
