:root {
  --bg: #070a12;
  --bg-soft: #0b1020;
  --bg-card: rgba(255, 255, 255, 0.072);
  --bg-card-strong: rgba(255, 255, 255, 0.115);
  --bg-card-hover: rgba(255, 255, 255, 0.16);

  --text: #f8fbff;
  --text-soft: #d8e2f0;
  --text-muted: #8f9db2;
  --text-faint: #687589;

  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(255, 255, 255, 0.22);

  --primary: #8b5cf6;
  --primary-strong: #a78bfa;
  --cyan: #22d3ee;
  --blue: #60a5fa;
  --green: #34d399;
  --pink: #f472b6;
  --orange: #fb923c;
  --yellow: #facc15;
  --red: #fb7185;

  --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.22);
  --shadow-md: 0 24px 80px rgba(0, 0, 0, 0.34);
  --shadow-lg: 0 36px 120px rgba(0, 0, 0, 0.48);

  --blur: 22px;
  --radius-xs: 12px;
  --radius-sm: 16px;
  --radius-md: 22px;
  --radius-lg: 30px;
  --radius-xl: 40px;

  --container: 1180px;
  --header-height: 78px;

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Apple SD Gothic Neo",
    "Noto Sans KR",
    "Malgun Gothic",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(
      circle at 50% -20%,
      rgba(96, 165, 250, 0.18),
      transparent 38rem
    ),
    linear-gradient(180deg, #050713 0%, #070a12 46%, #05070d 100%);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

img,
svg {
  display: block;
  max-width: 100%;
}

svg {
  fill: currentColor;
}

::selection {
  color: #07111f;
  background: var(--cyan);
}

:focus-visible {
  outline: 3px solid rgba(34, 211, 238, 0.95);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 108px 0;
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  color: var(--text);
  font-size: clamp(2rem, 4.2vw, 4.4rem);
  font-weight: 860;
  line-height: 1.05;
  letter-spacing: -0.065em;
}

.section-description {
  max-width: 650px;
  margin: 0;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  line-height: 1.8;
  word-break: keep-all;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 38px;
}

.section-head.centered {
  max-width: 780px;
  margin-inline: auto;
  margin-bottom: 42px;
  text-align: center;
  align-items: center;
  flex-direction: column;
  gap: 14px;
}

.section-head.centered .section-description {
  margin-inline: auto;
}
/* ==========================
   HERO QUICK ACCESS
========================== */

.hero-quick {
  margin: 40px 0;
}

/* 메인 버튼 */

.hero-main-link {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 18px;

  padding: 22px 24px;

  border-radius: 24px;

  text-decoration: none;

  color: #fff;

  background: linear-gradient(
    135deg,
    rgba(82, 113, 255, 0.28),
    rgba(0, 208, 255, 0.18)
  );

  border: 1px solid rgba(126, 170, 255, 0.25);

  backdrop-filter: blur(20px);

  transition: 0.35s;

  box-shadow: 0 25px 50px rgba(50, 80, 255, 0.18);
}

.hero-main-link:hover {
  transform: translateY(-4px);

  border-color: #79b6ff;

  box-shadow: 0 35px 70px rgba(70, 120, 255, 0.3);
}

.main-icon {
  width: 60px;

  height: 60px;

  display: grid;

  place-items: center;

  border-radius: 18px;

  font-size: 26px;

  background: rgba(255, 255, 255, 0.1);
}

.main-copy {
  flex: 1;
}

.main-label {
  display: block;

  color: #9fd8ff;

  font-size: 13px;

  margin-bottom: 6px;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}

.main-copy strong {
  font-size: 22px;

  font-weight: 700;
}

.main-arrow {
  font-size: 28px;

  opacity: 0.7;

  transition: 0.3s;
}

.hero-main-link:hover .main-arrow {
  transform: translateX(6px);

  opacity: 1;
}

/* 모바일 */

@media (max-width: 768px) {
  .hero-main-link {
    padding: 18px;
  }

  .main-copy strong {
    font-size: 18px;
  }

  .main-icon {
    width: 52px;

    height: 52px;
  }

  .main-arrow {
    display: none;
  }
}
.glass-card {
  position: relative;
  border: 1px solid var(--line);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.12),
      rgba(255, 255, 255, 0.055)
    ),
    rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
}

.glass-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.23), transparent 34%),
    radial-gradient(
      circle at 20% 0%,
      rgba(34, 211, 238, 0.13),
      transparent 30rem
    );
  opacity: 0.65;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 1000;
  transform: translateY(-140%);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--text);
  background: rgba(7, 10, 18, 0.92);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  background: var(--bg);
  pointer-events: none;
}

.aurora {
  position: absolute;
  width: 46rem;
  height: 46rem;
  border-radius: 999px;
  filter: blur(82px);
  opacity: 0.62;
  transform: translateZ(0);
  animation: aurora-float 18s var(--ease-in-out, ease-in-out) infinite alternate;
  will-change: transform;
}

.aurora-one {
  top: -15rem;
  left: -12rem;
  background:
    radial-gradient(circle, rgba(34, 211, 238, 0.82), transparent 62%),
    radial-gradient(circle, rgba(96, 165, 250, 0.55), transparent 72%);
}

.aurora-two {
  top: 8rem;
  right: -16rem;
  background:
    radial-gradient(circle, rgba(139, 92, 246, 0.88), transparent 60%),
    radial-gradient(circle, rgba(244, 114, 182, 0.45), transparent 78%);
  animation-delay: -7s;
}

.aurora-three {
  bottom: -20rem;
  left: 18%;
  width: 54rem;
  height: 54rem;
  background:
    radial-gradient(circle, rgba(52, 211, 153, 0.45), transparent 60%),
    radial-gradient(circle, rgba(96, 165, 250, 0.42), transparent 74%);
  animation-delay: -12s;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black 0%, black 42%, transparent 90%);
  -webkit-mask-image: linear-gradient(
    to bottom,
    black 0%,
    black 42%,
    transparent 90%
  );
}

.noise-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image:
    radial-gradient(
      circle at 20% 30%,
      rgba(255, 255, 255, 0.12) 0 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(255, 255, 255, 0.08) 0 1px,
      transparent 1px
    );
  background-size:
    34px 34px,
    46px 46px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(7, 10, 18, 0.58);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition:
    border-color 220ms var(--ease),
    background-color 220ms var(--ease),
    box-shadow 220ms var(--ease);
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(7, 10, 18, 0.82);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  color: #07111f;
  background:
    radial-gradient(
      circle at 30% 10%,
      #ffffff 0%,
      rgba(255, 255, 255, 0.72) 18%,
      transparent 32%
    ),
    linear-gradient(135deg, var(--cyan), var(--primary) 58%, var(--pink));
  box-shadow:
    0 0 36px rgba(34, 211, 238, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.brand-mark svg {
  width: 28px;
  height: 28px;
}

.brand-mark svg path:first-child {
  opacity: 0.95;
}

.brand-mark svg path:last-child {
  fill: rgba(7, 10, 18, 0.72);
}

.brand-text {
  display: grid;
  gap: 0;
}

.brand-text strong {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.brand-text em {
  color: var(--text-faint);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-left: auto;
}

.desktop-nav a {
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 720;
  transition:
    color 180ms var(--ease),
    background-color 180ms var(--ease),
    transform 180ms var(--ease);
}

.desktop-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.075);
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button,
.menu-button {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  transition:
    border-color 180ms var(--ease),
    background-color 180ms var(--ease),
    transform 180ms var(--ease);
}

.icon-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
}

.icon-button:hover,
.menu-button:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.105);
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  padding: 0;
}

.menu-button span {
  display: block;
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 220ms var(--ease),
    opacity 180ms var(--ease);
}

.menu-button.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: var(--header-height);
  right: 20px;
  left: 20px;
  z-index: 99;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(7, 10, 18, 0.9);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  animation: mobile-menu-in 220ms var(--ease-out);
}

.mobile-nav {
  display: grid;
  gap: 6px;
  padding: 14px;
}

.mobile-nav a {
  border-radius: 14px;
  padding: 14px 16px;
  color: var(--text-soft);
  font-weight: 780;
  background: rgba(255, 255, 255, 0.045);
}

.mobile-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.09);
}

.hero {
  padding-top: 92px;
  padding-bottom: 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
  align-items: center;
  gap: clamp(38px, 6vw, 86px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 18px rgba(52, 211, 153, 0.95);
}

.hero-title {
  max-width: 850px;
  margin: 0;
  color: var(--text);
  font-size: clamp(1.8rem, 5vw, 5.5rem);
  font-weight: 950;
  line-height: 0.92;
  letter-spacing: -0.095em;
}

.hero-title span {
  display: inline-block;
  color: transparent;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    #a5f3fc 18%,
    #a78bfa 54%,
    #f0abfc 86%
  );
  background-clip: text;
  -webkit-background-clip: text;
  text-shadow: 0 0 58px rgba(139, 92, 246, 0.32);
}

.hero-description {
  max-width: 680px;
  margin: 26px 0 0;
  color: var(--text-muted);
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  line-height: 1.86;
  word-break: keep-all;
}

.hero-search {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  max-width: 720px;
  margin-top: 34px;
  border-radius: 22px;
  padding: 8px;
}

.search-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
  color: var(--cyan);
}

.hero-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  color: var(--text);
  background: transparent;
  outline: 0;
}

.hero-search input::placeholder {
  color: var(--text-faint);
}

.search-submit,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 16px;
  padding: 0 20px;
  color: #06101d;
  font-weight: 850;
  letter-spacing: -0.02em;
  background:
    radial-gradient(
      circle at 20% 0%,
      rgba(255, 255, 255, 0.7),
      transparent 32%
    ),
    linear-gradient(135deg, var(--cyan), var(--primary-strong));
  box-shadow:
    0 14px 34px rgba(34, 211, 238, 0.18),
    0 14px 38px rgba(139, 92, 246, 0.16);
  transition:
    transform 180ms var(--ease),
    box-shadow 180ms var(--ease),
    filter 180ms var(--ease);
}

.search-submit:hover,
.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow:
    0 18px 46px rgba(34, 211, 238, 0.22),
    0 18px 52px rgba(139, 92, 246, 0.2);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-tags button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 740;
  background: rgba(255, 255, 255, 0.045);
  transition:
    color 180ms var(--ease),
    border-color 180ms var(--ease),
    background-color 180ms var(--ease),
    transform 180ms var(--ease);
}

.hero-tags button:hover {
  color: var(--text);
  border-color: rgba(34, 211, 238, 0.38);
  background: rgba(34, 211, 238, 0.08);
  transform: translateY(-1px);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-stats div {
  min-width: 124px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.045);
}

.hero-stats strong {
  display: block;
  color: var(--text);
  font-size: 1.42rem;
  font-weight: 920;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.hero-stats span {
  display: block;
  margin-top: 4px;
  color: var(--text-faint);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}
.dashboard-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}
.dashboard-card {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 18px;
  transform: perspective(1200px) rotateX(3deg) rotateY(-7deg);
  box-shadow: var(--shadow-lg);
}
.dashboard-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
  margin-bottom: 16px;
  border-radius: 18px;
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.25s;
}

.dashboard-link:hover {
  transform: translateX(6px);
  background: rgba(103, 152, 255, 0.15);
  border-color: #6fa7ff;
}
.verify-label {
  font-size: 13px;

  color: #8fd8ff;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}

#verify-date {
  display: block;

  margin: 10px 0;

  font-size: 34px;

  font-weight: 800;

  color: #fff;
}

.verify-text {
  color: #9fb3d8;

  font-size: 13px;
}
.link-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.link-left strong {
  display: block;
  font-size: 17px;
}

.link-left small {
  color: #9fb2d8;
}

.link-arrow {
  font-size: 24px;
  opacity: 0.7;
}

.dashboard-link:hover .link-arrow {
  opacity: 1;
}
.dashboard-card::after {
  position: absolute;
  inset: auto -20% -26% -20%;
  height: 230px;
  content: "";
  background:
    radial-gradient(
      circle at 45% 30%,
      rgba(34, 211, 238, 0.24),
      transparent 58%
    ),
    radial-gradient(
      circle at 65% 20%,
      rgba(167, 139, 250, 0.22),
      transparent 62%
    );
  filter: blur(20px);
  pointer-events: none;
}

.dashboard-topbar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.window-dots {
  display: flex;
  gap: 7px;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
}

.window-dots span:nth-child(1) {
  background: var(--red);
}

.window-dots span:nth-child(2) {
  background: var(--yellow);
}

.window-dots span:nth-child(3) {
  background: var(--green);
}

.dashboard-url {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 720;
  background: rgba(0, 0, 0, 0.18);
}

.dashboard-search {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 13px 14px;
  background: rgba(0, 0, 0, 0.22);
}

.dashboard-search span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 22px rgba(34, 211, 238, 0.88);
}

.dashboard-search p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 760;
}

.dashboard-search kbd {
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 3px 7px;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 750;
  background: rgba(255, 255, 255, 0.06);
}

.dashboard-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 168px;
  gap: 16px;
  margin-top: 18px;
}

.dashboard-main {
  display: grid;
  gap: 12px;
}

.mini-card {
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.052);
  transition:
    transform 220ms var(--ease),
    border-color 220ms var(--ease),
    background-color 220ms var(--ease);
}

.mini-card.active,
.mini-card:hover {
  border-color: rgba(34, 211, 238, 0.36);
  background: rgba(34, 211, 238, 0.08);
  transform: translateX(4px);
}

.mini-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 15px;
  color: #07111f;
  font-size: 0.94rem;
  font-weight: 950;
  background: linear-gradient(135deg, var(--cyan), var(--primary-strong));
}

.mini-card strong,
.mini-card small {
  display: block;
}

.mini-card strong {
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.mini-card small {
  margin-top: 2px;
  color: var(--text-faint);
  font-size: 0.78rem;
  font-weight: 650;
}

.dashboard-side {
  display: grid;
  gap: 12px;
}

.score-ring {
  display: grid;
  min-height: 164px;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(34, 211, 238, 0.25);
  border-radius: 28px;
  background:
    radial-gradient(circle, rgba(34, 211, 238, 0.18), transparent 60%),
    rgba(255, 255, 255, 0.05);
}

.score-ring span {
  display: block;
  color: var(--text);
  font-size: 2rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.08em;
}

.score-ring small {
  display: block;
  margin-top: 8px;
  color: var(--text-faint);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pulse-list {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 15px;
  background: rgba(0, 0, 0, 0.15);
}

.pulse-list span {
  display: block;
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.pulse-list span::after {
  display: block;
  width: 52%;
  height: 100%;
  content: "";
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--primary-strong));
}

.pulse-list span:nth-child(2)::after {
  width: 72%;
}

.pulse-list span:nth-child(3)::after {
  width: 45%;
}

.pulse-list span:nth-child(4)::after {
  width: 62%;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 2px;
  border-radius: 20px;
  padding: 14px 16px;
  animation: floating 4.8s ease-in-out infinite;
}

.floating-card strong {
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 850;
  letter-spacing: -0.035em;
}

.floating-card span {
  color: var(--text-faint);
  font-size: 0.74rem;
  font-weight: 720;
}

.floating-card-one {
  top: 84px;
  left: -20px;
}

.floating-card-two {
  right: -22px;
  bottom: 108px;
  animation-delay: -1.6s;
}

.trusted-section {
  padding-top: 34px;
  padding-bottom: 70px;
}

.trusted-section .section-kicker {
  text-align: center;
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius-md);
  padding: 18px;
}

.logo-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 820;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.04);
}

.links-section {
  padding-top: 84px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 22px;
  border-radius: 999px;
  padding: 8px;
}

.filter-button {
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  padding: 0 15px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 800;
  background: transparent;
  transition:
    color 180ms var(--ease),
    background-color 180ms var(--ease),
    transform 180ms var(--ease);
}

.filter-button:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.filter-button.active {
  color: #06101d;
  background: linear-gradient(135deg, var(--cyan), var(--primary-strong));
}

.empty-state {
  display: grid;
  gap: 4px;
  margin-bottom: 22px;
  border-radius: var(--radius-md);
  padding: 22px;
  text-align: center;
}

.empty-state strong {
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 850;
}

.empty-state p {
  margin: 0;
  color: var(--text-muted);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.category-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 22px;
  transition:
    transform 220ms var(--ease),
    border-color 220ms var(--ease),
    background-color 220ms var(--ease),
    box-shadow 220ms var(--ease),
    opacity 180ms var(--ease);
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.15),
      rgba(255, 255, 255, 0.07)
    ),
    rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-md);
}

.category-card.is-hidden {
  display: none;
}

.card-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.card-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.portal-icon {
  background: linear-gradient(
    135deg,
    rgba(34, 211, 238, 0.24),
    rgba(96, 165, 250, 0.12)
  );
}

.news-icon {
  background: linear-gradient(
    135deg,
    rgba(244, 114, 182, 0.24),
    rgba(139, 92, 246, 0.12)
  );
}

.webtoon-icon {
  background: linear-gradient(
    135deg,
    rgba(52, 211, 153, 0.24),
    rgba(34, 211, 238, 0.1)
  );
}

.video-icon {
  background: linear-gradient(
    135deg,
    rgba(251, 113, 133, 0.23),
    rgba(251, 146, 60, 0.12)
  );
}

.sports-icon {
  background: linear-gradient(
    135deg,
    rgba(250, 204, 21, 0.2),
    rgba(52, 211, 153, 0.1)
  );
}

.shopping-icon {
  background: linear-gradient(
    135deg,
    rgba(251, 146, 60, 0.24),
    rgba(250, 204, 21, 0.1)
  );
}

.work-icon {
  background: linear-gradient(
    135deg,
    rgba(96, 165, 250, 0.26),
    rgba(139, 92, 246, 0.12)
  );
}

.ai-icon {
  background: linear-gradient(
    135deg,
    rgba(167, 139, 250, 0.28),
    rgba(34, 211, 238, 0.12)
  );
}

.finance-icon {
  background: linear-gradient(
    135deg,
    rgba(52, 211, 153, 0.24),
    rgba(96, 165, 250, 0.12)
  );
}

.travel-icon {
  background: linear-gradient(
    135deg,
    rgba(34, 211, 238, 0.22),
    rgba(52, 211, 153, 0.12)
  );
}

.design-icon {
  background: linear-gradient(
    135deg,
    rgba(244, 114, 182, 0.26),
    rgba(34, 211, 238, 0.12)
  );
}

.community-icon {
  background: linear-gradient(
    135deg,
    rgba(167, 139, 250, 0.24),
    rgba(244, 114, 182, 0.12)
  );
}

.card-head h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.13rem;
  font-weight: 870;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.card-head p {
  margin: 4px 0 0;
  color: var(--text-faint);
  font-size: 0.86rem;
  font-weight: 660;
}

.link-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.link-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 15px;
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.13);
  transition:
    border-color 180ms var(--ease),
    background-color 180ms var(--ease),
    transform 180ms var(--ease);
}

.link-list a:hover {
  border-color: rgba(34, 211, 238, 0.35);
  background: rgba(34, 211, 238, 0.075);
  transform: translateX(3px);
}

.link-list span {
  color: var(--text-soft);
  font-size: 0.94rem;
  font-weight: 780;
  letter-spacing: -0.02em;
}

.link-list em {
  color: var(--text-faint);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 650;
  white-space: nowrap;
}

.features-section {
  padding-top: 118px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  overflow: hidden;
  min-height: 230px;
  border-radius: var(--radius-lg);
  padding: 26px;
  transition:
    transform 220ms var(--ease),
    border-color 220ms var(--ease),
    background-color 220ms var(--ease);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.14),
      rgba(255, 255, 255, 0.06)
    ),
    rgba(255, 255, 255, 0.055);
}

.feature-number {
  position: relative;
  z-index: 1;
  display: inline-grid;
  width: 44px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(34, 211, 238, 0.28);
  border-radius: 999px;
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 900;
  background: rgba(34, 211, 238, 0.08);
}

.feature-card h3 {
  position: relative;
  z-index: 1;
  margin: 24px 0 10px;
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 850;
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.feature-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.78;
  word-break: keep-all;
}
/* ===============================
   Compare Section
================================= */

.compare-card {
  overflow: hidden;
  margin-top: 40px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
}

.compare-table thead {
  background: rgba(255, 255, 255, 0.05);
}

.compare-table th {
  padding: 20px;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.compare-table td {
  padding: 18px 20px;
  color: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  line-height: 1.7;
}

.compare-table tbody tr {
  transition: 0.25s;
}

.compare-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.compare-table td:first-child {
  width: 170px;
  font-weight: 700;
  color: #fff;
}

.compare-table td:nth-child(2) {
  color: #b8bfd4;
}

.compare-table td:nth-child(3) {
  color: #82d8ff;
}

.compare-footer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 30px;
  padding: 28px;
}

.compare-box {
  padding: 26px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.compare-box h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
  color: #fff;
}

.compare-box p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}

.compare-box.active {
  background: linear-gradient(
    135deg,
    rgba(94, 96, 255, 0.18),
    rgba(0, 212, 255, 0.12)
  );
  border: 1px solid rgba(103, 157, 255, 0.25);
}

.compare-box.active h3 {
  color: #82d8ff;
}

@media (max-width: 900px) {
  .compare-footer {
    grid-template-columns: 1fr;
  }

  .compare-table {
    display: block;
    overflow-x: auto;
  }

  .compare-table th,
  .compare-table td {
    white-space: nowrap;
  }
}
.faq-section {
  padding-top: 106px;
}

.faq-list {
  display: grid;
  max-width: 900px;
  margin-inline: auto;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border-radius: 22px;
}

.faq-item summary {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  color: var(--text);
  font-weight: 830;
  letter-spacing: -0.03em;
  list-style: none;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  position: relative;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
}

.faq-icon::before,
.faq-icon::after {
  position: absolute;
  width: 10px;
  height: 2px;
  border-radius: 999px;
  content: "";
  background: var(--text-soft);
  transition: transform 200ms var(--ease);
}

.faq-icon::after {
  transform: rotate(90deg);
}

.faq-item[open] .faq-icon::after {
  transform: rotate(0deg);
}

.faq-content {
  position: relative;
  z-index: 1;
  padding: 0 22px 22px;
}

.faq-content p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.82;
  word-break: keep-all;
}

.cta-section {
  padding-top: 82px;
  padding-bottom: 118px;
}

.cta-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: clamp(34px, 7vw, 74px);
  text-align: center;
}

.cta-glow {
  position: absolute;
  inset: auto 8% -52% 8%;
  height: 300px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(34, 211, 238, 0.34), transparent 58%),
    radial-gradient(
      circle at 66% 30%,
      rgba(167, 139, 250, 0.32),
      transparent 62%
    );
  filter: blur(38px);
}

.cta-card .section-kicker,
.cta-card h2,
.cta-card p,
.cta-actions {
  position: relative;
  z-index: 1;
}

.cta-card h2 {
  max-width: 850px;
  margin: 0 auto;
  color: var(--text);
  font-size: clamp(2.3rem, 5.2vw, 5rem);
  font-weight: 930;
  line-height: 1.02;
  letter-spacing: -0.075em;
}

.cta-card p {
  max-width: 680px;
  margin: 20px auto 0;
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.82;
  word-break: keep-all;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.secondary-button {
  border: 1px solid var(--line-strong);
  color: var(--text);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.12),
      rgba(255, 255, 255, 0.055)
    ),
    rgba(255, 255, 255, 0.04);
  box-shadow: none;
}

.secondary-button:hover {
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
}

.site-footer {
  position: relative;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.18);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.7fr 0.7fr 1fr;
  gap: 36px;
  padding: 58px 0 38px;
}

.footer-brand p,
.footer-newsletter p {
  max-width: 350px;
  margin: 18px 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.78;
  word-break: keep-all;
}

.footer-nav,
.footer-newsletter {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-nav h2,
.footer-newsletter h2 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.footer-nav a {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 670;
  transition:
    color 180ms var(--ease),
    transform 180ms var(--ease);
}

.footer-nav a:hover {
  color: var(--text);
  transform: translateX(2px);
}

.footer-button {
  width: fit-content;
  min-height: 42px;
  margin-top: 4px;
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding: 18px 0 24px;
}

.footer-bottom p {
  margin: 0;
  color: var(--text-faint);
  font-size: 0.86rem;
  font-weight: 650;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--text);
  background: rgba(7, 10, 18, 0.82);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.96);
  transition:
    opacity 180ms var(--ease),
    transform 180ms var(--ease),
    background-color 180ms var(--ease);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  background: rgba(255, 255, 255, 0.12);
}

.noscript-message {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  max-width: 360px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  padding: 14px 16px;
  color: var(--text);
  background: rgba(7, 10, 18, 0.92);
  box-shadow: var(--shadow-md);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms var(--ease-out),
    transform 700ms var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.category-card:nth-child(2),
.feature-card:nth-child(2),
.process-item:nth-child(2),
.faq-item:nth-child(2) {
  transition-delay: 60ms;
}

.category-card:nth-child(3),
.feature-card:nth-child(3),
.process-item:nth-child(3),
.faq-item:nth-child(3) {
  transition-delay: 120ms;
}

.category-card:nth-child(4),
.feature-card:nth-child(4),
.faq-item:nth-child(4) {
  transition-delay: 180ms;
}

.category-card:nth-child(5),
.feature-card:nth-child(5),
.faq-item:nth-child(5) {
  transition-delay: 240ms;
}

.category-card:nth-child(6),
.feature-card:nth-child(6) {
  transition-delay: 300ms;
}

@keyframes aurora-float {
  0% {
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
  }

  100% {
    transform: translate3d(7%, 6%, 0) scale(1.12) rotate(12deg);
  }
}

@keyframes floating {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -12px, 0);
  }
}

@keyframes mobile-menu-in {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1180px) {
  .category-grid,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 500px;
    max-width: 720px;
    margin-inline: auto;
  }

  .dashboard-card {
    transform: perspective(1200px) rotateX(2deg) rotateY(0deg);
  }

  .footer-grid {
    grid-template-columns: 1.25fr 1fr 1fr;
  }

  .footer-newsletter {
    grid-column: 1 / -1;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 72px;
  }

  .section {
    padding: 84px 0;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand,
  .footer-newsletter {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .hero {
    padding-top: 70px;
  }

  .hero-title {
    font-size: clamp(3rem, 17vw, 5.2rem);
  }

  .hero-description {
    margin-top: 22px;
  }

  .hero-search {
    grid-template-columns: auto 1fr;
    border-radius: 20px;
  }

  .search-submit {
    grid-column: 1 / -1;
    width: 100%;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-stats div {
    min-width: 0;
    padding: 13px 12px;
  }

  .hero-stats strong {
    font-size: 1rem;
  }

  .hero-stats span {
    font-size: 0.76rem;
  }

  .hero-visual {
    min-height: auto;
  }

  .dashboard-card {
    border-radius: 28px;
    padding: 14px;
  }

  .dashboard-content {
    grid-template-columns: 1fr;
  }

  .dashboard-side {
    grid-template-columns: 1fr 1fr;
  }

  .score-ring {
    min-height: 130px;
  }

  .floating-card {
    display: none;
  }

  .category-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .filter-bar {
    width: 100%;
    border-radius: 22px;
  }

  .filter-button {
    flex: 1 1 auto;
  }

  .link-list a {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .link-list em {
    white-space: normal;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .section {
    padding: 72px 0;
  }

  .brand-text em {
    display: none;
  }

  .icon-button {
    display: none;
  }

  .hero {
    padding-bottom: 54px;
  }

  .hero-title {
    letter-spacing: -0.085em;
  }

  .eyebrow {
    font-size: 0.75rem;
  }

  .hero-tags {
    gap: 8px;
  }

  .hero-tags button {
    padding: 7px 11px;
    font-size: 0.82rem;
  }

  .dashboard-search {
    grid-template-columns: auto 1fr;
  }

  .dashboard-search kbd {
    display: none;
  }

  .dashboard-side {
    grid-template-columns: 1fr;
  }

  .logo-strip {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }

  .logo-strip::-webkit-scrollbar {
    display: none;
  }

  .logo-strip span {
    flex: 0 0 auto;
  }

  .category-card,
  .feature-card,
  .process-item,
  .faq-item,
  .cta-card {
    border-radius: 22px;
  }

  .category-card,
  .feature-card,
  .process-item {
    padding: 20px;
  }

  .card-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
  }

  .feature-card {
    min-height: auto;
  }

  .faq-item summary {
    align-items: flex-start;
    padding: 18px;
  }

  .faq-content {
    padding: 0 18px 18px;
  }

  .cta-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 44px;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 390px) {
  .container {
    width: min(calc(100% - 22px), var(--container));
  }

  .hero-title {
    font-size: 2.75rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .card-head {
    align-items: flex-start;
  }

  .footer-brand p,
  .footer-newsletter p {
    max-width: none;
  }
}

@media (hover: none) {
  .category-card:hover,
  .feature-card:hover,
  .mini-card:hover,
  .link-list a:hover,
  .button:hover,
  .search-submit:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@supports not (
  (backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px))
) {
  .glass-card,
  .site-header,
  .mobile-menu,
  .back-to-top {
    background: rgba(12, 17, 31, 0.94);
  }
}
