:root {
  --navy: #061a3a;
  --blue: #155bb8;
  --cyan: #36b7e8;
  --sky: #eaf7ff;
  --orange: #f36a0a;
  --ink: #111b2e;
  --muted: #627087;
  --line: #dce5ee;
  --paper: #fff;
  --cream: #f7f8f4;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(11, 42, 82, 0.13);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}
body:before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
img {
  max-width: 100%;
  display: block;
}
.site-header {
  height: 88px;
  display: flex;
  align-items: center;
  padding: 0 max(5vw, 30px);
  gap: 38px;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: 0.3s;
}
.site-header.scrolled {
  height: 74px;
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(10, 42, 80, 0.06);
}
.brand {
  display: block;
  margin-right: auto;
}
.brand img {
  width: 174px;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 600;
}
.desktop-nav a {
  position: relative;
}
.desktop-nav a:after {
  content: "";
  height: 2px;
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  background: var(--cyan);
  transition: 0.25s;
}
.desktop-nav a:hover:after,
.desktop-nav a.active:after {
  right: 0;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 15px 22px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), #154393);
  color: white;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(21, 91, 184, 0.22);
  transition: 0.25s;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(21, 91, 184, 0.28);
}
.button span {
  font-size: 18px;
}
.button-sm {
  padding: 11px 17px;
  font-size: 14px;
}
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  width: 40px;
}
.menu-toggle i {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 6px;
}
.hero {
  min-height: 790px;
  padding: 160px max(6vw, 54px) 80px;
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(480px, 1.05fr);
  grid-template-areas: "visual copy";
  gap: clamp(36px, 5vw, 88px);
  align-items: center;
  overflow: hidden;
  position: relative;
  background: linear-gradient(145deg, #fff 20%, #f1f9ff 100%);
}
.hero:after {
  content: "";
  position: absolute;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  right: -270px;
  top: 80px;
  border: 1px solid rgba(54, 183, 232, 0.25);
  box-shadow:
    0 0 0 80px rgba(54, 183, 232, 0.035),
    0 0 0 160px rgba(54, 183, 232, 0.025);
}
.hero-copy {
  grid-area: copy;
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--blue);
  font-weight: 800;
  font-size: 11px;
}
.eyebrow i {
  width: 28px;
  height: 2px;
  background: var(--cyan);
}
h1,
h2,
h3 {
  font-family: "Manrope", sans-serif;
  line-height: 1.12;
}
h1 {
  font-size: clamp(48px, 5.3vw, 82px);
  letter-spacing: -0.055em;
  margin: 22px 0 26px;
}
h1 em,
h2 em {
  font-style: normal;
  color: var(--blue);
}
.hero-copy > p {
  font-size: 19px;
  max-width: 630px;
  color: var(--muted);
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 32px;
}
.text-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.play {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 10px;
  color: var(--blue);
}
.hero-trust {
  margin-top: 48px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
}
.hero-trust > span {
  font-size: 12px;
  max-width: 90px;
  line-height: 1.3;
}
.hero-trust b {
  font: 800 24px Manrope;
  color: var(--navy);
  margin-left: 10px;
}
.hero-trust small {
  font-size: 11px;
  line-height: 1.2;
  max-width: 62px;
}
.hero-visual {
  grid-area: visual;
  height: 625px;
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  isolation: isolate;
  border-radius: 42px 42px 130px 42px;
  background:
    linear-gradient(180deg, rgba(6, 26, 58, 0.02), rgba(6, 26, 58, 0.32)),
    url("images/zulanex-hero-v2.png") center/cover no-repeat;
  box-shadow: 0 38px 90px rgba(6, 47, 120, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.8);
}
.hero-visual:before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 28px 28px 112px 28px;
  pointer-events: none;
}
.visual-label {
  position: absolute;
  left: 28px;
  top: 26px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 30px;
  background: rgba(5, 25, 55, 0.56);
  backdrop-filter: blur(14px);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.visual-label i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #55d4ff;
  box-shadow: 0 0 0 5px rgba(85, 212, 255, 0.16);
}
.orbit {
  position: absolute;
  border: 1px solid rgba(21, 91, 184, 0.15);
  border-radius: 50%;
}
.orbit-a {
  width: 510px;
  height: 510px;
}
.orbit-b {
  width: 390px;
  height: 390px;
  border-style: dashed;
  animation: spin 28s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.career-card {
  width: calc(100% - 56px);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 22px 22px 72px 22px;
  padding: 18px 20px;
  box-shadow: 0 40px 100px rgba(6, 47, 120, 0.2);
  text-align: left;
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
}
.hero-score {
  padding: 0 20px;
  border-left: 1px solid var(--line);
}
.hero-score strong,
.hero-score span {
  display: block;
}
.hero-score strong {
  font: 800 30px Manrope;
  color: var(--blue);
  line-height: 1;
}
.hero-score span {
  font-size: 10px;
  color: var(--muted);
  margin-top: 6px;
}
.hero-next {
  min-width: 130px;
}
.hero-next small {
  font-size: 8px;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.hero-next h3 {
  font-size: 15px;
  margin: 3px 0 8px;
}
.hero-next .progress {
  margin: 0;
}
.card-top {
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: left;
  color: var(--muted);
  font-size: 12px;
}
.card-top i {
  margin-left: auto;
  color: #16834b;
  font-style: normal;
  background: #e9f8f0;
  border-radius: 20px;
  padding: 4px 8px;
}
.mini-logo {
  background: var(--navy);
  color: white;
  border-radius: 8px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  font-weight: 800;
}
.score-ring {
  margin: 28px auto 18px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(closest-side, #fff 76%, transparent 77%),
    conic-gradient(var(--cyan) 0 82%, #e8edf3 82%);
  box-shadow: 0 8px 30px rgba(54, 183, 232, 0.13);
}
.score-ring strong {
  font: 800 37px Manrope;
  color: var(--navy);
}
.score-ring small {
  font-size: 11px;
  color: var(--muted);
}
.career-card h3 {
  margin: 0;
  font-size: 20px;
}
.career-card p {
  font-size: 12px;
  color: var(--muted);
}
.progress {
  height: 5px;
  background: #e6edf4;
  border-radius: 10px;
  overflow: hidden;
  margin: 19px 0;
}
.progress i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}
.career-card button {
  border: 0;
  background: var(--navy);
  color: #fff;
  width: 100%;
  border-radius: 10px;
  padding: 12px;
  font-weight: 700;
}
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 11px;
  background: #fff;
  border: 1px solid #edf1f5;
  border-radius: 15px;
  padding: 13px 16px;
  box-shadow: var(--shadow);
  z-index: 3;
}
.float-card b,
.float-card small {
  display: block;
}
.float-card b {
  font-size: 12px;
}
.float-card small {
  font-size: 10px;
  color: var(--muted);
}
.fc-one {
  left: -20px;
  top: 25%;
}
.fc-two {
  right: -20px;
  top: 40%;
}
.fc-three {
  right: 28px;
  left: auto;
  bottom: 142px;
}
.icon-chip {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
}
.purple {
  background: #f1e9fb;
  color: #7222a4;
}
.orange {
  background: #fff0e5;
  color: var(--orange);
}
.avatars {
  display: flex;
}
.avatars i {
  width: 29px;
  height: 29px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e1edff;
  color: var(--blue);
  border: 2px solid white;
  font-size: 9px;
  font-style: normal;
  margin-left: -7px;
}
.avatars i:first-child {
  margin: 0;
}
.logo-strip {
  text-align: center;
  padding: 26px 5vw;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.logo-strip p {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 10px;
  color: #8b96a6;
}
.logo-strip div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  color: #637086;
  font: bold 12px Manrope;
  letter-spacing: 0.1em;
}
.logo-strip i {
  width: 4px;
  height: 4px;
  background: var(--cyan);
  border-radius: 50%;
}
.section {
  padding: 110px max(7vw, 60px);
}
.section-kicker {
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.17em;
  margin-bottom: 24px;
}
.split-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: end;
}
.split-heading h2,
.center-heading h2,
.ai-copy h2,
.journey-intro h2 {
  font-size: clamp(38px, 4vw, 60px);
  letter-spacing: -0.045em;
  margin: 0;
}
.split-heading p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}
.challenge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 70px;
  border-top: 1px solid var(--line);
}
.challenge-grid article {
  padding: 30px 28px 20px 0;
  border-right: 1px solid var(--line);
  min-height: 225px;
}
.challenge-grid article + article {
  padding-left: 28px;
}
.challenge-grid span {
  font: bold 11px Manrope;
  color: var(--cyan);
}
.challenge-grid h3 {
  font-size: 22px;
  margin: 40px 0 10px;
}
.challenge-grid p {
  font-size: 14px;
  color: var(--muted);
}
.journey-section {
  background: var(--navy);
  color: white;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  position: relative;
  overflow: hidden;
}
.journey-section:after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.07);
  left: -250px;
  bottom: -300px;
}
.light {
  color: #80d8fa;
}
.journey-intro {
  position: sticky;
  top: 130px;
  height: max-content;
}
.journey-intro h2 {
  margin: 25px 0;
}
.journey-intro h2 em {
  color: #6ccdf1;
}
.journey-intro p {
  color: #9eacc1;
  max-width: 470px;
}
.button-light {
  background: white;
  color: var(--navy);
  margin-top: 24px;
}
.journey-list article {
  display: grid;
  grid-template-columns: 62px 60px 1fr;
  gap: 18px;
  align-items: start;
  padding: 33px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.journey-list article > span {
  font: 700 11px Manrope;
  color: #7890af;
}
.journey-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(112, 214, 250, 0.45);
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #79d9fb;
}
.journey-list h3 {
  font-size: 24px;
  margin: 0 0 8px;
}
.journey-list p {
  color: #9eacc1;
  font-size: 14px;
  margin: 0;
}
.ai-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: center;
  background: var(--cream);
}
.ai-visual {
  height: 560px;
  position: relative;
  display: grid;
  place-items: center;
  background: radial-gradient(
    circle,
    rgba(54, 183, 232, 0.16),
    transparent 59%
  );
}
.ai-visual:before,
.ai-visual:after {
  content: "";
  position: absolute;
  border: 1px solid #d2dfeb;
  border-radius: 50%;
}
.ai-visual:before {
  width: 350px;
  height: 350px;
}
.ai-visual:after {
  width: 500px;
  height: 500px;
  border-style: dashed;
}
.ai-core {
  z-index: 2;
  width: 205px;
  height: 205px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(145deg, var(--blue), var(--navy));
  color: white;
  box-shadow: 0 25px 70px rgba(6, 47, 120, 0.28);
}
.ai-core span {
  font-size: 30px;
  color: #74dcff;
}
.ai-core b {
  font: 700 18px Manrope;
}
.ai-core small {
  font-size: 10px;
  color: #a9c6df;
}
.agent-node {
  position: absolute;
  z-index: 3;
  border: 1px solid var(--line);
  background: white;
  padding: 10px 14px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(10, 40, 80, 0.08);
}
.n1 {
  top: 9%;
  left: 38%;
}
.n2 {
  top: 25%;
  right: 3%;
}
.n3 {
  bottom: 22%;
  right: 2%;
}
.n4 {
  bottom: 7%;
  left: 38%;
}
.n5 {
  bottom: 24%;
  left: 1%;
}
.n6 {
  top: 26%;
  left: 1%;
}
.ai-copy h2 {
  margin: 24px 0;
}
.ai-copy > p {
  color: var(--muted);
  font-size: 17px;
}
.check-list {
  list-style: none;
  margin: 28px 0;
  padding: 0;
}
.check-list li {
  display: flex;
  gap: 15px;
  margin: 20px 0;
}
.check-list li > span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #dff6ef;
  color: #16835b;
  display: grid;
  place-items: center;
  font-size: 12px;
}
.check-list b,
.check-list small {
  display: block;
}
.check-list small {
  color: var(--muted);
  margin-top: 3px;
}
.text-arrow {
  font-weight: 800;
  color: var(--blue);
  display: inline-flex;
  gap: 20px;
}
.outcomes {
  background: #fff;
}
.outcome-panel {
  height: 610px;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  margin-top: 65px;
}
.outcome-panel > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.outcome-panel:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 23, 53, 0.93),
    rgba(5, 23, 53, 0.18) 75%
  );
}
.outcome-overlay {
  position: absolute;
  z-index: 2;
  left: 7%;
  top: 50%;
  transform: translateY(-50%);
  max-width: 530px;
  color: white;
}
.outcome-overlay > span {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #79d8fb;
}
.outcome-overlay h3 {
  font-size: 42px;
  line-height: 1.2;
  margin: 18px 0 44px;
}
.metric-row {
  display: flex;
  gap: 44px;
}
.metric-row b,
.metric-row small {
  display: block;
}
.metric-row b {
  font: 800 32px Manrope;
  color: #79d8fb;
}
.metric-row small {
  font-size: 11px;
  color: #c2ccd9;
}
.audiences {
  background: #f5f9fc;
}
.center-heading {
  text-align: center;
}
.center-heading .eyebrow {
  justify-content: center;
}
.center-heading h2 {
  margin: 24px 0 55px;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.audience-card {
  min-height: 380px;
  padding: 34px;
  border-radius: 22px;
  color: white;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}
.audience-card:after {
  content: "↗";
  position: absolute;
  right: -20px;
  bottom: -42px;
  font-size: 190px;
  opacity: 0.05;
  font-family: Manrope;
}
.audience-card:hover {
  transform: translateY(-8px);
}
.audience-card > span {
  letter-spacing: 0.16em;
  font-size: 10px;
  font-weight: 800;
}
.audience-card h3 {
  font-size: 29px;
  margin: 78px 0 14px;
}
.audience-card p {
  font-size: 14px;
  opacity: 0.75;
}
.audience-card b {
  margin-top: auto;
  font-size: 13px;
}
.learner {
  background: linear-gradient(145deg, #155bb8, #063475);
}
.institute {
  background: linear-gradient(145deg, #097c8f, #053e55);
}
.employer {
  background: linear-gradient(145deg, #74239d, #3a155d);
}
.cta-band {
  padding: 80px max(7vw, 60px);
  background: linear-gradient(115deg, #1464c5, #07387e);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-band h2 {
  font-size: 45px;
  letter-spacing: -0.04em;
  margin: 16px 0 6px;
}
.cta-band p {
  color: #c5d9ee;
}
.button-white {
  background: #fff;
  color: var(--navy);
}
.site-footer {
  padding: 70px max(7vw, 60px) 25px;
  background: #071426;
  color: #aab5c6;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 60px;
}
.footer-brand img {
  width: 170px;
  filter: none;
}
.footer-brand {
  width: max-content;
  height: max-content;
  align-self: start;
  padding: 5px 10px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}
.footer-top > p {
  font: 600 22px Manrope;
  color: white;
  margin: 0;
}
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links b {
  color: white;
  font-size: 12px;
  margin-bottom: 8px;
}
.footer-links a {
  font-size: 13px;
}
.footer-links a:hover {
  color: #70d4f8;
}
.footer-bottom {
  border-top: 1px solid #243246;
  margin-top: 50px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.back-top {
  background: none;
  border: 0;
  color: #aab5c6;
  cursor: pointer;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.delay {
  transition-delay: 0.18s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
/* Inner pages */
.page-hero {
  padding: 180px max(7vw, 60px) 100px;
  min-height: 620px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
  background: linear-gradient(135deg, #fff, #eef8ff);
  overflow: hidden;
}
.page-hero h1 {
  font-size: clamp(46px, 5vw, 72px);
}
.page-hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 620px;
}
.page-visual {
  height: 420px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}
.page-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 30, 67, 0.48), transparent);
}
.page-visual .caption {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: 24px;
  color: white;
}
.page-visual .caption b,
.page-visual .caption small {
  display: block;
}
.page-visual .caption b {
  font: 700 22px Manrope;
}
.page-visual .caption small {
  opacity: 0.8;
}
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--navy);
  color: white;
  padding: 35px max(7vw, 60px);
}
.stats-band div {
  border-right: 1px solid #29405e;
  padding: 4px 30px;
}
.stats-band div:first-child {
  padding-left: 0;
}
.stats-band b {
  display: block;
  font: 800 32px Manrope;
  color: #73d7fa;
}
.stats-band span {
  font-size: 12px;
  color: #adbacb;
}
.feature-row {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 9vw;
  align-items: center;
  padding: 90px 0;
  border-bottom: 1px solid var(--line);
}
.feature-row.reverse {
  grid-template-columns: 1.15fr 0.85fr;
}
.feature-row.reverse .feature-copy {
  order: 2;
}
.feature-copy > span {
  font-size: 11px;
  color: var(--blue);
  font-weight: 800;
  letter-spacing: 0.14em;
}
.feature-copy h2 {
  font-size: 42px;
  letter-spacing: -0.04em;
  margin: 16px 0;
}
.feature-copy p {
  color: var(--muted);
}
.feature-copy ul {
  padding: 0;
  list-style: none;
}
.feature-copy li {
  margin: 13px 0;
  padding-left: 25px;
  position: relative;
}
.feature-copy li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #178a66;
  font-weight: bold;
}
.feature-media {
  background: #eef7fc;
  border-radius: 25px;
  min-height: 390px;
  padding: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-media img {
  border-radius: 17px;
  width: 100%;
  height: 330px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(6, 47, 120, 0.15);
}
.builder-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 55px;
}
.builder-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  transition: 0.25s;
}
.builder-card:hover {
  border-color: #9bceed;
  box-shadow: 0 18px 50px rgba(11, 42, 82, 0.1);
  transform: translateY(-3px);
}
.builder-card > span {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #eaf6ff;
  color: var(--blue);
  font-weight: 800;
}
.builder-card h3 {
  margin: 0 0 7px;
}
.builder-card p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}
.quote-panel {
  background: var(--sky);
  border-radius: 28px;
  padding: 60px;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 50px;
}
.quote-panel span {
  color: var(--blue);
  font-weight: 800;
  letter-spacing: 0.15em;
  font-size: 11px;
}
.quote-panel blockquote {
  font: 600 30px/1.4 Manrope;
  margin: 0;
}
.accordion {
  max-width: 920px;
  margin: 50px auto;
}
.accordion-item {
  border-top: 1px solid var(--line);
}
.accordion-item button {
  width: 100%;
  border: 0;
  background: none;
  text-align: left;
  padding: 23px 0;
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  cursor: pointer;
}
.accordion-item .answer {
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  transition: 0.35s;
}
.accordion-item.open .answer {
  max-height: 180px;
  padding-bottom: 25px;
}
.accordion-item.open button span {
  transform: rotate(45deg);
}
.contact-wrap {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}
.contact-info h2 {
  font-size: 45px;
}
.contact-info p {
  color: var(--muted);
}
.contact-detail {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}
.contact-detail b,
.contact-detail span {
  display: block;
}
.contact-detail span {
  color: var(--muted);
  font-size: 13px;
}
.contact-form {
  background: #f5f9fc;
  border-radius: 25px;
  padding: 38px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-form label {
  font-size: 12px;
  font-weight: 700;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  padding: 13px;
  margin-top: 7px;
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
}
.contact-form .full {
  grid-column: 1/-1;
}
.contact-form textarea {
  height: 130px;
  resize: vertical;
}
.form-success {
  grid-column: 1/-1;
  text-align: center;
  padding: 70px 20px;
}
.form-success > span {
  display: grid;
  place-items: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #dcf6ec;
  color: #148159;
  margin: auto;
  font-size: 25px;
}
.form-success h3 {
  font-size: 25px;
}
.form-success p {
  color: var(--muted);
}
@media (max-width: 1000px) {
  .desktop-nav {
    position: fixed;
    inset: 88px 0 auto;
    background: #fff;
    display: none;
    flex-direction: column;
    padding: 30px;
  }
  .menu-open .desktop-nav {
    display: flex;
  }
  .site-header > .button {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .page-hero {
    grid-template-columns: 1fr;
    padding-top: 140px;
  }
  .hero {
    min-height: auto;
    padding-left: 30px;
    padding-right: 30px;
    grid-template-columns: minmax(330px, 0.9fr) minmax(390px, 1.1fr);
    gap: 32px;
  }
  .hero-visual {
    margin-top: 20px;
  }
  .challenge-grid {
    grid-template-columns: 1fr 1fr;
  }
  .journey-section,
  .ai-section {
    grid-template-columns: 1fr;
  }
  .journey-intro {
    position: relative;
    top: auto;
  }
  .audience-grid {
    grid-template-columns: 1fr;
  }
  .feature-row,
  .feature-row.reverse {
    grid-template-columns: 1fr;
  }
  .feature-row.reverse .feature-copy {
    order: 0;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-links {
    grid-column: 1/-1;
  }
  .contact-wrap {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .site-header {
    padding: 0 20px;
    height: 75px;
  }
  .brand img {
    width: 145px;
  }
  .hero,
  .page-hero,
  .section {
    padding: 120px 22px 65px;
  }
  .hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual";
    gap: 30px;
  }
  .hero-copy h1 {
    font-size: 46px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .hero-trust {
    flex-wrap: wrap;
  }
  .hero-visual {
    height: 510px;
    transform: scale(0.82);
    margin: -20px -55px;
  }
  .career-card {
    grid-template-columns: 1fr auto;
    width: calc(100% - 36px);
    left: 18px;
    bottom: 18px;
    border-radius: 20px 20px 54px 20px;
  }
  .hero-next {
    display: none;
  }
  .fc-one {
    left: 8px;
  }
  .fc-two {
    right: 8px;
  }
  .fc-three {
    display: none;
  }
  .visual-label {
    left: 20px;
    top: 20px;
  }
  .logo-strip div {
    gap: 12px;
    flex-wrap: wrap;
  }
  .split-heading {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .challenge-grid,
  .builder-grid {
    grid-template-columns: 1fr;
  }
  .journey-section {
    padding-top: 75px;
  }
  .ai-visual {
    height: 460px;
    transform: scale(0.82);
    margin: -20px -50px;
  }
  .outcome-panel {
    height: 550px;
  }
  .outcome-overlay {
    left: 25px;
    right: 25px;
  }
  .outcome-overlay h3 {
    font-size: 32px;
  }
  .metric-row {
    gap: 20px;
  }
  .audiences {
    padding-top: 70px;
  }
  .cta-band {
    padding: 60px 24px;
    display: block;
  }
  .cta-band h2 {
    font-size: 36px;
  }
  .cta-band .button {
    margin-top: 20px;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-links {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .page-hero {
    gap: 30px;
  }
  .stats-band {
    grid-template-columns: 1fr 1fr;
    padding: 25px 22px;
  }
  .stats-band div {
    padding: 15px;
    border-bottom: 1px solid #29405e;
  }
  .feature-row {
    padding: 55px 0;
  }
  .quote-panel {
    grid-template-columns: 1fr;
    padding: 35px 25px;
  }
  .quote-panel blockquote {
    font-size: 23px;
  }
  .contact-form {
    grid-template-columns: 1fr;
    padding: 25px;
  }
  .contact-form .full {
    grid-column: auto;
  }
}
