@import url("typography.css");

:root {
  --navy: #081846;
  --deep-navy: #06183d;
  --aqua: #20dccd;
  --soft-blue: #dfeaff;
  --panel-blue: #dce8ff;
  --ink: #050814;
  --muted: #384055;
  --line: #050505;
  --white: #ffffff;
  --hero-width: 100%;
  --section-width: var(--hero-width);
  --chrome-width: 100%;
  --section-min-height: clamp(680px, 100svh, 860px);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: white;
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.4;
}

.site-header {
  align-items: center;
  background: var(--deep-navy);
  border: 1px solid rgba(255,255,255,.12);
  border-bottom-color: rgba(255,255,255,.18);
  border-radius: 0;
  box-shadow: 0 12px 28px rgba(8,24,70,.18);
  display: grid;
  gap: clamp(20px, 4vw, 58px);
  grid-template-columns: minmax(260px, 1fr) auto auto;
  margin: 0 auto;
  min-height: 70px;
  padding: 12px clamp(24px, 5vw, 46px);
  position: sticky;
  top: 0;
  width: var(--chrome-width);
  z-index: 20;
}

.brand-mark {
  align-items: center;
  color: var(--white);
  display: inline-flex;
  font-size: 20px;
  font-weight: 900;
  gap: 14px;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-icon {
  align-items: center;
  background: transparent;
  border-radius: 999px;
  color: var(--aqua);
  display: inline-flex;
  flex-shrink: 0;
  height: 42px;
  justify-content: center;
  overflow: hidden;
  position: relative;
  width: 44px;
}

.brand-mark .brand-icon::before {
  background: var(--white);
  border-radius: 999px;
  content: "";
  inset: .5px;
  position: absolute;
}

.brand-mark .brand-icon img {
  display: block;
  height: 100%;
  object-fit: contain;
  position: relative;
  width: 100%;
  z-index: 1;
}

.brand-icon.small {
  background: var(--aqua);
  color: var(--navy);
  height: 30px;
  width: 30px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

.site-nav a {
  align-items: center;
  border-radius: 8px;
  color: #e8efff;
  display: inline-flex;
  font-size: 15px;
  font-weight: 700;
  min-height: 38px;
  padding: 0 14px;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a.active {
  background: #0bb6a7;
  color: var(--white);
  text-decoration: none;
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.icon-btn {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  font-size: 17px;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.icon-btn:hover {
  background: rgba(255,255,255,.08);
}

.login-btn,
.primary-action {
  background: var(--aqua);
  border: 0;
  border-radius: 16px;
  color: var(--ink);
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: 900;
  min-height: 48px;
  padding: 0 26px;
}

.login-btn {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  color: var(--white);
  display: inline-flex;
  gap: 8px;
  justify-self: end;
  min-height: 38px;
  padding: 0 13px;
}

.login-btn:hover {
  background: rgba(255,255,255,.08);
}

.primary-action:hover {
  background: #bff9f4;
}

main {
  margin: 0 auto;
  max-width: none;
}

.hero-shell {
  align-items: center;
  background: var(--navy);
  color: var(--white);
  display: grid;
  gap: clamp(28px, 5vw, 84px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  margin: 0 auto;
  min-height: 560px;
  padding: clamp(34px, 5vw, 68px);
  width: var(--hero-width);
}

.eyebrow {
  align-items: center;
  display: inline-flex;
  font-size: 15px;
  font-weight: 900;
  gap: 14px;
  letter-spacing: 0.02em;
  margin-bottom: clamp(28px, 4vw, 48px);
  text-transform: uppercase;
}

.hero-copy h1 {
  font-size: 40px;
  line-height: 1.08;
  margin-bottom: clamp(22px, 3vw, 32px);
  max-width: 680px;
}

.hero-copy h1 span {
  color: var(--aqua);
  display: block;
}

.hero-copy p {
  color: #eef5ff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 28px;
  max-width: 660px;
}

.hero-section-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  max-width: 720px;
}

.hero-section-links span {
  color: #eef5ff;
  flex-basis: 100%;
  font-size: 13px;
  font-weight: 800;
}

.hero-section-links a {
  align-items: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  color: var(--white);
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  min-height: 36px;
  padding: 0 13px;
  text-decoration: none;
}

.hero-section-links a:hover,
.hero-section-links a:focus-visible {
  background: rgba(32,220,205,.18);
  border-color: var(--aqua);
  outline: 3px solid rgba(32,220,205,.55);
  outline-offset: 2px;
}

.hero-visual {
  background: var(--white);
  border-radius: 26px;
  display: flex;
  justify-self: center;
  justify-content: center;
  max-width: 560px;
  overflow: hidden;
  width: 100%;
}

.hero-visual img {
  display: block;
  height: auto;
  max-width: 100%;
}

.info-section,
.white-section,
.stats-section,
.site-footer {
  margin-left: auto;
  margin-right: auto;
  padding: clamp(48px, 6vw, 82px) clamp(24px, 5vw, 76px);
  width: var(--section-width);
}

.hero-shell,
.info-section,
.white-section,
.stats-section {
  min-height: var(--section-min-height);
}

.hero-shell,
.info-section,
.white-section,
.stats-section,
.contact-section {
  scroll-margin-top: 96px;
}

.hero-shell:focus,
.info-section:focus,
.white-section:focus,
.stats-section:focus,
.contact-section:focus {
  outline: none;
}

.hero-shell:focus-visible,
.info-section:focus-visible,
.white-section:focus-visible,
.stats-section:focus-visible,
.contact-section:focus-visible {
  outline: 3px solid var(--aqua);
  outline-offset: -8px;
}

.info-section {
  background: var(--panel-blue);
}

.info-section.split-section,
.info-section.process-section {
  padding-left: 0;
  padding-right: clamp(28px, 5vw, 72px);
}

.info-section.process-section {
  padding-left: 0;
  padding-right: clamp(34px, 4vw, 58px);
}

.white-section {
  background: var(--white);
}

.split-section {
  align-items: center;
  display: grid;
  gap: clamp(56px, 6vw, 110px);
  grid-template-columns: minmax(520px, 0.9fr) minmax(500px, 0.85fr);
}

.section-title-box {
  align-items: center;
  background: var(--white);
  border: 3px solid var(--line);
  border-left: 0;
  border-radius: 0 24px 24px 0;
  display: flex;
  min-height: clamp(220px, 28vw, 330px);
  padding: clamp(30px, 4vw, 42px) clamp(30px, 4vw, 42px) clamp(30px, 4vw, 42px) clamp(42px, 5vw, 84px);
}

.section-title-box h2,
.white-section h2,
.stats-section h2 {
  color: var(--ink);
  font-size: 32px;
  line-height: 1.25;
}

.section-copy {
  font-size: 15px;
  line-height: 1.6;
  max-width: 720px;
}

.section-copy p + p {
  margin-top: clamp(16px, 2vw, 26px);
}

.section-copy h3 {
  font-size: 18px;
  margin: clamp(30px, 4vw, 48px) 0 10px;
}

.section-copy ul {
  display: grid;
  gap: 6px;
  list-style: none;
}

.section-copy li::before {
  content: "·";
}

.white-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0 auto clamp(42px, 5vw, 60px);
  max-width: 1180px;
  text-align: left;
}

.dimension-grid,
.maturity-grid {
  display: grid;
  column-gap: 86px;
  grid-template-columns: repeat(6, 100px);
  justify-content: center;
  margin: 0 auto;
  max-width: 1030px;
  row-gap: 50px;
}

.image-card {
  grid-column: span 2;
  justify-self: center;
  text-align: center;
  width: min(100%, 286px);
}

.image-card-media {
  background: #d9d9d9;
  background-position: center;
  background-size: cover;
  border: 3px solid var(--line);
  border-radius: 14px;
  filter: grayscale(1);
  height: 184px;
  margin-bottom: -22px;
}

.image-card h3 {
  background: var(--panel-blue);
  border: 3px solid var(--line);
  border-radius: 14px;
  display: flex;
  font-size: 17px;
  justify-content: center;
  line-height: 1;
  margin-left: 0;
  min-width: 170px;
  padding: 9px 14px;
  position: relative;
  text-transform: uppercase;
  width: 178px;
}

.image-card p {
  color: #161922;
  font-size: 15px;
  line-height: 1.35;
  margin: 12px auto 0;
  max-width: 260px;
}

.hiring {
  background-image: linear-gradient(rgba(0,0,0,.12), rgba(0,0,0,.12)), url("../images/hiring.jpg");
}

.onboarding {
  background-image: linear-gradient(rgba(0,0,0,.12), rgba(0,0,0,.12)), url("../images/onboarding.jpg");
}

.accommodation {
  background-image: linear-gradient(rgba(0,0,0,.12), rgba(0,0,0,.12)), url("../images/accomodation.jpg");
}

.retention {
  background-image: linear-gradient(rgba(0,0,0,.12), rgba(0,0,0,.12)), url("../images/retention.jpg");
}

.culture {
  background-image: linear-gradient(rgba(0,0,0,.12), rgba(0,0,0,.12)), url("../images/culture.jpg");
}

.emerging {
  background-image: linear-gradient(rgba(0,0,0,.12), rgba(0,0,0,.12)), url("../images/emerging.jpg");
}

.developing {
  background-image: linear-gradient(rgba(0,0,0,.12), rgba(0,0,0,.12)), url("../images/developing.jpg");
}

.advancing {
  background-image: linear-gradient(rgba(0,0,0,.12), rgba(0,0,0,.12)), url("../images/advancing.jpg");
}

.leading {
  background-image: linear-gradient(rgba(0,0,0,.12), rgba(0,0,0,.12)), url("../images/leading.jpg");
}

.exemplar {
  background-image: linear-gradient(rgba(0,0,0,.12), rgba(0,0,0,.12)), url("../images/exemplar.jpg");
}

.dimension-grid .image-card:nth-child(4),
.maturity-grid .image-card:nth-child(4) {
  grid-column: 2 / span 2;
  justify-self: center;
  width: min(100%, 286px);
}

.dimension-grid .image-card:nth-child(5),
.maturity-grid .image-card:nth-child(5) {
  grid-column: 4 / span 2;
  justify-self: center;
  width: min(100%, 286px);
}

.process-section {
  align-items: center;
  display: grid;
  gap: clamp(34px, 4vw, 72px);
  grid-template-columns: minmax(500px, 0.55fr) minmax(560px, 0.85fr);
  padding-bottom: clamp(32px, 4vw, 58px);
  padding-top: clamp(32px, 4vw, 58px);
}

.process-list {
  display: grid;
  gap: clamp(8px, 1vw, 12px);
}

.process-list article {
  align-items: stretch;
  display: grid;
  grid-template-columns: clamp(166px, 12vw, 220px) minmax(0, 1fr);
  min-height: 0;
}

.process-list h3 {
  align-items: center;
  background: var(--panel-blue);
  border: 3px solid var(--line);
  border-radius: 20px;
  display: flex;
  font-size: 14px;
  height: 100%;
  justify-content: center;
  line-height: 1.05;
  overflow-wrap: anywhere;
  padding: clamp(12px, 1.2vw, 17px) clamp(10px, 1vw, 14px);
  position: relative;
  text-align: center;
  word-break: normal;
  z-index: 1;
}

.process-list p {
  align-items: center;
  background: var(--white);
  border: 3px solid var(--line);
  border-radius: 20px;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  height: 100%;
  line-height: 1.32;
  margin-left: -20px;
  padding: clamp(10px, 1vw, 14px) clamp(18px, 1.7vw, 24px);
  position: relative;
  z-index: 2;
}

.process-section .section-title-box {
  border-left: 0;
  border-radius: 0 24px 24px 0;
  justify-self: stretch;
  padding-left: clamp(56px, 5vw, 84px);
}

.process-section .section-title-box h2 {
  font-size: 32px;
  line-height: 1.25;
}

.reason-list {
  display: grid;
  gap: 18px;
}

.reason-list div {
  align-items: center;
  display: grid;
  font-size: 15px;
  font-weight: 700;
  grid-template-columns: 110px minmax(0, 1fr);
  min-height: 74px;
}

.reason-list span {
  align-items: center;
  background: var(--panel-blue);
  border: 3px solid var(--line);
  border-radius: 20px;
  display: flex;
  font-size: 16px;
  font-weight: 900;
  height: 100%;
  justify-content: flex-start;
  padding-left: 38px;
  position: relative;
  z-index: 1;
}

.reason-list p {
  align-items: center;
  background: var(--white);
  border: 3px solid var(--line);
  border-radius: 20px;
  display: flex;
  height: 100%;
  line-height: 1.25;
  margin-left: -34px;
  padding: 0 28px;
  position: relative;
  z-index: 2;
}

.why-section {
  padding-bottom: clamp(34px, 5vw, 58px);
  padding-top: clamp(34px, 5vw, 58px);
}

.stats-section {
  background: var(--white);
  padding-bottom: clamp(84px, 10vw, 150px);
  padding-top: clamp(76px, 9vw, 120px);
  text-align: center;
}

.stats-section h2 {
  color: var(--navy);
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.stats-section > p {
  color: #74798a;
  font-size: 15px;
  margin-bottom: 34px;
}

.stats-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1130px;
}

.stat-card {
  align-items: center;
  border: 1px solid #dce3ee;
  border-radius: 22px;
  display: grid;
  gap: 28px;
  grid-template-columns: 120px minmax(0, 1fr);
  min-height: 232px;
  padding: 28px 34px;
  text-align: left;
}

.stat-users {
  background: #eefafa;
}

.stat-progress {
  background: #eef4ff;
}

.stat-icon {
  align-items: center;
  background: #d0f3f2;
  border-radius: 999px;
  color: #17aaa7;
  display: flex;
  font-size: 36px;
  height: 120px;
  justify-content: center;
  width: 120px;
}

.stat-card strong {
  color: #133ea3;
  display: block;
  font-size: 24px;
  line-height: 1;
  margin-bottom: 18px;
}

.stat-card h3 {
  color: var(--navy);
  font-size: 16px;
  margin-bottom: 24px;
}

.stat-card p {
  color: #596173;
  font-size: 15px;
  line-height: 1.45;
}

.site-footer {
  align-items: center;
  background: var(--deep-navy);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 0;
  box-shadow: 0 12px 28px rgba(8,24,70,.16);
  color: var(--white);
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 500;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto;
  min-height: 62px;
  padding: 18px clamp(20px, 5vw, 72px);
  width: var(--chrome-width);
}

.site-footer div {
  display: flex;
  gap: clamp(28px, 6vw, 70px);
  margin-left: auto;
}

.site-footer a {
  color: var(--white);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--aqua);
}

.home-flash-container {
  background: #f8fbff;
  display: grid;
  gap: 10px;
  padding: 16px clamp(24px, 5vw, 76px) 0;
}

.home-flash-message {
  border-radius: 10px;
  font-weight: 700;
  padding: 13px 16px;
}

.home-flash-message.success {
  background: #dcfce7;
  color: #166534;
}

.home-flash-message.warning {
  background: #fef3c7;
  color: #92400e;
}

.home-flash-message.danger,
.home-flash-message.error {
  background: #fee2e2;
  color: #991b1b;
}

.contact-section {
  background: #1d2b3a;
  color: var(--white);
  display: grid;
  gap: clamp(34px, 6vw, 88px);
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  padding: clamp(54px, 7vw, 90px) clamp(24px, 8vw, 120px);
  scroll-margin-top: 96px;
}

.contact-details,
.contact-form-panel {
  align-self: start;
}

.contact-eyebrow {
  color: var(--aqua);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.contact-details h2,
.contact-form-panel h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: 16px;
}

.contact-details > p:not(.contact-eyebrow),
.contact-form-panel > p {
  color: #cbd5e1;
  line-height: 1.7;
}

.contact-email-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  display: grid;
  gap: 6px;
  margin-top: 30px;
  padding: 18px;
}

.contact-email-card span {
  color: #a5b4c7;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-email-card a {
  color: var(--aqua);
  font-weight: 800;
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 9px;
  margin-top: 24px;
}

.contact-form label {
  color: #e2e8f0;
  font-size: 13px;
  font-weight: 700;
  margin-top: 7px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: #ffffff;
  border: 2px solid transparent;
  border-radius: 8px;
  color: #0f172a;
  font: inherit;
  padding: 12px 14px;
  width: 100%;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--aqua);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  background: linear-gradient(90deg, #20dccd, #b86cff);
  border: 0;
  border-radius: 999px;
  color: #08111f;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  justify-self: start;
  margin-top: 10px;
  min-width: 150px;
  padding: 12px 24px;
}

.contact-form button:hover {
  filter: brightness(1.08);
}

.contact-honeypot {
  left: -10000px;
  position: absolute;
}

@media (max-width: 1180px) {
  .info-section.split-section {
    padding-left: clamp(20px, 5vw, 56px);
    padding-right: clamp(20px, 5vw, 56px);
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .info-section.process-section {
    padding-left: 0;
    padding-right: clamp(24px, 5vw, 56px);
  }

  .process-section {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .process-section .section-title-box {
    border-left: 0;
    border-radius: 0 20px 20px 0;
    padding-left: clamp(30px, 5vw, 56px);
  }

  .process-section .section-title-box h2 {
    font-size: 30px;
  }

  .section-copy {
    max-width: 760px;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .hero-shell,
  .split-section,
  .process-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    min-height: var(--section-min-height);
  }

  .eyebrow {
    margin-bottom: 34px;
  }

  .section-title-box {
    border-left: 3px solid var(--line);
    border-radius: 20px;
    min-height: 190px;
  }

  .dimension-grid,
  .maturity-grid {
    column-gap: 50px;
    grid-template-columns: repeat(6, 95px);
    row-gap: 42px;
  }

  .image-card {
    width: min(100%, 240px);
  }

  .image-card-media {
    height: 154px;
  }

  .dimension-grid .image-card:nth-child(4),
  .dimension-grid .image-card:nth-child(5),
  .maturity-grid .image-card:nth-child(4),
  .maturity-grid .image-card:nth-child(5) {
    width: min(100%, 240px);
  }

  .why-section {
    gap: 32px;
    grid-template-columns: minmax(300px, 0.8fr) minmax(420px, 1fr);
  }

  .why-section .section-title-box {
    min-height: 270px;
  }

  .why-section .section-title-box h2 {
    font-size: 30px;
  }
}

@media (max-width: 640px) {
  :root {
    --chrome-width: 100%;
    --section-min-height: auto;
  }

  .site-header {
    gap: 14px;
    grid-template-columns: 1fr auto;
    margin-top: 0;
    min-height: 0;
    padding: 16px 20px;
    border-radius: 0;
  }

  .brand-mark {
    font-size: 15px;
    grid-column: 1;
    grid-row: 1;
    line-height: 1.1;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    flex-wrap: nowrap;
    gap: 8px 14px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .site-nav a {
    font-size: 13px;
    min-height: 32px;
    padding: 0 11px;
    white-space: nowrap;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .icon-btn {
    display: none;
  }

  .login-btn {
    justify-self: end;
    min-height: 36px;
    padding: 0 15px;
  }

  .hero-shell {
    padding: 28px;
  }

  .info-section.split-section,
  .info-section.process-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  :root {
    --hero-width: 100%;
  }

  .hero-copy h1 {
    font-size: 30px;
  }

  .white-section h2,
  .stats-section h2 {
    font-size: 26px;
  }

  .dimension-grid,
  .maturity-grid,
  .why-section {
    grid-template-columns: 1fr;
  }

  .image-card {
    grid-column: auto;
    width: min(100%, 286px);
  }

  .dimension-grid .image-card:nth-child(4),
  .dimension-grid .image-card:nth-child(5),
  .maturity-grid .image-card:nth-child(4),
  .maturity-grid .image-card:nth-child(5) {
    grid-column: auto;
    width: min(100%, 286px);
  }

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

  .process-list h3,
  .process-list p {
    margin-left: 0;
  }

  .process-list h3 {
    border-radius: 16px 16px 0 0;
    padding: 14px 18px;
  }

  .process-list p {
    border-radius: 0 0 16px 16px;
    border-top: 0;
    font-size: 13px;
    padding: 14px 18px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .stat-icon {
    justify-self: center;
  }

  .reason-list div {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .section-title-box {
    min-height: 150px;
    padding: 30px;
  }

  .site-footer {
    align-items: center;
    border-radius: 0;
    flex-direction: column;
    margin-bottom: 0;
    text-align: center;
  }

  .site-footer div {
    gap: 24px;
    margin-left: 0;
  }
}
