/* KarmaLink Landing — dark premium theme aligned with brand logo */

:root {
  --bg: #050507;
  --bg-elevated: #0e0e14;
  --bg-card: #12121a;
  --bg-panel: #16161f;
  --indigo: #4a3480;
  --indigo-mid: #5c4499;
  --indigo-light: #8b74c7;
  --indigo-glow: rgba(92, 68, 153, 0.35);
  --gold: #c9a227;
  --gold-bright: #e0bc45;
  --gold-soft: #f0d78a;
  --gold-muted: rgba(201, 162, 39, 0.14);
  --text: #f3f1f8;
  --text-secondary: #a39eb8;
  --text-muted: #6f6a82;
  --border: rgba(139, 116, 199, 0.18);
  --border-gold: rgba(201, 162, 39, 0.35);
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
  --radius: 16px;
  --radius-sm: 12px;
  --font-sans: "Noto Sans KR", sans-serif;
  --font-display: "Cormorant Garamond", "Noto Serif KR", serif;
  --font-logo-en: "Cormorant Garamond", Georgia, serif;
  --font-logo-ko: "Noto Serif KR", "Cormorant Garamond", serif;
  --shell: min(1120px, calc(100% - 2.5rem));
  --header-h: 4.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  padding: 0.6rem 1rem;
  background: var(--gold);
  color: #111;
  border-radius: 8px;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease,
    color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-sm {
  min-height: 2.4rem;
  padding: 0 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  min-height: 3.15rem;
  padding: 0 1.5rem;
  font-size: 1rem;
}

.btn-gold {
  background: linear-gradient(135deg, #b8921f 0%, var(--gold-bright) 52%, #d4a82e 100%);
  color: #1a1406;
  box-shadow: 0 8px 28px rgba(201, 162, 39, 0.28);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #c9a227 0%, var(--gold-soft) 55%, #e0bc45 100%);
  box-shadow: 0 10px 32px rgba(224, 188, 69, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--border-gold);
  color: var(--gold-soft);
  background: var(--gold-muted);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-h);
  background: rgba(5, 5, 7, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(5, 5, 7, 0.92);
}

.header-inner {
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  height: 2rem;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(139, 116, 199, 0.45));
}

.nav {
  display: none;
  gap: 1.5rem;
  margin-left: auto;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.nav a:hover {
  color: var(--gold-soft);
}

.header-cta {
  display: none;
  margin-left: auto;
}

.nav-toggle {
  margin-left: auto;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  display: grid;
  place-content: center;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: var(--gold-soft);
  border-radius: 2px;
  transition: transform 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-nav {
  display: grid;
  gap: 0.25rem;
  padding: 0.75rem 1.25rem 1.25rem;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  padding: 0.75rem 0.5rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.mobile-nav .btn {
  margin-top: 0.5rem;
}

@media (min-width: 860px) {
  .nav {
    display: flex;
  }

  .header-cta {
    display: inline-flex;
    margin-left: 0;
  }

  .nav-toggle,
  .mobile-nav {
    display: none !important;
  }

  .brand-logo {
    height: 2.25rem;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: calc(var(--header-h) + 2rem) 0 4rem;
  background:
    radial-gradient(ellipse 70% 55% at 50% 35%, rgba(74, 52, 128, 0.28), transparent 60%),
    radial-gradient(ellipse 45% 40% at 80% 15%, rgba(201, 162, 39, 0.08), transparent 50%),
    radial-gradient(ellipse 40% 35% at 15% 80%, rgba(92, 68, 153, 0.18), transparent 55%),
    #000;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.7;
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.35), transparent 28%),
    linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent 40%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 44rem;
  animation: hero-rise 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-logo-wrap {
  margin: 0 auto 1.35rem;
  display: flex;
  justify-content: center;
}

/* Text wordmark — logo-style serif, no raster logo */
.wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
}

.wordmark-en {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  font-family: var(--font-logo-en);
  font-size: clamp(1.35rem, 4vw, 2rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.02em;
  user-select: none;
  opacity: 0.95;
}

.wm-karma,
.wm-ink {
  color: var(--indigo-light);
  text-shadow: 0 0 20px rgba(139, 116, 199, 0.3);
}

.wm-node {
  display: inline-block;
  width: 0.55em;
  height: 1.4px;
  margin: 0 0.05em 0.18em;
  align-self: flex-end;
  position: relative;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  border-radius: 1px;
  vertical-align: middle;
}

.wm-node::before {
  content: "";
  position: absolute;
  left: -0.12em;
  top: 50%;
  width: 0.28em;
  height: 0.28em;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 10px rgba(224, 188, 69, 0.55);
  transform: translateY(-50%);
}

.wm-l {
  position: relative;
  color: var(--gold-bright);
  font-weight: 700;
  text-shadow: 0 0 18px rgba(201, 162, 39, 0.4);
}

.wm-l::after {
  content: "";
  position: absolute;
  left: 0.08em;
  right: -0.55em;
  bottom: 0.08em;
  height: 0.07em;
  background: linear-gradient(90deg, var(--gold-bright), rgba(224, 188, 69, 0.35));
  border-radius: 1px;
}

.wm-sparkle {
  position: absolute;
  top: 0.02em;
  right: -0.2em;
  width: 0.38em;
  height: 0.38em;
  background: var(--gold-soft);
  clip-path: polygon(
    50% 0%,
    62% 38%,
    100% 50%,
    62% 62%,
    50% 100%,
    38% 62%,
    0% 50%,
    38% 38%
  );
  filter: drop-shadow(0 0 6px rgba(224, 188, 69, 0.7));
  animation: sparkle-twinkle 2.4s ease-in-out infinite;
}

.wordmark-ko {
  font-family: var(--font-logo-ko);
  font-size: clamp(2.35rem, 8vw, 4.1rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.15;
  padding-left: 0.12em;
  background: linear-gradient(
    105deg,
    #a896e0 0%,
    var(--indigo-light) 42%,
    var(--gold-soft) 58%,
    var(--gold-bright) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 22px rgba(139, 116, 199, 0.28));
}

@keyframes sparkle-twinkle {
  0%,
  100% {
    opacity: 0.75;
    transform: scale(0.92);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.6vw, 2.25rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 1rem;
}

.hero-lead {
  font-size: clamp(1rem, 2vw, 1.1rem);
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 28rem;
  margin: 0 auto 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.hero-scroll {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: fade-in 1s 0.8s both;
}

.hero-scroll-line {
  width: 1px;
  height: 2.25rem;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 1.8s ease-in-out infinite;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scroll-pulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(0.85);
    transform-origin: top;
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* Sections */
.section {
  padding: 6rem 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: -0.015em;
  margin-bottom: 1rem;
  color: var(--text);
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

.text-gold {
  color: var(--gold-bright);
}

/* Network */
.network {
  background:
    radial-gradient(ellipse 50% 40% at 10% 0%, var(--indigo-glow), transparent 55%),
    var(--bg);
}

.compare {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

.compare-col {
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.compare-old {
  background: var(--bg-elevated);
  color: var(--text-secondary);
}

.compare-old h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.compare-new {
  border-color: var(--border-gold);
  background:
    linear-gradient(145deg, rgba(201, 162, 39, 0.08), transparent 55%),
    var(--bg-panel);
  box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.06), var(--shadow);
}

.compare-new h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold-soft);
  margin-bottom: 1rem;
}

.compare-col ul {
  display: grid;
  gap: 0.65rem;
}

.compare-col li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.975rem;
}

.compare-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
}

.compare-new li::before {
  background: var(--gold);
}

.compare-bridge {
  display: none;
  justify-content: center;
  align-items: center;
}

@media (min-width: 720px) {
  .compare {
    grid-template-columns: 1fr auto 1fr;
    gap: 1.25rem;
  }

  .compare-bridge {
    display: flex;
  }
}

/* Fit */
.fit {
  background:
    radial-gradient(ellipse 55% 50% at 90% 40%, rgba(74, 52, 128, 0.22), transparent 60%),
    var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.fit-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 860px) {
  .fit-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
  }
}

.fit-points {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.fit-points li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
}

.fit-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--d);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--d) 22%, transparent);
}

.fit-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.score-ring {
  position: relative;
  width: min(240px, 70vw);
  aspect-ratio: 1;
}

.score-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.score-track {
  fill: none;
  stroke: rgba(139, 116, 199, 0.2);
  stroke-width: 12;
}

.score-progress {
  fill: none;
  stroke: url(#none);
  stroke: var(--gold);
  stroke-width: 12;
  stroke-linecap: round;
  stroke-dasharray: 515.2;
  stroke-dashoffset: 515.2;
  filter: drop-shadow(0 0 8px rgba(201, 162, 39, 0.35));
  transition: stroke-dashoffset 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.score-ring.is-visible .score-progress {
  stroke-dashoffset: calc(515.2 * (1 - 0.87));
}

.score-label {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
}

.score-value {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold-soft);
  letter-spacing: -0.03em;
}

.score-caption {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.score-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.score-chips span {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(74, 52, 128, 0.35);
  color: var(--indigo-light);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  font-weight: 600;
}

.score-chips .chip-gold {
  background: var(--gold-muted);
  color: var(--gold-soft);
  border-color: var(--border-gold);
}

/* How */
.how {
  background: var(--bg);
}

.steps {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step p {
  color: var(--text-secondary);
  font-size: 0.975rem;
}

/* Experts */
.experts {
  background:
    radial-gradient(ellipse 45% 40% at 85% 10%, rgba(201, 162, 39, 0.07), transparent),
    radial-gradient(ellipse 50% 45% at 0% 80%, var(--indigo-glow), transparent 55%),
    var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.expert-grid {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 640px) {
  .expert-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .expert-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.expert-card {
  padding: 1.35rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.expert-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.expert-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: grid;
  place-content: center;
  font-weight: 700;
  color: #fff;
  background: var(--av);
  font-size: 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.fit-badge {
  position: relative;
  width: 40px;
  height: 40px;
}

.fit-badge span {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold-soft);
}

.badge-track {
  fill: none;
  stroke: rgba(139, 116, 199, 0.25);
  stroke-width: 3;
}

.badge-progress {
  fill: none;
  stroke: var(--gold);
  stroke-width: 3;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: 20px 20px;
  stroke-dasharray: 100.53;
  stroke-dashoffset: calc(100.53 * (1 - var(--p) / 100));
}

.expert-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.expert-role {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.55rem;
}

.expert-bio {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.55;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.tags span {
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(74, 52, 128, 0.28);
  color: var(--indigo-light);
  border: 1px solid var(--border);
  font-size: 0.72rem;
  font-weight: 600;
}

/* Features */
.features {
  background: var(--bg);
}

.feature-row {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .feature-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .feature-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-content: center;
  border-radius: 12px;
  background: var(--gold-muted);
  color: var(--gold);
  border: 1px solid var(--border-gold);
  margin-bottom: 1rem;
}

.feature h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.feature p {
  font-size: 0.925rem;
  color: var(--text-secondary);
}

/* CTA */
.cta {
  padding-bottom: 5rem;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 4vw, 3rem);
  border-radius: 24px;
  text-align: center;
  border: 1px solid var(--border-gold);
  background:
    radial-gradient(ellipse 60% 70% at 50% 0%, rgba(201, 162, 39, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 60% at 100% 100%, rgba(74, 52, 128, 0.35), transparent 50%),
    linear-gradient(160deg, #0a0a10 0%, #14101f 50%, #0c0b12 100%);
}

.cta-logo {
  margin: 0 auto 1.25rem;
  height: 2.75rem;
  width: auto;
  filter: drop-shadow(0 0 16px rgba(139, 116, 199, 0.4));
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.85rem;
}

.cta-lead {
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.cta-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  padding: 3rem 0 2.5rem;
  border-top: 1px solid var(--border);
  background: #000;
}

.footer-inner {
  display: grid;
  gap: 1.5rem;
}

.footer-logo {
  height: 2rem;
  width: auto;
  margin-bottom: 0.65rem;
  filter: drop-shadow(0 0 12px rgba(139, 116, 199, 0.4));
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: var(--gold-soft);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (min-width: 720px) {
  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .footer-copy {
    grid-column: 1 / -1;
  }
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--delay, 0) * 80ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-content,
  .hero-scroll,
  .reveal,
  .score-progress,
  .hero-scroll-line {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .score-ring .score-progress {
    stroke-dashoffset: calc(515.2 * (1 - 0.87));
  }
}
