/* Warwick Recruitment — lightweight one-page site */
:root {
  --bg: #071018;
  --bg-soft: #0d1a25;
  --ink: #f6f8fb;
  --muted: #9fb0c2;
  --line: rgba(255, 255, 255, 0.12);
  --card: rgba(255, 255, 255, 0.075);
  --card-strong: rgba(255, 255, 255, 0.12);
  --accent: #7cf7c6;
  --accent-2: #65a7ff;
  --dark: #071018;
  --white: #ffffff;
  --radius: 26px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --container: 1160px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 10%, rgba(101, 167, 255, 0.25), transparent 30%),
    radial-gradient(circle at 85% 5%, rgba(124, 247, 198, 0.18), transparent 28%),
    linear-gradient(180deg, #071018 0%, #09131d 46%, #f5f7fb 46%, #f5f7fb 100%);
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(7, 16, 24, 0.72);
  border-bottom: 1px solid var(--line);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.logo-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #061019;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 14px 36px rgba(124, 247, 198, 0.2);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(246, 248, 251, 0.78);
  font-size: 14px;
}

.nav-links a:hover { color: var(--white); }

.header-cta {
  padding: 12px 18px;
  border: 1px solid rgba(124, 247, 198, 0.35);
  border-radius: 999px;
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: transparent;
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 780px;
  padding: 92px 0 120px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 58px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(246, 248, 251, 0.82);
  background: rgba(255, 255, 255, 0.06);
  font-size: 14px;
  font-weight: 650;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(124, 247, 198, 0.12);
}

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

h1 {
  margin: 24px 0 24px;
  max-width: 790px;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(135deg, var(--accent), #e9fff7 45%, var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-copy {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  color: #061019;
  background: linear-gradient(135deg, var(--accent), #c8ffe9);
  box-shadow: 0 18px 46px rgba(124, 247, 198, 0.22);
}

.btn-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  color: rgba(246, 248, 251, 0.72);
  font-size: 14px;
}

.hero-proof strong {
  display: block;
  color: var(--white);
  font-size: 22px;
  letter-spacing: -0.04em;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.orbit-card {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.055));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.main-card {
  top: 36px;
  right: 0;
  width: min(100%, 430px);
  padding: 28px;
}

.profile-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.avatar-stack {
  display: flex;
}

.avatar {
  width: 42px;
  height: 42px;
  margin-left: -10px;
  border: 3px solid rgba(7,16,24,0.9);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
}

.avatar:first-child { margin-left: 0; }
.avatar:nth-child(2) { background: linear-gradient(135deg, #f8d477, #ff7d7d); }
.avatar:nth-child(3) { background: linear-gradient(135deg, #a987ff, #65a7ff); }

.score {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 20px;
  color: #061019;
  background: var(--white);
}

.score small { color: #657287; font-weight: 700; }
.score strong { font-size: 40px; letter-spacing: -0.06em; }

.role-list { margin-top: 20px; display: grid; gap: 12px; }
.role-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
}

.role-item span { color: var(--muted); font-size: 13px; }
.tag {
  padding: 7px 10px;
  border-radius: 999px;
  color: #061019;
  background: var(--accent);
  font-weight: 800;
  font-size: 12px;
  white-space: nowrap;
}

.float-card {
  left: 0;
  bottom: 90px;
  width: 260px;
  padding: 20px;
}

.float-card strong { display: block; font-size: 28px; letter-spacing: -0.05em; }
.float-card p { margin: 8px 0 0; color: var(--muted); line-height: 1.5; }

.ring {
  position: absolute;
  right: 70px;
  bottom: 0;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(124, 247, 198, 0.24);
  border-radius: 50%;
}

.ring::before, .ring::after {
  content: "";
  position: absolute;
  inset: 42px;
  border: 1px solid rgba(101, 167, 255, 0.25);
  border-radius: 50%;
}

.ring::after {
  inset: 90px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  opacity: 0.85;
}

.section-light {
  color: #101823;
  background: #f5f7fb;
}

.section {
  padding: 105px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.kicker {
  color: #3a6ff2;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
}

h2 {
  margin: 12px 0 18px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.section-head p, .card p, .step p, .cta-panel p {
  color: #627083;
  line-height: 1.7;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid #e3e8ef;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 22px 60px rgba(20, 35, 52, 0.06);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 16px;
  color: #061019;
  background: linear-gradient(135deg, var(--accent), #dffcf1);
  font-weight: 900;
}

.card h3, .step h3 { margin-bottom: 12px; font-size: 22px; letter-spacing: -0.035em; }

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 56px;
}

.panel-dark {
  position: sticky;
  top: 110px;
  padding: 34px;
  border-radius: var(--radius);
  color: var(--ink);
  background: linear-gradient(145deg, #08131d, #13283a);
  box-shadow: var(--shadow);
}

.panel-dark p { color: var(--muted); line-height: 1.7; }

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.metric {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.055);
}

.metric strong { display: block; font-size: 28px; letter-spacing: -0.05em; }
.metric span { color: var(--muted); font-size: 13px; }

.steps { display: grid; gap: 16px; }

.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid #e3e8ef;
  border-radius: 24px;
  background: #fff;
}

.step-num {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #061019;
  background: #eef4ff;
  font-weight: 900;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 30px;
  padding: 46px;
  border-radius: 34px;
  color: var(--ink);
  background:
    radial-gradient(circle at 85% 30%, rgba(124, 247, 198, 0.22), transparent 32%),
    linear-gradient(135deg, #071018, #13283a);
  box-shadow: var(--shadow);
}

.cta-panel p { color: var(--muted); max-width: 630px; }

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

.contact-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.contact-line:last-child { border-bottom: 0; }
.contact-line strong { color: var(--white); }

.footer {
  padding: 34px 0;
  color: #718096;
  background: #f5f7fb;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #e3e8ef;
  padding-top: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 920px) {
  .nav-links {
    position: fixed;
    inset: 78px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(7,16,24,0.96);
  }

  body.menu-open .nav-links { display: flex; }
  .menu-toggle { display: inline-grid; place-items: center; }
  .header-cta { display: none; }

  .hero { padding-top: 64px; min-height: auto; }
  .hero-grid, .split, .cta-panel { grid-template-columns: 1fr; }
  .hero-visual { min-height: 520px; }
  .main-card { right: auto; left: 50%; transform: translateX(-50%); }
  .float-card { left: 0; }
  .cards-grid { grid-template-columns: 1fr; }
  .panel-dark { position: static; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, var(--container)); }
  .hero { padding-bottom: 76px; }
  .hero-actions .btn { width: 100%; }
  .hero-proof { display: grid; grid-template-columns: 1fr 1fr; }
  .main-card { width: 100%; padding: 22px; }
  .float-card { width: 220px; bottom: 50px; }
  .ring { right: -40px; width: 220px; height: 220px; }
  .section { padding: 72px 0; }
  .step { grid-template-columns: 1fr; }
  .metric-grid { grid-template-columns: 1fr; }
  .cta-panel { padding: 28px; border-radius: 26px; }
  .footer-row { flex-direction: column; }
}
