:root {
  color-scheme: light;
  --ink: #0f172a;
  --body: #334155;
  --muted: #64748b;
  --blue: #0969da;
  --blue-2: #0b63ce;
  --green: #0f9f6e;
  --amber: #b7791f;
  --red: #c2410c;
  --line: #d8e0ea;
  --soft: #f4f7fb;
  --paper: #ffffff;
  --dark: #071d34;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: #f8fbff;
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a { color: inherit; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  color: var(--blue);
  font-size: 30px;
  font-weight: 950;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.nav-links a {
  color: #334155;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.button.primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 14px 30px rgba(9, 105, 218, 0.24);
}

.button.secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.hero {
  position: relative;
  padding: 58px 0 44px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(248, 251, 255, 0.98), rgba(248, 251, 255, 0.9) 52%, rgba(248, 251, 255, 0.56)),
    url("/images/skireco-career-hero.png") center / cover;
  z-index: -2;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 36px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 950;
}

h1 {
  margin: 0;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.12;
  font-weight: 950;
}

.lead {
  margin: 18px 0 0;
  color: var(--body);
  font-size: 17px;
  line-height: 1.75;
  font-weight: 720;
}

.quick-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 22px 0;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #334155;
  font-size: 12px;
  font-weight: 850;
}

.proof {
  padding: 12px;
  border: 1px solid rgba(9, 105, 218, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
}

.proof strong {
  display: block;
  font-size: 15px;
}

.proof span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 700;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.choice-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.choice {
  display: block;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  text-decoration: none;
  font-weight: 950;
}

.choice span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 700;
}

.visual-panel {
  padding: 16px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
}

.product-shot {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 12px;
}

.input-stack {
  display: grid;
  gap: 8px;
}

.input-card {
  padding: 12px;
  border: 1px solid #d8e0ea;
  border-radius: 8px;
  background: #f6f8fb;
}

.input-card b {
  display: block;
  font-size: 12px;
}

.input-card small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
  font-weight: 700;
}

.mini-stack {
  display: grid;
  gap: 8px;
}

.mini-card {
  padding: 12px;
  border: 1px solid #d8e0ea;
  border-radius: 8px;
  background: #f6f8fb;
}

.mini-card strong {
  display: block;
  font-size: 12px;
}

.mini-card span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
  font-weight: 700;
}

.sheet-preview {
  overflow: auto;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #fff;
}

.sheet-preview table {
  width: 100%;
  min-width: 580px;
  border-collapse: collapse;
  font-size: 11px;
}

.sheet-preview th,
.sheet-preview td {
  border: 1px solid #d7dee8;
  padding: 7px;
  vertical-align: top;
  line-height: 1.45;
}

.sheet-preview th {
  background: #eef3f8;
  color: #1e293b;
  font-weight: 950;
}

.section {
  padding: 46px 0;
}

.section.compact {
  padding: 28px 0;
}

.section.tight {
  padding-top: 28px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.section-title {
  margin: 0;
  font-size: clamp(26px, 3.5vw, 38px);
  line-height: 1.24;
  font-weight: 950;
}

.section-lead {
  margin: 10px 0 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 700;
}

.grid-3,
.grid-2,
.compare,
.link-cluster {
  display: grid;
  gap: 12px;
}

.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2,
.compare { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.link-cluster { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card,
.example,
.link-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.link-cluster a {
  display: block;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  text-decoration: none;
  font-weight: 950;
}

.link-cluster a span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 700;
}

.card {
  padding: 18px;
}

.card h2,
.card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.34;
}

.card p,
.card li {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 700;
}

.card ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

.example {
  padding: 18px;
}

.example.bad {
  border-color: #fed7aa;
  background: #fff7ed;
}

.example.good {
  border-color: #bbf7d0;
  background: #f0fdf4;
}

.example .label {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
}

.example p {
  margin: 0;
  color: #334155;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 760;
}

.process-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.process-row div {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
  font-weight: 950;
  text-align: center;
}

.process-map {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.process-map div {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
  font-weight: 950;
  text-align: center;
}

.link-card {
  display: block;
  padding: 17px;
  text-decoration: none;
  font-weight: 950;
}

.link-card span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 700;
}

.band {
  padding: 28px;
  border-radius: 12px;
  background: var(--dark);
  color: #eaf2ff;
}

.final-cta {
  padding: 28px;
  border-radius: 12px;
  background: var(--dark);
  color: #eaf2ff;
}

.final-cta .section-lead,
.final-cta p {
  color: #bfdbfe;
}

.band .section-lead {
  color: #bfdbfe;
}

.site-footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: #334155;
  font-weight: 850;
  text-decoration: none;
}

@media (max-width: 900px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .hero {
    padding-top: 40px;
  }

  .hero-grid,
  .product-shot,
  .quick-proof,
  .choice-strip,
  .grid-3,
  .grid-2,
  .compare,
  .link-cluster,
  .process-row {
    grid-template-columns: 1fr;
  }

  .process-map {
    grid-template-columns: 1fr;
  }

  .nav-links a:not(.button) {
    display: none;
  }

  .section-head {
    display: block;
  }

  .visual-panel {
    padding: 12px;
  }

  .band {
    padding: 22px;
  }
}
