/* ─── DESIGN TOKENS ─────────────────────────────────────── */
:root {
  --soil: #1c1510;
  --bark: #2e2219;
  --walnut: #3d2e1e;
  --umber: #5c4433;
  --clay: #8c6a50;
  --sand: #c4a882;
  --wheat: #e0c99a;
  --linen: #f0e8d8;
  --cream: #f8f3ea;
  --white: #fdfaf5;
  --parchment: #f8f3ec;
  --blush: #fffdec;
  --paper: #f6f4f9;

  --sage: #4a6350;
  --sage-lt: #7a9c82;
  --sage-dk: #2d3d32;
  --moss: #3a5040;

  --rose: #be2c7f;
  --yellow: #e4c35c;
  --yellow-dark: #a98f30;
  --blue: #062bff;
  --border: #e2d5c4;
  --green: #007a3d;
  --orange: #e84c02;

  --terracotta: #b85c38;
  --terra-dk: #8f4226;
  --terra-lt: #d4836a;
  --terra-glow: rgba(184, 92, 56, 0.15);

  --gold: #c09040;
  --gold-lt: #d4b060;

  --border-lt: #e8dece;
  --border-dk: rgba(255, 255, 255, 0.08);
  --shadow-sm: 0 2px 16px rgba(28, 21, 16, 0.08);
  --shadow: 0 8px 40px rgba(28, 21, 16, 0.12);
  --shadow-lg: 0 24px 80px rgba(28, 21, 16, 0.18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: "Neue Haas Grotesk Display Pro";

  background: var(--parchment);

  color: var(--ink);

  line-height: 1.65;

  overflow-x: hidden;
}

@font-face {
  font-family: "Neue Haas Grotesk Display Pro";

  src: url("../fonts/NeueHaasDisplay-Bold.eot");

  src:
    url("../fonts/NeueHaasDisplay-Bold.eot?#iefix") format("embedded-opentype"),
    url("../fonts/NeueHaasDisplay-Bold.woff2") format("woff2"),
    url("../fonts/NeueHaasDisplay-Bold.woff") format("woff"),
    url("../fonts/NeueHaasDisplay-Bold.ttf") format("truetype"),
    url("../fonts/NeueHaasDisplay-Bold.svg#NeueHaasDisplay-Bold") format("svg");

  font-weight: bold;

  font-style: normal;

  font-display: swap;
}

@font-face {
  font-family: "Neue Haas Grotesk Display Pro";

  src: url("../fonts/NeueHaasDisplay-Light.eot");

  src:
    url("../fonts/NeueHaasDisplay-Light.eot?#iefix") format("embedded-opentype"),
    url("../fonts/NeueHaasDisplay-Light.woff2") format("woff2"),
    url("../fonts/NeueHaasDisplay-Light.woff") format("woff"),
    url("../fonts/NeueHaasDisplay-Light.ttf") format("truetype"),
    url("../fonts/NeueHaasDisplay-Light.svg#NeueHaasDisplay-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue Haas Grotesk Display Pro";
  src: url("../fonts/NeueHaasDisplay-Mediu.eot");
  src:
    url("../fonts/NeueHaasDisplay-Mediu.eot?#iefix") format("embedded-opentype"),
    url("../fonts/NeueHaasDisplay-Mediu.woff2") format("woff2"),
    url("../fonts/NeueHaasDisplay-Mediu.woff") format("woff"),
    url("../fonts/NeueHaasDisplay-Mediu.ttf") format("truetype"),
    url("../fonts/NeueHaasDisplay-Mediu.svg#NeueHaasDisplay-Mediu") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
h1,
h2,
h3,
h4 {
  font-family: "Neue Haas Grotesk Display Pro";
  line-height: 1.15;
  letter-spacing: -0.01em;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ─── NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: #000;
  backdrop-filter: blur(16px);
  border-bottom: none;
  padding: 14px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: "Syne", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
}
.nav-logo span {
  color: var(--electric-lt);
}
.nav-pill {
  padding: 5px 14px;
  border-radius: 20px;
  background: rgba(91, 79, 245, 0.2);
  border: 1px solid rgba(91, 79, 245, 0.4);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--electric-lt);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.btn-nav-call {
  display: flex;
  align-items: center;
  gap: 6px;

  border: 1.5px solid var(--rose);
  color: var(--rose);

  padding: 8px 18px;
  border-radius: 3px;

  font-size: 0.82rem;
  font-weight: 500;

  transition: all 0.2s;
}

.btn-nav-apply {
  background: var(--rose);
  color: #fff;
  padding: 9px 22px;
  border-radius: 3px;

  font-size: 0.82rem;
  font-weight: 700;

  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s;
}

.btn-nav-apply:hover {
  background: #971961;
}
.btn-nav-ghost {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.2s;
}
.btn-nav-ghost:hover {
  border-color: var(--electric-lt);
  color: var(--white);
}
.btn-nav-cta {
  background: var(--electric);
  color: var(--white);
  padding: 9px 22px;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition:
    background 0.2s,
    box-shadow 0.2s;
}
.btn-nav-cta:hover {
  background: var(--electric-dk);
  box-shadow: var(--glow-e);
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding: 120px 0 80px;
  background: url(../images/main-bg.webp) center center no-repeat;
  background-size: cover;
  overflow: hidden;
}
/* textural noise layer */
.hero-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 55% at 70% 30%, rgba(184, 92, 56, 0.14) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 75%, rgba(74, 99, 80, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(192, 144, 64, 0.06) 0%, transparent 55%);
}
/* subtle grid */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, black 0%, transparent 80%);
}
/* vertical rule accent */
.hero::after {
  content: "";
  position: absolute;
  top: 80px;
  right: 440px;
  width: 1px;
  height: 80%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 255, 255, 0.06) 30%,
    rgba(255, 255, 255, 0.06) 70%,
    transparent 100%
  );
  pointer-events: none;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* HERO LEFT */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.live-chip {
  display: flex;
  align-items: center;
  gap: 6px;
}
.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terra-lt);
  animation: breathe 2s ease infinite;
}
@keyframes breathe {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}
.live-chip span {
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(3rem, 5.8vw, 5.4rem);
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: 300;
}
.hero h1 .italic-accent {
  display: block;
  font-style: italic;
  font-weight: 300;
  font-size: 0.75em;
  letter-spacing: 0.01em;
  margin-top: 6px;
}
.hero-philosophy {
  font-style: italic;
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.6;
  font-weight: 300;
}
.hero-philosophy strong {
  font-style: normal;
  font-size: 18px;
  font-weight: 500;
}
.hero-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 20px 0 28px;
}
.hbadge {
  padding: 6px 14px;
  border-radius: 2px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hbadge-fill {
  background: var(--terracotta);
  color: var(--white);
}
.hbadge-outline {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.65);
}
.hbadge-sage {
  background: rgba(74, 99, 80, 0.25);
  border: 1px solid rgba(74, 99, 80, 0.4);
  color: var(--sage-lt);
}

/* pillars preview */
.pillars-preview {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 30px;
}
.pillar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.pillar-row:hover {
  background: rgba(184, 92, 56, 0.08);
  border-color: rgba(184, 92, 56, 0.2);
}
.pr-icon {
  font-size: 1rem;
  width: 22px;
  text-align: center;
}
.pr-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}
.pr-badge {
  margin-left: auto;
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.06em;
}

.hero-stats {
  display: flex;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.h-stat-n {
  font-family: "Syne", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
}
.h-stat-l {
  font-size: 16px;
  margin-top: 4px;
  font-weight: 300;
  color: #fff;
}

/* FORM */
.hero-form {
  background: var(--white);
  border-radius: 10px;
  padding: 36px 30px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.hf-title {
  font-size: 1.3rem;
  color: var(--soil);
  margin-bottom: 4px;
}
.hf-sub {
  font-size: 0.79rem;
  color: var(--clay);
  margin-bottom: 22px;
}
.fg {
  margin-bottom: 13px;
}
.fg label {
  display: block;
  font-size: 0.71rem;
  font-weight: 700;
  color: var(--umber);
  margin-bottom: 5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.fg input,
.fg select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border-lt);
  border-radius: 4px;
  font-family: "Jost", sans-serif;
  font-size: 0.9rem;
  color: var(--soil);
  background: var(--linen);
  transition:
    border-color 0.2s,
    background 0.2s;
  appearance: none;
}
.fg input:focus,
.fg select:focus {
  outline: none;
  border-color: var(--terracotta);
  background: var(--white);
}
.fg input::placeholder {
  color: var(--sand);
}
.btn-submit-form {
  width: 100%;
  padding: 14px;
  background: var(--terracotta);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 4px;
  transition:
    background 0.2s,
    transform 0.15s;
}
.btn-submit-form:hover {
  background: var(--terra-dk);
  transform: translateY(-1px);
}
.form-trust {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
  justify-content: center;
}
.ft-item {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--clay);
  display: flex;
  align-items: center;
  gap: 4px;
}
.ft-item::before {
  content: "✓";
  color: var(--sage-lt);
  font-weight: 800;
}

/* ─── TRUST STRIP ────────────────────────────────────────── */
/* ── TRUST STRIP ─────────────────────────────────────────── */

.trust-strip {
  background: var(--rose);

  padding: 20px 0;
}

.trust-strip-inner {
  display: flex;
  align-items: center;

  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 0 20px;

  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-item:last-child {
  border-right: none;
}

.trust-icon {
  font-size: 1.3rem;
}

.trust-item-text strong {
  display: block;
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  line-height: 22px;
}

.trust-item-text span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
}

/* ─── SHARED ────────────────────────────────────────────── */
.sec-lbl {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.sec-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--soil);
  margin-bottom: 14px;
  line-height: 1.1;
}
.rule-line {
  width: 44px;
  height: 2px;
  background: linear-gradient(90deg, var(--terracotta), var(--gold));
  border-radius: 2px;
  margin: 16px 0;
}
.pad {
  padding: 90px 0;
}
.pad-sm {
  padding: 72px 0;
}

/* ─── COURSE FIT ─────────────────────────────────────────── */
.course-fit {
  background: var(--blush);
}
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.fit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 26px 0 34px;
}
.fit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.fit-check {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  margin-top: 2px;
}
.fit-item-text strong {
  display: block;
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 2px;
  line-height: 1.2;
}
.fit-item-text span {
  font-size: 16px;
  color: var(--ash);
  font-weight: 300;
}
.btn-fit-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  background: var(--soil);
  color: var(--white);
  border-radius: 3px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.btn-fit-cta:hover {
  background: var(--green);
}

.elig-card {
  background: var(--white);
  border-radius: 10px;
  padding: 36px 32px;
  border: 1.5px solid var(--border-lt);
  box-shadow: var(--shadow);
}
.elig-card h3 {
  font-size: 1.3rem;
  color: var(--soil);
  margin-bottom: 6px;
}
.elig-card p {
  font-size: 16px;
  margin-bottom: 22px;
  line-height: 1.6;
  font-weight: 300;
}
.elig-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--parchment);
  border-radius: 6px;
  font-size: 16px;
  color: var(--carbon);
  margin: 0 0 10px;
  font-weight: 300;
}
.elig-row:last-of-type {
  margin-bottom: 24px;
}
.elig-icon {
  font-size: 1rem;
  width: 22px;
  text-align: center;
}
.elig-row span {
  font-size: 16px;
  line-height: 1.3;
}
.btn-elig {
  display: block;
  width: 100%;
  padding: 13px;
  background: var(--soil);
  color: var(--white);
  border-radius: 4px;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s;
}

/* ─── PROGRAM PHILOSOPHY / 10 PILLARS ───────────────────── */
.philosophy {
  background: var(--green);
}
.phil-intro {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}
.phil-intro .sec-title {
  color: var(--white);
}
.phil-intro .sec-title em {
  color: var(--terra-lt);
}
.phil-intro p {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  margin-top: 12px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.pillar-card {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: 26px 20px;
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.25s;
}
.pillar-card:hover {
  border-color: rgba(184, 92, 56, 0.3);
  transform: translateY(-4px);
}
.pc-num {
  font-family: "EB Garamond", serif;
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
}
.pc-icon {
  font-size: 1.4rem;
  margin-bottom: 10px;
  display: block;
}
.pc-icon img {
  max-height: 40px;
}
.pc-title {
  font-size: 16px;
  color: #000;
  margin-bottom: 7px;
  line-height: 1.3;
  font-weight: 500;
}
.pc-desc {
  font-size: 16px;
  color: #000;
  line-height: 1.4;
  font-weight: 300;
}

/* ─── YEAR-BY-YEAR JOURNEY ────────────────────────────────── */
.journey {
  background: var(--cream);
}
.journey-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 52px;
}
.years-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.year-card {
  background: var(--white);
  border-radius: 10px;
  border: 1.5px solid var(--border-lt);
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
}
.year-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--rose);
}
.yc-header {
  padding: 20px 22px 16px;
  background: var(--rose);
  position: relative;
  overflow: hidden;
}
.yc-header::after {
  content: "";
  position: absolute;
  right: -20px;
  top: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}
.yc-year {
  font-size: 13px;
  font-weight: 300;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.5;
}
.yc-title {
  font-size: 18px;
  color: #fff;
  line-height: 1.3;
  font-weight: 500;
}
.yc-subtitle {
  font-size: 14px;
  color: #fff;
  font-style: italic;
  line-height: 1.3;
  margin: 10px 0 0;
  font-weight: 300;
}
.yc-body {
  padding: 18px 22px;
}
.yc-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.yc-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 16px;
  color: #000;
  line-height: 1.4;
  font-weight: 300;
}
.yc-item::before {
  content: "▸";
  color: var(--terracotta);
  font-size: 0.7rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* NEP flex row */
.nep-row {
  background: var(--rose);
  border-radius: 8px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.nep-badge {
  padding: 6px 16px;
  border-radius: 2px;
  background: #fff;
  color: #000;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.nep-text {
  font-size: 17px;
  color: #fff;
  line-height: 1.5;
  font-weight: 300;
}

/* ─── KEY FOCUS AREAS ────────────────────────────────────── */
.focus-areas {
  background: var(--blue);
  color: #fff;
}
.focus-areas .sec-title {
  color: var(--white);
}
.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.focus-card {
  background: var(--white);
  border-radius: 10px;
  padding: 30px 26px;
  border: 1.5px solid var(--border-lt);
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
}
.focus-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--terra-lt);
}
.fc-icon-wrap {
  margin: 0 0 10px;
}
.fc-icon-wrap img {
  max-height: 60px;
}
.fc-title {
  font-size: 20px;
  margin-bottom: 7px;
  color: var(--soil);
}
.fc-desc {
  font-size: 16px;
  font-weight: 300;
  color: #000;
}
.fc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 12px;
}
.fc-tag {
  padding: 3px 9px;
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 600;
  background: #062bff0d;
  color: #062bff;
  border: 1px solid rgb(0 0 0 / 10%);
}

/* ─── CAREER OUTCOMES ────────────────────────────────────── */
.careers {
  background: var(--paper);
}
.careers-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 48px;
}
.roles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 26px;
}
.role-card {
  border: 1.5px solid var(--border-lt);
  border-radius: 8px;
  padding: 20px 18px;
  background: #fff;
  transition:
    border-color 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.role-card:hover {
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.rc-icon {
  margin-bottom: 7px;
}
.rc-icon img {
  max-height: 40px;
}
.rc-name {
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 4px;
  line-height: 1.1;
}
.rc-detail {
  font-size: 18px;
  color: var(--dim);
  line-height: 1.4;
  font-weight: 300;
}
.btn-careers-apply {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--green);
  color: var(--white);
  border-radius: 4px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.sp-row .sp-icon {
  width: 60px;
  margin-top: 5px;
}
.scope-panel {
  background: var(--green);
  border-radius: 10px;
  padding: 34px 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.sp-title {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.3;
  font-weight: 300;
}
.sp-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.sp-row:last-child {
  border-bottom: none;
}
.sp-icon {
  font-size: 1.1rem;
  margin-top: 1px;
}
.sp-head {
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 3px;
}
.sp-body {
  font-size: 16px;
  font-weight: 300;
  color: #fff;
  line-height: 1.5;
}

/* ─── WHY IMS DIA ────────────────────────────────────────── */
.why {
  background: var(--yellow);
}
.why-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 52px;
}
.why-header .sec-title {
  color: #000;
}
.why-header .sec-title em {
  color: var(--terra-lt);
}
.why-header p {
  color: #000;
  font-size: 16px;
  line-height: 1.7;
  margin-top: 10px;
  font-weight: 300;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.wc {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: 28px 24px;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
}
.wc:hover {
  border-color: rgba(184, 92, 56, 0.3);
  transform: translateY(-3px);
}
.wc-icon {
  margin-bottom: 14px;
}
.wc-icon img {
  max-height: 50px;
}
.wc-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--rose);
  margin-bottom: 8px;
  line-height: 1.2;
}
.wc-desc {
  font-size: 16px;
  color: #000;
  line-height: 1.6;
  font-weight: 300;
}
.wc-pill {
  display: inline-block;
  margin-top: 12px;
  padding: 3px 10px;
  border-radius: 3px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--rose);
  border: 1px solid rgba(34, 181, 160, 0.25);
  letter-spacing: 0.06em;
}

/* ─── FACILITIES ─────────────────────────────────────────── */
.facilities {
  background: var(--cream);
}
.fac-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.fac-card {
  background: var(--white);
  border-radius: 8px;
  border: 1.5px solid var(--border-lt);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 14px;
  gap: 10px;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
}
.fac-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--rose);
}
.fac-emoji {
  font-size: 1.8rem;
}
.fac-name {
  font-size: 18px;
  color: #000;
  line-height: 1.3;
  font-weight: 300;
}

/* ─── STUDENT WORK ───────────────────────────────────────── */
.student-work {
  background: var(--rose);
}
.sw-header {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 48px;
}
.sw-header .sec-title {
  color: var(--white);
}
.sw-header .sec-title em {
  color: var(--terra-lt);
}
.sw-header p {
  color: #fff;
  font-size: 16px;
  margin-top: 10px;
  line-height: 1.7;
  font-weight: 300;
}
.sw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sw-item {
  border-radius: 10px;
  overflow: hidden;
}
.sw-item img {
  width: 100%;
}
.sw-item .content {
  background: var(--blue);
  color: #fff;
  padding: 20px;
  text-align: center;
  font-weight: 300;
}
.sw-item .content .port-title {
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 5px;
}
.sw-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
.sw-a {
  background: linear-gradient(145deg, #2a1c12, #3d2514);
}
.sw-b {
  background: linear-gradient(145deg, #12201a, #1c3228);
}
.sw-c {
  background: linear-gradient(145deg, #1c1814, #2e2418);
}
.sw-emoji {
  font-size: 2.8rem;
  opacity: 0.25;
}
.sw-lbl {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.sw-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px 16px 16px;
  background: linear-gradient(transparent, rgba(28, 21, 16, 0.88));
  opacity: 0;
  transition: opacity 0.25s;
}
.sw-item:hover .sw-overlay {
  opacity: 1;
}
.sw-ov-title {
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.sw-ov-sub {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.7rem;
}

/* ─── MID FORM ──────────────────────────────────────────── */
.mid-form-section {
  background: var(--sage-dk);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.mid-form-section::before {
  content: "SPACES";
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 180px;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  white-space: nowrap;
}
.mid-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.mf-content h2 {
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 14px;
}
.mf-content p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 24px;
}
.mf-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mf-perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.75);
}
.mf-perk::before {
  content: "✓";
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--terracotta);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 800;
}
.mf-card {
  background: var(--white);
  border-radius: 10px;
  padding: 36px 30px;
  box-shadow: var(--shadow-lg);
}
.mf-card-title {
  font-size: 1.2rem;
  color: var(--soil);
  margin-bottom: 4px;
}
.mf-card-sub {
  font-size: 0.79rem;
  color: var(--clay);
  margin-bottom: 22px;
}

/* ─── ADMISSION ──────────────────────────────────────────── */
.admission {
  background: var(--cream);
}
.adm-header {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 52px;
}
.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}
.steps-row::before {
  content: "";
  position: absolute;
  top: 33px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--green);
  z-index: 0;
  opacity: 0.35;
}
.step-col {
  flex: 1;
  text-align: center;
  padding: 0 14px;
  position: relative;
  z-index: 1;
}
.step-circle {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.3rem;
  color: var(--green);
  box-shadow: 0 0 0 6px var(--cream);
  transition: all 0.2s;
}
.step-col:hover .step-circle {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  box-shadow: 0 0 0 6px var(--terra-glow);
}
.step-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}
.step-desc {
  font-size: 16px;
  color: #000;
  line-height: 1.55;
  font-weight: 300;
}
.adm-cta {
  text-align: center;
  margin-top: 50px;
}
.btn-adm {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 46px;
  background: var(--soil);
  color: var(--white);
  border-radius: 4px;
  font-size: 0.9rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition:
    background 0.2s,
    transform 0.15s;
}
.btn-adm:hover {
  background: var(--terracotta);
  transform: translateY(-2px);
}

/* ─── TESTIMONIALS ───────────────────────────────────────── */
.testi {
  background: var(--blue);
}
.testi .sec-title {
  color: #fff;
}
.testi-header {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 48px;
  color: #fff;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testi-card {
  background: var(--white);
  border-radius: 10px;
  padding: 30px 26px;
  border: 1.5px solid var(--border-lt);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  position: relative;
}
.testi-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.tq-mark {
  font-size: 4.5rem;
  line-height: 0.8;
  color: var(--green);
  margin-bottom: 10px;
  font-family: "Cormorant Garamond", serif;
}
.tq-text {
  font-style: italic;
  font-size: 16px;
  color: #000;
  line-height: 1.75;
  margin-bottom: 22px;
  font-weight: 300;
}
.ta-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ta-avatar {
  flex: 0 0 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
  border-radius: 50%;
  background: var(--green);
}
.ta-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--soil);
}
.ta-detail {
  font-size: 14px;
  font-weight: 300;
  color: #000;
  line-height: 1.2;
}
.ta-tag {
  display: inline-block;
  margin-top: 5px;
  font-size: 14px;
  font-weight: 500;
  color: var(--green);
  letter-spacing: 0.04em;
  line-height: 1.2;
}

/* ─── FINAL CTA ──────────────────────────────────────────── */
.final {
  padding: 110px 0;
  background: var(--rose);
  text-align: center;
  overflow: hidden;
  position: relative;
}
.final::before {
  content: "DESIGN\AWORLDS";
  white-space: pre;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 180px;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.025);
  pointer-events: none;
  line-height: 0.9;
}
.final-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: 2px;
  background: rgba(184, 92, 56, 0.18);
  border: 1px solid rgba(184, 92, 56, 0.35);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.blink {
  animation: blink 1.2s steps(1) infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.final h2 {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.final > .container > p {
  color: #fff;
  font-size: 1rem;
  max-width: 600px;
  font-weight: 300;
  margin: 0 auto 40px;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}
.final-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.btn-final-a {
  padding: 12px 46px;
  background: var(--white);
  color: var(--rose-dk);
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: flex;
  align-items: center;
}
.btn-final-b {
  padding: 12px 46px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s;
  display: flex;
  align-items: center;
}
.btn-final-b img {
  width: 25px;
}
.btn-final-b:hover {
  border-color: var(--electric-lt);
  background: rgba(91, 79, 245, 0.1);
}
.final-contacts {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.fc-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.5);
}
.fc-item a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  transition: color 0.2s;
}
.urgency-note {
  margin-top: 28px;
  padding: 14px 28px;
  display: inline-block;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  position: relative;
}
.urgency-note strong {
  color: var(--gold);
}

/* bottom form in final CTA */
.final-form-wrap {
  max-width: 480px;
  margin: 60px auto 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  padding: 34px 28px;
  position: relative;
  z-index: 1;
}
.ffw-title {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 4px;
}
.ffw-sub {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
}

/* ─── STICKY BAR ─────────────────────────────────────────── */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: rgba(28, 21, 16, 0.97);
  backdrop-filter: blur(14px);
  padding: 12px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  border-top: 1.5px solid rgba(184, 92, 56, 0.4);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.3, 1);
}
.sticky-bar.vis {
  transform: translateY(0);
}
.sb-label {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.76rem;
}
.sb-label strong {
  color: var(--white);
}
.btn-sb-apply {
  padding: 9px 22px;
  background: var(--rose);
  color: var(--white);
  border-radius: 2px;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.btn-sb-apply:hover {
  background: var(--terra-dk);
}
.btn-sb-call {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 9px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.78);
  border-radius: 2px;
  font-size: 0.79rem;
  font-weight: 500;
  transition: all 0.2s;
}
.btn-sb-call:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}
.btn-sb-wa {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 9px 16px;
  background: #25d366;
  color: var(--white);
  border-radius: 2px;
  font-size: 0.79rem;
  font-weight: 600;
  transition: background 0.2s;
}
.btn-sb-wa:hover {
  background: #1dba5a;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--soil);
  padding: 36px 0 22px;
  color: rgba(255, 255, 255, 0.3);
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding-bottom: 22px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-logo {
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: 0.04em;
}
.footer-logo span {
  color: var(--terra-lt);
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: var(--terra-lt);
}
.footer-socials {
  display: flex;
  gap: 8px;
}
.soc {
  width: 32px;
  height: 32px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  transition:
    background 0.2s,
    color 0.2s;
}
.soc:hover {
  background: var(--terracotta);
  color: var(--white);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  font-size: 0.71rem;
}
.footer-addr {
  font-size: 0.71rem;
  color: rgba(255, 255, 255, 0.2);
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1020px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .years-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fit-grid {
    grid-template-columns: 1fr;
  }
  .careers-layout {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fac-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .sw-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .mid-form-grid {
    grid-template-columns: 1fr;
  }
  .focus-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  .hero h1 {
    font-size: 2.8rem;
  }
  .pillars-grid {
    grid-template-columns: 1fr 1fr;
  }
  .years-grid {
    grid-template-columns: 1fr;
  }
  .roles-grid {
    grid-template-columns: 1fr;
  }
  .sw-grid {
    grid-template-columns: 1fr;
  }
  .focus-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .fac-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-row {
    flex-direction: column;
    gap: 24px;
  }
  .steps-row::before {
    display: none;
  }
  .nav-actions .btn-nav-ghost {
    display: none;
  }
  .final-btns {
    flex-direction: column;
    align-items: center;
  }
  .ts-row {
    flex-direction: column;
    gap: 12px;
  }
  .ts-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 10px 0;
    width: 100%;
  }
  .ts-item:last-child {
    border-bottom: none;
  }
}

/* ─── SCROLL REVEAL ─────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-eyebrow {
  animation: fadeUp 0.5s ease both;
}
.hero h1 {
  animation: fadeUp 0.55s 0.1s ease both;
}
.hero-philosophy {
  animation: fadeUp 0.55s 0.17s ease both;
}
.hero-badges {
  animation: fadeUp 0.55s 0.22s ease both;
}
.pillars-preview {
  animation: fadeUp 0.55s 0.28s ease both;
}
.hero-stats {
  animation: fadeUp 0.55s 0.34s ease both;
}
.hero-form {
  animation: fadeUp 0.65s 0.18s ease both;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.rd1 {
  transition-delay: 0.1s;
}
.rd2 {
  transition-delay: 0.2s;
}
.rd3 {
  transition-delay: 0.3s;
}
.rd4 {
  transition-delay: 0.4s;
}
.rd5 {
  transition-delay: 0.5s;
}
/* new css */
.hero-duration {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  background: #ffffff;
  color: #000;

  padding: 7px 18px;
  border-radius: 2px;

  font-size: 0.78rem;
  font-weight: 600;

  letter-spacing: 0.08em;
  text-transform: uppercase;

  margin: 15px 0 30px;
}
.hero-duration {
  animation: fadeUp 0.5s ease both;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 15px 0 36px;
}
.hero-tag {
  padding: 6px 14px;
  border: none;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 300;
  color: #fff;
  background: #c02c7f;
  display: flex;
  align-items: center;
}
.hero-tag.btn_color1 {
  background: #c02c7f;
}
.hero-tag.btn_color2 {
  background: #aa3c3d;
}
.hero-tag.btn_color3 {
  background: #e4c35c;
}
.hero-tag.btn_color4 {
  background: #e84c02;
}
.hero-tag.btn_color5 {
  background: #007a3d;
}
.hero-tag img {
  max-width: 20px;
  margin-right: 6px;
}
.hero-tags {
  animation: fadeUp 0.5s 0.15s ease both;
}
/* FORM CARD */

.form-card {
  background: var(--white);

  border-radius: 12px;

  padding: 38px 32px;

  box-shadow: var(--shadow-lg);

  border: 1px solid var(--border);

  position: sticky;
  top: 100px;
}

.form-card-header {
  margin-bottom: 24px;
}

.form-card-header h3 {
  font-size: 32px;
  font-weight: 400;

  color: var(--black);
  margin-bottom: 4px;
}

.form-card-header p {
  font-size: 0.82rem;
  color: var(--stone);
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 0.76rem;
  font-weight: 600;

  color: var(--carbon);
  margin-bottom: 5px;

  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-group input {
  width: 100%;
  padding: 12px 15px;

  border: 1.5px solid var(--border);
  border-radius: 5px;

  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;

  background: var(--parchment);
  color: var(--ink);

  transition:
    border-color 0.2s,
    background 0.2s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--yellow);

  background: var(--white);
}

.form-group input::placeholder {
  color: var(--stone);
}

.btn-form-apply {
  width: 100%;
  padding: 15px;

  background: var(--rose);
  color: var(--white);

  border: none;
  border-radius: 5px;

  font-family: "Outfit", sans-serif;

  font-size: 0.95rem;
  font-weight: 700;

  letter-spacing: 0.06em;
  text-transform: uppercase;

  cursor: pointer;
  margin-top: 4px;

  transition:
    background 0.2s,
    transform 0.15s;

  position: relative;
  overflow: hidden;
}

.btn-form-apply:hover {
  transform: translateY(-1px);
  background: var(--yellow-dark);
}

.btn-form-apply::after {
  content: "→";
  margin-left: 8px;

  transition: transform 0.2s;
  display: inline-block;
}

.btn-form-apply:hover::after {
  transform: translateX(4px);
}

.form-micro-trust {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;

  margin-top: 14px;
  justify-content: center;
}
.check-elig {
  display: inline-block;
  width: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.micro-badge {
  display: flex;
  align-items: center;
  gap: 5px;

  font-size: 0.71rem;
  font-weight: 600;
  color: var(--ash);
}

.micro-badge::before {
  content: "✓";
  color: var(--rose);
  font-weight: 700;
}

.btn-send-otp {
  white-space: nowrap;

  padding: 6px 17px;

  background: var(--blue);

  color: #fff;

  border: none;

  border-radius: 36px;

  font-size: 0.82rem;

  font-weight: 600;

  cursor: pointer;

  transition:
    background 0.2s,
    opacity 0.2s;

  margin-top: 10px;
}

.btn-send-otp:disabled {
  opacity: 0.6;

  cursor: not-allowed;
}

.btn-send-otp.sent {
  background: #00b894;
}

/* OTP section (hidden until phone submitted) */

.otp-section {
  display: none;

  margin-top: -0.3rem;

  margin-bottom: 1.1rem;

  animation: fadeIn 0.25s ease;
}

.otp-section.active {
  display: block;
}

.otp-row {
  display: flex;

  gap: 8px;
}

.otp-row input {
  flex: 1;

  letter-spacing: 0.2em;

  font-size: 1.1rem;

  text-align: center;
}

.btn-verify-otp {
  white-space: nowrap;

  padding: 0 1rem;

  background: #0984e3;

  color: #fff;

  border: none;

  border-radius: 9px;

  font-size: 0.82rem;

  font-weight: 600;

  cursor: pointer;

  transition:
    background 0.2s,
    opacity 0.2s;
}

.btn-verify-otp:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-verify-otp.verified {
  background: #00b894;
}

.otp-hint {
  font-size: 0.78rem;

  color: #888;

  margin-top: 0.4rem;
}

.verified-badge {
  display: none;

  align-items: center;

  gap: 6px;

  font-size: 0.82rem;

  font-weight: 600;

  color: #00b894;

  margin-top: 0.5rem;
}

.verified-badge.show {
  display: flex;
}
/* Success screen */

.success-screen {
  display: none;
  text-align: center;
  padding: 1.5rem 0;
}

.success-screen.show {
  display: block;
}

.success-screen .tick {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.success-screen h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}

.success-screen p {
  font-size: 0.9rem;
  color: #666;
}
/* Messages */

.msg {
  font-size: 0.82rem;

  margin-top: 0.4rem;

  padding: 0.45rem 0.7rem;

  border-radius: 7px;

  display: none;
}

.msg.error {
  background: #fff0f0;
  color: #c0392b;
  display: block;
}

.msg.success {
  background: #f0fff8;
  color: #00804a;
  display: block;
}

.msg.info {
  background: #f0f4ff;
  color: #3d5afe;
  display: block;
}



.philosophy .sec-lbl {
  color: #fff;
}
.sec-sub {
  font-weight: 300;
}
.student-work .sec-lbl {
  color: #fff;
}
.student-work .btn-wrap {
  text-align: center;
  margin: 30px 0 0;
}
.student-work .btn-wrap p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  margin: 0 0 20px;
  font-style: italic;
}
.fac-emoji img {
  max-height: 50px;
}
