:root {
  --bg-deep: #060606;
  --bg-primary: #0d0d0d;
  --bg-secondary: #121212;
  --bg-card: #1a1a1a;
  --bg-card2: #202020;
  --text-primary: #f2f2f2;
  --text-secondary: #9a9a9a;
  --text-muted: #585858;
  --red: #c41e3a;
  --red-hover: #e0253f;
  --red-dark: #8b1426;
  --red-glow: rgba(196, 30, 58, 0.35);
  --gold: #c9a227;
  --border: #222222;
  --border-light: #2c2c2c;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.8;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
  transform-origin: left;
  transform: scaleX(0);
  z-index: 9999;
  will-change: transform;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  line-height: 1.15;
}

h4,
h5,
h6,
.label {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

p {
  margin-bottom: 1.1rem;
}
p:last-child {
  margin-bottom: 0;
}

ul.custom {
  list-style: none;
  margin-bottom: 1.1rem;
}

ul.custom li {
  padding-left: 1.6rem;
  position: relative;
  margin-bottom: 0.6rem;
  color: var(--text-secondary);
  font-size: 0.92rem;
}

ul.custom li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.65em;
  width: 5px;
  height: 5px;
  background: var(--red);
  transform: rotate(45deg);
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 5%;
}

.section-pad {
  padding: 100px 0;
}
.alt-bg {
  background: var(--bg-secondary);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.split.center {
  align-items: center;
}

@media (max-width: 860px) {
  .split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.divider {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 5%;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--red-dark) 20%,
    var(--red) 50%,
    var(--red-dark) 80%,
    transparent
  );
  opacity: 0.5;
}

.divider-sym {
  color: var(--red);
  font-size: 0.95rem;
  text-shadow:
    0 0 18px var(--red-glow),
    0 0 36px rgba(196, 30, 58, 0.18);
  flex-shrink: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .divider-sym {
    animation: sym-pulse 4s ease-in-out infinite;
  }
}

@keyframes sym-pulse {
  0%,
  100% {
    opacity: 1;
    text-shadow: 0 0 18px var(--red-glow);
  }
  50% {
    opacity: 0.45;
    text-shadow: 0 0 4px rgba(196, 30, 58, 0.15);
  }
}

.sec-label {
  font-family: "Oswald", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.38em;
  color: var(--red);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sec-label::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--red);
  flex-shrink: 0;
}

.sec-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

.sec-title em {
  color: var(--red);
  font-style: italic;
}

.sec-sub {
  font-family: "Oswald", sans-serif;
  font-size: clamp(0.78rem, 1.6vw, 0.92rem);
  font-weight: 300;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  margin-bottom: 3rem;
}

.sub-title {
  font-family: "Oswald", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-bottom: 0.55rem;
  margin-bottom: 1.1rem;
  position: relative;
}

.sub-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--red);
}

.btn {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 2px;
  cursor: pointer;
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.18s ease;
  border: 1px solid transparent;
}

.btn-red {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.btn-red:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
  box-shadow:
    0 0 32px var(--red-glow),
    0 4px 24px rgba(0, 0, 0, 0.5);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-light);
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6, 6, 6, 0.9);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  transition: background 0.3s ease;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo-text {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--text-primary);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.logo-text span {
  color: var(--red);
}

nav.main-nav {
  display: flex;
  align-items: center;
}

nav.main-nav a {
  font-family: "Oswald", sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.65rem;
  transition: color 0.18s ease;
  white-space: nowrap;
  position: relative;
}

nav.main-nav a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0.65rem;
  right: 0.65rem;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.2s ease;
  transform-origin: left;
}

nav.main-nav a:hover {
  color: var(--text-primary);
}
nav.main-nav a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 5px 11px;
  border-radius: 2px;
  transition:
    border-color 0.18s,
    color 0.18s;
}

.nav-toggle:hover {
  border-color: var(--red);
  color: var(--red);
}

@media (max-width: 1060px) {
  nav.main-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(6, 6, 6, 0.98);
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 0 18px;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(20px);
  }

  nav.main-nav.open {
    display: flex;
  }

  nav.main-nav a {
    padding: 0.7rem 5%;
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  nav.main-nav a::after {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
}

#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 5% 90px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1596838132731-3301c3fd4317?auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
  filter: brightness(0.13) saturate(0.5);
  z-index: 0;
  will-change: transform;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 14% 55%,
      rgba(196, 30, 58, 0.22) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 90% 20%,
      rgba(139, 20, 38, 0.1) 0%,
      transparent 42%
    ),
    linear-gradient(180deg, transparent 55%, rgba(13, 13, 13, 0.95) 100%);
}

#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.024) 1px,
    transparent 1px
  );
  background-size: 30px 30px;
  z-index: 1;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 800px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.hero-title {
  font-size: clamp(3.4rem, 7.5vw, 6.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.hero-title span {
  color: var(--red);
  display: block;
  text-shadow: 0 0 80px rgba(196, 30, 58, 0.45);
}

.hero-tag {
  font-family: "Oswald", sans-serif;
  font-size: clamp(0.88rem, 1.7vw, 1.1rem);
  font-weight: 300;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  border-left: 2px solid var(--red);
  padding-left: 1.1rem;
  line-height: 1.65;
}

.hero-right {
  position: relative;
  z-index: 2;
}

.hero-right p {
  color: #ccc;
  margin-bottom: 1rem;
  font-size: 0.97rem;
}

.hero-age {
  background: rgba(196, 30, 58, 0.09);
  border: 1px solid rgba(196, 30, 58, 0.28);
  border-radius: 2px;
  padding: 0.85rem 1.1rem;
  font-size: 0.82rem;
  color: #ffbbbb;
  margin-top: 1.6rem;
}

.hero-btns {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 56px;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.hero-note {
  position: relative;
  z-index: 2;
  margin-top: 28px;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.hero-note p {
  font-size: 0.73rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 18px;
  letter-spacing: 0.02em;
}

.about-intro {
  max-width: 820px;
  margin-bottom: 58px;
}

.about-intro p {
  color: var(--text-secondary);
}

.hero-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 3px;
  filter: brightness(0.65) saturate(0.4) contrast(1.1);
  margin-bottom: 56px;
}

.inset-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 2px solid var(--red);
  padding: 30px;
  border-radius: 0 3px 3px 0;
  transition: box-shadow 0.25s ease;
}

.inset-card:hover {
  box-shadow:
    -4px 0 24px rgba(196, 30, 58, 0.12),
    0 4px 24px rgba(0, 0, 0, 0.35);
}

.slot-img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  border-radius: 3px;
  filter: brightness(0.7) saturate(0.5);
}

.mechanic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.mechanic-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 28px;
  border-radius: 4px;
  position: relative;
  cursor: default;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  overflow: hidden;
}

.mechanic-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red-dark), var(--red));
  transition: box-shadow 0.25s ease;
}

.mechanic-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.55),
    0 0 24px rgba(196, 30, 58, 0.07);
  border-color: var(--border-light);
}

.mechanic-card:hover::before {
  box-shadow: 0 0 16px var(--red-glow);
}

.card-icon {
  width: 34px;
  height: 34px;
  color: var(--red);
  margin-bottom: 16px;
  stroke-width: 1.5;
  flex-shrink: 0;
}

.mechanic-card h4 {
  color: var(--text-primary);
  font-size: 0.93rem;
  margin-bottom: 10px;
  letter-spacing: 0.07em;
}

.mechanic-card p {
  font-size: 0.87rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.72;
}

.play-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 3px;
  filter: brightness(0.65) saturate(0.4);
}

.play-rule {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 2px solid transparent;
  padding: 20px 24px;
  border-radius: 0 3px 3px 0;
  margin-bottom: 12px;
  transition:
    border-left-color 0.22s ease,
    background 0.22s ease,
    transform 0.22s ease;
  cursor: default;
}

.play-rule:hover {
  border-left-color: var(--red);
  background: var(--bg-card2);
  transform: translateX(4px);
}

.play-rule h4 {
  color: var(--text-primary);
  font-size: 0.88rem;
  margin-bottom: 6px;
  letter-spacing: 0.08em;
}

.play-rule p {
  font-size: 0.87rem;
  color: var(--text-secondary);
  margin: 0;
}

.warn-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 3px;
  filter: brightness(0.6) saturate(0.35);
  margin-bottom: 28px;
}

.self-check-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.sc-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 13px 20px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.15s ease;
}

.sc-item:last-child {
  border-bottom: none;
}
.sc-item:hover {
  background: var(--bg-card2);
}

.sc-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--red);
  cursor: pointer;
  margin-top: 5px;
}

.sc-item label {
  font-size: 0.87rem;
  color: var(--text-secondary);
  cursor: pointer;
  line-height: 1.6;
}

.risk-meter {
  margin-top: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 20px 22px;
  border-radius: 4px;
}

.risk-label {
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.risk-track {
  background: var(--border);
  height: 5px;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 11px;
}

.risk-fill {
  height: 100%;
  border-radius: 3px;
  background: var(--red);
  transition:
    width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.4s ease;
  width: 0%;
}

.risk-hint {
  font-size: 0.73rem;
  color: var(--text-muted);
  margin: 0;
  font-style: italic;
}

.risk-levels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}

@media (max-width: 600px) {
  .risk-levels {
    grid-template-columns: 1fr 1fr;
  }
}

.rl-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 18px 16px;
  border-radius: 4px;
  text-align: center;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
  cursor: default;
}

.rl-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
}

.rl-card h5 {
  font-size: 0.78rem;
  margin-bottom: 8px;
  letter-spacing: 0.09em;
}
.rl-card p {
  font-size: 0.73rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.rl-card.low {
  border-top: 2px solid #2ecc71;
}
.rl-card.low h5 {
  color: #2ecc71;
}
.rl-card.med {
  border-top: 2px solid #f39c12;
}
.rl-card.med h5 {
  color: #f39c12;
}
.rl-card.high {
  border-top: 2px solid #e74c3c;
}
.rl-card.high h5 {
  color: #e74c3c;
}
.rl-card.crit {
  border-top: 2px solid #9b59b6;
}
.rl-card.crit h5 {
  color: #9b59b6;
}

.consult-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 3px;
  filter: brightness(0.65) saturate(0.4);
  margin-bottom: 28px;
}

.no-list {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 2px solid var(--border-light);
  padding: 20px 24px;
  border-radius: 0 3px 3px 0;
  margin-top: 24px;
}

.no-list h4 {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: 4px;
}

.form-title {
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.form-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.7;
}

.fg {
  margin-bottom: 20px;
}

.fg label {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 8px;
  transition: color 0.18s ease;
}

.fg:focus-within label {
  color: var(--red);
}

.fg input[type="text"],
.fg input[type="email"] {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  font-family: "Open Sans", sans-serif;
  font-size: 0.92rem;
  padding: 12px 16px;
  border-radius: 2px;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.fg input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.12);
}

.fg input::placeholder {
  color: var(--text-muted);
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.check-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--red);
  margin-top: 4px;
  cursor: pointer;
}

.check-row label {
  font-family: "Open Sans", sans-serif;
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
}

.btn-submit {
  width: 100%;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  background: var(--red);
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 2px;
  cursor: pointer;
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.18s ease;
  margin-top: 6px;
}

.btn-submit:hover {
  background: var(--red-hover);
  box-shadow: 0 0 28px var(--red-glow);
  transform: translateY(-1px);
}

.btn-submit:active {
  transform: translateY(0);
}

.form-legal {
  font-size: 0.73rem;
  color: var(--text-muted);
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  line-height: 1.65;
}

.form-success {
  display: none;
  background: rgba(46, 204, 113, 0.08);
  border: 1px solid rgba(46, 204, 113, 0.24);
  padding: 24px;
  border-radius: 3px;
  text-align: center;
  color: #2ecc71;
}

.policy-wrap {
  max-width: 780px;
}

.eff-date {
  font-family: "Oswald", sans-serif;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 2rem;
}

.policy-wrap h3 {
  font-family: "Oswald", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 2rem 0 0.75rem;
}

.policy-wrap h3:first-of-type {
  margin-top: 0;
}
.policy-wrap p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.policy-wrap ul.custom li {
  font-size: 0.9rem;
}

.contact-center {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.contact-center p {
  color: var(--text-secondary);
}

#site-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 64px 5% 32px;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 60px;
  margin-bottom: 42px;
}

@media (max-width: 680px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.footer-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.footer-logo span {
  color: var(--red);
}
.footer-tag {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-notice {
  background: rgba(196, 30, 58, 0.06);
  border: 1px solid rgba(196, 30, 58, 0.16);
  padding: 22px 24px;
  border-radius: 3px;
}

.footer-notice h5 {
  color: var(--red);
  font-size: 0.73rem;
  margin-bottom: 9px;
  letter-spacing: 0.12em;
}
.footer-notice p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.footer-notice p:last-child {
  margin-bottom: 0;
}

.footer-hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 28px 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.footer-nav a {
  font-family: "Oswald", sans-serif;
  font-size: 0.71rem;
  color: var(--text-muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 2px 14px;
  border-right: 1px solid var(--border);
  transition: color 0.18s ease;
  line-height: 2;
}

.footer-nav a:first-child {
  padding-left: 0;
}
.footer-nav a:last-child {
  border-right: none;
}
.footer-nav a:hover {
  color: var(--red);
}

.footer-copy {
  font-size: 0.73rem;
  color: var(--text-muted);
}

[data-anim] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

[data-anim].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-title,
.hero-tag,
.hero-right,
.hero-btns,
.hero-note {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  [data-anim],
  .hero-title,
  .hero-tag,
  .hero-right,
  .hero-btns,
  .hero-note {
    opacity: 1 !important;
    transform: none !important;
  }

  .scroll-progress {
    display: none;
  }
  .hero-bg {
    will-change: auto;
  }

  .mechanic-card,
  .rl-card,
  .btn,
  .btn-red,
  .btn-outline,
  .btn-submit,
  .play-rule {
    transition:
      background 0.18s ease,
      color 0.18s ease;
    transform: none !important;
  }
}
