:root {
  --ink: #181431;
  --violet: #33235f;
  --violet-2: #4a347c;
  --indigo: #111029;
  --teal: #10bfd1;
  --teal-2: #70f0f2;
  --silver: #85879a;
  --graphite: #353549;
  --line: rgba(74, 52, 124, 0.14);
  --line-strong: rgba(74, 52, 124, 0.24);
  --paper: #f7f6fb;
  --paper-2: #eeedf6;
  --white: #ffffff;
  --error: #ba2649;
  --success: #16815e;
  --shadow: 0 24px 70px rgba(30, 24, 64, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(16, 191, 209, 0.12), transparent 34rem),
    linear-gradient(180deg, #fbfbfe 0%, var(--paper) 42%, #f4f3f8 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(51, 35, 95, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(51, 35, 95, 0.055) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 88%);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.section {
  padding: 96px 0;
  position: relative;
}

.grid-bg {
  overflow: hidden;
}

.grid-bg::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.7;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 30;
  width: min(1180px, calc(100% - 32px));
  height: 68px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  transform: translateX(-50%);
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 45px rgba(31, 24, 66, 0.08);
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, top 0.25s ease, border-radius 0.25s ease;
}

.site-header.is-scrolled {
  top: 0;
  width: 100%;
  border-width: 0 0 1px;
  border-color: rgba(51, 35, 95, 0.13);
  border-radius: 0;
  background: rgba(252, 251, 255, 0.9);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-family: Sora, Inter, sans-serif;
  font-weight: 700;
  color: var(--violet);
}

.brand img {
  width: 104px;
  height: 46px;
  object-fit: contain;
  border-radius: 10px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.nav-links a {
  padding: 9px 12px;
  border-radius: 999px;
  color: #4f4d62;
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--violet);
  background: rgba(74, 52, 124, 0.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #3a2969, #24194d);
  box-shadow: 0 14px 30px rgba(34, 24, 73, 0.22), inset 0 0 0 1px rgba(112, 240, 242, 0.14);
}

.btn-primary:hover {
  box-shadow: 0 18px 34px rgba(34, 24, 73, 0.28), 0 0 0 3px rgba(16, 191, 209, 0.13), inset 0 0 0 1px rgba(112, 240, 242, 0.34);
}

.btn-secondary {
  color: var(--violet);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(74, 52, 124, 0.18);
}

.btn-secondary.dark {
  color: #f8fbff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.9rem;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 136px;
  background:
    radial-gradient(circle at 76% 24%, rgba(16, 191, 209, 0.18), transparent 24rem),
    linear-gradient(135deg, #fbfbff 0%, #f0eef8 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: 56px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--teal);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: Sora, Inter, sans-serif;
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.65rem, 4.8vw, 4.7rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
}

h3 {
  font-size: 1.15rem;
}

.hero-subhead,
.section-heading p,
.section-copy p,
.assignment-intro {
  color: #57536a;
  font-size: 1.08rem;
}

.hero-subhead {
  max-width: 720px;
  margin: 24px 0 12px;
  font-size: 1.2rem;
}

.support-line {
  margin: 0 0 30px;
  color: var(--graphite);
  font-weight: 700;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-hero-apply {
  min-height: 64px;
  padding: 0 34px;
  background: linear-gradient(135deg, var(--violet), var(--violet-2));
  box-shadow: 0 18px 42px rgba(51, 35, 95, 0.28);
  font-size: 1.08rem;
}

.centered {
  justify-content: center;
}

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

.company-visual {
  position: relative;
  min-height: 500px;
  border: 1px solid rgba(74, 52, 124, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(rgba(51, 35, 95, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(51, 35, 95, 0.075) 1px, transparent 1px),
    radial-gradient(circle at 72% 28%, rgba(16, 191, 209, 0.18), transparent 14rem),
    rgba(255, 255, 255, 0.7);
  background-size: 28px 28px, 28px 28px, auto, auto;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.visual-logo-card,
.floating-card,
.visual-timeline {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(74, 52, 124, 0.16);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 45px rgba(30, 24, 64, 0.12);
  backdrop-filter: blur(12px);
}

.visual-logo-card {
  top: 34px;
  left: 34px;
  width: 260px;
  padding: 18px;
  border-radius: 22px;
}

.visual-logo-card img {
  width: 120px;
  margin-bottom: 14px;
  border-radius: 10px;
}

.visual-logo-card span {
  color: var(--violet);
  font-family: Sora, Inter, sans-serif;
  font-weight: 800;
}

.visual-timeline {
  left: 34px;
  right: 34px;
  bottom: 36px;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 16px;
  border-radius: 18px;
}

.visual-timeline span,
.floating-card {
  color: var(--violet);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.82rem;
  font-weight: 800;
}

.visual-timeline b {
  height: 2px;
  background: linear-gradient(90deg, rgba(74, 52, 124, 0.16), var(--teal), rgba(74, 52, 124, 0.16));
}

.floating-card {
  display: grid;
  place-items: center;
  min-width: 148px;
  min-height: 82px;
  padding: 18px;
  border-radius: 20px;
}

.consulting {
  top: 175px;
  left: 46px;
}

.technology {
  top: 132px;
  right: 48px;
}

.ai-card {
  right: 86px;
  bottom: 144px;
  color: #063d45;
  border-color: rgba(16, 191, 209, 0.32);
  background: linear-gradient(135deg, rgba(112, 240, 242, 0.42), rgba(255, 255, 255, 0.86));
}

.line {
  position: absolute;
  z-index: 1;
  height: 2px;
  background: linear-gradient(90deg, rgba(74, 52, 124, 0.08), rgba(16, 191, 209, 0.75), rgba(74, 52, 124, 0.08));
  transform-origin: left center;
}

.line-a {
  top: 202px;
  left: 190px;
  width: 210px;
  transform: rotate(-17deg);
}

.line-b {
  top: 238px;
  left: 150px;
  width: 300px;
  transform: rotate(25deg);
}

.line-c {
  right: 154px;
  bottom: 202px;
  width: 150px;
  transform: rotate(82deg);
}

.diagram-shell {
  position: relative;
  height: 520px;
  padding: 26px;
  border: 1px solid rgba(74, 52, 124, 0.18);
  border-radius: 28px;
  background:
    linear-gradient(rgba(51, 35, 95, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(51, 35, 95, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 70% 30%, rgba(16, 191, 209, 0.18), transparent 13rem),
    rgba(255, 255, 255, 0.72);
  background-size: 26px 26px, 26px 26px, auto, auto;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.diagram-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 70px;
}

.diagram-node,
.decision-node {
  position: relative;
  z-index: 2;
  padding: 20px;
  border: 1px solid rgba(74, 52, 124, 0.18);
  border-radius: 20px;
  color: var(--violet);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 38px rgba(34, 24, 73, 0.1);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.84rem;
  font-weight: 700;
}

.node-wide {
  width: 72%;
}

.diagram-node.active {
  color: #053b43;
  border-color: rgba(16, 191, 209, 0.42);
  background: linear-gradient(135deg, rgba(112, 240, 242, 0.5), rgba(255, 255, 255, 0.86));
}

.decision-node {
  width: 68%;
  margin: 72px auto 0;
  color: #fff;
  background: linear-gradient(135deg, var(--violet), var(--indigo));
}

.connector {
  position: absolute;
  z-index: 1;
  height: 2px;
  background: linear-gradient(90deg, rgba(51, 35, 95, 0.18), var(--teal), rgba(51, 35, 95, 0.18));
  transform-origin: left center;
}

.c1 {
  top: 146px;
  left: 132px;
  width: 290px;
  transform: rotate(21deg);
}

.c2 {
  top: 290px;
  left: 104px;
  width: 360px;
}

.c3 {
  top: 388px;
  left: 218px;
  width: 180px;
  transform: rotate(31deg);
}

.pulse-dot {
  position: absolute;
  top: 254px;
  left: 49%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 12px rgba(16, 191, 209, 0.16), 0 0 36px rgba(16, 191, 209, 0.62);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.72fr);
  gap: 48px;
  align-items: center;
}

.section-copy,
.section-heading {
  max-width: 820px;
}

.section-heading {
  margin-bottom: 36px;
}

.section-heading p + p {
  margin-top: 10px;
}

.facts-card,
.standards-card,
.service-card,
.fit-card,
.assignment-card,
.premium-form,
.rules-card,
.industry-card,
.pillar-card,
.different-card,
.sector-card,
.customer-note,
.scope-card,
.check-card,
.gain-card,
.bridge-card,
.assignment-detail-card,
.upload-panel {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.standards-card,
.check-card {
  padding: 28px;
}

.standards-card h3,
.check-card h3 {
  margin-bottom: 14px;
}

.facts-card {
  padding: 24px;
  background:
    linear-gradient(rgba(74, 52, 124, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 52, 124, 0.05) 1px, transparent 1px),
    rgba(255, 255, 255, 0.82);
  background-size: 22px 22px;
}

.fact {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  color: #4d4962;
  border-bottom: 1px solid rgba(74, 52, 124, 0.1);
}

.fact:last-child {
  border-bottom: 0;
}

.fact span,
.icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  color: var(--violet);
  background: linear-gradient(135deg, rgba(16, 191, 209, 0.22), rgba(74, 52, 124, 0.1));
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.82rem;
  font-weight: 800;
}

.card-grid,
.industry-grid,
.pillar-grid,
.requirements-grid,
.ai-columns,
.split-cards {
  display: grid;
  gap: 20px;
}

.six-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.four-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.industry-card,
.pillar-card,
.different-card,
.gain-card {
  position: relative;
  padding: 24px;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card::before,
.industry-card::before,
.pillar-card::before,
.different-card::before,
.gain-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--violet), var(--teal));
}

.service-card:hover,
.industry-card:hover,
.pillar-card:hover,
.different-card:hover,
.gain-card:hover,
.sector-card:hover,
.scope-card:hover {
  transform: translateY(-5px);
  border-color: rgba(16, 191, 209, 0.32);
  box-shadow: 0 30px 70px rgba(30, 24, 64, 0.16);
}

.service-card h3,
.industry-card h3,
.pillar-card h3,
.different-card h3,
.gain-card h3 {
  margin: 18px 0 10px;
}

.service-card p,
.industry-card p,
.pillar-card p,
.different-card p,
.gain-card p,
.dark-card p,
.fit-card li,
.requirements-card li,
.assignment-card li {
  color: #59566c;
}

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

.history-timeline {
  display: grid;
  grid-template-columns: repeat(8, minmax(180px, 1fr));
  gap: 0;
  overflow-x: auto;
  padding: 32px 4px 10px;
}

.history-item {
  position: relative;
  min-width: 180px;
  padding: 46px 16px 0;
  border-top: 2px solid rgba(74, 52, 124, 0.18);
}

.history-item span {
  position: absolute;
  top: -18px;
  left: 14px;
  display: grid;
  place-items: center;
  min-width: 54px;
  height: 34px;
  padding: 0 10px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--violet), #26315f);
  font-family: "IBM Plex Mono", monospace;
  font-weight: 800;
}

.history-item p {
  color: #605d71;
  font-size: 0.94rem;
}

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

.sector-card {
  padding: 20px;
  color: var(--violet);
  font-family: Sora, Inter, sans-serif;
  font-weight: 800;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.customer-note {
  margin-top: 22px;
  padding: 24px;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.58);
}

.ai-use-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.bridge-section {
  background:
    radial-gradient(circle at 72% 34%, rgba(16, 191, 209, 0.16), transparent 20rem),
    linear-gradient(135deg, #f3f1fb, #ffffff);
}

.apply-hero {
  padding-top: 132px;
  background:
    radial-gradient(circle at 70% 20%, rgba(16, 191, 209, 0.16), transparent 22rem),
    linear-gradient(135deg, #fbfbff, #f0eef8);
}

.home-return {
  min-height: 58px;
  padding: 0 28px;
  margin-bottom: 34px;
  border-radius: 16px;
  font-size: 1.02rem;
}

.bridge-card {
  position: relative;
  z-index: 1;
  max-width: 920px;
  padding: clamp(28px, 5vw, 52px);
  overflow: hidden;
}

.bridge-card::after {
  position: absolute;
  right: 34px;
  bottom: 28px;
  width: 180px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--teal), var(--violet));
}

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

.scope-card {
  padding: 30px;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.gain-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gain-card {
  position: relative;
  padding: 24px;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.dark-section {
  color: #fff;
  background:
    radial-gradient(circle at 78% 18%, rgba(16, 191, 209, 0.22), transparent 22rem),
    linear-gradient(135deg, #100d25, #211849 52%, #111029);
}

.dark-section .section-heading h2,
.dark-section .section-heading p,
.dark-section .section-kicker,
.dark-section h3 {
  color: #fff;
}

.dark-section .section-heading p {
  color: #c9c8d8;
}

.ai-columns {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dark-card {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.055));
  box-shadow: 0 26px 58px rgba(0, 0, 0, 0.2);
}

.dark-card p,
.dark-card li {
  color: #d4d2df;
}

ul {
  padding-left: 18px;
}

li + li {
  margin-top: 7px;
}

.pipeline {
  display: grid;
  grid-template-columns: repeat(6, auto);
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  padding: 18px;
  border: 1px solid rgba(112, 240, 242, 0.24);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  overflow-x: auto;
}

.pipeline span {
  white-space: nowrap;
  color: #f7fbff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
}

.pipeline b {
  display: block;
  min-width: 34px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  box-shadow: 0 0 16px rgba(16, 191, 209, 0.55);
}

.industry-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.industry-card .label {
  color: var(--teal);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.program-section {
  background: linear-gradient(135deg, #f4f2fb, #fbfbff);
}

.pillar-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

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

.fit-card {
  padding: 32px;
}

.fit-card.muted {
  background: rgba(245, 244, 250, 0.88);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  padding-top: 28px;
}

.timeline-step {
  position: relative;
  padding: 42px 14px 0;
  border-top: 2px solid rgba(74, 52, 124, 0.18);
}

.timeline-step::before {
  position: absolute;
  top: -15px;
  left: 14px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--violet), var(--teal));
  content: attr(data-step);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  font-weight: 800;
}

.timeline-step p {
  color: #605d71;
  font-size: 0.95rem;
}

.form-section,
.upload-section {
  background: linear-gradient(180deg, rgba(238, 237, 246, 0.76), rgba(251, 251, 254, 0.95));
}

.premium-form {
  padding: clamp(22px, 4vw, 38px);
}

.premium-form h3 {
  margin: 26px 0 16px;
}

.premium-form h3:first-child {
  margin-top: 0;
}

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

label,
.chips-field,
.radio-row {
  color: #353349;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  margin-top: 7px;
  padding: 12px 14px;
  border: 1px solid rgba(74, 52, 124, 0.18);
  border-radius: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(16, 191, 209, 0.7);
  box-shadow: 0 0 0 4px rgba(16, 191, 209, 0.14);
}

.phone-row {
  display: grid;
  grid-template-columns: minmax(130px, 0.38fr) minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.phone-row select,
.phone-row input {
  margin-top: 7px;
}

.autocomplete-wrap {
  display: block;
  position: relative;
  width: 100%;
}

.phone-row .autocomplete-wrap input {
  margin-top: 7px;
}

.autocomplete-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 20;
  overflow: hidden;
  border: 1px solid rgba(74, 52, 124, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 42px rgba(30, 24, 64, 0.16);
}

.autocomplete-menu[hidden] {
  display: none;
}

.autocomplete-menu button {
  display: block;
  width: 100%;
  min-height: 42px;
  padding: 10px 14px;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-weight: 700;
}

.autocomplete-menu button:hover {
  color: var(--violet);
  background: rgba(16, 191, 209, 0.08);
}

.project-details[hidden] {
  display: none;
}

.field-invalid {
  border-color: var(--error);
}

.field-error {
  min-height: 18px;
  margin: 5px 0 0;
  color: var(--error);
  font-size: 0.84rem;
  font-weight: 700;
}

.full-label {
  display: block;
  margin-top: 16px;
}

.form-help {
  margin: -8px 0 14px;
  color: #686579;
  font-weight: 500;
}

.application-choice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
}

.choice-card {
  min-height: 190px;
  padding: 30px;
  border: 1px solid rgba(74, 52, 124, 0.16);
  border-radius: 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
  cursor: pointer;
  text-align: left;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.choice-card:hover {
  transform: translateY(-3px);
  border-color: rgba(16, 191, 209, 0.45);
}

.choice-card strong,
.choice-card span {
  display: block;
}

.choice-card strong {
  margin-bottom: 12px;
  color: var(--violet);
  font-family: Sora, Inter, sans-serif;
  font-size: 1.25rem;
}

.choice-card span {
  color: #5d596f;
  font-weight: 700;
  line-height: 1.6;
}

.auth-card {
  max-width: 760px;
  margin: 0 auto;
}

.application-workspace {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.progress-nav {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(74, 52, 124, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.progress-nav button {
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: #454158;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-weight: 850;
}

.progress-nav button.is-active {
  border-color: rgba(16, 191, 209, 0.38);
  color: var(--violet);
  background: rgba(16, 191, 209, 0.09);
}

.progress-nav button.is-complete::after {
  content: "Saved";
  float: right;
  color: var(--teal);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  text-transform: uppercase;
}

.progress-nav button:disabled {
  cursor: not-allowed;
  opacity: 0.52;
}

.step-panels {
  min-width: 0;
}

.step-panel[hidden],
.credentials-card[hidden],
.application-workspace[hidden],
.application-choice[hidden],
.auth-card[hidden] {
  display: none;
}

.credentials-card {
  display: grid;
  gap: 20px;
}

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

.credential-grid article {
  padding: 16px;
  border: 1px solid rgba(74, 52, 124, 0.14);
  border-radius: 14px;
  background: rgba(246, 245, 251, 0.82);
}

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

.credential-grid span {
  margin-bottom: 6px;
  color: #686579;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  text-transform: uppercase;
}

.credential-grid strong {
  color: var(--violet);
  word-break: break-word;
}

.skill-builder,
.custom-skills {
  display: grid;
  gap: 12px;
}

.skill-domain {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(74, 52, 124, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
}

.skill-domain h4 {
  margin: 0;
  color: var(--violet);
  font-family: Sora, Inter, sans-serif;
  font-size: 1rem;
}

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

.skill-row,
.custom-skill-row {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 220px auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(74, 52, 124, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.62);
}

.skill-row {
  grid-template-columns: minmax(180px, 1fr) 220px;
}

.skill-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
}

.skill-toggle input {
  width: auto;
  min-height: auto;
  margin: 0;
}

.custom-skill-row button,
.ghost-button {
  min-height: 42px;
  border: 1px solid rgba(74, 52, 124, 0.18);
  border-radius: 12px;
  color: var(--violet);
  background: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  font-weight: 800;
}

.ghost-button {
  margin-top: 12px;
  padding: 0 16px;
}

fieldset {
  margin: 0 0 16px;
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 10px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(74, 52, 124, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  cursor: pointer;
  font-size: 0.92rem;
}

.chip input {
  width: auto;
  min-height: auto;
  margin: 0;
}

.radio-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.radio-row input,
.check-line input {
  width: auto;
  min-height: auto;
  margin: 0 8px 0 0;
}

.check-line {
  display: flex;
  align-items: center;
  margin-top: 12px;
}

.form-status {
  display: none;
  margin: 18px 0;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 700;
}

.form-status.is-error {
  display: block;
  color: var(--error);
  background: rgba(186, 38, 73, 0.08);
}

.form-status.is-success {
  display: block;
  color: var(--success);
  background: rgba(22, 129, 94, 0.09);
}

.assignment-card {
  padding: clamp(22px, 4vw, 38px);
}

.requirements-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 24px 0;
}

.requirements-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
}

.bonus-box,
.submission-box {
  padding: 20px;
  margin-top: 16px;
  border: 1px solid rgba(16, 191, 209, 0.22);
  border-radius: 18px;
  background: rgba(16, 191, 209, 0.055);
}

.criteria-table {
  width: 100%;
  margin-top: 24px;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 0 0 1px var(--line);
}

.criteria-table th,
.criteria-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.criteria-table th {
  color: #fff;
  background: var(--violet);
}

.criteria-table tr:last-child td {
  border-bottom: 0;
}

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

.assignment-choice-section {
  background: linear-gradient(180deg, rgba(251, 251, 254, 0.94), rgba(238, 237, 246, 0.72));
  transition: opacity 0.35s ease, filter 0.35s ease;
}

.assignment-choice-section[hidden] {
  display: none;
}

.assignment-choice-section.is-locked .assignment-details {
  opacity: 0.42;
  filter: grayscale(0.25);
  pointer-events: none;
}

.assignment-choice-section.is-locked .section-heading::after {
  display: inline-flex;
  margin-top: 16px;
  padding: 8px 12px;
  border: 1px solid rgba(74, 52, 124, 0.14);
  border-radius: 12px;
  color: var(--violet);
  background: rgba(255, 255, 255, 0.76);
  content: "Complete the profile form and click Next to unlock the assignment and upload step.";
  font-size: 0.92rem;
  font-weight: 800;
}

.step-back {
  margin: -12px 0 22px;
}

.assignment-details {
  display: grid;
  gap: 20px;
}

.assignment-detail-card {
  padding: clamp(22px, 4vw, 34px);
}

.assignment-detail-card h3 {
  margin-bottom: 14px;
}

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

.assignment-detail-card {
  padding: 22px;
  border: 1px solid rgba(74, 52, 124, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.assignment-detail-card h4 {
  margin: 22px 0 8px;
  color: var(--violet);
  font-family: Sora, Inter, sans-serif;
}

.assignment-detail-card ul {
  margin: 14px 0 0;
  padding-left: 20px;
  color: #454158;
  font-weight: 650;
  line-height: 1.65;
}

.upload-panel {
  margin-top: 18px;
  padding: 22px;
  box-shadow: none;
}

.upload-panel .check-line {
  width: fit-content;
  padding: 9px 12px;
  border: 1px solid rgba(16, 191, 209, 0.28);
  border-radius: 12px;
  color: var(--violet);
  background: rgba(16, 191, 209, 0.07);
}

.or-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 56px minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
}

.or-grid > strong {
  display: grid;
  min-height: 96px;
  place-items: center;
  color: var(--violet);
  font-family: "IBM Plex Mono", monospace;
}

.drop-file {
  min-height: 118px;
  padding: 16px;
  border: 1.5px dashed rgba(74, 52, 124, 0.28);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.68);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.drop-file input {
  margin-top: 8px;
}

.drop-file span {
  display: block;
  margin-top: 8px;
  color: #686579;
  font-size: 0.9rem;
  font-weight: 600;
}

.drop-file.is-dragover {
  border-color: var(--teal);
  background: rgba(16, 191, 209, 0.08);
}

.admin-results {
  margin-top: 42px;
}

.admin-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.admin-summary article,
.admin-table-wrap {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.admin-summary article {
  padding: 22px;
}

.admin-summary strong {
  display: block;
  color: var(--violet);
  font-family: Sora, Inter, sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.admin-summary span {
  color: #5d596f;
  font-weight: 800;
}

.admin-table-wrap {
  margin-top: 18px;
  padding: 22px;
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(74, 52, 124, 0.12);
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: var(--violet);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  text-transform: uppercase;
}

.table-action {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(74, 52, 124, 0.18);
  border-radius: 10px;
  color: var(--violet);
  background: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  font-weight: 800;
}

.admin-detail {
  margin-top: 24px;
  padding: 26px;
  border: 1px solid rgba(16, 191, 209, 0.24);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.admin-detail[hidden] {
  display: none;
}

.detail-meta {
  color: #686579;
  font-weight: 700;
}

.detail-table {
  min-width: 680px;
}

.detail-table th {
  width: 240px;
}

.file-link-list {
  display: grid;
  gap: 10px;
  padding-left: 0;
  list-style: none;
}

.file-link-list li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(74, 52, 124, 0.12);
  border-radius: 12px;
  background: rgba(246, 245, 251, 0.78);
}

.file-link-list a {
  color: var(--violet);
  font-weight: 800;
}

.file-link-list span {
  color: #686579;
}

.empty-state {
  margin: 0;
  color: #686579;
  font-weight: 700;
}

.dropzone.compact {
  min-height: 126px;
  margin-top: 18px;
}

.dropzone {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 180px;
  padding: 22px;
  border: 1.5px dashed rgba(74, 52, 124, 0.3);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.64);
  text-align: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.dropzone.is-dragover {
  border-color: var(--teal);
  background: rgba(16, 191, 209, 0.08);
}

.dropzone input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.dropzone strong {
  color: var(--violet);
  font-family: Sora, Inter, sans-serif;
}

.dropzone span,
.file-name {
  color: #686579;
}

.rules-card {
  margin-top: 18px;
  padding: 18px 22px;
  box-shadow: none;
}

.progress-wrap {
  height: 12px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(74, 52, 124, 0.12);
}

.progress-bar {
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--violet), var(--teal));
  transition: width 0.25s ease;
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  overflow: hidden;
}

.faq-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 20px;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
  text-align: left;
}

.faq-button span {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-left: 12px;
  border-radius: 50%;
  color: var(--violet);
  background: rgba(74, 52, 124, 0.08);
}

.faq-panel {
  display: none;
  padding: 0 20px 18px;
  color: #59566c;
}

.faq-item.is-open .faq-panel {
  display: block;
}

.faq-item.is-open .faq-button span {
  color: #fff;
  background: var(--violet);
}

.final-cta {
  overflow: hidden;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 850px;
  text-align: center;
}

.final-cta h2 {
  color: #fff;
}

.final-cta p {
  color: #d7d5e3;
  font-size: 1.15rem;
}

.watermark {
  position: absolute;
  top: -50px;
  left: 50%;
  z-index: -1;
  color: rgba(255, 255, 255, 0.045);
  transform: translateX(-50%);
  font-family: Sora, Inter, sans-serif;
  font-size: clamp(7rem, 17vw, 15rem);
  font-weight: 800;
  line-height: 1;
}

.site-footer {
  padding: 42px 0;
  color: #d8d6e6;
  background: #0e0d1e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 34px;
  align-items: center;
}

.site-footer img {
  width: 112px;
  margin-bottom: 14px;
  border-radius: 10px;
}

.site-footer p {
  max-width: 420px;
  margin: 0;
}

.site-footer nav,
.contact-placeholders {
  display: grid;
  gap: 8px;
}

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

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .nav-links {
    display: none;
  }

  .hero-grid,
  .split-layout,
  .split-cards {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .six-grid,
  .industry-grid,
  .requirements-grid,
  .ai-columns,
  .service-grid,
  .ai-use-grid,
  .gain-grid,
  .sector-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .timeline-step {
    padding: 8px 0 20px 48px;
    border-top: 0;
    border-left: 2px solid rgba(74, 52, 124, 0.18);
  }

  .timeline-step::before {
    top: 0;
    left: -16px;
  }

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

  .history-timeline {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .history-item {
    min-width: 0;
    padding: 8px 0 24px 54px;
    border-top: 0;
    border-left: 2px solid rgba(74, 52, 124, 0.18);
  }

  .history-item span {
    top: 0;
    left: -17px;
  }

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

  .application-workspace {
    grid-template-columns: 1fr;
  }

  .progress-nav {
    position: static;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .progress-nav button {
    text-align: center;
  }

  .progress-nav button.is-complete::after {
    display: none;
  }

  .assignment-details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 72px 0;
  }

  .site-header {
    width: calc(100% - 18px);
    height: 64px;
    gap: 10px;
    padding: 8px;
    border-radius: 18px;
  }

  .brand span {
    max-width: 92px;
    font-size: 0.86rem;
    line-height: 1.15;
  }

  .brand img {
    width: 82px;
    height: 38px;
  }

  .btn-small {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
  }

  h1 {
    font-size: clamp(2.35rem, 10vw, 3.45rem);
  }

  .hero-subhead {
    font-size: 1.05rem;
  }

  .diagram-shell {
    height: auto;
    min-height: 440px;
    padding: 18px;
  }

  .diagram-row {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .node-wide,
  .decision-node {
    width: 100%;
  }

  .decision-node {
    margin-top: 18px;
  }

  .connector,
  .pulse-dot {
    display: none;
  }

  .six-grid,
  .industry-grid,
  .requirements-grid,
  .ai-columns,
  .pillar-grid,
  .four-grid,
    .service-grid,
    .ai-use-grid,
    .gain-grid,
    .sector-grid,
    .form-grid,
    .upload-grid,
    .application-choice,
    .credential-grid,
    .footer-grid {
    grid-template-columns: 1fr;
  }

  .progress-nav {
    grid-template-columns: 1fr 1fr;
  }

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

  .or-grid > strong {
    min-height: 28px;
  }

  .company-visual {
    min-height: 420px;
  }

  .visual-logo-card {
    top: 18px;
    left: 18px;
    right: 18px;
    width: auto;
  }

  .floating-card {
    min-width: 126px;
    min-height: 66px;
    padding: 14px;
  }

  .consulting {
    top: 170px;
    left: 20px;
  }

  .technology {
    top: 164px;
    right: 20px;
  }

  .ai-card {
    right: 50%;
    bottom: 100px;
    transform: translateX(50%);
  }

  .line {
    display: none;
  }

  .visual-timeline {
    left: 18px;
    right: 18px;
    bottom: 18px;
    grid-template-columns: repeat(5, auto);
    justify-content: space-between;
    gap: 8px;
  }

  .visual-timeline b {
    display: none;
  }

  .skill-row,
  .custom-skill-row,
  .skill-domain-grid {
    grid-template-columns: 1fr;
  }

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

  .pipeline b {
    width: 2px;
    min-width: 2px;
    height: 22px;
    margin: 0 auto;
    background: linear-gradient(180deg, transparent, var(--teal), transparent);
  }

  .premium-form,
  .assignment-card,
  .fit-card {
    border-radius: 18px;
  }
}
