/* Theme Variables (Light by default, Dark option) */
:root {
  --bg: #ffffff;
  --bg-subtle: #f8fafc;
  --text: #0b0f19;
  --text-muted: #4b5563;
  --border: #e2e8f0;
  --accent: #1d4ed8;
  --accent-light: #eff6ff;
  --accent-dim: rgba(29, 78, 216, 0.15);
  --card-bg: #ffffff;
  --card-border: #e2e8f0;
  --input-bg: #f8fafc;
  --footer-bg: #f1f5f9;
  --section-bar-bg: rgba(248, 250, 252, 0.8);
  --font-sans: 'Roboto', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

[data-theme="dark"] {
  --bg: #050505;
  --bg-subtle: #0c0c0e;
  --text: #eee8de;
  --text-muted: rgba(238, 232, 222, 0.45);
  --border: rgba(29, 78, 216, 0.2);
  --accent-light: rgba(29, 78, 216, 0.05);
  --card-bg: rgba(12, 12, 14, 0.7);
  --card-border: rgba(255, 255, 255, 0.08);
  --input-bg: #0a0a0c;
  --footer-bg: #000000;
  --section-bar-bg: rgba(12, 12, 14, 0.5);
}

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

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 19px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

em {
  font-family: inherit;
  font-style: italic;
}

/* Custom WebGL fixed background canvas */
.webgl {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Preloader Screen */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #050508;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.preloader-logo {
  height: 70px;
  width: auto;
  animation: preloaderPulse 1.8s infinite ease-in-out;
}
.preloader-title {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #ffffff;
  text-transform: uppercase;
}
.preloader-progress-track {
  width: 220px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.preloader-progress-bar {
  height: 100%;
  width: 15%;
  background: linear-gradient(90deg, #1d4ed8, #3b82f6, #60a5fa);
  border-radius: 4px;
  transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.8);
}
@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(29, 78, 216, 0.4)); }
  50% { transform: scale(1.05); filter: drop-shadow(0 0 25px rgba(59, 130, 246, 0.8)); }
}

/* =============================================
   INTRO OVERLAY — Scroll-driven zoom animation
   ============================================= */
.intro-overlay {
  position: relative;
  z-index: 15; /* above page content z-index of 10 */
  height: 300vh; /* scroll distance for the animation */
}

.intro-overlay.done {
  display: none;
}

.intro-spacer {
  height: 100%; /* fills the overlay */
}

/* Animated title inside the torus hole */
.intro-title {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 18;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transform: translate(-50%, 100vh); /* starts below the screen */
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
  transition: none; /* controlled by JS */
}

.intro-logo {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.15));
}

.intro-text-main {
  font-family: var(--font-sans);
  font-size: 4.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text);
  text-align: center;
  line-height: 1;
  white-space: nowrap;
}

.intro-text-sub {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

/* Scroll hint at the bottom of the first viewport */
.scroll-hint {
  position: fixed;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.scroll-hint span {
  color: var(--accent);
}

.scroll-hint.hidden {
  opacity: 0;
  pointer-events: none;
}

.scroll-chevrons {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0.15rem;
}

.chevron {
  font-size: 2.6rem;
  line-height: 0.5;
  color: var(--accent);
  opacity: 0;
  animation: chevron-pulse 2s infinite;
}

.chevron.c1 { animation-delay: 0s; }
.chevron.c2 { animation-delay: 0.25s; }
.chevron.c3 { animation-delay: 0.5s; }

@keyframes chevron-pulse {
  0%   { opacity: 0; transform: translateY(-4px); }
  40%  { opacity: 1; transform: translateY(0); }
  80%, 100% { opacity: 0; transform: translateY(6px); }
}

/* Hide page content during intro — also disable pointer events */
body.intro-active header,
body.intro-active section,
body.intro-active footer,
body.intro-active .hiring-bar {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

body:not(.intro-active) header,
body:not(.intro-active) section,
body:not(.intro-active) footer,
body:not(.intro-active) .hiring-bar {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.6s ease;
}

/* Page content elements overlaying WebGL */
header, section, footer, .hiring-bar {
  position: relative;
  z-index: 10;
  background: var(--bg);
}

.container {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 2.5rem 4rem;
  background: var(--bg);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 0;
  position: relative;
  z-index: 2;
}

[data-theme="dark"] .container {
  background: var(--bg);
}

/* Header */
header {
  border-bottom: 1px solid var(--card-border);
  padding: 0;
}

header .container {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.menu-toggle-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.menu-toggle-btn:hover {
  background-color: var(--bg-subtle);
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-right: auto;
}

.logo-full-img {
  width: 300px;
  max-width: 100%;
  height: auto;
  display: block;
}

.logo-shield-img {
  height: 45px;
  width: auto;
  display: block;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: left;
}

.logo-title {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--text);
  text-transform: uppercase;
}

.logo-subtitle {
  font-family: var(--font-sans);
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--accent);
}

/* Buttons */
.btn {
  display: inline-block;
  background: var(--accent);
  color: #ffffff;
  padding: 0.9rem 2.2rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--accent);
  border-radius: 4px;        /* Sharp Fracture Corners */
  transition: all 0.25s ease;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
}

.btn:hover {
  background: transparent;
  color: var(--accent);
  box-shadow: 0 0 15px rgba(29, 78, 216, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent);
  color: var(--accent);
}

.btn-whatsapp {
  background: #128c7e;
  border-color: #128c7e;
  color: #ffffff;
}

.btn-whatsapp:hover {
  background: #075e54;
  border-color: #075e54;
  color: #ffffff;
}

.brochure-download-btn {
  background-color: rgb(219, 20, 60) !important;
  border-color: rgb(219, 20, 60) !important;
  color: #ffffff !important;
}

.brochure-download-btn span {
  color: #ffffff !important;
}

.brochure-download-btn:hover {
  background-color: rgb(185, 15, 50) !important;
  border-color: rgb(185, 15, 50) !important;
  color: #ffffff !important;
  box-shadow: 0 0 15px rgba(219, 20, 60, 0.4);
}

/* Sections */
section {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  content-visibility: auto;
  contain-intrinsic-size: 800px;
}

section .container {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

#brochure {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

#curriculum {
  padding-top: 0;
  padding-bottom: 1rem;
}

#curriculum .container {
  padding-top: 2rem;
  padding-bottom: 1rem;
}

#catalog {
  padding-top: 0;
}

#catalog .container {
  padding-top: 2rem;
}

.section-title-wrap {
  margin-bottom: 5rem;
  max-width: 900px;
}

.section-badge {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.section-title-wrap h2 {
  font-size: 3.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-transform: uppercase;
}

.section-title-wrap p {
  color: var(--text-muted);
  font-size: 1.2rem;
  margin-top: 1.5rem;
}

/* Hero */
.hero {
  padding: 4rem 0 8rem;
}

.hero-tag {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 2rem;
  display: inline-block;
}

.hero h1 {
  font-size: clamp(3.5rem, 4.2vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  white-space: nowrap;
  flex-wrap: nowrap;
}

.hero h1 img {
  height: clamp(64px, 5.4vw, 96px) !important;
  flex-shrink: 0;
}

.hero .section-subtitle {
  font-size: 1.35rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 720px;
  line-height: 1.6;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.hero-details {
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

/* Grid & Cards - Fracture Terminal Style */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

.process-timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(29, 78, 216, 0.12) !important;
  border-color: var(--accent) !important;
}

.card {
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 3.5rem 3rem;
  background: var(--card-bg);
  backdrop-filter: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(29, 78, 216, 0.06);
  transform: translateY(-4px);
}

.price-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.price-card.featured {
  background: rgba(29, 78, 216, 0.02);
  border-color: var(--accent);
}

.price {
  font-size: 2.8rem;
  font-weight: 800;
  margin: 2rem 0 0.5rem;
  color: var(--text);
}

.price-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-family: var(--font-sans);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Features */
.feature-list {
  list-style: none;
  margin: 2rem 0;
}

.feature-list li {
  margin-bottom: 1.8rem;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.feature-list li span.material-symbols-outlined {
  color: var(--accent);
  font-size: 1.5rem;
}

/* Hiring Partners */
.hiring-bar {
  padding: 1.5rem 0 0;
  background: var(--section-bar-bg);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.hiring-bar .container {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.company-logos {
  row-gap: 1rem !important;
}

.company-logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
}

@media (min-width: 901px) {
  .logo-grid-col-2 {
    grid-column: 2;
  }
  .logo-grid-col-3 {
    grid-column: 3;
  }
}

.company-logos img {
  width: 230px;
  height: 90px;
  max-width: 100%;
  object-fit: contain;
  filter: none;
  opacity: 0.85;
  transition: all 0.3s ease;
}

.company-logos img:hover {
  opacity: 1;
  transform: scale(1.08);
}

.company-logos img.logo-scale-up {
  transform: scale(1.45);
}

.company-logos img.logo-scale-up:hover {
  transform: scale(1.55);
}

.company-logos img.logo-scale-wipro {
  transform: scale(1.9);
}

.company-logos img.logo-scale-wipro:hover {
  transform: scale(2);
}

.company-logos img.logo-scale-ibm {
  transform: scale(1.75);
}

.company-logos img.logo-scale-ibm:hover {
  transform: scale(1.85);
}

.company-logo-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: none;
}

/* Force company logos to have a clean white background in dark mode */
[data-theme="dark"] .company-logo-card {
  background: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25) !important;
}

/* Registration Form */
.registration-box {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 4.5rem;
  backdrop-filter: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.registration-form-box {
  padding: 1rem;
}

.registration-form-frame {
  width: 100%;
  height: min(760px, 82vh);
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.registration-form-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #ffffff;
}

.registration-form-mobile-fallback,
.registration-form-mobile-fallback[hidden] {
  display: none;
}

.form-group {
  margin-bottom: 2.2rem;
}

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.8rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  font-family: var(--font-sans);
}

.form-control {
  width: 100%;
  padding: 1.2rem 1.4rem;
  border: 1px solid var(--card-border);
  border-radius: 4px;
  background: var(--input-bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  transition: all 0.25s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 15px rgba(29, 78, 216, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-step {
  display: none;
}

.form-step.is-active {
  display: block;
}

.form-actions {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.radio-group {
  display: flex;
  gap: 2rem;
  margin-top: 0.6rem;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  font-size: 1.05rem;
}

.radio-option input[type="radio"] {
  accent-color: var(--accent);
  width: 1.2rem;
  height: 1.2rem;
}

.payment-proof-box {
  margin-top: 2rem;
  padding: 1.5rem;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  background: var(--bg-subtle);
}

.payment-proof-header {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.payment-proof-header > span {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  flex-shrink: 0;
}

.payment-proof-header h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.payment-proof-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.payment-methods {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.qr-placeholder {
  min-height: 170px;
  border: 1px dashed var(--accent);
  border-radius: 10px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  text-align: center;
  padding: 1rem;
}

.qr-placeholder .material-symbols-outlined {
  font-size: 3rem;
  color: var(--accent);
}

.qr-placeholder small,
.payment-details small {
  color: var(--text-muted);
  line-height: 1.4;
}

.payment-details {
  display: grid;
  gap: 1rem;
}

.payment-details > div {
  border: 1px solid var(--card-border);
  border-radius: 10px;
  background: #ffffff;
  padding: 1rem;
}

.payment-details span {
  display: block;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.payment-details strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
}

.faq-item {
  margin-bottom: 2rem;
  border-bottom: none;
  padding: 2rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 2;
}

.faq-item h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}

.faq-item p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Footer */
footer {
  border-top: 1px solid var(--card-border);
  padding: 0;
  background: var(--footer-bg);
  color: var(--text-muted);
  font-size: 0.95rem;
}

footer .container {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* Animated Flex Testimonial Cards */
.testimonial-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
}

.testimonial-container {
  height: 440px;
  width: 100%;
  max-width: 1140px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 16px;
}

.testimonial-input {
  display: none;
}

.testimonial-card {
  position: relative;
  width: 100px;
  height: 100%;
  border-radius: 2rem;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  transition: all 0.6s cubic-bezier(0.28, -0.03, 0, 0.99);
  box-shadow: 0px 12px 32px -5px rgba(0, 0, 0, 0.5);
  border: 2px solid var(--card-border);
  flex-shrink: 0;
}

.testimonial-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(5, 5, 8, 0.92) 100%);
  transition: background 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--accent);
  box-shadow: 0px 16px 40px -5px rgba(29, 78, 216, 0.4);
}

.testimonial-card > .row {
  position: relative;
  z-index: 2;
  color: white;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  padding: 1.25rem;
  width: 100%;
}

.testimonial-card > .row > .icon {
  background: var(--accent);
  color: white;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  min-width: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 16px rgba(29, 78, 216, 0.5);
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.testimonial-card > .row > .icon:hover {
  transform: scale(1.12);
  background: #2563eb;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.7);
}

.testimonial-card > .row > .description {
  display: flex;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  height: 100px;
  width: 550px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition-delay: 0.15s;
  padding-left: 1.25rem;
  white-space: normal;
}

.student-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #60a5fa;
  margin-bottom: 0.25rem;
}

.description h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.25rem;
}

.description p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  line-height: 1.45;
  margin: 0;
}

/* Checked or Hovered state triggers expansion */
.testimonial-input:checked + .testimonial-card {
  width: 620px;
}

.testimonial-container:hover .testimonial-card:hover {
  width: 620px;
}

.testimonial-container:hover .testimonial-card:not(:hover) {
  width: 100px;
}

.testimonial-container:hover .testimonial-card:not(:hover) .description {
  opacity: 0 !important;
  transform: translateY(30px) !important;
}

.testimonial-input:checked + .testimonial-card .description,
.testimonial-card:hover .description {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

@media (max-width: 990px) {
  .testimonial-container {
    flex-direction: column;
    height: auto;
  }
  .testimonial-card,
  .testimonial-container:hover .testimonial-card:not(:hover) {
    width: 100% !important;
    height: 120px;
  }
  .testimonial-input:checked + .testimonial-card,
  .testimonial-container:hover .testimonial-card:hover {
    height: 200px;
    width: 100% !important;
  }
  .testimonial-card > .row > .description {
    width: 100%;
  }
}

/* Video Modal Popup */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 5, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.video-modal.is-active {
  opacity: 1;
  pointer-events: all;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 450px;
  aspect-ratio: 9/16;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 25px 60px rgba(0,0,0,0.85);
}

.video-modal-content video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: #ffffff;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2100;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.video-modal-close:hover {
  background: var(--accent);
}

.video-modal-close:hover span {
  color: #050505 !important;
}

/* Scanline HUD aesthetic layer */
.scanlines {
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 3px,
    rgba(0, 0, 0, 0.15) 3px,
    rgba(0, 0, 0, 0.15) 4px
  );
  pointer-events: none;
  z-index: 5;
  opacity: 0.3;
}

/* ============================================
   SCROLL REVEAL STYLES (Smooth entry)
   ============================================ */
.animations-ready .scroll-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal,
.animations-ready .scroll-reveal.reveal-active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

@media (max-width: 1024px) {
  .webgl,
  .scanlines,
  .intro-overlay,
  .intro-title {
    display: none !important;
  }

  /* Override intro-active: show content immediately on mobile */
  body.intro-active header,
  body.intro-active section,
  body.intro-active footer,
  body.intro-active .hiring-bar {
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .scroll-reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .menu-toggle-btn {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 1.5rem;
    gap: 1.25rem;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .nav-links.is-active {
    display: flex;
  }

  .logo-full-img {
    width: 220px;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .grid-3, .grid-2, .form-row {
    grid-template-columns: 1fr;
  }
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: left;
  }
  .hero h1 {
    font-size: 3.2rem;
    white-space: normal;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .hero .section-subtitle {
    margin-left: 0;
    margin-right: 0;
  }
  .hero-details {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .hero-buttons {
    justify-content: flex-start;
  }
  .grid-2 {
    gap: 2.5rem;
  }
  .company-logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .process-timeline-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .section-title-wrap h2, .section-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  
  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    white-space: normal;
    flex-wrap: wrap;
    justify-content: center;
  }
  .section-title-wrap h2, .section-title {
    font-size: 2.0rem;
  }
}

@media (min-width: 901px) and (max-width: 1400px) {
  .hero h1 {
    font-size: clamp(3.2rem, 3.8vw, 4.3rem);
  }

  .hero h1 img {
    height: clamp(58px, 5vw, 78px) !important;
  }

  .hero .section-subtitle {
    max-width: 760px;
  }
}

@media (max-width: 500px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
  .process-timeline-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Terminal cursor blink */
@keyframes blink-cursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Brochure Modal */
.brochure-modal {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.brochure-modal.is-active {
  opacity: 1;
  pointer-events: all;
}

.brochure-modal-card {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
  max-width: 480px;
  width: 90%;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--text);
}

.brochure-modal.is-active .brochure-modal-card {
  transform: translateY(0);
}

.brochure-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.brochure-modal-header h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  margin: 0;
}

.brochure-modal-close-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}

.brochure-modal-close-btn:hover {
  color: var(--text);
  background: var(--border);
}

.brochure-modal-body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.form-group {
  margin-bottom: 1.25rem;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-group input {
  width: 100%;
  padding: 0.9rem 1.2rem;
  font-size: 0.95rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--input-bg);
  color: var(--text);
  transition: all 0.2s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

/* Admin Dashboard Specific Styles */
.admin-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
}

.admin-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 800;
  font-size: 1.5rem;
}

.admin-logout {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.admin-logout:hover {
  background: rgba(29, 78, 216, 0.1);
  border-color: var(--accent);
  color: var(--accent);
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.admin-stat-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.admin-stat-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 12px;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-stat-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}

.admin-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}

.admin-tabs {
  display: flex;
  gap: 1rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}

.admin-tab {
  padding: 0.8rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}

.admin-tab:hover {
  color: var(--text);
}

.admin-tab.is-active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.admin-panel {
  display: none;
}

.admin-panel.is-active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.admin-table-container {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

.admin-table th {
  background: var(--bg-subtle);
  padding: 1rem 1.5rem;
  font-weight: 700;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.admin-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}

.admin-table tr:last-child td {
  border-bottom: none;
}

.admin-table tr:hover td {
  background: rgba(29, 78, 216, 0.02);
  color: var(--text);
}

.admin-login-wrap {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-login-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 3rem;
  width: 100%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.save-indicator {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #10b981;
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
  z-index: 2500;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.save-indicator.is-active {
  transform: translateY(0);
  opacity: 1;
}

/* Modules Roadmap */
.modules-container {
  display: grid;
  gap: 1rem;
  overflow: visible;
  padding: 1rem 0 0;
  margin-top: 1rem;
}

.roadmap-step {
  width: min(980px, 100%);
  min-height: 120px;
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: stretch;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.roadmap-step:nth-child(1) {
  margin-left: 0;
}

.roadmap-step:nth-child(2) {
  margin-left: 8%;
}

.roadmap-step:nth-child(3) {
  margin-left: 16%;
}

.roadmap-step:nth-child(4) {
  margin-left: 24%;
}

.roadmap-number {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #ffffff;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
}

.roadmap-body {
  padding: 1.35rem 1.75rem;
  background: linear-gradient(90deg, #eff6ff 0%, #ffffff 100%);
}

.roadmap-kicker {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.roadmap-body h3 {
  font-size: 1.45rem;
  line-height: 1.2;
  margin-bottom: 0.55rem;
  color: var(--text);
}

.roadmap-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 1024px) {
  .roadmap-step,
  .roadmap-step:nth-child(n) {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .roadmap-step {
    grid-template-columns: 72px 1fr;
  }

  .registration-form-box {
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .registration-form-mobile-fallback,
  .registration-form-mobile-fallback[hidden] {
    display: block;
    padding: 1.5rem;
    background: var(--bg-subtle);
    border: 1px solid var(--border);
    border-radius: 10px;
    text-align: center;
  }

  .registration-form-mobile-fallback h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
  }

  .registration-form-mobile-fallback p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
  }

  .registration-form-frame {
    display: none;
  }

  .roadmap-number {
    font-size: 2rem;
  }

  .roadmap-body {
    padding: 1rem;
  }

  .payment-methods {
    grid-template-columns: 1fr;
  }

  .qr-placeholder {
    min-height: 150px;
  }

  .form-actions {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   COURSE CATALOG COMPATIBILITY (program.html)
   ========================================== */
.o-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.c-header {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.c-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.c-logo-link {
  text-decoration: none;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.25rem;
}

.c-logo-icon {
  background: var(--accent);
  color: #ffffff;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-nav-btn {
  cursor: pointer;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  z-index: 100;
}

.c-nav-btn .is-close {
  display: none;
}

.c-nav-btn.is-active .is-open {
  display: none;
}

.c-nav-btn.is-active .is-close {
  display: inline;
}

.c-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding-top: 5rem;
}

.c-menu.is-active {
  opacity: 1;
  pointer-events: all;
}

.c-menu-link-wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.c-menu-link {
  font-size: 2.5rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--text);
  text-transform: uppercase;
  transition: color 0.2s;
}

.c-menu-link:hover {
  color: var(--accent);
}

.c-menu-link-bg {
  display: none;
}

.c-section {
  padding: 5rem 0;
  position: relative;
  z-index: 10;
  background: var(--bg);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

.course-card {
  grid-column: span 6;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2rem;
  background: var(--card-bg);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.course-card.col-6 {
  grid-column: span 6;
}

.course-card.col-4 {
  grid-column: span 4;
}

@media (max-width: 900px) {
  .course-card.col-6, .course-card.col-4 {
    grid-column: span 12;
  }
}

.status-indicator {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px #10b981;
}

.c-course-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text);
  transition: all 0.2s;
}

.c-course-btn:hover {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.filter-bar {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.2s;
  text-transform: uppercase;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.c-marquee-block {
  overflow: hidden;
  white-space: nowrap;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.c-marquee-line {
  display: inline-block;
  animation: marquee-scroll 20s linear infinite;
  padding-left: 100%;
}

@keyframes marquee-scroll {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}

.c-btn {
  display: inline-block;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 0.8rem 1.8rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.c-btn.primary {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.c-btn:hover {
  background: var(--text);
  color: var(--bg);
}

.c-footer {
  border-top: 1px solid var(--border);
  background: var(--footer-bg);
  padding: 4rem 0 2rem;
}

.c-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.c-link {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.c-link:hover {
  color: var(--accent);
}

.footer-status-box {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.8rem;
}

.c-footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.c-music {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 100;
}

.c-music-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 0.5rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.c-sound-bar-wrap {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 12px;
}

.c-sound-bar {
  width: 2px;
  height: 100%;
  background: var(--accent);
  animation: bounce-bars 0.8s ease infinite alternate;
}

.c-sound-bar:nth-child(2) { animation-delay: 0.15s; }
.c-sound-bar:nth-child(3) { animation-delay: 0.3s; }
.c-sound-bar:nth-child(4) { animation-delay: 0.45s; }
.c-sound-bar:nth-child(5) { animation-delay: 0.6s; }

@keyframes bounce-bars {
  from { height: 20%; }
  to { height: 100%; }
}

.t-display-1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 900; line-height: 1.1; color: var(--text); }
.t-display-3 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 900; line-height: 1.1; color: var(--text); }
.t-display-6 { font-size: 1.5rem; font-weight: 800; color: var(--text); }
.t-body-3 { font-size: 1rem; color: var(--text-muted); }
.t-micro-1 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.text-accent { color: var(--accent) !important; }
.text-muted { color: var(--text-muted) !important; }
.margin-24 { margin-bottom: 1.5rem; }
.margin-16 { margin-bottom: 1rem; }
.margin-32 { margin-bottom: 2rem; }
