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

[hidden] {
  display: none !important;
}

body {
  font-family: "Aptos", "Segoe UI Variable Text", "Segoe UI", sans-serif;
  background: #08111f;
  color: #f8fafc;
  min-height: 100vh;
  line-height: 1.6;
  color-scheme: dark;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

:root {
  --font-body: "Aptos", "Segoe UI Variable Text", "Segoe UI", sans-serif;
  --font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --bg-900: #08111f;
  --bg-850: #0b1528;
  --bg-800: #101c34;
  --surface-strong: rgba(11, 18, 32, 0.82);
  --surface-soft: rgba(15, 23, 42, 0.58);
  --surface-border: rgba(148, 163, 184, 0.16);
  --surface-border-strong: rgba(191, 219, 254, 0.2);
  --text-primary: #f8fafc;
  --text-secondary: #d8e3f3;
  --text-muted: #9fb0c7;
  --accent-violet: #9f67ff;
  --accent-sky: #63d2ff;
  --accent-gold: #f6b94f;
  --success: #86efac;
  --radius-card: 30px;
  --radius-pill: 999px;
  --shadow-soft: 0 20px 45px rgba(2, 6, 23, 0.28);
  --shadow-card: 0 28px 80px rgba(2, 6, 23, 0.42);
  --shadow-focus: 0 0 0 4px rgba(99, 210, 255, 0.16);
  --motion-snap: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-soft: cubic-bezier(0.19, 1, 0.22, 1);
  --lift-sm: translate3d(0, -4px, 0);
  --lift-md: translate3d(0, -8px, 0);
  --surface-glow: 0 28px 80px rgba(76, 29, 149, 0.16);
}

::selection {
  background: rgba(99, 210, 255, 0.22);
  color: #ffffff;
}

a {
  color: inherit;
}

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

.home-page {
  background:
    radial-gradient(circle at 22% 24%, rgba(124, 58, 237, 0.28), transparent 52%),
    radial-gradient(circle at 82% 36%, rgba(14, 165, 233, 0.16), transparent 46%),
    linear-gradient(180deg, #0b1120 0%, #0f172a 52%, #111b33 100%);
}

.home-page > :not(.site-splash) {
  will-change: opacity, transform;
  transition:
    opacity 0.75s ease,
    transform 0.95s var(--motion-soft);
}

.home-page.splash-active {
  overflow: hidden;
}

.home-page.splash-active > :not(.site-splash) {
  opacity: 0;
  transform: translate3d(0, -18px, 0) scale(0.985);
  pointer-events: none;
}

.site-splash {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  animation: splashAutoDismiss 1s var(--motion-snap) 3.1s forwards;
}

.home-page.splash-finished .site-splash {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-splash-inner {
  width: min(72vw, 430px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  transform: translateZ(0);
}

.splash-bowl {
  position: relative;
  width: min(64vw, 320px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 22px 46px rgba(125, 211, 252, 0.18));
  animation: splashBowlFloat 4.4s ease-in-out infinite;
  will-change: transform;
}

.site-splash-logo-base,
.site-splash-logo-water {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 28px;
}

.site-splash-logo-base {
  opacity: 0.3;
  filter: grayscale(1) brightness(1.8) contrast(0.95);
}

.site-splash-water-fill {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform: translate3d(0, 102%, 0);
  animation: splashWaterFill 2.1s var(--motion-snap) 0.2s forwards;
  will-change: transform;
}

.site-splash-water-fill::before {
  content: "";
  position: absolute;
  left: -6%;
  right: -6%;
  top: -5px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.72),
    rgba(125, 211, 252, 1),
    rgba(255, 255, 255, 0.7)
  );
  filter: blur(0.5px);
  animation: splashWaterWave 2.4s ease-in-out infinite;
}

.site-splash-logo-water {
  filter:
    brightness(1.42)
    saturate(0.82)
    drop-shadow(0 0 18px rgba(125, 211, 252, 0.45));
}

.site-splash-shine {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background:
    linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, 0.58) 50%, transparent 62%);
  opacity: 0;
  transform: translate3d(-40%, 0, 0);
  animation: splashShineSweep 1.35s var(--motion-soft) 1.55s forwards;
}

.site-splash-title {
  margin: 0;
  color: #ffffff;
  font-family: "Cormorant Garamond", "Palatino Linotype", "Times New Roman", serif;
  font-size: clamp(24px, 4.2vw, 42px);
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: none;
  text-shadow:
    0 8px 26px rgba(255, 255, 255, 0.18),
    0 0 34px rgba(125, 211, 252, 0.18);
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  animation: splashTitleIn 0.95s var(--motion-snap) 0.42s forwards;
  will-change: transform, opacity;
}

@keyframes splashBowlFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -10px, 0) scale(1.012);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes splashWaterFill {
  0% {
    transform: translate3d(0, 102%, 0);
  }
  100% {
    transform: translate3d(0, 0%, 0);
  }
}

@keyframes splashWaterWave {
  0% {
    transform: translate3d(-2%, 0, 0) scaleX(1.01);
  }
  50% {
    transform: translate3d(2%, 0, 0) scaleX(0.99);
  }
  100% {
    transform: translate3d(-2%, 0, 0) scaleX(1.01);
  }
}

@keyframes splashShineSweep {
  0% {
    opacity: 0;
    transform: translate3d(-40%, 0, 0);
  }
  35% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
    transform: translate3d(42%, 0, 0);
  }
}

@keyframes splashTitleIn {
  from {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes splashAutoDismiss {
  from {
    opacity: 1;
    visibility: visible;
  }
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

.route-page {
  position: relative;
}

.route-page.route-transition-out-left,
.route-page.route-transition-out-right {
  overflow: hidden;
}

.route-page.route-transition-out-left::after,
.route-page.route-transition-out-right::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 3999;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at 26% 50%, rgba(125, 211, 252, 0.18), transparent 46%),
    radial-gradient(circle at 76% 30%, rgba(124, 58, 237, 0.24), transparent 48%),
    linear-gradient(135deg, rgba(8, 15, 33, 0.82), rgba(17, 24, 39, 0.86));
  will-change: transform, opacity;
}

.route-page.route-transition-out-left::after {
  animation: routeOverlayOutLeft 0.74s var(--motion-snap) forwards;
}

.route-page.route-transition-out-right::after {
  animation: routeOverlayOutRight 0.74s var(--motion-snap) forwards;
}

.route-page.route-transition-out-left > * {
  animation: routeContentOutLeft 0.74s var(--motion-snap) forwards;
}

.route-page.route-transition-out-right > * {
  animation: routeContentOutRight 0.74s var(--motion-snap) forwards;
}

.route-page.route-transition-in-left > * {
  animation: routeContentInLeft 0.78s var(--motion-snap);
}

.route-page.route-transition-in-right > * {
  animation: routeContentInRight 0.78s var(--motion-snap);
}

@keyframes routeOverlayOutLeft {
  from {
    opacity: 0;
    transform: translate3d(-8%, 0, 0) scaleX(1.04);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scaleX(1);
  }
}

@keyframes routeOverlayOutRight {
  from {
    opacity: 0;
    transform: translate3d(8%, 0, 0) scaleX(1.04);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scaleX(1);
  }
}

@keyframes routeContentOutLeft {
  from {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
  }
  to {
    transform: translate3d(34px, 0, 0) scale(0.985);
    opacity: 0.14;
  }
}

@keyframes routeContentOutRight {
  from {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
  }
  to {
    transform: translate3d(-34px, 0, 0) scale(0.985);
    opacity: 0.14;
  }
}

@keyframes routeContentInLeft {
  from {
    transform: translate3d(-34px, 0, 0) scale(0.985);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
  }
}

@keyframes routeContentInRight {
  from {
    transform: translate3d(34px, 0, 0) scale(0.985);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
  }
}

/* =================================
   HEADER
================================= */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 18px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(11, 17, 32, 0.75);
  backdrop-filter: blur(15px);
  border-bottom: none;
  z-index: 1000;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: 20px;
  color: #a78bfa;
}

.logo-wrap img {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(125, 211, 252, 0.28);
  box-shadow:
    0 10px 20px rgba(14, 165, 233, 0.2),
    0 0 0 4px rgba(148, 163, 184, 0.08);
}

.home-page .logo-wrap.logo-intro {
  opacity: 0;
  transform: translateX(-56px);
  animation: logoSlideInLeft 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

@keyframes logoSlideInLeft {
  from {
    opacity: 0;
    transform: translateX(-56px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .splash-bowl,
  .site-splash-water-fill,
  .site-splash-water-fill::before,
  .site-splash-shine,
  .site-splash-title {
    animation: none;
  }

  .home-page .logo-wrap.logo-intro {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.header nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header nav a {
  text-decoration: none;
  color: #cbd5e1;
  font-weight: 500;
  transition: color 0.28s ease, opacity 0.28s ease, transform 0.4s var(--motion-snap);
}

.header nav a:hover {
  color: #a78bfa;
  transform: translate3d(0, -2px, 0);
}

/* =================================
   GLOBAL BUTTON SYSTEM
================================= */
.btn {
  padding: 16px 42px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  transition:
    transform 0.48s var(--motion-snap),
    box-shadow 0.48s var(--motion-snap),
    border-color 0.3s ease,
    background-color 0.3s ease,
    opacity 0.25s ease;
  will-change: transform;
}

.btn.primary {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #ffffff;
  box-shadow: 0 20px 50px rgba(124, 58, 237, 0.4);
}

.btn.primary:hover {
  transform: var(--lift-md) scale(1.01);
  box-shadow:
    0 34px 74px rgba(124, 58, 237, 0.34),
    0 0 0 1px rgba(196, 181, 253, 0.16);
}

.btn.secondary {
  border: 2px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: var(--lift-sm);
}

.btn.danger-btn {
  margin-top: 10px;
  background: rgba(239, 68, 68, 0.18);
  border: 1px solid rgba(248, 113, 113, 0.45);
  color: #fecaca;
}

.btn.danger-btn:hover {
  transform: var(--lift-sm);
  background: rgba(239, 68, 68, 0.3);
  border-color: rgba(248, 113, 113, 0.65);
  box-shadow: 0 14px 30px rgba(127, 29, 29, 0.35);
}

/* =================================
   HERO (MAIN PAGE)
================================= */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 220px 10% 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 25% 30%, rgba(124, 58, 237, 0.35), transparent 55%),
    radial-gradient(circle at 88% 50%, rgba(14, 165, 233, 0.18), transparent 48%),
    linear-gradient(180deg, #0b1120 0%, #0f172a 100%);
}

.hero-logo-backdrop {
  position: absolute;
  top: 56%;
  right: -11%;
  width: min(56vw, 790px);
  aspect-ratio: 1 / 1;
  transform: translateY(-50%) rotate(-7deg);
  border-radius: 82px;
  padding: 18px;
  overflow: hidden;
  background: linear-gradient(
    145deg,
    rgba(125, 211, 252, 0.24),
    rgba(168, 85, 247, 0.22)
  );
  box-shadow:
    0 42px 120px rgba(2, 6, 23, 0.62),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  pointer-events: none;
  z-index: 1;
}

.hero-logo-backdrop::before {
  content: "";
  position: absolute;
  inset: -16%;
  border-radius: 96px;
  background:
    radial-gradient(circle at 30% 30%, rgba(125, 211, 252, 0.34), transparent 62%),
    radial-gradient(circle at 78% 72%, rgba(167, 139, 250, 0.38), transparent 64%);
  filter: blur(20px);
  z-index: 0;
}

.hero-logo-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    140deg,
    rgba(11, 17, 32, 0.56),
    rgba(11, 17, 32, 0.3)
  );
  z-index: 2;
}

.hero-logo-art {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 30px;
  opacity: 0.58;
  filter: brightness(0.78) saturate(0.95) contrast(1.06);
  box-shadow: 0 22px 65px rgba(2, 6, 23, 0.4);
}

.home-page .hero-logo-backdrop {
  opacity: 0;
  transform: translate3d(-70px, -50%, 0) rotate(-11deg) scale(0.95);
  animation:
    heroBackdropEnter 1.15s var(--motion-snap) 0.2s forwards,
    heroBackdropFloat 12s ease-in-out 1.4s infinite;
}

.home-page .hero-logo-art {
  animation: heroArtPulse 9s ease-in-out 1.4s infinite;
  will-change: transform, filter;
}

@keyframes heroBackdropEnter {
  from {
    opacity: 0;
    transform: translate3d(-70px, -50%, 0) rotate(-11deg) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translate3d(0, -50%, 0) rotate(-7deg) scale(1);
  }
}

@keyframes heroBackdropFloat {
  0% {
    transform: translate3d(0, -50%, 0) rotate(-7deg);
  }
  50% {
    transform: translate3d(-8px, -52%, 0) rotate(-5.8deg);
  }
  100% {
    transform: translate3d(0, -50%, 0) rotate(-7deg);
  }
}

@keyframes heroArtPulse {
  0% {
    transform: scale(1);
    filter: brightness(0.78) saturate(0.95) contrast(1.06);
  }
  50% {
    transform: scale(1.03);
    filter: brightness(0.9) saturate(1.05) contrast(1.1);
  }
  100% {
    transform: scale(1);
    filter: brightness(0.78) saturate(0.95) contrast(1.06);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .hero-logo-backdrop {
    opacity: 1;
    transform: translateY(-50%) rotate(-7deg);
    animation: none;
  }

  .home-page .hero-logo-art {
    animation: none;
  }
}

.hero h1,
.hero p,
.hero .hero-actions,
.hero .hero-note {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 78px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 35px;
  max-width: min(54vw, 900px);
}

.hero p {
  font-size: 22px;
  color: #cbd5e1;
  margin-bottom: 50px;
  max-width: min(50vw, 650px);
}

.hero-note {
  margin-top: 30px;
  font-size: 16px;
  color: #94a3b8;
  max-width: min(50vw, 650px);
}

.home-page .hero {
  padding-bottom: 150px;
  background: transparent;
}

.home-page .cta-modern {
  margin-top: -28px;
  padding-top: 92px;
  padding-bottom: 160px;
  background: transparent;
  position: relative;
}

.home-page .cta-modern::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 56% 8%, rgba(167, 139, 250, 0.16), transparent 52%),
    radial-gradient(circle at 30% 84%, rgba(56, 189, 248, 0.08), transparent 58%);
  pointer-events: none;
}

.hero-arrow-nav {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  z-index: 3;
}

.hero-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #dbeafe;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(125, 211, 252, 0.32);
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(10px);
  transition:
    transform 0.42s var(--motion-snap),
    border-color 0.25s ease,
    box-shadow 0.42s var(--motion-snap),
    background-color 0.25s ease;
}

.hero-arrow:hover {
  border-color: rgba(125, 211, 252, 0.82);
  transform: translate3d(0, -4px, 0) scale(1.04);
  box-shadow: 0 14px 28px rgba(8, 47, 73, 0.34);
}

.hero-arrow-icon {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  opacity: 0.92;
}

.hero-arrow-left .hero-arrow-icon {
  transform: rotate(-135deg);
}

.hero-arrow-right .hero-arrow-icon {
  transform: rotate(45deg);
}

.hero-arrow-label {
  display: none;
}

.page-home-arrow {
  position: fixed;
  left: 22px;
  bottom: 24px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(125, 211, 252, 0.4);
  background: rgba(15, 23, 42, 0.52);
  color: #dbeafe;
  text-decoration: none;
  backdrop-filter: blur(12px);
  transition:
    transform 0.42s var(--motion-snap),
    border-color 0.25s ease,
    box-shadow 0.42s var(--motion-snap);
}

.page-home-arrow .hero-arrow-icon {
  transform: rotate(-135deg);
}

.page-home-arrow:hover {
  transform: translate3d(0, -4px, 0) scale(1.04);
  border-color: rgba(125, 211, 252, 0.9);
  box-shadow: 0 12px 22px rgba(8, 47, 73, 0.32);
}

/* =================================
   ABOUT PAGE WITH BACKGROUND
================================= */
.about-clean {
  position: relative;
  padding: 200px 10% 140px;
  min-height: 100vh;
  background:
    linear-gradient(to right, rgba(11, 17, 32, 0.95), rgba(11, 17, 32, 0.8)),
    url('/about.png') center/cover no-repeat;
}

.about-clean h1 {
  font-size: 64px;
  margin-bottom: 40px;
}

.about-clean p {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 24px;
  color: #e2e8f0;
  max-width: 850px;
}

.about-buttons {
  margin-top: 40px;
  display: flex;
  gap: 20px;
}

/* =================================
   ACHIEVEMENTS
================================= */
.about-achievements-clean {
  padding: 120px 10%;
  background: #0f172a;
}

.about-achievements-clean h2 {
  font-size: 44px;
  margin-bottom: 60px;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.achievement-card {
  padding: 35px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    transform 0.55s var(--motion-snap),
    border-color 0.32s ease,
    box-shadow 0.55s var(--motion-snap);
  will-change: transform;
}

.achievement-card:hover {
  transform: translate3d(0, -10px, 0) scale(1.012);
  border-color: #7c3aed;
  box-shadow: var(--surface-glow);
}

.achievement-card h3 {
  margin-bottom: 10px;
}

.achievement-card p {
  margin-bottom: 20px;
  color: #94a3b8;
}

.achievement-card img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

/* =================================
   AUTH PAGES
================================= */
.register-page,
.login-page {
  min-height: 100vh;
  padding-top: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-page {
  background:
    radial-gradient(circle at 70% 30%, rgba(124, 58, 237, 0.3), transparent 55%),
    linear-gradient(180deg, #0b1120 0%, #0f172a 100%);
}

.register-card,
.login-card {
  width: 420px;
  padding: 60px 50px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  transition:
    transform 0.55s var(--motion-snap),
    border-color 0.3s ease,
    box-shadow 0.55s var(--motion-snap);
  will-change: transform;
}

.register-card-wide {
  width: min(760px, calc(100% - 32px));
  text-align: left;
}

.register-card:hover,
.login-card:hover {
  transform: translate3d(0, -8px, 0);
  border-color: #7c3aed;
  box-shadow: 0 42px 90px rgba(0, 0, 0, 0.44);
}

.register-card h1,
.login-card h1 {
  font-size: 32px;
  margin-bottom: 20px;
  text-align: center;
}

.register-card input,
.login-card input {
  width: 100%;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 20px;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.32s ease,
    transform 0.32s var(--motion-snap);
}

.register-card input::placeholder,
.login-card input::placeholder {
  color: #94a3b8;
}

.register-card input:focus,
.login-card input:focus {
  outline: none;
  border-color: #a855f7;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.2);
  transform: translate3d(0, -1px, 0);
}

.register-card .btn,
.login-card .btn {
  width: 100%;
  margin-top: 10px;
}

.register-form-extended {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.register-card p,
.login-card p {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #94a3b8;
}

.register-card .register-intro {
  margin-top: 0;
  margin-bottom: 30px;
  text-align: left;
  font-size: 15px;
  color: #cbd5e1;
}

.register-card .register-note {
  margin-top: 0;
  text-align: left;
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.5;
}

.form-error {
  margin-top: 14px;
  font-size: 14px;
  color: #fca5a5;
  text-align: center;
}

.register-survey-page {
  min-height: 100vh;
  padding: 130px 20px 70px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background:
    radial-gradient(circle at 25% 16%, rgba(56, 189, 248, 0.18), transparent 48%),
    radial-gradient(circle at 82% 22%, rgba(124, 58, 237, 0.28), transparent 52%),
    linear-gradient(180deg, #0b1120 0%, #111827 100%);
}

.survey-card {
  width: min(960px, 100%);
  padding: 48px 40px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}

.survey-card h1 {
  font-size: 36px;
  margin-bottom: 14px;
}

.survey-lead {
  margin-bottom: 28px;
  color: #cbd5e1;
}

.survey-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.survey-progress {
  padding: 12px 4px 4px;
}

.survey-progress-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
  color: #cbd5e1;
}

.survey-progress-note {
  color: #94a3b8;
  font-size: 13px;
}

.survey-progress-track {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.18);
  overflow: hidden;
}

.survey-progress-fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #7dd3fc, #a78bfa);
  transition: width 0.25s ease;
}

.survey-section {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(148, 163, 184, 0.22);
}

.survey-section h2 {
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.35;
  color: #e2e8f0;
}

.survey-hint {
  margin-bottom: 12px;
  font-size: 13px;
  color: #94a3b8;
}

.survey-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.survey-option {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(148, 163, 184, 0.18);
  color: #dbeafe;
  font-size: 14px;
  cursor: pointer;
}

.survey-option input {
  margin-top: 2px;
  accent-color: #7c3aed;
}

.survey-step[hidden] {
  display: none !important;
}

.survey-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.survey-actions .btn {
  min-width: 180px;
  text-align: center;
}

.survey-actions .btn[hidden] {
  display: none;
}

/* =================================
   SUBSCRIBE PAGE
================================= */
.subscribe-page {
  min-height: 100vh;
  padding: 160px 6% 80px;
  background:
    radial-gradient(circle at 24% 22%, rgba(124, 58, 237, 0.28), transparent 54%),
    radial-gradient(circle at 82% 8%, rgba(14, 165, 233, 0.12), transparent 40%),
    linear-gradient(180deg, #0b1120 0%, #131c34 100%);
}

.subscribe-layout {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.subscribe-head {
  text-align: center;
  margin-bottom: 34px;
}

.subscribe-head h1 {
  font-size: 52px;
  margin-bottom: 10px;
}

.subscribe-head p {
  font-size: 18px;
  color: #cbd5e1;
}

.subscribe-value-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 28px;
}

.subscribe-value-pill {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(15, 23, 42, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.subscribe-value-pill strong {
  font-size: 18px;
  color: #f8fafc;
}

.subscribe-value-pill span {
  color: #cbd5e1;
  line-height: 1.45;
}

.subscribe-flow-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 28px;
}

.subscribe-flow-step {
  padding: 20px 22px;
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.52);
}

.subscribe-flow-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.18);
  color: #e0f2fe;
  font-weight: 800;
}

.subscribe-flow-step strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.subscribe-flow-step p {
  color: #cbd5e1;
  line-height: 1.45;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
}

.plan-card {
  display: flex;
  flex-direction: column;
  padding: 34px 28px;
  border-radius: 28px;
  background: linear-gradient(155deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.8));
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 22px 54px rgba(2, 6, 23, 0.42);
  transition:
    transform 0.58s var(--motion-snap),
    border-color 0.32s ease,
    box-shadow 0.58s var(--motion-snap);
  will-change: transform;
}

.plan-card:hover {
  transform: translate3d(0, -10px, 0) scale(1.012);
  border-color: rgba(168, 85, 247, 0.75);
  box-shadow: 0 30px 70px rgba(76, 29, 149, 0.35);
}

.plan-badge {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(15, 23, 42, 0.55);
  color: #e2e8f0;
  font-size: 13px;
  font-weight: 700;
}

.plan-card h2 {
  font-size: 36px;
  margin-bottom: 12px;
}

.plan-price {
  font-size: 46px;
  font-weight: 900;
  margin-bottom: 14px;
  color: #c4b5fd;
}

.plan-features {
  list-style: none;
  margin-bottom: 28px;
}

.plan-features li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: #dbeafe;
  line-height: 1.45;
}

.plan-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a78bfa;
}

.plan-btn {
  width: 100%;
  margin-top: auto;
  text-align: center;
}

.plan-link-btn[hidden] {
  display: none;
}

.plan-followup[hidden] {
  display: none;
}

.plan-followup {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 14px;
}

.plan-inline-link {
  color: #7dd3fc;
  text-align: center;
  font-size: 14px;
  text-decoration: none;
}

.plan-inline-link:hover {
  color: #bae6fd;
  text-decoration: underline;
}

.plan-payment-info {
  min-height: 92px;
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(148, 163, 184, 0.18);
  color: #cbd5e1;
  line-height: 1.45;
}

.plan-payment-info.ready {
  background: rgba(14, 116, 144, 0.18);
  border-color: rgba(56, 189, 248, 0.45);
  color: #e0f2fe;
}

.plan-card-active {
  border-color: rgba(56, 189, 248, 0.65);
  box-shadow: 0 30px 72px rgba(14, 116, 144, 0.28);
}

.plan-card.featured {
  position: relative;
  background: linear-gradient(
    155deg,
    rgba(180, 83, 9, 0.34),
    rgba(124, 58, 237, 0.38) 58%,
    rgba(15, 23, 42, 0.95)
  );
  border-color: rgba(251, 191, 36, 0.9);
  box-shadow: 0 36px 76px rgba(146, 64, 14, 0.45);
  transform: translateY(-8px);
}

.plan-card.featured .plan-badge {
  background: rgba(251, 191, 36, 0.2);
  border-color: rgba(252, 211, 77, 0.9);
  color: #fde68a;
}

.plan-card.featured .plan-price {
  color: #fde68a;
}

.plan-card.featured .plan-btn {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  box-shadow: 0 20px 50px rgba(180, 83, 9, 0.5);
}

.plan-card.featured .plan-btn:hover {
  box-shadow: 0 28px 65px rgba(194, 65, 12, 0.6);
}

.plan-card-free {
  background: linear-gradient(155deg, rgba(15, 23, 42, 0.88), rgba(30, 41, 59, 0.72));
  border-style: dashed;
}

.plan-payment-static {
  min-height: auto;
}

.subscribe-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.subscribe-compare-card {
  padding: 26px 24px;
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.56);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.subscribe-compare-card h3 {
  margin-bottom: 14px;
  font-size: 24px;
}

.subscribe-compare-highlight {
  border-color: rgba(56, 189, 248, 0.45);
  background: linear-gradient(155deg, rgba(8, 47, 73, 0.62), rgba(30, 41, 59, 0.84));
}

.subscribe-status,
.internship-form-status,
.opportunity-form-status {
  font-size: 15px;
  color: #cbd5e1;
  transition: color 0.2s ease;
}

.subscribe-status {
  margin-top: 24px;
  text-align: center;
}

.subscribe-status.error,
.internship-form-status.error,
.opportunity-form-status.error {
  color: #fca5a5;
}

.subscribe-status.success,
.internship-form-status.success,
.opportunity-form-status.success {
  color: #a7f3d0;
}

.subscribe-note {
  margin-top: 10px;
  text-align: center;
  font-size: 14px;
  color: #94a3b8;
}

.subscription-review-amount {
  margin: 12px 0 8px;
  font-size: 22px;
  font-weight: 800;
  color: #fde68a;
}

/* =================================
   DASHBOARD PAGE
================================= */
.dashboard-page {
  min-height: 100vh;
  padding: 220px 10% 120px;
  background:
    radial-gradient(circle at 30% 30%, rgba(124, 58, 237, 0.3), transparent 55%),
    linear-gradient(180deg, #0b1120 0%, #0f172a 100%);
  display: flex;
  justify-content: center;
}

.dashboard-container {
  max-width: 800px;
}

.dashboard-container h1 {
  font-size: 56px;
  margin-bottom: 50px;
}

.dashboard-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.dashboard-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.55);
  color: #dbeafe;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition:
    transform 0.4s var(--motion-snap),
    border-color 0.25s ease,
    color 0.25s ease,
    background-color 0.25s ease;
}

.dashboard-tab:hover {
  border-color: rgba(125, 211, 252, 0.8);
  color: #e0f2fe;
  transform: translate3d(0, -3px, 0);
}

.dashboard-card {
  padding: 40px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 40px;
  transition:
    transform 0.55s var(--motion-snap),
    border-color 0.32s ease,
    box-shadow 0.55s var(--motion-snap);
  will-change: transform;
}

.dashboard-card:hover {
  transform: translate3d(0, -8px, 0) scale(1.005);
  border-color: #7c3aed;
  box-shadow: var(--surface-glow);
}

.dashboard-card h3 {
  margin-bottom: 15px;
  font-size: 20px;
}

.dashboard-card p {
  color: #cbd5e1;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.dashboard-profile-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}

.dashboard-kicker {
  margin-bottom: 8px;
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dashboard-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(134, 239, 172, 0.35);
  color: #bbf7d0;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.dashboard-badge-warning {
  background: rgba(245, 158, 11, 0.14);
  border-color: rgba(253, 224, 71, 0.35);
  color: #fde68a;
}

.dashboard-profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.dashboard-profile-item {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.dashboard-profile-item-wide {
  grid-column: 1 / -1;
}

.dashboard-profile-item span {
  display: block;
  margin-bottom: 8px;
  color: #94a3b8;
  font-size: 13px;
}

.dashboard-profile-item strong {
  color: #f8fafc;
  font-size: 16px;
  line-height: 1.4;
}

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

.dashboard-roadmap-item {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.52);
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.dashboard-roadmap-item span {
  display: block;
  margin-bottom: 8px;
  color: #94a3b8;
  font-size: 13px;
}

.dashboard-roadmap-item strong {
  color: #f8fafc;
  font-size: 16px;
  line-height: 1.5;
}

.dashboard-roadmap-next {
  margin-bottom: 26px;
  padding: 24px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(14, 116, 144, 0.24), rgba(91, 33, 182, 0.22)),
    rgba(15, 23, 42, 0.62);
  border: 1px solid rgba(125, 211, 252, 0.18);
}

.dashboard-roadmap-next h4 {
  margin-bottom: 10px;
  font-size: 24px;
  color: #f8fafc;
}

.dashboard-roadmap-next p:last-of-type {
  margin-bottom: 20px;
}

.dashboard-roadmap-steps {
  display: grid;
  gap: 14px;
}

.dashboard-roadmap-step {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.46);
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.dashboard-roadmap-step strong {
  display: block;
  margin-bottom: 10px;
  color: #e0f2fe;
  font-size: 17px;
  line-height: 1.45;
}

.dashboard-roadmap-step p {
  margin-bottom: 12px;
}

.dashboard-roadmap-link {
  color: #93c5fd;
  font-weight: 700;
  text-decoration: none;
}

.dashboard-roadmap-link:hover {
  color: #e0f2fe;
}

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

.dashboard-saved-item {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.44);
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.dashboard-saved-item strong {
  display: block;
  margin-bottom: 8px;
  color: #f8fafc;
  font-size: 16px;
}

.dashboard-saved-item p {
  margin-bottom: 10px;
}

.nav-btn {
  background: none;
  border: none;
  color: #cbd5e1;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.28s ease, transform 0.4s var(--motion-snap);
}

.nav-btn:hover {
  color: #a78bfa;
  transform: translate3d(0, -2px, 0);
}

/* =================================
   INTERNSHIPS PAGE
================================= */
.internships-page {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 220px 10% 120px;
  background:
    radial-gradient(circle at 40% 20%, rgba(124, 58, 237, 0.25), transparent 55%),
    linear-gradient(180deg, #0b1120 0%, #0f172a 100%);
}

.internships-page::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.25), transparent 60%);
  top: -200px;
  right: -200px;
  z-index: 0;
  pointer-events: none;
}

.internships-page > * {
  position: relative;
  z-index: 2;
}

.internships-header h1 {
  font-size: 64px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #a78bfa, #c084fc);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.internships-header p {
  color: #94a3b8;
  font-size: 20px;
  margin-bottom: 60px;
  max-width: 600px;
}

.filters-modern {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 70px;
}

.internships-controls {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 26px;
}

.small-btn {
  padding: 10px 22px;
  font-size: 14px;
}

.filter {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: #cbd5e1;
  cursor: pointer;
  transition:
    transform 0.42s var(--motion-snap),
    border-color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.42s var(--motion-snap),
    color 0.25s ease;
}

.filter:hover {
  border-color: #7c3aed;
  transform: translate3d(0, -4px, 0);
}

.filter.active {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  border: none;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.5);
}

.internship-form {
  margin-bottom: 46px;
  padding: 28px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.internship-form h2 {
  margin-bottom: 18px;
  font-size: 26px;
}

.internship-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.internship-form input,
.internship-form select,
.internship-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
}

.internship-form select[multiple],
.opportunity-form select[multiple],
.resource-form select[multiple] {
  min-height: 148px;
}

.internship-form select option {
  color: #0b1120;
}

.internship-form textarea {
  resize: vertical;
  min-height: 90px;
}

.internship-form input::placeholder,
.internship-form textarea::placeholder {
  color: #94a3b8;
}

.internship-form input:focus,
.internship-form select:focus,
.internship-form textarea:focus {
  outline: none;
  border-color: #a855f7;
  box-shadow: 0 0 0 2px rgba(168, 85, 247, 0.2);
}

.internship-form-actions {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.internships-empty {
  margin-top: 20px;
  color: #94a3b8;
  font-size: 16px;
}

.internships-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.goal-focus {
  margin-bottom: 34px;
  padding: 28px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(125, 211, 252, 0.14), transparent 36%),
    rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(125, 211, 252, 0.18);
  backdrop-filter: blur(18px);
}

.goal-focus-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 14px;
}

.goal-focus-head h2 {
  font-size: 28px;
  line-height: 1.2;
}

.goal-focus-description {
  margin-bottom: 20px;
  color: #cbd5e1;
}

.goal-focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.internship-modern {
  padding: 35px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    transform 0.58s var(--motion-snap),
    border-color 0.32s ease,
    box-shadow 0.58s var(--motion-snap),
    background-color 0.3s ease;
  cursor: pointer;
  will-change: transform;
}

.recommended-surface {
  border-color: rgba(125, 211, 252, 0.3);
  box-shadow: 0 24px 64px rgba(14, 165, 233, 0.12);
}

.internship-modern:hover {
  transform: translate3d(0, -12px, 0) scale(1.018);
  border-color: #a855f7;
  box-shadow: 0 30px 80px rgba(124, 58, 237, 0.4);
}

.internship-modern h3 {
  margin: 15px 0;
}

.internship-organization {
  font-size: 14px;
  color: #a78bfa;
  margin-bottom: 10px;
}

.internship-modern p {
  color: #cbd5e1;
  margin-bottom: 20px;
}

.internship-modern .btn {
  width: 100%;
}

.meta {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 20px;
}

.meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  background: rgba(124, 58, 237, 0.2);
  color: #c084fc;
}

.badge.blue {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
}

.badge.purple {
  background: rgba(168, 85, 247, 0.2);
  color: #c084fc;
}

.badge.green {
  background: rgba(34, 197, 94, 0.2);
  color: #86efac;
}

.badge.gray {
  background: rgba(148, 163, 184, 0.2);
  color: #cbd5e1;
}

.badge.match {
  background: rgba(34, 197, 94, 0.18);
  color: #bbf7d0;
}

.card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.taxonomy-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
}

.taxonomy-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.16);
  color: #cbd5e1;
  font-size: 12px;
}

.match-note {
  margin-top: -8px;
  color: #a7f3d0 !important;
  font-size: 14px;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.card-actions .btn {
  flex: 1 1 180px;
}

.saved-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.status-chip {
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: rgba(15, 23, 42, 0.55);
  color: #cbd5e1;
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.35s var(--motion-snap),
    border-color 0.22s ease,
    color 0.22s ease,
    background-color 0.22s ease;
}

.status-chip:hover {
  transform: translate3d(0, -2px, 0);
  border-color: rgba(125, 211, 252, 0.38);
}

.status-chip.active {
  background: rgba(14, 165, 233, 0.18);
  border-color: rgba(125, 211, 252, 0.42);
  color: #e0f2fe;
}

.status-chip.muted {
  background: rgba(127, 29, 29, 0.18);
  border-color: rgba(248, 113, 113, 0.28);
  color: #fecaca;
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.surface-reveal {
  opacity: 0;
  transform: translate3d(0, 42px, 0) scale(0.985);
  transition:
    opacity 0.82s ease,
    transform 1s var(--motion-soft),
    box-shadow 1s var(--motion-soft);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.surface-reveal.surface-reveal-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

/* =================================
   OPPORTUNITIES PAGE
================================= */
.opportunities-page {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 220px 10% 120px;
  background:
    radial-gradient(circle at 20% 10%, rgba(14, 165, 233, 0.18), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.22), transparent 55%),
    linear-gradient(180deg, #0b1120 0%, #111827 100%);
}

.opportunities-page::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.18), transparent 65%);
  top: -180px;
  left: -130px;
  pointer-events: none;
}

.opportunities-page::after {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.18), transparent 65%);
  right: -220px;
  bottom: -220px;
  pointer-events: none;
}

.opportunities-page > * {
  position: relative;
  z-index: 2;
}

.opportunities-header h1 {
  font-size: 64px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #c4b5fd, #7dd3fc);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.opportunities-header p {
  color: #94a3b8;
  font-size: 20px;
  margin-bottom: 60px;
  max-width: 760px;
}

.opportunities-controls {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 26px;
}

.opportunity-form {
  margin-bottom: 46px;
  padding: 28px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.opportunity-form h2 {
  margin-bottom: 18px;
  font-size: 26px;
}

.opportunity-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.opportunity-form input,
.opportunity-form select,
.opportunity-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
}

.opportunity-form select option {
  color: #0b1120;
}

.opportunity-form textarea {
  resize: vertical;
  min-height: 100px;
}

.opportunity-form input::placeholder,
.opportunity-form textarea::placeholder {
  color: #94a3b8;
}

.opportunity-form input:focus,
.opportunity-form select:focus,
.opportunity-form textarea:focus {
  outline: none;
  border-color: #7dd3fc;
  box-shadow: 0 0 0 2px rgba(125, 211, 252, 0.2);
}

.opportunity-form-actions {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.opportunities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 34px;
}

.opportunity-card {
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(
    140deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.03)
  );
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    transform 0.58s var(--motion-snap),
    border-color 0.32s ease,
    box-shadow 0.58s var(--motion-snap),
    background-color 0.3s ease;
  will-change: transform;
}

.opportunity-card:hover {
  transform: translate3d(0, -10px, 0) scale(1.014);
  border-color: rgba(125, 211, 252, 0.7);
  box-shadow: 0 26px 65px rgba(14, 165, 233, 0.18);
}

.opportunity-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 18px;
  margin: 0 0 16px;
  border: 1px solid rgba(148, 163, 184, 0.28);
}

.opportunity-card h3 {
  margin: 14px 0 10px;
  font-size: 24px;
  line-height: 1.3;
}

.opportunity-org {
  font-size: 14px;
  color: #a5b4fc;
  margin-bottom: 14px;
}

.opportunity-card p {
  color: #d1d5db;
  margin-bottom: 20px;
  line-height: 1.6;
}

.opportunity-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
  color: #93c5fd;
  font-size: 14px;
}

.opportunity-meta span {
  border-radius: 999px;
  border: 1px solid rgba(147, 197, 253, 0.28);
  padding: 6px 12px;
}

.opportunities-empty {
  margin-top: 20px;
  color: #94a3b8;
  font-size: 16px;
}

/* =================================
   RESOURCES PAGE
================================= */
.resources-page {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 220px 10% 120px;
  background:
    radial-gradient(circle at 18% 16%, rgba(16, 185, 129, 0.14), transparent 44%),
    radial-gradient(circle at 82% 24%, rgba(124, 58, 237, 0.18), transparent 48%),
    linear-gradient(180deg, #08111f 0%, #111827 100%);
}

.resources-page > * {
  position: relative;
  z-index: 2;
}

.resources-header h1 {
  font-size: 64px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #86efac, #7dd3fc);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.resources-header p {
  color: #94a3b8;
  font-size: 20px;
  margin-bottom: 60px;
  max-width: 760px;
}

.resources-controls {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 26px;
}

.resource-form {
  margin-bottom: 46px;
  padding: 28px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.resource-form h2 {
  margin-bottom: 18px;
  font-size: 26px;
}

.resource-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.resource-form input,
.resource-form select,
.resource-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
}

.resource-form select option {
  color: #0b1120;
}

.resource-form textarea {
  resize: vertical;
  min-height: 92px;
}

.resource-form input::placeholder,
.resource-form textarea::placeholder {
  color: #94a3b8;
}

.resource-form input:focus,
.resource-form select:focus,
.resource-form textarea:focus {
  outline: none;
  border-color: #86efac;
  box-shadow: 0 0 0 2px rgba(134, 239, 172, 0.16);
}

.resource-form-actions {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 34px;
}

.resource-card {
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(
    140deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.03)
  );
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    transform 0.58s var(--motion-snap),
    border-color 0.32s ease,
    box-shadow 0.58s var(--motion-snap),
    background-color 0.3s ease;
  will-change: transform;
}

.resource-card:hover {
  transform: translate3d(0, -10px, 0) scale(1.014);
  border-color: rgba(134, 239, 172, 0.65);
  box-shadow: 0 26px 65px rgba(16, 185, 129, 0.18);
}

.resource-card h3 {
  margin: 14px 0 10px;
  font-size: 24px;
  line-height: 1.3;
}

.resource-summary,
.resource-body {
  color: #d1d5db;
  margin-bottom: 18px;
  line-height: 1.6;
}

[data-scroll-reveal] {
  transition:
    opacity 0.88s ease,
    transform 1s var(--motion-soft),
    box-shadow 1s var(--motion-soft);
  will-change: opacity, transform;
}

[data-scroll-reveal].reveal-pending {
  opacity: 0;
  transform: translate3d(0, 52px, 0) scale(0.985);
  pointer-events: none;
}

[data-scroll-reveal].reveal-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  pointer-events: auto;
}

/* =================================
   CTA MODERN BLOCK
================================= */
.cta-modern {
  padding: 140px 10%;
  display: flex;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 20%, rgba(124, 58, 237, 0.35), transparent 60%),
    linear-gradient(180deg, #0f172a 0%, #0b1120 100%);
}

.cta-box {
  max-width: 900px;
  width: 100%;
  padding: 70px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  transition:
    transform 0.58s var(--motion-snap),
    border-color 0.32s ease,
    box-shadow 0.58s var(--motion-snap);
  will-change: transform;
}

.cta-box:hover {
  transform: translate3d(0, -8px, 0) scale(1.008);
  border-color: #7c3aed;
  box-shadow: var(--surface-glow);
}

@media (prefers-reduced-motion: reduce) {
  .home-page > :not(.site-splash),
  .route-page.route-transition-out-left::after,
  .route-page.route-transition-out-right::after,
  .route-page.route-transition-out-left > *,
  .route-page.route-transition-out-right > *,
  .route-page.route-transition-in-left > *,
  .route-page.route-transition-in-right > *,
  [data-scroll-reveal],
  .btn,
  .achievement-card,
  .register-card,
  .login-card,
  .plan-card,
  .dashboard-card,
  .internship-modern,
  .opportunity-card,
  .resource-card,
  .goal-focus,
  .cta-box,
  .dashboard-tab,
  .filter,
  .header nav a,
  .nav-btn {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transform: none !important;
  }
}

.cta-box h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.cta-box p {
  font-size: 18px;
  color: #94a3b8;
  margin-bottom: 35px;
}

/* =================================
   VISUAL POLISH OVERRIDES
================================= */
.header {
  left: 0;
  padding: 18px clamp(18px, 4vw, 60px);
  gap: 22px;
  background:
    linear-gradient(180deg, rgba(8, 17, 31, 0.92), rgba(8, 17, 31, 0.76));
  border-bottom: 1px solid rgba(191, 219, 254, 0.1);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.24);
}

.header::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(99, 210, 255, 0.34),
    rgba(159, 103, 255, 0.28),
    transparent
  );
  pointer-events: none;
}

.logo-wrap {
  gap: 14px;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  text-shadow: 0 8px 20px rgba(2, 6, 23, 0.24);
}

.logo-wrap img {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(153, 246, 228, 0.18);
  box-shadow:
    0 14px 34px rgba(14, 165, 233, 0.22),
    0 0 0 6px rgba(148, 163, 184, 0.05);
}

.header nav {
  gap: 8px;
  flex-wrap: wrap;
  margin-left: auto;
  padding: 8px;
  border-radius: var(--radius-pill);
  background: rgba(11, 18, 32, 0.48);
  border: 1px solid rgba(191, 219, 254, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.header nav a,
.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  background: transparent;
  color: #dbeafe;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition:
    transform 0.35s var(--motion-snap),
    border-color 0.24s ease,
    background-color 0.24s ease,
    color 0.24s ease,
    box-shadow 0.35s var(--motion-snap);
}

.nav-btn {
  appearance: none;
  margin: 0;
}

.header nav a:hover,
.header nav a:focus-visible,
.nav-btn:hover,
.nav-btn:focus-visible {
  color: #ffffff;
  border-color: rgba(125, 211, 252, 0.26);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.22);
  transform: translate3d(0, -1px, 0);
  outline: none;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 16px 30px;
  border: 1px solid transparent;
  letter-spacing: 0.01em;
  line-height: 1.1;
  box-shadow: var(--shadow-soft);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 26%, rgba(255, 255, 255, 0.16) 48%, transparent 70%);
  transform: translate3d(-110%, 0, 0);
  transition: transform 0.7s var(--motion-soft);
  pointer-events: none;
}

.btn:hover::before,
.btn:focus-visible::before {
  transform: translate3d(115%, 0, 0);
}

.btn.primary {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 42%, #38bdf8 100%);
  border-color: rgba(196, 181, 253, 0.28);
  color: #ffffff;
  box-shadow: 0 24px 56px rgba(76, 29, 149, 0.42);
}

.btn.primary:hover {
  transform: translate3d(0, -3px, 0);
  box-shadow:
    0 34px 74px rgba(76, 29, 149, 0.42),
    0 0 0 1px rgba(196, 181, 253, 0.12);
}

.btn.secondary {
  background: rgba(9, 17, 32, 0.48);
  border: 1px solid rgba(191, 219, 254, 0.18);
  color: #f8fafc;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.22);
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(125, 211, 252, 0.24);
  transform: translate3d(0, -3px, 0);
}

.btn.danger-btn {
  background: linear-gradient(135deg, rgba(127, 29, 29, 0.72), rgba(220, 38, 38, 0.38));
  border: 1px solid rgba(248, 113, 113, 0.38);
  color: #fee2e2;
}

.btn.danger-btn:hover {
  transform: translate3d(0, -3px, 0);
  box-shadow: 0 18px 40px rgba(127, 29, 29, 0.35);
}

.btn:focus-visible,
.filter:focus-visible,
.status-chip:focus-visible,
.dashboard-tab:focus-visible,
.header nav a:focus-visible,
.nav-btn:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
}

.small-btn {
  min-height: 46px;
  padding: 12px 18px;
}

.hero h1,
.about-clean h1,
.dashboard-container h1,
.cta-box h2,
.internships-header h1,
.opportunities-header h1,
.resources-header h1,
.subscribe-head h1,
.register-card h1,
.login-card h1 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

.hero h1 {
  max-width: 660px;
  line-height: 0.94;
  text-wrap: balance;
  text-shadow: 0 20px 55px rgba(2, 6, 23, 0.36);
}

.hero p,
.hero-note,
.about-clean p,
.subscribe-head p,
.internships-header p,
.opportunities-header p,
.resources-header p,
.dashboard-card p,
.register-card p,
.login-card p {
  color: var(--text-secondary);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.page-home-arrow,
.hero-arrow {
  background: rgba(8, 17, 31, 0.48);
  border: 1px solid rgba(191, 219, 254, 0.12);
  box-shadow: 0 18px 44px rgba(2, 6, 23, 0.26);
}

.page-home-arrow:hover,
.hero-arrow:hover {
  border-color: rgba(125, 211, 252, 0.28);
  box-shadow: 0 24px 56px rgba(2, 6, 23, 0.32);
}

.register-page,
.login-page,
.register-survey-page {
  background:
    radial-gradient(circle at 18% 12%, rgba(99, 210, 255, 0.14), transparent 36%),
    radial-gradient(circle at 82% 18%, rgba(159, 103, 255, 0.18), transparent 42%),
    linear-gradient(180deg, #091224 0%, #111a31 100%);
}

.register-card,
.login-card {
  width: min(460px, calc(100% - 28px));
  padding: 56px 42px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.84), rgba(11, 18, 32, 0.76));
  border: 1px solid rgba(191, 219, 254, 0.12);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.register-card::before,
.login-card::before,
.dashboard-card::before,
.plan-card::before,
.internship-modern::before,
.opportunity-card::before,
.resource-card::before,
.goal-focus::before,
.cta-box::before,
.subscribe-value-pill::before,
.subscribe-flow-step::before,
.subscribe-compare-card::before,
.internship-form::before,
.opportunity-form::before,
.resource-form::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(125, 211, 252, 0.16),
    rgba(159, 103, 255, 0.26),
    transparent
  );
  pointer-events: none;
}

.register-card:hover,
.login-card:hover,
.dashboard-card:hover,
.plan-card:hover,
.internship-modern:hover,
.opportunity-card:hover,
.resource-card:hover,
.goal-focus:hover,
.cta-box:hover {
  border-color: rgba(191, 219, 254, 0.18);
}

.register-card h1,
.login-card h1 {
  font-size: clamp(36px, 4.3vw, 48px);
  line-height: 0.96;
}

.register-card input,
.login-card input,
.internship-form input,
.internship-form select,
.internship-form textarea,
.opportunity-form input,
.opportunity-form select,
.opportunity-form textarea,
.resource-form input,
.resource-form select,
.resource-form textarea {
  min-height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(191, 219, 254, 0.11);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.88), rgba(15, 23, 42, 0.68));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.internship-form textarea,
.opportunity-form textarea,
.resource-form textarea {
  min-height: 110px;
}

.register-card input:focus,
.login-card input:focus,
.internship-form input:focus,
.internship-form select:focus,
.internship-form textarea:focus,
.opportunity-form input:focus,
.opportunity-form select:focus,
.opportunity-form textarea:focus,
.resource-form input:focus,
.resource-form select:focus,
.resource-form textarea:focus {
  border-color: rgba(125, 211, 252, 0.38);
  box-shadow: var(--shadow-focus);
  transform: translate3d(0, -1px, 0);
}

.form-error {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(11, 18, 32, 0.74);
  border: 1px solid rgba(191, 219, 254, 0.12);
}

.subscribe-layout,
.dashboard-container {
  width: min(1120px, 100%);
  max-width: none;
}

.dashboard-container h1,
.subscribe-head h1 {
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: 0.94;
  text-wrap: balance;
}

.dashboard-tabs,
.filters-modern {
  padding: 10px;
  border-radius: 28px;
  background: rgba(8, 17, 31, 0.4);
  border: 1px solid rgba(191, 219, 254, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.dashboard-tab,
.filter,
.status-chip {
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  font-weight: 650;
  letter-spacing: 0.01em;
}

.dashboard-tab:hover,
.filter:hover,
.status-chip:hover {
  border-color: rgba(125, 211, 252, 0.26);
  background: rgba(255, 255, 255, 0.06);
}

.dashboard-tab.active,
.filter.active,
.status-chip.active {
  border: 1px solid rgba(191, 219, 254, 0.12);
  background: linear-gradient(135deg, #8b5cf6, #38bdf8);
  box-shadow: 0 18px 36px rgba(76, 29, 149, 0.28);
}

.dashboard-card,
.goal-focus,
.internship-form,
.opportunity-form,
.resource-form,
.subscribe-value-pill,
.subscribe-flow-step,
.subscribe-compare-card,
.cta-box {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card);
  border-color: var(--surface-border);
  background:
    radial-gradient(circle at top right, rgba(99, 210, 255, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.84), rgba(11, 18, 32, 0.72));
  box-shadow: var(--shadow-card);
}

.dashboard-card {
  padding: clamp(28px, 4vw, 42px);
  margin-bottom: 28px;
}

.dashboard-profile-item,
.dashboard-roadmap-item,
.dashboard-roadmap-step,
.dashboard-saved-item,
.plan-payment-info {
  border-radius: 20px;
  background: rgba(8, 17, 31, 0.54);
  border: 1px solid rgba(191, 219, 254, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.dashboard-roadmap-next {
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(99, 210, 255, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(9, 53, 86, 0.88), rgba(56, 39, 105, 0.8));
  border: 1px solid rgba(125, 211, 252, 0.18);
  box-shadow: 0 24px 60px rgba(7, 89, 133, 0.22);
}

.goal-focus-head h2,
.dashboard-card h3,
.dashboard-roadmap-next h4,
.internship-modern h3,
.opportunity-card h3,
.resource-card h3,
.plan-card h2,
.subscribe-compare-card h3 {
  letter-spacing: -0.025em;
}

.plan-card,
.internship-modern,
.opportunity-card,
.resource-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border-color: var(--surface-border);
  background:
    radial-gradient(circle at top right, rgba(99, 210, 255, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.88), rgba(10, 17, 32, 0.76));
  box-shadow: var(--shadow-card);
}

.plan-card h2 {
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 0.98;
}

.plan-price {
  letter-spacing: -0.04em;
}

.plan-features li,
.subscribe-value-pill span,
.subscribe-flow-step p,
.plan-payment-info,
.resource-summary,
.resource-body,
.opportunity-card p,
.internship-modern p {
  color: var(--text-secondary);
}

.meta {
  gap: 10px;
  flex-wrap: wrap;
}

.meta span,
.taxonomy-chip,
.badge,
.opportunity-meta span,
.dashboard-badge,
.plan-badge {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.meta span,
.opportunity-meta span {
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(191, 219, 254, 0.11);
  background: rgba(8, 17, 31, 0.42);
}

.card-actions {
  margin-top: 8px;
}

.subscribe-page,
.dashboard-page,
.internships-page,
.opportunities-page,
.resources-page,
.about-clean,
.cta-modern {
  background-attachment: fixed;
}

/* =================================
   RESPONSIVE
================================= */
@media (max-width: 1024px) {
  .header {
    padding: 16px 28px;
  }

  .header nav {
    gap: 6px;
    padding: 6px;
  }

  .hero h1 {
    font-size: 56px;
  }

  .hero-logo-backdrop {
    width: min(58vw, 620px);
    right: -16%;
    top: 50%;
    border-radius: 64px;
  }

  .about-clean h1,
  .dashboard-container h1,
  .cta-box h2 {
    font-size: 42px;
  }

  .opportunities-header h1,
  .resources-header h1 {
    font-size: 48px;
  }

  .subscribe-head h1 {
    font-size: 42px;
  }

  .plan-price {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 14px 18px;
    gap: 12px;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .header nav {
    width: 100%;
    justify-content: center;
  }

  .hero,
  .about-clean,
  .dashboard-page,
  .internships-page,
  .opportunities-page,
  .resources-page,
  .cta-modern,
  .subscribe-page {
    padding-left: 6%;
    padding-right: 6%;
  }

  .hero {
    padding-top: 170px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-logo-backdrop {
    width: min(74vw, 390px);
    right: -48px;
    top: 36%;
    border-radius: 44px;
    transform: translateY(-50%) rotate(-11deg);
  }

  .hero-logo-art {
    opacity: 0.32;
  }

  .hero p {
    font-size: 18px;
  }

  .hero h1,
  .hero p,
  .hero-note {
    max-width: 100%;
  }

  .hero-arrow-nav {
    left: 6%;
    right: 6%;
    bottom: 18px;
    gap: 10px;
  }

  .hero-arrow {
    width: 42px;
    height: 42px;
  }

  .page-home-arrow {
    left: 14px;
    bottom: 14px;
    width: 40px;
    height: 40px;
  }

  .about-clean h1,
  .internships-header h1,
  .opportunities-header h1,
  .resources-header h1 {
    font-size: 42px;
  }

  .internships-grid {
    gap: 25px;
  }

  .opportunities-grid {
    gap: 24px;
  }

  .resources-grid {
    gap: 24px;
  }

  .internships-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .opportunities-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .resources-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .small-btn {
    width: 100%;
  }

  .internship-form-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .opportunity-form-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .resource-form-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .register-card,
  .login-card {
    width: 100%;
    max-width: 520px;
    padding: 42px 26px;
  }

  .register-card-wide {
    max-width: 720px;
  }

  .register-form-grid,
  .dashboard-profile-grid,
  .dashboard-roadmap-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-profile-head {
    flex-direction: column;
  }

  .dashboard-container h1 {
    margin-bottom: 28px;
  }

  .goal-focus-head {
    flex-direction: column;
  }

  .subscribe-page {
    padding-top: 120px;
    padding-bottom: 56px;
  }

  .subscribe-head {
    margin-bottom: 24px;
  }

  .subscribe-head h1 {
    font-size: 34px;
  }

  .subscribe-head p {
    font-size: 16px;
  }

  .plans-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .subscribe-value-strip,
  .subscribe-flow-card,
  .subscribe-compare {
    grid-template-columns: 1fr;
  }

  .plan-card {
    padding: 28px 22px;
  }

  .plan-card h2 {
    font-size: 32px;
  }

  .plan-card.featured {
    transform: none;
  }

  .survey-card {
    padding: 32px 20px;
  }

  .survey-card h1 {
    font-size: 28px;
  }

  .survey-actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .survey-actions .btn {
    width: 100%;
    min-width: 100%;
  }

  .cta-box {
    padding: 44px 26px;
  }

  .hero-actions .btn,
  .card-actions .btn {
    width: 100%;
  }

  .subscribe-page,
  .dashboard-page,
  .internships-page,
  .opportunities-page,
  .resources-page,
  .about-clean,
  .cta-modern {
    background-attachment: scroll;
  }
}
