/* EIILM-Kolkata — shared design system
   Typography, colour tokens, header, footer, buttons, forms, responsive layer.
   Loaded by every page before its own stylesheet. */

:root {
  --bg: #fbf8f2;
  --ink: #14294a;
  --ink-soft: #5a6b85;
  --red: #f5821f;
  --red-t: #a8540a;
  --red-deep: #a8540a;
  --red-dark: #c2620f;
  --red-soft: #fff2e4;
  --gold: #c9a24b;
  --line: rgba(20, 41, 74, 0.1);
  --card: #ffffff;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 7000ms;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Albert Sans", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.serif {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 480;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}
.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
section {
  position: relative;
}
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.9s var(--ease-expo),
    transform 0.9s var(--ease-expo);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal[data-d="1"] {
  transition-delay: 0.08s;
}
.reveal[data-d="2"] {
  transition-delay: 0.16s;
}
.reveal[data-d="3"] {
  transition-delay: 0.24s;
}
.reveal[data-d="4"] {
  transition-delay: 0.32s;
}
.reveal[data-d="5"] {
  transition-delay: 0.4s;
}
.reveal[data-d="6"] {
  transition-delay: 0.48s;
}
.sec-head {
  margin-bottom: clamp(36px, 5vw, 60px);
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-t);
  background: var(--red-soft);
  border: 1px solid rgba(245, 130, 31, 0.18);
  padding: 7px 15px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}
.sec-title {
  font-family: "Fraunces", serif;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: -0.008em;
  font-weight: 560;
}
.sec-title .accent {
  color: var(--red-t);
}
.sec-sub {
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 640px;
  margin-top: 16px;
}
.utility {
  background: var(--ink);
  color: #e4e9f0;
  font-size: 12.5px;
}
.utility .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 38px;
  flex-wrap: wrap;
}
.utility a {
  color: #e4e9f0;
  text-decoration: none;
  transition: color 0.25s;
}
.utility a:hover {
  color: #fff;
}
.util-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.util-left .hl {
  color: #fff;
  font-weight: 600;
}
.util-left .apply-mini {
  color: #ffc08a;
  font-weight: 600;
}
.util-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.util-links .hot {
  color: #fff;
  background: var(--red-deep);
  padding: 3px 12px;
  border-radius: 100px;
  font-weight: 600;
}
header.main {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s;
}
header.main.scrolled {
  box-shadow: 0 10px 30px -18px rgba(20, 41, 74, 0.25);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 94px;
}
.logo {
  display: flex;
  align-items: center;
  flex: none;
  padding: 6px 18px 6px 0;
  border-right: 1px solid var(--line);
  margin-right: 6px;
}
.logo img {
  height: 72px;
  width: auto;
  display: block;
}
@media (max-width: 1100px) {
  .logo {
    border-right: none;
    padding-right: 0;
  }
  .logo img {
    height: 60px;
  }
}
nav.primary {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-item {
  position: relative;
}
.nav-item > a {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 14px;
  border-radius: 10px;
  transition:
    background 0.25s,
    color 0.25s;
  white-space: nowrap;
}
.nav-item > a small {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}
.nav-item > a:hover {
  background: var(--red-soft);
  color: var(--red-t);
}
.nav-item > a .car {
  font-size: 9px;
  opacity: 0.5;
  transition: transform 0.3s;
}
.nav-item:hover > a .car {
  transform: rotate(180deg);
}
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 30px 60px -20px rgba(20, 41, 74, 0.25);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.35s var(--ease-out);
  z-index: 50;
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.dropdown a {
  display: block;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  padding: 9px 14px;
  border-radius: 10px;
  transition: all 0.2s;
}
.dropdown a:hover {
  background: var(--red-soft);
  color: var(--red-t);
  padding-left: 20px;
}
.dropdown .grp {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-t);
  padding: 12px 14px 4px;
}
.dropdown.wide {
  min-width: 560px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 6px;
}
.nav-item:hover .dropdown.wide {
  display: grid;
}
.nav-cta {
  background: var(--red-deep);
  color: #fff !important;
  border-radius: 100px;
  padding: 11px 22px !important;
  box-shadow: 0 10px 22px -10px rgba(245, 130, 31, 0.6);
}
.nav-cta:hover {
  background: var(--red-dark) !important;
  color: #fff !important;
}
.burger {
  display: none;
  background: none;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  font-size: 18px;
}
@media (max-width: 1100px) {
  nav.primary {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 2px;
    border-bottom: 1px solid var(--line);
    max-height: 70vh;
    overflow: auto;
  }
  nav.primary.open {
    display: flex;
  }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    display: none;
    padding-left: 14px;
  }
  .nav-item.open .dropdown {
    display: block;
  }
  .dropdown.wide {
    grid-template-columns: 1fr;
  }
  .burger {
    display: block;
  }
}
.hero {
  position: relative;
  min-height: calc(100vh - 136px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  pointer-events: none;
}
.blob-1 {
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, #ffe2c6 0%, transparent 70%);
  top: -180px;
  right: -120px;
  animation: drift1 22s ease-in-out infinite alternate;
}
.blob-2 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, #f3ead4 0%, transparent 70%);
  bottom: -160px;
  left: -140px;
  animation: drift2 26s ease-in-out infinite alternate;
}
@keyframes drift1 {
  to {
    transform: translate(-70px, 60px) scale(1.15);
  }
}
@keyframes drift2 {
  to {
    transform: translate(80px, -50px) scale(1.1);
  }
}
.bg-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 88px 88px;
  -webkit-mask-image: radial-gradient(
    ellipse 90% 80% at 50% 40%,
    black 30%,
    transparent 75%
  );
  mask-image: radial-gradient(
    ellipse 90% 80% at 50% 40%,
    black 30%,
    transparent 75%
  );
}
.stage {
  position: relative;
  z-index: 4;
  flex: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(32px, 5vw, 80px);
  padding: clamp(28px, 4vh, 48px) clamp(24px, 5vw, 72px);
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}
.copy {
  position: relative;
  min-height: 420px;
}
.slide-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  visibility: hidden;
  pointer-events: none;
}
.slide-copy.active {
  visibility: visible;
  pointer-events: auto;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: max-content;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-t);
  background: var(--red-soft);
  border: 1px solid rgba(245, 130, 31, 0.18);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 26px;
}
.eyebrow .tick {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}
h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.5rem, 4.9vw, 4.3rem);
  line-height: 1.06;
  letter-spacing: -0.012em;
  font-weight: 560;
  margin-bottom: 24px;
}
h1 .accent {
  color: var(--red-t);
  letter-spacing: -0.01em;
}
.line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}
.line-inner {
  display: inline-block;
  transform: translateY(115%);
}
.sub {
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 34px;
}
.ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out),
    background 0.3s;
}
.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 14px 30px -12px rgba(20, 41, 74, 0.45);
}
.btn-primary:hover {
  transform: translateY(-3px);
  background: var(--red-deep);
  box-shadow: 0 18px 34px -12px rgba(245, 130, 31, 0.5);
}
.btn-primary .arr {
  transition: transform 0.35s var(--ease-out);
}
.btn-primary:hover .arr {
  transform: translateX(4px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(20, 41, 74, 0.18);
}
.btn-ghost:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
}
.stats {
  display: flex;
  gap: clamp(24px, 3vw, 48px);
}
.stat .num {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.stat .lbl {
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-top: 4px;
  line-height: 1.4;
}
.rv {
  opacity: 0;
  transform: translateY(26px);
}
.slide-copy.active .rv {
  animation: rise 0.9s var(--ease-expo) both;
}
.slide-copy.active .line-inner {
  animation: lineUp 1s var(--ease-expo) both;
}
.slide-copy.active .d1 {
  animation-delay: 0.05s;
}
.slide-copy.active .d2 {
  animation-delay: 0.14s;
}
.slide-copy.active .d3 {
  animation-delay: 0.23s;
}
.slide-copy.active .d4 {
  animation-delay: 0.42s;
}
.slide-copy.active .d5 {
  animation-delay: 0.52s;
}
.slide-copy.active .d6 {
  animation-delay: 0.62s;
}
@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes lineUp {
  to {
    transform: none;
  }
}
.slide-copy.leaving {
  visibility: visible;
}
.slide-copy.leaving .rv,
.slide-copy.leaving .line-inner {
  animation: sink 0.45s ease-in both;
}
@keyframes sink {
  to {
    opacity: 0;
    transform: translateY(-22px);
  }
}
.visual {
  position: relative;
  height: auto;
  min-height: clamp(520px, 64vh, 620px);
}
.v-bg {
  position: absolute;
  inset: 0;
  border-radius: 34px;
  overflow: hidden;
  background: var(--card);
  box-shadow:
    0 40px 80px -30px rgba(20, 41, 74, 0.22),
    0 0 0 1px rgba(20, 41, 74, 0.05);
}
.enq {
  position: relative;
  z-index: 4;
  background: #fff;
  border: 1px solid rgba(20, 41, 74, 0.07);
  border-radius: 28px;
  padding: clamp(26px, 3vw, 36px);
  box-shadow: 0 34px 70px -30px rgba(20, 41, 74, 0.34);
  margin: clamp(18px, 2.4vw, 30px);
  overflow: hidden;
  animation: rise 1s var(--ease-expo) both 0.25s;
}
.enq-head {
  margin-bottom: 24px;
}
.enq-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red-t);
  background: var(--red-soft);
  border: 1px solid rgba(245, 130, 31, 0.18);
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.enq-pill .tick {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: pulseDot 2s ease-out infinite;
}
@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(245, 130, 31, 0.5);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(245, 130, 31, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(245, 130, 31, 0);
  }
}
.enq-head h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  letter-spacing: -0.01em;
  line-height: 1.22;
  margin-bottom: 8px;
  font-weight: 560;
}
.enq-head h2 .accent {
  color: var(--red-t);
}
.enq-head p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.enq-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.fld {
  position: relative;
  display: block;
  grid-column: span 1;
}
.fld input,
.fld select {
  width: 100%;
  font: inherit;
  font-size: 14.5px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid rgba(20, 41, 74, 0.13);
  border-radius: 14px;
  padding: 20px 16px 9px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition:
    border-color 0.35s var(--ease-out),
    background 0.35s,
    box-shadow 0.35s var(--ease-out);
}
.fld select {
  cursor: pointer;
  color: var(--ink);
}
.fld .lb {
  position: absolute;
  left: 17px;
  top: 15px;
  font-size: 14px;
  color: var(--ink-soft);
  pointer-events: none;
  transform-origin: left top;
  transition:
    transform 0.35s var(--ease-out),
    color 0.35s var(--ease-out);
}
.fld input:focus,
.fld select:focus {
  border-color: rgba(245, 130, 31, 0.45);
  background: #fff;
  box-shadow: 0 8px 22px -14px rgba(245, 130, 31, 0.55);
}
.fld input:focus ~ .lb,
.fld input:not(:placeholder-shown) ~ .lb,
.fld select:focus ~ .lb,
.fld select.filled ~ .lb {
  transform: translateY(-9px) scale(0.76);
  color: var(--red-t);
}
.fld .bar {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease-out);
}
.fld input:focus ~ .bar,
.fld select:focus ~ .bar {
  transform: scaleX(1);
}
.fld .car {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-40%);
  font-size: 12px;
  color: var(--ink-soft);
  pointer-events: none;
  transition: transform 0.3s;
}
.fld select:focus ~ .car {
  transform: translateY(-40%) rotate(180deg);
  color: var(--red-t);
}
.fld.err input,
.fld.err select {
  border-color: var(--red);
  background: #fff8f1;
  animation: shake 0.4s;
}
@keyframes shake {
  25% {
    transform: translateX(-5px);
  }
  50% {
    transform: translateX(5px);
  }
  75% {
    transform: translateX(-3px);
  }
}
.enq-btn {
  width: 100%;
  justify-content: center;
  margin-top: 18px;
  position: relative;
}
.enq-btn .spin {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  opacity: 0;
  animation: spin 0.8s linear infinite;
}
.enq.sending .enq-btn {
  pointer-events: none;
}
.enq.sending .enq-btn .txt,
.enq.sending .enq-btn .arr {
  opacity: 0;
}
.enq.sending .enq-btn .spin {
  opacity: 1;
}
.enq-note {
  font-size: 11.5px;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 14px;
  line-height: 1.6;
}
.enq-note a {
  color: var(--red-t);
  font-weight: 600;
  text-decoration: none;
}
.enq .fld,
.enq .enq-btn,
.enq .enq-note,
.enq .enq-head {
  opacity: 0;
  transform: translateY(22px);
  animation: rise 0.8s var(--ease-expo) both;
}
.enq .enq-head {
  animation-delay: 0.35s;
}
.enq .f1 {
  animation-delay: 0.45s;
}
.enq .f2 {
  animation-delay: 0.53s;
}
.enq .f3 {
  animation-delay: 0.61s;
}
.enq .f5 {
  animation-delay: 0.77s;
}
.enq .f6 {
  animation-delay: 0.85s;
}
.enq .f4 {
  animation-delay: 0.69s;
}
.enq .enq-btn {
  animation-delay: 0.93s;
}
.enq .enq-note {
  animation-delay: 1s;
}
.enq-done {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transform: scale(0.97);
  transition: all 0.5s var(--ease-out);
}
.enq.done .enq-done {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.enq-done h3 {
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}
.enq-done p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 300px;
}
.enq-done .chk {
  width: 66px;
  height: 66px;
  stroke: var(--red);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.enq-done .chk circle {
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
}
.enq-done .chk path {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
}
.enq.done .chk circle {
  animation: draw 0.7s var(--ease-out) forwards;
}
.enq.done .chk path {
  animation: draw 0.45s var(--ease-out) 0.5s forwards;
}
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
@media (max-width: 980px) {
  .visual {
    min-height: 0;
  }
  .enq {
    margin: 0;
  }
  .v-bg {
    inset: -10px -6px;
  }
}
@media (max-width: 420px) {
  .enq-fields {
    grid-template-columns: 1fr;
  }
  .enq-fields .fld {
    grid-column: span 1 !important;
  }
}
.v-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(0.94) rotate(1.5deg);
  transition:
    opacity 0.8s var(--ease-out),
    transform 1s var(--ease-out);
  pointer-events: none;
}
.v-slide.active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.v-card {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  overflow: hidden;
  background: var(--card);
  box-shadow:
    0 40px 80px -30px rgba(20, 41, 74, 0.25),
    0 0 0 1px rgba(20, 41, 74, 0.05);
}
.v-card .mesh {
  position: absolute;
  inset: 0;
}
.v1 .mesh {
  background:
    radial-gradient(120% 90% at 85% 12%, #ffe9d6 0%, transparent 55%),
    radial-gradient(100% 90% at 10% 95%, #f6efdd 0%, transparent 55%),
    linear-gradient(160deg, #fff 30%, #fffaf5 100%);
}
.v2 .mesh {
  background:
    radial-gradient(120% 90% at 15% 10%, #e3ecff 0%, transparent 55%),
    radial-gradient(100% 90% at 90% 90%, #ffe9d6 0%, transparent 50%),
    linear-gradient(200deg, #fff 30%, #f5f7fd 100%);
}
.v3 .mesh {
  background:
    radial-gradient(120% 90% at 80% 85%, #def3e9 0%, transparent 55%),
    radial-gradient(100% 90% at 12% 15%, #f6efdd 0%, transparent 55%),
    linear-gradient(160deg, #fff 30%, #f4faf7 100%);
}
.v4 .mesh {
  background:
    radial-gradient(120% 90% at 20% 85%, #ffe9d6 0%, transparent 55%),
    radial-gradient(100% 90% at 88% 12%, #ffe9d6 0%, transparent 50%),
    linear-gradient(160deg, #fff 30%, #fdf8f3 100%);
}
.watermark {
  position: absolute;
  bottom: -4%;
  right: -2%;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.8;
  font-size: clamp(6rem, 11vw, 10rem);
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(20, 41, 74, 0.09);
  user-select: none;
  animation: wm 8s ease-in-out infinite alternate;
}
@keyframes wm {
  to {
    transform: translateY(-14px);
  }
}
.orbit {
  position: absolute;
  border: 1.5px dashed rgba(245, 130, 31, 0.22);
  border-radius: 50%;
  animation: spin 40s linear infinite;
}
.orbit.o1 {
  width: 320px;
  height: 320px;
  top: -9%;
  left: -14%;
}
.orbit.o2 {
  width: 190px;
  height: 190px;
  bottom: -8%;
  right: -6%;
  top: auto;
  left: auto;
  animation-duration: 26s;
  animation-direction: reverse;
  border-color: rgba(20, 41, 74, 0.12);
}
.orbit .sat {
  position: absolute;
  top: -7px;
  left: 50%;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(245, 130, 31, 0.14);
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(20, 41, 74, 0.07);
  border-radius: 18px;
  padding: 14px 18px;
  box-shadow: 0 20px 40px -18px rgba(20, 41, 74, 0.28);
  animation: floaty 6s ease-in-out infinite alternate;
}
.chip:nth-of-type(odd) {
  animation-duration: 7.5s;
  animation-delay: -2s;
}
@keyframes floaty {
  to {
    transform: translateY(-16px);
  }
}
.chip .ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  flex: none;
  display: grid;
  place-items: center;
  font-size: 18px;
  background: var(--red-soft);
}
.chip .t1 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.chip .t2 {
  font-size: 11.5px;
  color: var(--ink-soft);
  margin-top: 1px;
}
.c-tl {
  top: 2%;
  left: -8%;
}
.c-br {
  bottom: 4%;
  right: -7%;
}
.c-bl {
  bottom: 6%;
  left: 6%;
}
.c-tr {
  top: 14%;
  right: -4%;
}
@media (max-width: 1180px) {
  .c-tl,
  .c-br {
    display: none;
  }
}
.controls {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  padding: 0 clamp(24px, 5vw, 72px) 34px;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}
.counter {
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: baseline;
  gap: 6px;
  min-width: 64px;
}
.counter .cur {
  font-size: 22px;
  letter-spacing: -0.02em;
  display: inline-block;
}
.counter .tot {
  color: var(--ink-soft);
  font-weight: 500;
}
.counter .cur.flip {
  animation: flip 0.5s var(--ease-out);
}
@keyframes flip {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
}
.track {
  flex: 1;
  height: 2px;
  background: rgba(20, 41, 74, 0.1);
  border-radius: 2px;
  overflow: hidden;
}
.track .fill {
  height: 100%;
  width: 0;
  background: var(--red);
}
.track .fill.run {
  animation: fillbar var(--dur) linear forwards;
}
@keyframes fillbar {
  to {
    width: 100%;
  }
}
.dots {
  display: flex;
  gap: 10px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: rgba(20, 41, 74, 0.18);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.45s var(--ease-out);
}
.dot.on {
  width: 30px;
  background: var(--red);
}
.navs {
  display: flex;
  gap: 10px;
}
.nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  background: transparent;
  border: 1.5px solid rgba(20, 41, 74, 0.16);
  display: grid;
  place-items: center;
  color: var(--ink);
  transition: all 0.35s var(--ease-out);
}
.nav-btn:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  transform: scale(1.08);
}
.nav-btn svg {
  width: 18px;
  height: 18px;
}
@media (max-width: 980px) {
  .stage {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 16px;
  }
  .copy {
    min-height: 400px;
  }
  .visual {
    height: 360px;
    order: 2;
  }
  .c-tl {
    left: 2%;
  }
  .c-br {
    right: 2%;
  }
  .c-tr {
    right: 2%;
  }
  .watermark {
    font-size: 5rem;
  }
}
@media (max-width: 560px) {
  .stats {
    flex-wrap: wrap;
    gap: 20px;
  }
  .visual {
    height: 320px;
  }
  .chip .t2 {
    display: none;
  }
  .controls {
    flex-wrap: wrap;
    row-gap: 16px;
  }
  .track {
    order: 3;
    flex-basis: 100%;
  }
}
.about {
  padding: clamp(72px, 9vw, 120px) 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(36px, 6vw, 90px);
  align-items: stretch;
}
.about-sticky,
.about-copy {
  display: flex;
  flex-direction: column;
}
.about-sticky .sec-head {
  margin-bottom: 18px;
}
.about-sticky .btn {
  margin-top: 4px;
  width: fit-content;
  max-width: 100%;
}
.about-copy {
  justify-content: space-between;
}
@media (min-width: 901px) {
  .about-sticky {
    justify-content: space-between;
  }
  .big-counters {
    min-height: 340px;
    align-content: stretch;
    grid-template-rows: 1fr 1fr;
  }
  .bc {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.about-copy p {
  color: var(--ink-soft);
  line-height: 1.8;
  font-size: 15.5px;
  margin-bottom: 20px;
}
.about-copy p strong {
  color: var(--ink);
}
.big-counters {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.bc {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 1px 1px, rgba(20,41,74,0.055) 1px, transparent 0) 0 0 / 16px 16px,
    linear-gradient(180deg, #ffffff 0%, #fdf8ef 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 16px;
  text-align: left;
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out),
    border-color 0.4s var(--ease-out);
}
.bc::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 85% 15%, rgba(255,226,198,0.55) 0%, transparent 55%),
    radial-gradient(90% 70% at 12% 88%, rgba(215,230,255,0.45) 0%, transparent 60%);
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}
.bc::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 128 128' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}
.bc > * {
  position: relative;
  z-index: 1;
}
.bc:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 44px -22px rgba(20, 41, 74, 0.25);
  border-color: rgba(245,130,31,0.22);
}
.bc .n {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}
.bc .n em {
  font-style: normal;
  color: var(--red-t);
}
.bc .l {
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-top: 6px;
  line-height: 1.45;
}
@media (max-width: 900px) {
  .about {
    padding: 48px 0;
  }
  .about-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .about-sticky,
  .about-copy {
    display: contents;
  }
  .about-sticky .sec-head {
    order: 1;
    margin-bottom: 8px;
  }
  .about-sticky .btn {
    order: 2;
    align-self: flex-start;
    margin-top: 0;
    width: fit-content;
    max-width: 100%;
  }
  .about-copy p:nth-of-type(1) {
    order: 3;
  }
  .about-copy p:nth-of-type(2) {
    order: 4;
  }
  .about-copy p:nth-of-type(3) {
    order: 5;
  }
  .ab-shot {
    order: 6;
    margin-top: 8px;
  }
  .ab-shot .frame img {
    aspect-ratio: 16/9;
    max-height: 300px;
  }
  .big-counters {
    order: 7;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 12px;
  }
}
.ab-shot {
  position: relative;
  margin-top: clamp(20px, 3vh, 30px);
}
.ab-shot .frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 34px 64px -32px rgba(20, 41, 74, 0.42);
  background: linear-gradient(135deg, #fff2e4, #f6efdd);
}
.ab-shot .frame img {
  width: 100%;
  aspect-ratio: 16/10;
  max-height: 340px;
  object-fit: cover;
  display: block;
  transition: transform 1.1s var(--ease-out);
}
.ab-shot:hover .frame img {
  transform: scale(1.06);
}
.ab-shot .frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 41, 74, 0.42), transparent 55%);
  pointer-events: none;
}
.ab-shot .ring {
  position: absolute;
  width: 210px;
  height: 210px;
  border: 1.5px dashed rgba(245, 130, 31, 0.3);
  border-radius: 50%;
  top: -58px;
  right: -58px;
  animation: spin 46s linear infinite;
  pointer-events: none;
}
.ab-cap {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 600;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}
.ab-cap .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  flex: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.28);
}
.ab-chip {
  position: absolute;
  right: -14px;
  top: 20px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 11px 16px;
  box-shadow: 0 20px 40px -20px rgba(20, 41, 74, 0.34);
  animation: floaty 7s ease-in-out infinite alternate;
}
.ab-chip .t1 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.ab-chip .t2 {
  font-size: 11px;
  color: var(--ink-soft);
  margin-top: 1px;
}
@media (max-width: 900px) {
  .ab-shot .ring {
    display: none;
  }
  .ab-chip {
    right: 10px;
  }
}
.partners {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.pt-row {
  display: flex;
  gap: clamp(14px, 2vw, 22px);
  width: max-content;
  animation: marq 46s linear infinite;
  padding: 4px;
}
.pt-row.rev {
  animation: marqr 52s linear infinite;
}
.partners:hover .pt-row {
  animation-play-state: paused;
}
.pt-card {
  width: 210px;
  flex: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out),
    border-color 0.4s;
}
.pt-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 130, 31, 0.3);
  box-shadow: 0 26px 46px -24px rgba(20, 41, 74, 0.28);
}
.pt-card .ph {
  height: 52px;
  display: flex;
  align-items: center;
}
.pt-card img {
  max-height: 52px;
  width: auto;
  object-fit: contain;
  opacity: 1;
  transition: all 0.4s;
}
.pt-card:hover img {
  opacity: 1;
  transform: scale(1.05);
}
.pt-card b {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.005em;
}
.pt-card small {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-t);
}
.rankings {
  padding: clamp(72px, 9vw, 120px) 0;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.rank-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.rank-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px 24px;
  overflow: hidden;
  transition:
    transform 0.45s var(--ease-out),
    box-shadow 0.45s var(--ease-out);
}
.rank-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 50px -25px rgba(20, 41, 74, 0.3);
}
.rank-card::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.rank-card:hover::after {
  transform: scaleX(1);
}
.rank-card .badge {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--red-soft);
  display: grid;
  place-items: center;
  font-size: 20px;
  margin-bottom: 18px;
}
.rank-card .pos {
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.rank-card .pos sup {
  font-size: 0.55em;
  color: var(--red-t);
}
.rank-card .src {
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-top: 8px;
  line-height: 1.5;
}
@media (max-width: 1000px) {
  .rank-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .rank-grid {
    grid-template-columns: 1fr;
  }
}
.objectives {
  padding: clamp(72px, 9vw, 120px) 0;
}
.obj-list {
  border-top: 1px solid var(--line);
}
.obj {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: clamp(16px, 4vw, 60px);
  align-items: center;
  padding: clamp(22px, 3vw, 34px) 8px;
  border-bottom: 1px solid var(--line);
  transition:
    background 0.35s,
    padding-left 0.35s;
}
.obj:hover {
  background: #fff;
  padding-left: 22px;
}
.obj .idx {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: rgba(245, 130, 31, 0.35);
  transition: color 0.35s;
}
.obj:hover .idx {
  color: var(--red-t);
}
.obj p {
  font-size: clamp(0.98rem, 1.3vw, 1.15rem);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 820px;
}
.obj p strong {
  color: var(--ink);
}
.chairman {
  padding: clamp(72px, 9vw, 120px) 0;
  background: #fff;
  color: var(--ink);
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ch-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.ch-quote {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin: 20px 0 22px;
}
.ch-quote .hl {
  color: var(--red-t);
}
.ch-body {
  color: var(--ink-soft);
  line-height: 1.8;
  font-size: 14.5px;
  margin-bottom: 14px;
}
.ch-sig {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.ch-sig img {
  height: 52px;
  width: auto;
}
.ch-sig .who {
  font-size: 13.5px;
  color: var(--ink-soft);
}
.ch-sig .who b {
  display: block;
  color: var(--ink);
  font-size: 15px;
}
.ch-photo {
  position: relative;
}
.ch-photo .frame {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(160deg, #fff2e4, #f6efdd);
  border: 1px solid var(--line);
  box-shadow: 0 40px 80px -34px rgba(20, 41, 74, 0.32);
}
.ch-photo img.portrait {
  width: 100%;
  height: auto;
  display: block;
}
.ch-photo .ring {
  position: absolute;
  width: 400px;
  height: 400px;
  border: 1.5px dashed rgba(245, 130, 31, 0.25);
  border-radius: 50%;
  top: -84px;
  right: -104px;
  animation: spin 50s linear infinite;
  pointer-events: none;
}
.ch-chip {
  position: absolute;
  bottom: 22px;
  left: -24px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  box-shadow: 0 20px 40px -18px rgba(20, 41, 74, 0.3);
  border-radius: 16px;
  padding: 13px 19px;
  animation: floaty 7s ease-in-out infinite alternate;
}
.ch-chip .t1 {
  font-weight: 700;
  font-size: 14px;
}
.ch-chip .t2 {
  font-size: 12px;
  color: var(--ink-soft);
}
@media (max-width: 900px) {
  .ch-grid {
    grid-template-columns: 1fr;
  }
  .ch-chip {
    left: 12px;
  }
}
.programs {
  padding: clamp(72px, 9vw, 120px) 0;
}
.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}
.f-btn {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12.5px;
  font-weight: 500;
  padding: 11px 22px;
  border-radius: 100px;
  border: 1.5px solid rgba(20, 41, 74, 0.14);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}
.f-btn:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}
.f-btn.on {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.prog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.p-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition:
    transform 0.45s var(--ease-out),
    box-shadow 0.45s var(--ease-out),
    opacity 0.4s,
    scale 0.4s;
}
.p-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 60px -28px rgba(20, 41, 74, 0.32);
}
.p-card.hide {
  display: none;
}
.prog-grid:not(.expanded) .p-card.over {
  display: none;
}
.more-wrap {
  text-align: center;
  margin-top: 24px;
}
.p-media {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(135deg, #fff2e4, #f6efdd);
}
.p-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.p-card:hover .p-media img {
  transform: scale(1.07);
}
.p-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red-t);
  padding: 6px 13px;
  border-radius: 100px;
}
.p-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.p-body h3 {
  font-size: 1.12rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 10px;
}
.p-body p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.65;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.p-more {
  margin-top: 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--red-t);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.p-more .arr {
  transition: transform 0.35s var(--ease-out);
}
.p-card:hover .p-more .arr {
  transform: translateX(5px);
}
@media (max-width: 980px) {
  .prog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .prog-grid {
    grid-template-columns: 1fr;
  }
}
.corp {
  padding: clamp(72px, 9vw, 120px) 0;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.corp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.corp-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: clamp(28px, 3.4vw, 44px);
  transition:
    transform 0.45s var(--ease-out),
    box-shadow 0.45s var(--ease-out);
}
.corp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 55px -28px rgba(20, 41, 74, 0.28);
}
.corp-card .qm {
  font-family: "Fraunces", serif;
  font-size: 5rem;
  line-height: 0.6;
  color: rgba(245, 130, 31, 0.25);
  display: block;
  margin-bottom: 18px;
}
.corp-card blockquote {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 26px;
}
.corp-card .who {
  display: flex;
  align-items: center;
  gap: 14px;
}
.corp-card .who .av {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b85e0c, #8f4708);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 15px;
}
.corp-card .who b {
  display: block;
  font-size: 14.5px;
}
.corp-card .who span {
  font-size: 12.5px;
  color: var(--ink-soft);
}
@media (max-width: 820px) {
  .corp-grid {
    grid-template-columns: 1fr;
  }
}
.placements {
  padding: clamp(72px, 9vw, 120px) 0 clamp(52px, 6vw, 80px);
  overflow: hidden;
}
.pl-row {
  display: flex;
  gap: 20px;
  width: max-content;
  margin-bottom: 20px;
  animation: marq 48s linear infinite;
}
.pl-row.rev {
  animation: marqr 52s linear infinite;
}
.placements:hover .pl-row {
  animation-play-state: paused;
}
@keyframes marqr {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
.pl-card {
  width: clamp(330px, 30vw, 470px);
  flex: none;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  transition: transform 0.4s var(--ease-out);
}
.pl-card:hover {
  transform: translateY(-6px) scale(1.02);
}
.pl-card img {
  width: 100%;
  aspect-ratio: 574/300;
  object-fit: cover;
}
.events {
  padding: clamp(72px, 9vw, 120px) 0;
  background: #fff;
  border-top: 1px solid var(--line);
}
.ev-list {
  border-top: 1px solid var(--line);
}
.ev {
  display: grid;
  grid-template-columns: 150px 1fr 46px;
  gap: clamp(14px, 3vw, 40px);
  align-items: center;
  padding: 24px 8px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition:
    background 0.3s,
    padding-left 0.3s;
}
.ev:hover {
  background: var(--bg);
  padding-left: 20px;
}
.ev .date {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--red-t);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.ev .date small {
  display: block;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0;
  text-transform: none;
  margin-top: 2px;
}
.ev h3 {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.4;
}
.ev .go {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(20, 41, 74, 0.14);
  display: grid;
  place-items: center;
  transition: all 0.35s var(--ease-out);
}
.ev:hover .go {
  background: var(--red-deep);
  border-color: var(--red-deep);
  color: #fff;
  transform: rotate(-45deg);
}
@media (max-width: 640px) {
  .ev {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .ev .go {
    display: none;
  }
}
.students {
  padding: clamp(72px, 9vw, 120px) 0;
  overflow: hidden;
}
.st-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: end;
  margin-bottom: clamp(26px, 3.4vh, 40px);
}
.st-video {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #0b1a33;
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -30px rgba(20, 41, 74, 0.35);
  margin: 0;
}
.st-video video {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #0b1a33;
}
.st-video .vplay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(20, 41, 74, 0.28);
  border: none;
  cursor: pointer;
  transition: opacity 0.45s var(--ease-out);
}
.st-video.playing .vplay {
  opacity: 0;
  pointer-events: none;
}
.st-video .vplay i {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 20px;
  color: var(--red-t);
  padding-left: 5px;
  transition: transform 0.4s var(--ease-out);
  position: relative;
}
.st-video .vplay i::after {
  content: "";
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  animation: vpulse 2.4s ease-out infinite;
}
@keyframes vpulse {
  0% {
    transform: scale(1);
    opacity: 0.85;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}
.st-video .vplay:hover i {
  transform: scale(1.1);
}
.st-video .vtag {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-t);
}
.st-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: stretch;
}
.st-rail {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.av-btn {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  padding: 0;
  border: none;
  cursor: pointer;
  background: none;
  flex: none;
  transition: transform 0.4s var(--ease-out);
  opacity: 0.5;
}
.av-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.av-btn:hover {
  opacity: 0.9;
  transform: translateX(4px);
}
.av-btn.on {
  opacity: 1;
  transform: scale(1.06);
}
.av-btn .prog {
  position: absolute;
  inset: -6px;
  transform: rotate(-90deg);
  pointer-events: none;
}
.av-btn .prog circle {
  fill: none;
  stroke-width: 2.5;
  r: 36;
  cx: 38;
  cy: 38;
}
.av-btn .prog .bgc {
  stroke: rgba(20, 41, 74, 0.1);
}
.av-btn .prog .fgc {
  stroke: var(--red);
  stroke-linecap: round;
  stroke-dasharray: 226;
  stroke-dashoffset: 226;
}
.av-btn.on .prog .fgc {
  animation: ring 6s linear forwards;
}
.st-paused .av-btn.on .prog .fgc {
  animation-play-state: paused;
}
@keyframes ring {
  to {
    stroke-dashoffset: 0;
  }
}
.st-stage {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: clamp(26px, 3.2vw, 42px);
  overflow: hidden;
  box-shadow: 0 30px 60px -34px rgba(20, 41, 74, 0.28);
}
.st-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(90% 80% at 100% 0%, #fff2e4 0%, transparent 55%),
    radial-gradient(80% 70% at 0% 100%, #f6efdd 0%, transparent 55%);
  opacity: 0.85;
}
.st-qm {
  position: relative;
  font-family: "Fraunces", serif;
  font-size: 4.6rem;
  line-height: 0.55;
  color: rgba(245, 130, 31, 0.28);
  display: block;
  margin-bottom: 14px;
  animation: floaty 7s ease-in-out infinite alternate;
}
.st-quote {
  position: absolute;
  left: clamp(26px, 3.2vw, 42px);
  right: clamp(26px, 3.2vw, 42px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.st-quote.on {
  position: relative;
  left: auto;
  right: auto;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.st-quote blockquote {
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.75;
  color: var(--ink-soft);
  position: relative;
}
.st-quote .who {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.st-quote .who .ph {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex: none;
  border: 2px solid var(--red-soft);
}
.st-quote .who .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.st-quote .who b {
  font-size: 1rem;
  display: block;
}
.st-quote .who span {
  display: block;
  font-size: 12.5px;
  color: var(--red-t);
  font-weight: 600;
  margin-top: 2px;
}
.st-quote.on blockquote {
  animation: rise 0.75s var(--ease-expo) both 0.05s;
}
.st-quote.on .who {
  animation: rise 0.75s var(--ease-expo) both 0.18s;
}
.st-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  position: relative;
}
.st-nav .n-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  background: transparent;
  border: 1.5px solid rgba(20, 41, 74, 0.16);
  display: grid;
  place-items: center;
  color: var(--ink);
  transition: all 0.35s var(--ease-out);
}
.st-nav .n-btn:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  transform: scale(1.08);
}
.st-nav .n-btn svg {
  width: 16px;
  height: 16px;
}
.st-nav .cnt {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-left: 4px;
}
.st-nav .cnt b {
  color: var(--ink);
}
@media (max-width: 900px) {
  .st-top {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .st-carousel {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .st-rail {
    flex-direction: row;
    flex-wrap: wrap;
    order: 2;
  }
  .av-btn {
    width: 54px;
    height: 54px;
  }
  .av-btn .prog {
    inset: -5px;
  }
  .av-btn:hover {
    transform: translateY(-4px);
  }
}
.cta-band {
  margin: 0 clamp(16px, 3vw, 40px) clamp(72px, 8vw, 110px);
  border-radius: 32px;
  background: linear-gradient(120deg, #b85e0c 0%, #98470a 58%, #6b3105 100%);
  color: #fff;
  padding: clamp(52px, 7vw, 90px) clamp(28px, 5vw, 80px);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-band .ring {
  position: absolute;
  border: 1.5px dashed rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  animation: spin 44s linear infinite;
}
.cta-band .r1 {
  width: 480px;
  height: 480px;
  top: -220px;
  left: -140px;
}
.cta-band .r2 {
  width: 360px;
  height: 360px;
  bottom: -190px;
  right: -100px;
  animation-direction: reverse;
}
.cta-band h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  letter-spacing: -0.008em;
  line-height: 1.14;
  margin-bottom: 16px;
  position: relative;
  font-weight: 560;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
  position: relative;
}
.cta-band .btn-primary {
  background: #fff;
  color: var(--red-t);
  box-shadow: 0 18px 36px -14px rgba(0, 0, 0, 0.4);
}
.cta-band .btn-primary:hover {
  background: var(--ink);
  color: #fff;
}
.cta-band .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.cta-band .btn-ghost:hover {
  border-color: #fff;
}
.cta-band .ctas {
  justify-content: center;
  margin-bottom: 0;
}
footer {
  background: #fff;
  color: var(--ink-soft);
  padding: clamp(48px, 6vw, 72px) 0 0;
  font-size: 14px;
  border-top: 1px solid var(--line);
}
.f-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
  gap: clamp(24px, 3.5vw, 44px);
}
.f-brand img {
  height: 70px;
  width: auto;
  display: block;
  margin-bottom: 18px;
}
.f-brand p {
  line-height: 1.7;
  margin-bottom: 16px;
}
.f-brand .c {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 9px;
  line-height: 1.55;
}
.f-brand .c span {
  color: var(--red-t);
}
.f-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.f-social a {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.3s var(--ease-out);
}
.f-social a:hover {
  background: var(--red-deep);
  border-color: var(--red-deep);
  color: #fff;
  transform: translateY(-4px);
}
footer h4 {
  color: var(--ink);
  font-size: 14px;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}
.f-col a {
  display: block;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 4.5px 0;
  transition:
    color 0.25s,
    padding-left 0.25s;
}
.f-col a:hover {
  color: var(--red-t);
  padding-left: 6px;
}
.f-bottom {
  border-top: 1px solid var(--line);
  margin-top: clamp(30px, 4vw, 46px);
  padding: 18px 0;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.f-bottom a {
  color: var(--ink);
  text-decoration: none;
}
.f-bottom a:hover {
  color: var(--red-t);
}
@media (max-width: 1000px) {
  .f-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 540px) {
  .f-grid {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001s !important;
    animation-delay: 0s !important;
    transition-duration: 0.001s !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
html {
  scroll-padding-top: 132px;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  background: var(--bg);
}
.hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s var(--ease-out);
  animation: kenburns 26s ease-in-out infinite alternate;
}
.hero-media.ready video {
  opacity: 1;
}
@keyframes kenburns {
  from {
    transform: scale(1.04) translate(0, 0);
  }
  to {
    transform: scale(1.16) translate(-1.5%, -1.5%);
  }
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      100deg,
      rgba(250, 250, 247, 0.97) 0%,
      rgba(250, 250, 247, 0.92) 34%,
      rgba(250, 250, 247, 0.72) 56%,
      rgba(250, 250, 247, 0.55) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(250, 250, 247, 0.9) 0%,
      transparent 22%,
      transparent 76%,
      rgba(250, 250, 247, 0.85) 100%
    );
}
.hero-media.ready ~ .bg-blob {
  opacity: 0.28;
}
.hero-media.ready ~ .bg-grid {
  opacity: 0.22;
}
.hero .stage,
.hero .controls {
  position: relative;
  z-index: 4;
}
.vid-toggle {
  position: absolute;
  left: clamp(24px, 5vw, 72px);
  bottom: calc(100% + 14px);
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 8px 15px;
  cursor: pointer;
  opacity: 0;
  transition: all 0.35s var(--ease-out);
}
.hero-media.ready ~ .controls .vid-toggle {
  opacity: 1;
}
.vid-toggle:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}
.vid-toggle .ic {
  width: 8px;
  height: 10px;
  position: relative;
}
.vid-toggle .ic::before,
.vid-toggle .ic::after {
  content: "";
  position: absolute;
  top: 0;
  width: 3px;
  height: 10px;
  background: var(--red);
  border-radius: 1px;
}
.vid-toggle .ic::before {
  left: 0;
}
.vid-toggle .ic::after {
  right: 0;
}
.vid-toggle.paused .ic::before {
  left: 1px;
  width: 0;
  height: 0;
  background: none;
  border-left: 8px solid var(--red);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-radius: 0;
}
.vid-toggle.paused .ic::after {
  display: none;
}
@media (max-width: 980px) {
  .hero-scrim {
    background: linear-gradient(
      to bottom,
      rgba(250, 250, 247, 0.94) 0%,
      rgba(250, 250, 247, 0.9) 46%,
      rgba(250, 250, 247, 0.96) 100%
    );
  }
  .vid-toggle {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-media video {
    animation: none;
  }
}
.ticker {
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  padding: 14px 0;
  position: relative;
}
.ticker .tag {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--red-deep);
  padding: 0 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.ticker-row {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marq 55s linear infinite;
}
.ticker:hover .ticker-row {
  animation-play-state: paused;
}
.ticker-row a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #edf1f7;
  text-decoration: none;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12.5px;
  white-space: nowrap;
  transition: color 0.25s;
}
.ticker-row a:hover {
  color: #fff;
}
.ticker-row a::before {
  content: "✦";
  color: var(--red-t);
  font-size: 11px;
}
@keyframes marq {
  to {
    transform: translateX(-50%);
  }
}
@keyframes marqr {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
/* Hero responsive */
@media (max-width: 980px) {
  .hero {
    min-height: auto;
    position: relative;
    z-index: 3;
    padding-bottom: 20px;
  }
  .stage {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 24px 20px 28px;
    align-items: start;
  }
  .copy {
    min-height: 380px;
  }
  .visual {
    min-height: auto;
    order: 2;
    margin-top: 20px;
    position: relative;
    z-index: 6;
  }
  .enq {
    position: relative;
    z-index: 7;
    margin-top: 16px;
  }
  .ticker {
    position: relative;
    z-index: 2;
    margin-top: 16px;
  }
  .v-bg {
    min-height: 380px;
  }
  .stats {
    gap: 14px;
    flex-wrap: wrap;
  }
  .stat {
    flex: 1 1 100px;
    min-width: 90px;
  }
  .controls {
    flex-wrap: wrap;
    gap: 12px;
    padding: 14px 20px;
  }
  .controls .track {
    flex: 1 1 120px;
  }
  .enq-fields {
    gap: 14px;
  }
}
@media (max-width: 640px) {
  h1 {
    font-size: clamp(2rem, 8vw, 2.7rem);
  }
  .hero {
    min-height: 680px;
    height: auto;
    padding-bottom: 0;
    position: relative;
    z-index: 1;
  }
  .stage {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 20px 16px 0;
    align-items: start;
    min-height: auto;
  }
  .copy {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }
  .slide-copy {
    position: relative;
    inset: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 540px;
    justify-content: flex-start;
  }
  .slide-copy.active {
    position: relative;
    inset: auto;
  }
  .visual {
    margin-top: 12px;
    order: 2;
    min-height: 260px;
    padding-bottom: 32px;
    z-index: 999;
  }
  .eyebrow {
    font-size: 10px;
    padding: 6px 12px;
    margin-bottom: 12px;
  }
  .sub {
    font-size: 0.98rem;
    margin-bottom: 14px;
    line-height: 1.6;
  }
  .ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: auto;
    margin-bottom: 0;
    padding-top: 20px;
    padding-bottom: 16px;
  }
  .btn {
    justify-content: center;
    width: 100%;
  }
  .stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 18px;
    margin-bottom: 18px;
    padding-top: 16px;
    padding-bottom: 8px;
  }
  .stat .num {
    font-size: 1.6rem;
  }
  .stat .lbl {
    font-size: 10.5px;
    line-height: 1.4;
  }
  .enq {
    padding: 20px 16px;
    margin-bottom: 24px;
    z-index: 999;
  }
  .enq-fields {
    grid-template-columns: 1fr !important;
  }
  .fld[style*="grid-column"] {
    grid-column: span 1 !important;
  }
  .controls {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 16px 16px 24px;
    margin-top: 8px;
    background: linear-gradient(180deg, rgba(250,250,247,0) 0%, var(--bg) 100%);
  }
  .controls .counter,
  .controls .dots,
  .controls .navs {
    justify-content: center;
  }
  .controls .track,
  .track {
    display: none;
  }
  .enq,
  form.enq {
    margin-top: 24px;
  }
  .hero-media video {
    object-position: center top;
  }
  .v-bg {
    min-height: 320px;
  }
  .ticker {
    padding: 10px 0;
    margin-top: 12px;
  }
  .ticker .tag {
    position: static;
    justify-content: center;
    padding: 6px 12px;
    margin-bottom: 6px;
    width: 100%;
  }
  .ticker-row {
    gap: 28px;
  }
  /* Home sections — compact on phones */
  .about,
  .partners,
  .rankings,
  .objectives,
  .chairman,
  .programs,
  .corp,
  .placements,
  .events,
  .students {
    padding: 48px 0;
  }
  .sec-head {
    margin-bottom: 24px;
  }
  .sec-title {
    font-size: 1.65rem;
    line-height: 1.2;
  }
  .sec-sub {
    font-size: 0.95rem;
  }
  .rank-grid,
  .obj-list,
  .prog-grid,
  .corp-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .filters {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 8px;
    padding-bottom: 4px;
  }
  .filters::-webkit-scrollbar {
    display: none;
  }
  .f-btn {
    white-space: nowrap;
    flex: none;
  }
  .pl-card img {
    height: 120px;
  }
  .ev {
    padding: 14px;
    gap: 12px;
  }
  .ev .date {
    font-size: 12px;
  }
  .ev h3 {
    font-size: 0.95rem;
  }
  .st-top,
  .st-carousel {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .st-video video {
    aspect-ratio: 16/9;
  }
  .ab-shot .frame {
    border-radius: 16px;
  }
  .ab-chip {
    right: 10px;
    top: 12px;
    transform: scale(0.92);
    transform-origin: top right;
  }
  .ab-cap {
    font-size: 11px;
    left: 12px;
    right: 12px;
  }
}
