:root {
  color-scheme: light;
  --ink: #111827;
  --muted: #5d6877;
  --line: #dbe3ea;
  --paper: #ffffff;
  --soft: #f3f7fa;
  --teal: #087c78;
  --blue: #245ca8;
  --coral: #e85c45;
  --gold: #f4b04f;
  --navy: #0e1a26;
  --shadow: 0 22px 70px rgba(17, 24, 39, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

img,
svg {
  display: block;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(20px, 5vw, 72px);
  color: #ffffff;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open,
.site-header.light-header {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 40px rgba(17, 24, 39, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 800;
}

.brand-logo-image {
  width: 142px;
  height: 48px;
  border-radius: 6px;
  object-fit: contain;
  background: #ffffff;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  box-shadow: 0 10px 24px rgba(8, 124, 120, 0.25);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  font-size: 0.76rem;
  opacity: 0.72;
}

.site-nav {
  justify-self: center;
  display: flex;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
}

.site-header.is-scrolled .site-nav,
.site-header.is-open .site-nav,
.light-header .site-nav {
  border-color: var(--line);
  background: var(--soft);
}

.site-nav a,
.header-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  border-radius: 7px;
  padding: 0 14px;
  font-size: 0.92rem;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a.is-active,
.header-action:hover {
  background: rgba(255, 255, 255, 0.2);
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-open .site-nav a:hover,
.light-header .site-nav a:hover,
.site-header.is-scrolled .site-nav a.is-active,
.site-header.is-open .site-nav a.is-active,
.light-header .site-nav a.is-active {
  color: var(--teal);
  background: #e8f3f2;
}

.header-action {
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.site-header.is-scrolled .header-action,
.site-header.is-open .header-action,
.light-header .header-action {
  border-color: var(--line);
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: currentColor;
  background: transparent;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  display: grid;
  place-items: end;
  padding: 120px clamp(18px, 6vw, 88px) 44px;
  background:
    radial-gradient(circle at 78% 34%, rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(135deg, #133449, #eef5f7);
}

.hero-effect {
  position: absolute;
  right: clamp(60px, 16vw, 250px);
  top: clamp(70px, 12vw, 150px);
  width: min(42vw, 560px);
  opacity: 0.45;
  filter: drop-shadow(0 30px 80px rgba(0, 0, 0, 0.18));
}

.hero-person {
  position: relative;
  z-index: 1;
  width: min(34vw, 420px);
  max-height: min(70vh, 620px);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
}

.hero-overlay {
  background:
    radial-gradient(circle at 78% 20%, rgba(244, 176, 79, 0.22), transparent 28%),
    linear-gradient(90deg, rgba(8, 20, 34, 0.94) 0%, rgba(8, 20, 34, 0.82) 40%, rgba(8, 20, 34, 0.35) 74%, rgba(8, 20, 34, 0.14) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(820px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 96px);
  padding-top: 116px;
}

.hero-dashboard {
  position: absolute;
  right: clamp(20px, 5vw, 74px);
  bottom: clamp(26px, 7vw, 80px);
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: min(430px, calc(100% - 40px));
}

.signal-card {
  min-height: 128px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.signal-card.large {
  grid-column: 1 / -1;
}

.signal-card span,
.job-top span,
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 0 10px;
  color: #ffffff;
  background: var(--teal);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.signal-card strong {
  display: block;
  margin-top: 12px;
  font-size: 1.12rem;
  line-height: 1.22;
}

.mini-bars {
  display: grid;
  grid-template-columns: 0.7fr 1fr 0.85fr 1.15fr;
  gap: 8px;
  align-items: end;
  height: 52px;
  margin-top: 18px;
}

.mini-bars i {
  display: block;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, #ffd18a, var(--coral));
}

.mini-bars i:nth-child(1) { height: 44%; }
.mini-bars i:nth-child(2) { height: 76%; }
.mini-bars i:nth-child(3) { height: 58%; }
.mini-bars i:nth-child(4) { height: 92%; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.process-band .eyebrow,
.page-hero .eyebrow {
  color: #ffd18a;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(3.15rem, 7vw, 7.1rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.35rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.04rem, 1.35vw, 1.24rem);
}

.hero-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #ffffff;
  background: var(--coral);
  box-shadow: 0 16px 34px rgba(232, 92, 69, 0.28);
}

.button.secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

.button.ghost {
  width: 100%;
  margin-top: auto;
  color: var(--teal);
  border-color: #b8d9d6;
  background: #edf8f7;
}

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

section:not(.hero) {
  padding: clamp(72px, 9vw, 122px) 0;
}

.intro {
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 55%, #edf5f6 55%, #edf5f6 100%);
}

.intro-grid,
.process-layout,
.contact-layout,
.page-hero-grid,
.cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
}

.intro-panel,
.info-panel,
.hiring-panel,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.panel-image {
  width: 160px;
  margin-bottom: 20px;
}

.intro-panel p,
.section-heading p,
.process-layout p,
.page-hero p,
.career-apply p,
.info-panel p {
  color: var(--muted);
  font-size: 1.04rem;
}

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

.stat-row span {
  min-height: 104px;
  padding: 16px;
  border-radius: 8px;
  background: var(--soft);
  color: var(--muted);
  font-size: 0.9rem;
}

.stat-row strong {
  display: block;
  color: var(--ink);
  font-size: 1.3rem;
}

.services,
.jobs-section {
  background: var(--soft);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 34px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.feature-card,
.service-card,
.job-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.feature-card {
  min-height: 330px;
  padding: 34px;
  background:
    linear-gradient(145deg, rgba(8, 124, 120, 0.08), rgba(36, 92, 168, 0.06)),
    #ffffff;
  box-shadow: var(--shadow);
}

.feature-image {
  width: 100%;
  height: 92px;
  margin-bottom: 24px;
  border-radius: 8px;
  object-fit: contain;
  background: #f8fbfc;
}

.feature-card svg,
.service-card svg,
.info-panel svg,
.check-list svg {
  width: 34px;
  height: 34px;
  color: var(--teal);
}

.feature-card p,
.service-card p,
.job-card p,
.job-card li {
  color: var(--muted);
}

.feature-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--teal);
  font-weight: 900;
}

.feature-card a svg {
  width: 18px;
  height: 18px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  min-height: 240px;
  padding: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.image-card img {
  width: 100%;
  height: 150px;
  margin-bottom: 16px;
  border-radius: 8px;
  object-fit: contain;
  background: #f8fbfc;
}

.service-card:hover,
.job-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.process-band {
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 12%, rgba(244, 176, 79, 0.28), transparent 26%),
    linear-gradient(135deg, #087c78, #245ca8);
}

.process-band p {
  color: rgba(255, 255, 255, 0.82);
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline div {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 6px 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.timeline span {
  grid-row: span 2;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  font-weight: 900;
}

.timeline strong {
  font-size: 1.1rem;
}

.cta-strip {
  background: #ffffff;
}

.cta-layout {
  grid-template-columns: 1fr auto;
  padding: 42px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.cta-layout h2 {
  margin-bottom: 0;
}

.page-main {
  padding-top: 78px;
}

.page-hero {
  color: #ffffff;
  background:
    radial-gradient(circle at 72% 26%, rgba(244, 176, 79, 0.22), transparent 24%),
    linear-gradient(135deg, #0e1a26 0%, #123a46 45%, #245ca8 100%);
}

.page-hero h1 {
  font-size: clamp(3rem, 6vw, 6.2rem);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-card {
  display: grid;
  gap: 14px;
  color: var(--ink);
}

.contact-brand-image {
  width: 100%;
  max-height: 140px;
  margin-bottom: 6px;
  border-radius: 8px;
  object-fit: contain;
  background: #ffffff;
}

.contact-card div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 2px 14px;
  align-items: center;
  padding: 16px;
  border-radius: 8px;
  background: var(--soft);
}

.contact-card svg {
  grid-row: span 2;
  width: 28px;
  height: 28px;
  color: var(--teal);
}

.contact-card span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
}

.contact-page-section,
.career-apply {
  background: #ffffff;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
}

.contact-form.elevated {
  box-shadow: var(--shadow);
}

.form-heading h2 {
  margin-bottom: 0;
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(8, 124, 120, 0.16);
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--teal);
  font-weight: 800;
}

.info-panel {
  align-self: stretch;
  background:
    linear-gradient(145deg, rgba(8, 124, 120, 0.08), rgba(244, 176, 79, 0.08)),
    #ffffff;
}

.check-list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  color: var(--muted);
  font-weight: 700;
}

.check-list svg {
  width: 22px;
  height: 22px;
}

.hiring-panel {
  color: var(--ink);
}

.hiring-panel strong {
  display: block;
  margin-top: 18px;
  font-size: 2rem;
  line-height: 1.1;
}

.hiring-panel p {
  color: var(--muted);
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.job-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.job-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}

.job-top strong {
  color: var(--muted);
  font-size: 0.82rem;
}

.job-card ul {
  padding-left: 20px;
  margin: 8px 0 22px;
}

.site-footer {
  background: #edf3f5;
}

.footer-layout {
  display: grid;
  grid-template-columns: auto minmax(180px, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 30px 0;
}

.footer-layout p,
.footer-links a {
  color: var(--muted);
  font-weight: 800;
}

.footer-layout p {
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 16px 20px;
  color: var(--muted);
  text-align: center;
  font-size: 0.9rem;
}

.admin-body {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 100vh;
  background: var(--soft);
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 28px;
  border-right: 1px solid var(--line);
  background: #ffffff;
}

.admin-nav {
  display: grid;
  gap: 8px;
}

.admin-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  border-radius: 8px;
  padding: 0 12px;
  color: var(--muted);
  font-weight: 900;
}

.admin-nav a:hover {
  color: var(--teal);
  background: #e8f3f2;
}

.admin-nav svg {
  width: 18px;
  height: 18px;
}

.admin-main {
  display: grid;
  gap: 24px;
  padding: 34px;
}

.login-body {
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  padding: 20px;
}

.login-panel {
  width: min(460px, 100%);
  display: grid;
  gap: 18px;
}

.login-panel h1 {
  margin-bottom: 0;
  font-size: clamp(2.4rem, 8vw, 4.2rem);
}

.login-panel p {
  color: var(--muted);
}

.admin-message {
  margin: 0;
  border: 1px solid #b8d9d6;
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--teal);
  background: #e8f3f2;
  font-weight: 900;
}

.error-note {
  color: #b42318;
}

/* Visual upgrade layer */
body {
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 34%, #f1f7fa 34%, #ffffff 100%);
}

.site-header {
  padding-block: 14px;
}

.site-header:not(.is-scrolled):not(.light-header) .brand-logo-image {
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.hero {
  min-height: 94vh;
  background: #0b1724;
}

.hero-media {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 22%, rgba(232, 92, 69, 0.22), transparent 24%),
    radial-gradient(circle at 68% 62%, rgba(244, 176, 79, 0.24), transparent 20%),
    linear-gradient(135deg, #102838 0%, #dcecf1 100%);
}

.hero-media::before,
.hero-media::after {
  content: "";
  position: absolute;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.hero-media::before {
  width: min(24vw, 320px);
  height: min(24vw, 320px);
  right: 25vw;
  top: 18vh;
  transform: rotate(12deg);
}

.hero-media::after {
  width: min(18vw, 240px);
  height: min(9vw, 120px);
  right: 36vw;
  bottom: 23vh;
}

.hero-person {
  width: min(30vw, 390px);
  transform: translateY(18px);
}

.hero-content h1 {
  max-width: 780px;
  text-wrap: balance;
}

.hero-copy {
  max-width: 700px;
}

.hero-dashboard {
  bottom: clamp(34px, 6vw, 90px);
}

.signal-card {
  background: rgba(17, 24, 39, 0.42);
  border-color: rgba(255, 255, 255, 0.28);
}

.intro {
  position: relative;
  overflow: hidden;
}

.intro::before {
  content: "";
  position: absolute;
  inset: 0 45% 0 0;
  background: linear-gradient(135deg, rgba(8, 124, 120, 0.08), rgba(36, 92, 168, 0.02));
  pointer-events: none;
}

.intro-grid {
  position: relative;
  z-index: 1;
}

.mini-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.mini-proof-grid div {
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 44px rgba(17, 24, 39, 0.08);
}

.mini-proof-grid svg {
  width: 30px;
  height: 30px;
  color: var(--teal);
  margin-bottom: 16px;
}

.mini-proof-grid strong,
.mini-proof-grid span {
  display: block;
}

.mini-proof-grid span {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 4px;
}

.intro-panel {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.86)),
    radial-gradient(circle at 86% 8%, rgba(244,176,79,0.2), transparent 28%);
}

.panel-image {
  width: min(48%, 220px);
  border-radius: 8px;
  box-shadow: 0 20px 44px rgba(17, 24, 39, 0.12);
}

.visual-story {
  background:
    linear-gradient(180deg, #ffffff, #eef6f8);
}

.visual-story-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(36px, 7vw, 88px);
  align-items: center;
}

.visual-collage {
  position: relative;
  min-height: 620px;
}

.visual-collage img {
  position: absolute;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 28px 80px rgba(17, 24, 39, 0.18);
}

.collage-large {
  left: 0;
  top: 34px;
  width: 68%;
  aspect-ratio: 1;
}

.collage-small {
  right: 0;
  top: 0;
  width: 44%;
  aspect-ratio: 1;
  background: #ffffff;
}

.collage-strip {
  right: 0;
  bottom: 40px;
  width: 76%;
  height: 170px;
}

.graphic-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.graphic-checks span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  background: #ffffff;
  font-weight: 900;
}

.graphic-checks svg {
  width: 22px;
  height: 22px;
  color: var(--teal);
}

.services {
  background:
    radial-gradient(circle at 20% 8%, rgba(8, 124, 120, 0.12), transparent 24%),
    radial-gradient(circle at 86% 20%, rgba(244, 176, 79, 0.16), transparent 22%),
    #eef5f8;
}

.feature-card,
.service-card {
  position: relative;
  overflow: hidden;
}

.feature-card::after,
.service-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 86px;
  height: 86px;
  border-radius: 999px;
  background: rgba(8, 124, 120, 0.08);
}

.feature-image {
  height: 128px;
  padding: 0;
  object-fit: cover;
  box-shadow: inset 0 -28px 40px rgba(255, 255, 255, 0.86);
}

.image-card img {
  height: 190px;
  padding: 8px;
  background: linear-gradient(135deg, #f8fbfc, #ffffff);
}

.service-card h3,
.service-card p,
.feature-card h3,
.feature-card p,
.feature-card a,
.feature-card svg {
  position: relative;
  z-index: 1;
}

.process-band {
  position: relative;
  overflow: hidden;
}

.process-band::before {
  content: "";
  position: absolute;
  right: -8vw;
  top: -10vw;
  width: 42vw;
  aspect-ratio: 1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.visual-timeline div {
  grid-template-columns: 92px 56px 1fr;
  align-items: center;
}

.visual-timeline img {
  grid-row: span 2;
  width: 86px;
  height: 86px;
  border-radius: 8px;
  object-fit: cover;
  background: #ffffff;
}

.page-hero {
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  right: 5vw;
  top: 18%;
  width: min(38vw, 520px);
  aspect-ratio: 1;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  transform: rotate(10deg);
}

.page-hero-grid {
  position: relative;
  z-index: 1;
}

.graphic-contact-card,
.graphic-hiring-panel {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,255,255,0.82)),
    radial-gradient(circle at 82% 10%, rgba(8,124,120,0.14), transparent 28%);
}

.contact-hero-image,
.hiring-portrait,
.info-panel-image,
.candidate-visual img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.12);
}

.contact-hero-image {
  height: 220px;
}

.hiring-portrait {
  height: 240px;
}

.info-panel-image {
  height: 140px;
  margin-bottom: 24px;
}

.candidate-visual {
  margin-top: 28px;
}

.candidate-visual img {
  max-width: 320px;
}

.services-catalog {
  padding-top: clamp(78px, 9vw, 128px);
}

.full-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.catalog-card {
  min-height: 390px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,255,255,0.98)),
    radial-gradient(circle at 80% 8%, rgba(8,124,120,0.12), transparent 30%);
}

.catalog-card img {
  height: 176px;
}

.hr-service-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(244, 176, 79, 0.16), transparent 24%),
    linear-gradient(180deg, #ffffff, #eef6f8);
}

.compact-collage {
  min-height: 560px;
}

.hr-service-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.hr-service-list article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 44px rgba(17, 24, 39, 0.08);
}

.hr-service-list svg {
  width: 26px;
  height: 26px;
  color: var(--teal);
}

.hr-service-list h3 {
  margin-bottom: 4px;
}

.hr-service-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-form,
.info-panel,
.job-card {
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.1);
}

.jobs-section {
  background:
    linear-gradient(180deg, #eef5f8, #ffffff);
}

@media (max-width: 1120px) {
  .visual-story-grid {
    grid-template-columns: 1fr;
  }

  .visual-collage {
    min-height: 520px;
  }

  .full-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: auto;
  }

  .hero-media {
    opacity: 0.95;
  }

  .hero-person {
    width: min(64vw, 280px);
    transform: translateY(28px);
  }

  .hero-content {
    padding-bottom: 40px;
  }

  .mini-proof-grid,
  .graphic-checks,
  .visual-timeline div {
    grid-template-columns: 1fr;
  }

  .visual-collage {
    min-height: 430px;
  }

  .collage-large {
    width: 72%;
  }

  .collage-small {
    width: 46%;
  }

  .collage-strip {
    width: 82%;
    height: 120px;
  }

  .feature-image {
    height: 112px;
  }

  .image-card img {
    height: 210px;
  }

  .visual-timeline img {
    grid-row: auto;
  }

  .full-service-grid {
    grid-template-columns: 1fr;
  }

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

  .hr-service-list article {
    grid-template-columns: 1fr;
  }
}

.admin-hero,
.admin-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 42px rgba(17, 24, 39, 0.08);
}

.admin-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  color: #ffffff;
  background:
    radial-gradient(circle at 80% 10%, rgba(244, 176, 79, 0.24), transparent 24%),
    linear-gradient(135deg, var(--navy), var(--blue));
}

.admin-hero h1 {
  max-width: 760px;
  font-size: clamp(2.35rem, 4vw, 4.4rem);
  line-height: 1;
}

.admin-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
}

.admin-summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.admin-summary div {
  min-width: 160px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.admin-summary span {
  display: block;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}

.admin-summary strong {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
}

.admin-panel {
  padding: 28px;
}

.admin-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 22px;
}

.admin-panel h2 {
  margin-bottom: 0;
  font-size: clamp(1.9rem, 3vw, 3.2rem);
}

.admin-form {
  display: grid;
  gap: 16px;
}

.admin-form.compact {
  margin-bottom: 22px;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.admin-list {
  display: grid;
  gap: 12px;
}

.admin-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfe;
}

.admin-row span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-row strong {
  display: block;
  margin-top: 4px;
  font-size: 1.08rem;
}

.admin-row p {
  margin: 6px 0 0;
  color: var(--muted);
}

.admin-row-actions {
  display: flex;
  gap: 8px;
}

.admin-row-actions button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.admin-row-actions button:hover {
  color: var(--teal);
  background: #e8f3f2;
}

.admin-row-actions svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 1120px) {
  .service-grid,
  .jobs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-dashboard {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(820px, calc(100% - 40px));
    margin: -36px auto 34px;
  }
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .header-action {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 8px);
    left: 20px;
    right: 20px;
    display: none;
    grid-column: 1 / -1;
    justify-self: stretch;
    padding: 10px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav {
    display: grid;
  }

  .site-nav a {
    min-height: 48px;
  }

  .intro-grid,
  .process-layout,
  .contact-layout,
  .page-hero-grid,
  .cta-layout,
  .feature-grid,
  .admin-hero {
    grid-template-columns: 1fr;
  }

  .admin-body {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: relative;
    height: auto;
  }

  .cta-layout {
    padding: 28px;
  }

  .intro {
    background: #ffffff;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 14px 16px;
  }

  .hero {
    min-height: 94vh;
    align-items: end;
  }

  .hero-media {
    padding: 112px 20px 34px;
    place-items: center;
  }

  .hero-effect {
    right: auto;
    top: 92px;
    width: min(86vw, 360px);
  }

  .hero-person {
    width: min(58vw, 260px);
    opacity: 0.72;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(8, 20, 34, 0.96) 0%, rgba(8, 20, 34, 0.82) 60%, rgba(8, 20, 34, 0.26) 100%);
  }

  .hero-content {
    width: min(100% - 32px, 620px);
    margin: 0 auto;
    padding: 120px 0 68px;
  }

  h1 {
    font-size: clamp(2.75rem, 15vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3.1rem);
  }

  .hero-actions,
  .footer-links {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-dashboard,
  .stat-row,
  .service-grid,
  .jobs-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .feature-card,
  .service-card,
  .job-card,
  .contact-form,
  .intro-panel,
  .info-panel,
  .hiring-panel,
  .contact-card {
    padding: 20px;
  }

  .timeline div {
    grid-template-columns: 1fr;
  }

  .timeline span {
    grid-row: auto;
  }

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

  .admin-main {
    padding: 18px;
  }

  .admin-panel-head,
  .admin-row {
    grid-template-columns: 1fr;
  }

  .admin-panel-head {
    align-items: stretch;
  }

  .admin-row-actions,
  .admin-summary {
    grid-template-columns: 1fr;
  }
}
