:root {
  --bg: #050813;
  --bg-2: #081020;
  --panel: rgba(14, 20, 39, 0.76);
  --panel-strong: rgba(15, 21, 42, 0.92);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f8fafc;
  --muted: #b7c0d8;
  --soft: #7b849f;
  --pink: #ff2d73;
  --orange: #ff7417;
  --gold: #ffd21f;
  --violet: #9a4dff;
  --blue: #469cff;
  --green: #9be15d;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.48);
  --radius: 26px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 5%, rgba(255, 45, 115, 0.24), transparent 30rem),
    radial-gradient(circle at 85% 0%, rgba(255, 210, 31, 0.18), transparent 28rem),
    linear-gradient(180deg, #050813 0%, #060b18 45%, #040711 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 75%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a,
input {
  font: inherit;
}

button { cursor: pointer; }

img {
  max-width: 100%;
  display: block;
}

::selection {
  color: white;
  background: rgba(255, 45, 115, .65);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-glow {
  position: fixed;
  pointer-events: none;
  z-index: -2;
  filter: blur(60px);
  opacity: .42;
  border-radius: 999px;
}

.site-glow--pink {
  width: 320px;
  height: 320px;
  left: -90px;
  top: 120px;
  background: var(--pink);
}

.site-glow--gold {
  width: 300px;
  height: 300px;
  right: -120px;
  top: 320px;
  background: var(--orange);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 16px clamp(18px, 4vw, 48px);
  background: rgba(5, 8, 19, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  transition: .25s ease;
}

.header.is-scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
  background: rgba(5, 8, 19, 0.88);
  box-shadow: 0 18px 60px rgba(0,0,0,.32);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 132px;
}

.brand img {
  width: 128px;
  height: auto;
  filter: drop-shadow(0 8px 22px rgba(255, 95, 30, .25));
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 4vw, 56px);
}

.nav a {
  color: rgba(255,255,255,.82);
  font-weight: 750;
  font-size: 15px;
  position: relative;
  padding: 10px 0;
  transition: color .2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink), var(--gold));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.nav a:hover,
.nav a.is-active { color: #fff; }

.nav a:hover::after,
.nav a.is-active::after { transform: scaleX(1); }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 900;
  padding: 14px 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--pink), var(--orange) 55%, var(--gold));
  box-shadow: 0 12px 34px rgba(255, 45, 115, .32);
  transition: transform .2s ease, box-shadow .2s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(255, 116, 23, .34);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.06);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: white;
  border-radius: 999px;
}

.hero {
  min-height: 850px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 150px 0 90px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 8, 19, .94) 0%, rgba(5, 8, 19, .63) 45%, rgba(5, 8, 19, .78) 100%),
    url("assets/hero-bg.webp") center/cover no-repeat;
  transform: scale(1.03);
  z-index: -3;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 26% 42%, rgba(255, 45, 115, .28), transparent 32rem),
    radial-gradient(circle at 70% 30%, rgba(255, 116, 23, .24), transparent 28rem),
    linear-gradient(180deg, transparent 0%, rgba(5, 8, 19, .16) 60%, var(--bg) 96%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.hero::before {
  left: 0;
  right: 0;
  bottom: -2px;
  height: 230px;
  background: linear-gradient(180deg, transparent, var(--bg));
}

.hero::after {
  width: 680px;
  height: 680px;
  right: -220px;
  top: 120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,210,31,.18), transparent 65%);
  filter: blur(12px);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 470px;
  gap: clamp(32px, 6vw, 74px);
  align-items: center;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffe6ef;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow::before,
.kicker::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--gold));
  box-shadow: 0 0 24px rgba(255, 45, 115, .75);
}

.hero h1 {
  margin: 22px 0 14px;
  max-width: 820px;
  font-size: clamp(52px, 7.5vw, 106px);
  line-height: .9;
  letter-spacing: -0.07em;
  text-wrap: balance;
}

.hero h1::first-line {
  background: linear-gradient(135deg, #fff 0%, #ffd5e4 26%, #ff2d73 48%, #ff7417 70%, #ffd21f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  max-width: 640px;
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 650;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.btn {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 0;
  border-radius: 16px;
  padding: 16px 24px;
  color: white;
  font-weight: 950;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: linear-gradient(135deg, var(--pink), var(--orange) 58%, var(--gold));
  box-shadow: 0 18px 50px rgba(255, 45, 115, .34);
}

.btn--primary:hover { box-shadow: 0 24px 65px rgba(255, 116, 23, .35); }

.btn--ghost {
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(18, 27, 55, .72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.btn--ghost:hover { border-color: rgba(255,255,255,.3); }

.btn__icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
}

.connect-card {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
  padding: 13px 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  background: rgba(5, 8, 19, .62);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 16px 44px rgba(0,0,0,.22);
  transition: transform .2s ease, border-color .2s ease;
}

.connect-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 210, 31, .38);
}

.connect-card span {
  color: var(--pink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
}

.connect-card strong {
  color: #fff;
  font-size: 18px;
}

.connect-card svg { color: rgba(255,255,255,.74); }

.hero__visual {
  min-width: 0;
}

.visual-card {
  position: relative;
  isolation: isolate;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 34px;
  overflow: hidden;
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow);
  transform: perspective(1100px) rotateY(-8deg) rotateX(4deg);
}

.visual-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 2;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12), inset 0 -120px 90px rgba(5, 8, 19, .42);
  pointer-events: none;
}

.visual-card img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
}

.status-panel {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(5, 8, 19, .72);
  backdrop-filter: blur(14px);
}

.status-panel strong { display: block; }
.status-panel small { color: var(--muted); }

.pulse {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(155,225,93,.8);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 13px rgba(155,225,93,0); }
  100% { box-shadow: 0 0 0 0 rgba(155,225,93,0); }
}

.section {
  position: relative;
  padding: 92px 0;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-head h2 {
  margin: 12px 0 10px;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.section-head p {
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.card {
  position: relative;
  min-height: 240px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025)),
    rgba(12, 18, 36, .78);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 18px 56px rgba(0,0,0,.25);
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .28;
  background: url("assets/card-bg.webp") center/cover no-repeat;
  mix-blend-mode: screen;
  pointer-events: none;
}

.card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.32), transparent);
}

.card > * {
  position: relative;
  z-index: 1;
}

.card-icon,
.faction-card__icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 22px;
  border-radius: 22px;
  font-size: 27px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.09), 0 14px 35px rgba(0,0,0,.28);
}

.card-icon--pink { color: #ff75a6; box-shadow: 0 0 34px rgba(255,45,115,.18); }
.card-icon--orange { color: #ff9b37; box-shadow: 0 0 34px rgba(255,116,23,.18); }
.card-icon--gold { color: #ffe466; box-shadow: 0 0 34px rgba(255,210,31,.18); }
.card-icon--violet { color: #c19cff; box-shadow: 0 0 34px rgba(154,77,255,.18); }

.card h3,
.faction-card h3,
.step h3,
.join-panel h3 {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.card p,
.faction-card p,
.step p,
.join-panel p {
  margin: 0;
  color: var(--muted);
}

.feature-card a {
  position: absolute;
  right: 24px;
  bottom: 22px;
  color: #ff8a47;
  font-size: 26px;
  z-index: 2;
  transition: transform .2s ease;
}

.feature-card:hover a { transform: translateX(4px); }

.section--rules {
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.015), transparent);
}

.rules-layout {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.rule-card {
  min-height: 330px;
}

.rule-card ul {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.rule-card li {
  position: relative;
  padding-left: 20px;
  margin-top: 12px;
}

.rule-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--gold));
}

.faction-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.faction-card {
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(10, 16, 32, .82);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 16px 50px rgba(0,0,0,.22);
}

.faction-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .75;
  background:
    linear-gradient(180deg, rgba(5,8,19,.16), rgba(5,8,19,.92)),
    url("assets/card-bg.webp") center/cover no-repeat;
  transition: transform .32s ease;
}

.faction-card::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .3;
  background: radial-gradient(circle at 50% 10%, var(--accent, var(--pink)), transparent 52%);
  pointer-events: none;
}

.faction-card:hover::before { transform: scale(1.07); }

.faction-card > * { position: relative; z-index: 1; }

.faction-card__icon { margin-bottom: 18px; }
.faction-card--police { --accent: var(--blue); }
.faction-card--ems { --accent: #ff4040; }
.faction-card--mechanic { --accent: var(--gold); }
.faction-card--gang { --accent: var(--violet); }
.faction-card--civil { --accent: var(--green); }

.section--join {
  padding-bottom: 60px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  position: relative;
}

.step {
  position: relative;
  display: flex;
  gap: 20px;
  min-height: 160px;
  align-items: flex-start;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025)), rgba(12, 18, 36, .82);
  box-shadow: 0 16px 54px rgba(0,0,0,.25);
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -24px;
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,.3) 40%, transparent 40%);
  background-size: 8px 2px;
}

.step__number {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 22px;
  color: white;
  font-size: 28px;
  font-weight: 1000;
  background: linear-gradient(135deg, var(--pink), var(--orange) 55%, var(--gold));
  box-shadow: 0 16px 35px rgba(255, 45, 115, .28);
}

.join-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  margin-top: 24px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 32px;
  background:
    linear-gradient(90deg, rgba(8,12,28,.92), rgba(8,12,28,.72)),
    url("assets/hwrp-banner.webp") center/cover no-repeat;
  box-shadow: var(--shadow);
}

.copy-command,
.footer-connect {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: white;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  padding: 14px 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.copy-command span,
.footer-connect strong { font-weight: 900; }

.copy-command strong {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--pink), var(--orange));
}

.discord-panel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  min-height: 210px;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 36px;
  background:
    radial-gradient(circle at 14% 40%, rgba(154,77,255,.28), transparent 26rem),
    linear-gradient(90deg, rgba(9, 13, 30, .94), rgba(9, 13, 30, .72)),
    url("assets/hwrp-banner.webp") center/cover no-repeat;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.discord-panel__icon {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border-radius: 30px;
  color: white;
  font-size: 44px;
  background: linear-gradient(135deg, #5865f2, #9a4dff);
  box-shadow: 0 22px 60px rgba(88, 101, 242, .34);
}

.discord-panel h2 {
  margin: 8px 0 8px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.discord-panel p { color: var(--muted); margin: 0; }

.footer {
  padding: 56px 0 30px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(3, 5, 12, .5);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 30px;
}

.footer__brand img {
  width: 120px;
  margin-bottom: 14px;
}

.footer__brand p {
  max-width: 250px;
  margin: 0 0 6px;
  color: var(--muted);
}

.footer__brand strong { color: var(--pink); }

.footer h4 {
  margin: 0 0 14px;
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .12em;
}

.footer a {
  display: block;
  color: var(--muted);
  margin-top: 8px;
  transition: color .2s ease;
}

.footer a:hover { color: white; }

.footer-connect {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.footer-connect span {
  color: var(--pink);
  font-size: 12px;
  font-weight: 900;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: var(--soft);
  font-size: 14px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 999;
  transform: translate(-50%, 110px);
  opacity: 0;
  pointer-events: none;
  color: white;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  background: rgba(10, 16, 32, .88);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 54px rgba(0,0,0,.35);
  transition: .25s ease;
}

.toast.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}

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

.reveal--delay { transition-delay: .12s; }

@media (max-width: 1080px) {
  .header {
    grid-template-columns: 150px auto auto;
  }

  .nav { gap: 22px; }

  .hero {
    min-height: auto;
    padding-top: 130px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
  }

  .visual-card {
    max-width: 720px;
    transform: none;
  }

  .feature-grid,
  .rules-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faction-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .step:not(:last-child)::after { display: none; }
}

@media (max-width: 820px) {
  .header {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .brand { width: 116px; }
  .brand img { width: 112px; }

  .nav-toggle { display: inline-block; justify-self: end; }

  .nav {
    position: fixed;
    top: 74px;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 6px;
    justify-content: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(5, 8, 19, .95);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: .2s ease;
  }

  .nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav a {
    padding: 12px 14px;
    border-radius: 14px;
  }

  .nav a::after { display: none; }

  .nav a.is-active,
  .nav a:hover {
    background: rgba(255,255,255,.07);
  }

  .header-cta { display: none; }

  .hero h1 { font-size: clamp(46px, 14vw, 78px); }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }

  .feature-grid,
  .rules-layout,
  .faction-grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .faction-card { min-height: 250px; }

  .join-panel,
  .discord-panel {
    grid-template-columns: 1fr;
  }

  .discord-panel__icon { width: 78px; height: 78px; }

  .footer__bottom {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .container { width: min(var(--container), calc(100% - 26px)); }
  .hero { padding-top: 116px; }
  .section { padding: 66px 0; }
  .card,
  .step,
  .join-panel,
  .discord-panel { border-radius: 22px; }
  .connect-card { width: 100%; justify-content: space-between; }
  .visual-card img { min-height: 310px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .reveal { opacity: 1; transform: none; }
}
