/* ═══════════════════════════════════════════════════════════════
   PSC Enterprise Landing – Maintenance Experience 2026
   ═══════════════════════════════════════════════════════════════ */

:root {
  --blue-deep: #050810;
  --blue-dark: #0f2744;
  --blue-mid: #1a3a5c;
  --blue-light: #2a5080;
  --orange: #e8620a;
  --orange-glow: #ff7a1a;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.62);
  --soft: rgba(255, 255, 255, 0.38);
  --glass: rgba(15, 39, 68, 0.38);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-glow: rgba(232, 98, 10, 0.22);
  --font: 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-cine: cubic-bezier(0.16, 1, 0.3, 1);
  --max: 1080px;
  --section-gap: clamp(3.5rem, 8vw, 5.5rem);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  background: #000;
  color: var(--white);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-loading { overflow: hidden; }
body.has-custom-cursor { cursor: none; }
body.has-custom-cursor a,
body.has-custom-cursor button,
body.has-custom-cursor input { cursor: none; }

/* ── LOADER ── */
.loader {
  position: fixed;
  inset: 0;
  z-index: 200000;
  display: grid;
  place-items: center;
  background: #000;
  transition: opacity 0.7s var(--ease-cine), visibility 0.7s;
}

.loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__inner {
  text-align: center;
  width: min(280px, 80vw);
}

.loader__logo-wrap {
  position: relative;
  display: inline-flex;
  margin-bottom: 2rem;
}

.loader__glow {
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle, rgba(232, 98, 10, 0.35) 0%, transparent 70%);
  filter: blur(20px);
  animation: loaderPulse 1.4s ease-in-out infinite;
}

.loader__logo {
  position: relative;
  width: min(200px, 55vw);
  height: auto;
  animation: loaderFloat 2s ease-in-out infinite;
}

.loader__bar {
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.loader__bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue-light), var(--orange));
  border-radius: 2px;
  transition: width 0.08s linear;
  box-shadow: 0 0 12px rgba(232, 98, 10, 0.5);
}

.loader__percent {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--soft);
  font-variant-numeric: tabular-nums;
}

/* ── INTRO CINEMATIC ── */
.intro {
  position: fixed;
  inset: 0;
  z-index: 150000;
  display: grid;
  place-items: center;
  background: #000;
  transition: opacity 0.8s var(--ease-cine), visibility 0.8s;
}

.intro.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro__stage {
  text-align: center;
  padding: 2rem;
}

.intro__logo-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  opacity: 0;
  transform: scale(0.9);
}

.intro__logo-wrap.is-in {
  animation: introLogoIn 0.7s var(--ease-cine) forwards;
}

.intro__halo {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 98, 10, 0.3) 0%, rgba(42, 80, 128, 0.15) 45%, transparent 70%);
  filter: blur(24px);
}

.intro__ring {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 40px rgba(232, 98, 10, 0.15);
}

.intro__sweep {
  position: absolute;
  width: 260px;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), var(--orange-glow), transparent);
  filter: blur(1px);
  opacity: 0;
  transform: translateX(-120px) rotate(-8deg);
}

.intro__sweep.is-active {
  animation: lightSweep 0.55s var(--ease-cine) forwards;
}

.intro__logo {
  position: relative;
  z-index: 2;
  width: min(220px, 60vw);
  height: auto;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.5));
}

.intro__reflection {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%) scaleY(-1);
  width: 180px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.08), transparent);
  filter: blur(8px);
  opacity: 0.5;
}

.intro__title {
  font-size: clamp(0.95rem, 3.5vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #fff 30%, rgba(255, 200, 150, 0.95) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transform: translateY(16px);
}

.intro__title.is-in {
  animation: fadeUp 0.55s var(--ease-cine) forwards;
}

.intro__slogan {
  margin-top: 0.75rem;
  font-size: clamp(0.88rem, 2.5vw, 1rem);
  color: var(--muted);
  opacity: 0;
  transform: translateY(12px);
}

.intro__slogan.is-in {
  animation: fadeUp 0.5s var(--ease-cine) forwards;
}

/* ── CUSTOM CURSOR ── */
.psc-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.psc-cursor.is-active { opacity: 1; }

.psc-cursor__dot {
  position: absolute;
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(232, 98, 10, 0.6);
}

.psc-cursor__ring {
  position: absolute;
  width: 36px;
  height: 36px;
  margin: -18px 0 0 -18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  transition: transform 0.2s var(--ease), border-color 0.2s ease, width 0.2s ease, height 0.2s ease, margin 0.2s ease;
}

.psc-cursor.is-hover .psc-cursor__ring {
  width: 52px;
  height: 52px;
  margin: -26px 0 0 -26px;
  border-color: rgba(232, 98, 10, 0.5);
}

/* ── PAGE SHELL ── */
.psc {
  position: relative;
  opacity: 0;
  transition: opacity 0.9s var(--ease-cine);
}

.psc.is-visible { opacity: 1; }

.psc__bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.psc__bg-layer {
  position: absolute;
  inset: -5%;
  transition: transform 0.15s ease-out;
}

.psc__bg-layer--1 {
  background:
    radial-gradient(ellipse 80% 50% at 15% 50%, rgba(42, 80, 128, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 85% 60%, rgba(232, 98, 10, 0.2) 0%, transparent 50%),
    linear-gradient(160deg, #030508 0%, var(--blue-deep) 40%, #0a1424 100%);
}

.psc__bg-layer--2 {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
}

.psc__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(5, 8, 16, 0.85) 100%);
}

.psc__bg-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0, 0, 0, 0.7) 100%);
}

.psc__light {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  transition: transform 0.2s ease-out;
}

.psc__light--blue {
  width: 500px;
  height: 500px;
  top: 20%;
  left: -8%;
  background: rgba(42, 80, 128, 0.35);
  animation: lightDrift 12s ease-in-out infinite;
}

.psc__light--orange {
  width: 420px;
  height: 420px;
  top: 55%;
  right: -6%;
  background: rgba(232, 98, 10, 0.22);
  animation: lightDrift 10s ease-in-out infinite reverse;
}

.psc__particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.85;
}

/* ── SECTIONS COMMON ── */
.psc-section-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange-glow);
  text-align: center;
}

.psc-section-title {
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
  font-size: clamp(1.25rem, 3.5vw, 1.75rem);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.02em;
}

/* ── HERO ── */
.psc-hero {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3rem, 10vw, 5rem) clamp(1.25rem, 4vw, 2rem) var(--section-gap);
  text-align: center;
}

.psc-hero__logo-stage {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(1.5rem, 4vw, 2.25rem);
}

.psc-hero__halo {
  position: absolute;
  width: min(400px, 88vw);
  height: min(400px, 88vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 98, 10, 0.2) 0%, rgba(42, 80, 128, 0.1) 50%, transparent 72%);
  filter: blur(30px);
  animation: haloPulse 5s ease-in-out infinite;
}

.psc-hero__ring {
  position: absolute;
  width: min(320px, 75vw);
  height: min(320px, 75vw);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.07);
  animation: ringRotate 30s linear infinite;
}

.psc-hero__ring--2 {
  width: min(360px, 82vw);
  height: min(360px, 82vw);
  border-color: rgba(232, 98, 10, 0.12);
  animation-direction: reverse;
  animation-duration: 40s;
}

.psc-hero__logo {
  position: relative;
  z-index: 2;
  width: min(280px, 68vw);
  height: auto;
  filter: drop-shadow(0 16px 48px rgba(0, 0, 0, 0.45));
  animation: logoBreath 6s ease-in-out infinite;
}

.psc-hero__reflection {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%) scaleY(-1);
  width: 60%;
  height: 30px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.06), transparent);
  filter: blur(6px);
  z-index: 1;
}

.psc-hero__eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.4rem 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 180, 120, 0.95);
  border: 1px solid rgba(232, 98, 10, 0.3);
  border-radius: 999px;
  background: rgba(232, 98, 10, 0.08);
}

.psc-hero__title {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
  overflow: hidden;
}

.psc-hero__title-text {
  display: block;
  font-size: clamp(1.2rem, 4.2vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
  background: linear-gradient(
    120deg,
    #ffffff 0%,
    #e8eef5 25%,
    #ffffff 50%,
    rgba(255, 190, 140, 0.95) 75%,
    #ffffff 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleShimmer 6s linear infinite;
}

.psc-hero__title-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  animation: titleSweep 4s ease-in-out infinite;
}

.psc-hero__tagline {
  margin-bottom: 1rem;
  font-size: clamp(1rem, 2.8vw, 1.2rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.psc-hero__desc {
  max-width: 38rem;
  margin: 0 auto;
  font-size: clamp(0.9rem, 2.2vw, 1.02rem);
  line-height: 1.8;
  color: var(--muted);
}

/* ── STATS ── */
.psc-stats {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem) var(--section-gap);
}

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

.glass-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition: transform 0.4s var(--ease), border-color 0.4s ease, box-shadow 0.4s ease;
}

.glass-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 98, 10, 0.35);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.35),
    0 0 30px rgba(232, 98, 10, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.psc-stat {
  padding: 1.35rem 1rem;
  text-align: center;
}

.psc-stat__icon {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 0.65rem;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.psc-stat__text {
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

/* ── COUNTDOWN ── */
.psc-countdown {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem) var(--section-gap);
  text-align: center;
}

.psc-countdown__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.4rem, 2vw, 0.85rem);
  flex-wrap: wrap;
}

.psc-countdown__unit {
  min-width: clamp(72px, 18vw, 96px);
  padding: 1rem 0.75rem;
}

.psc-countdown__val {
  display: block;
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.psc-countdown__lbl {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--soft);
}

.psc-countdown__sep {
  font-size: 1.4rem;
  color: rgba(232, 98, 10, 0.5);
  user-select: none;
}

/* ── TIMELINE ── */
.psc-timeline {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem) var(--section-gap);
}

.psc-timeline__track {
  position: relative;
  display: grid;
  gap: 0;
  padding-left: 1.5rem;
}

.psc-timeline__track::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--orange), var(--blue-light), transparent);
  border-radius: 2px;
}

.psc-timeline__item {
  position: relative;
  padding: 0 0 1.75rem 1.75rem;
}

.psc-timeline__item:last-child { padding-bottom: 0; }

.psc-timeline__dot {
  position: absolute;
  left: -1.5rem;
  top: 6px;
  width: 12px;
  height: 12px;
  margin-left: -5px;
  background: var(--orange);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(232, 98, 10, 0.5);
}

.psc-timeline__year {
  display: inline-block;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--orange-glow);
}

.psc-timeline__text {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
}

.psc-timeline__card {
  padding: 1.1rem 1.25rem;
  margin-top: 0.15rem;
}

/* ── FEATURES ── */
.psc-features {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem) var(--section-gap);
}

.psc-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.psc-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.25rem 1.15rem;
}

.psc-feature__check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange-glow);
  background: rgba(232, 98, 10, 0.15);
  border: 1px solid rgba(232, 98, 10, 0.35);
  border-radius: 8px;
}

.psc-feature__text {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

/* ── ADMIN LOGIN ── */
.psc-admin {
  position: relative;
  z-index: 1;
  max-width: 460px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem) var(--section-gap);
}

.psc-admin__card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.glass-card--glow {
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.psc-admin__border {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(232, 98, 10, 0.5), rgba(42, 80, 128, 0.3), rgba(232, 98, 10, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.psc-admin__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.04) 50%, transparent 60%);
  animation: cardShine 5s ease-in-out infinite;
  pointer-events: none;
}

.psc-admin__inner {
  position: relative;
  padding: clamp(1.5rem, 4vw, 2rem);
}

.psc-admin__badge {
  display: inline-block;
  margin-bottom: 0.6rem;
  padding: 0.3rem 0.7rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-glow);
  background: rgba(232, 98, 10, 0.12);
  border-radius: 6px;
}

.psc-admin__title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.psc-admin__sub {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.psc-admin__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.psc-field__label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.psc-field input {
  width: 100%;
  padding: 0.85rem 1rem;
  font: inherit;
  font-size: 0.94rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s, transform 0.3s;
}

.psc-field input::placeholder { color: rgba(255, 255, 255, 0.28); }

.psc-field input:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.psc-field input:focus {
  outline: none;
  border-color: rgba(232, 98, 10, 0.6);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 3px rgba(232, 98, 10, 0.15), 0 0 24px rgba(232, 98, 10, 0.12);
  transform: translateY(-1px);
}

.psc-error {
  padding: 0.75rem 1rem;
  font-size: 0.84rem;
  color: #fecaca;
  background: rgba(185, 28, 28, 0.2);
  border: 1px solid rgba(248, 113, 113, 0.3);
  border-radius: 10px;
  animation: shakeSoft 0.4s ease;
}

.psc-btn {
  position: relative;
  width: 100%;
  padding: 0.95rem 1.25rem;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-glow));
  border: none;
  border-radius: 999px;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, filter 0.3s;
  box-shadow: 0 12px 32px rgba(232, 98, 10, 0.35);
}

.psc-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 16px 40px rgba(232, 98, 10, 0.45);
}

.psc-btn:disabled { opacity: 0.7; cursor: wait; }

.psc-admin__note {
  margin-top: 1rem;
  font-size: 0.7rem;
  color: var(--soft);
  text-align: center;
}

/* ── FOOTER ── */
.psc-footer {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem) clamp(2.5rem, 6vw, 4rem);
  text-align: center;
}

.psc-footer__line {
  width: 80px;
  height: 1px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(90deg, transparent, rgba(232, 98, 10, 0.6), transparent);
}

.psc-footer__legal {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.75);
}

.psc-footer__tag {
  margin-top: 0.45rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.psc-footer__loc {
  margin-top: 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--soft);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

.reveal[data-stagger].is-visible .psc-stats__grid > *,
.reveal[data-stagger].is-visible .psc-timeline__item,
.reveal[data-stagger].is-visible .psc-features__grid > * {
  opacity: 0;
  transform: translateY(24px);
  animation: staggerIn 0.65s var(--ease) forwards;
}

.reveal[data-stagger].is-visible .psc-stats__grid > *:nth-child(1),
.reveal[data-stagger].is-visible .psc-timeline__item:nth-child(1),
.reveal[data-stagger].is-visible .psc-features__grid > *:nth-child(1) { animation-delay: 0.08s; }

.reveal[data-stagger].is-visible .psc-stats__grid > *:nth-child(2),
.reveal[data-stagger].is-visible .psc-timeline__item:nth-child(2),
.reveal[data-stagger].is-visible .psc-features__grid > *:nth-child(2) { animation-delay: 0.16s; }

.reveal[data-stagger].is-visible .psc-stats__grid > *:nth-child(3),
.reveal[data-stagger].is-visible .psc-timeline__item:nth-child(3),
.reveal[data-stagger].is-visible .psc-features__grid > *:nth-child(3) { animation-delay: 0.24s; }

.reveal[data-stagger].is-visible .psc-stats__grid > *:nth-child(4),
.reveal[data-stagger].is-visible .psc-timeline__item:nth-child(4),
.reveal[data-stagger].is-visible .psc-features__grid > *:nth-child(4) { animation-delay: 0.32s; }

.reveal[data-stagger].is-visible .psc-features__grid > *:nth-child(5) { animation-delay: 0.4s; }

@keyframes staggerIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ── KEYFRAMES ── */
@keyframes loaderPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes loaderFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes introLogoIn {
  to { opacity: 1; transform: scale(1); }
}

@keyframes lightSweep {
  0% { opacity: 0; transform: translateX(-120px) rotate(-8deg); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translateX(120px) rotate(-8deg); }
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes haloPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

@keyframes ringRotate {
  to { transform: rotate(360deg); }
}

@keyframes logoBreath {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

@keyframes titleShimmer {
  to { background-position: 200% center; }
}

@keyframes titleSweep {
  0% { left: -100%; }
  50%, 100% { left: 150%; }
}

@keyframes lightDrift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -15px); }
}

@keyframes cardShine {
  0%, 100% { transform: translateX(-30%); opacity: 0.3; }
  50% { transform: translateX(30%); opacity: 0.7; }
}

@keyframes shakeSoft {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .psc-stats__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .psc-countdown__sep { display: none; }
  .psc-countdown__unit { min-width: calc(50% - 0.5rem); flex: 1 1 calc(50% - 0.5rem); }
  .psc-hero__title-text { letter-spacing: 0.06em; }
}

@media (max-width: 400px) {
  .psc-stats__grid { grid-template-columns: 1fr; }
  .psc-countdown__unit { min-width: 100%; }
}

@media (hover: none), (pointer: coarse) {
  .psc-cursor { display: none !important; }
  body.has-custom-cursor { cursor: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .reveal[data-stagger] > * { opacity: 1; transform: none; }
  .psc, .loader, .intro { opacity: 1; }
}
