/* Lakkazicoin — lightweight static site
   Purple lighting is intentionally concentrated in the violet family. */

:root {
  --bg: #07030d;
  --bg-2: #0b0614;
  --surface: rgba(24, 12, 38, .56);
  --surface-2: rgba(255,255,255,.035);
  --border: rgba(207, 160, 255, .16);
  --text: #f8f3ff;
  --muted: #b9a9c8;
  --purple-deep: #3b0764;
  --purple: #7c3aed;
  --purple-bright: #a855f7;
  --purple-light: #c084fc;
  --purple-pale: #e9d5ff;
  --max: 1180px;
  --shadow: 0 25px 80px rgba(92, 28, 150, .28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 80% 10%, rgba(124, 58, 237, .12), transparent 30%),
    radial-gradient(circle at 10% 70%, rgba(168, 85, 247, .08), transparent 35%),
    linear-gradient(180deg, #07030d 0%, #090411 48%, #06020b 100%);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
              linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 78%);
  z-index: -2;
}

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

.ambient {
  position: fixed;
  width: 46vw;
  height: 46vw;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .24;
  pointer-events: none;
  z-index: -3;
  animation: drift 14s ease-in-out infinite alternate;
}
.ambient-one {
  top: -18vw;
  right: -10vw;
  background: #7c3aed;
}
.ambient-two {
  bottom: -22vw;
  left: -16vw;
  background: #a855f7;
  animation-delay: -7s;
  opacity: .14;
}
@keyframes drift {
  from { transform: translate3d(-4%, -3%, 0) scale(.9); }
  to { transform: translate3d(8%, 8%, 0) scale(1.14); }
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  z-index: 50;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 78px;
  padding: 0 clamp(20px, 5vw, 70px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(7, 3, 13, .58);
  border-bottom: 1px solid rgba(255,255,255,.055);
  backdrop-filter: blur(18px);
  z-index: 40;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: "Orbitron", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .12em;
}
.brand-mark, .brand-mark-img {
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(217, 178, 255, .5);
  box-shadow: 0 0 20px rgba(168, 85, 247, .45);
}

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav a {
  color: #cbbdd7;
  font-size: 13px;
  transition: .2s ease;
}
.nav a:hover { color: white; }
.nav .nav-trade-btn {
  font-family: "Orbitron", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  padding: 9px 18px;
  border-radius: 10px;
  color: #ffffff !important;
  background: linear-gradient(115deg, #6d28d9 0%, #a855f7 45%, #e9d5ff 75%, #7e22ce 100%);
  background-size: 220% 220%;
  border: 1px solid rgba(233, 213, 255, 0.7);
  box-shadow: 0 0 16px rgba(168, 85, 247, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  animation: tradeGlowInterval 5s ease-in-out infinite;
}
.nav .nav-trade-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 0 32px rgba(233, 213, 255, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

@keyframes tradeGlowInterval {
  0%, 70%, 100% {
    filter: brightness(1) drop-shadow(0 0 4px rgba(168, 85, 247, 0.4));
    box-shadow: 0 0 16px rgba(168, 85, 247, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    background-position: 0% 50%;
  }
  82% {
    filter: brightness(1.8) drop-shadow(0 0 18px #ffffff);
    box-shadow: 0 0 35px #a855f7, 0 0 60px #e9d5ff, inset 0 0 15px rgba(255, 255, 255, 0.9);
    background-position: 100% 50%;
  }
}

.nav .nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(192, 132, 252, .34);
  border-radius: 999px;
  background: rgba(124,58,237,.1);
  color: #f2e8ff;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}
.menu-button span {
  width: 18px;
  height: 1px;
  background: white;
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 120px 0;
  position: relative;
}

.top-section {
  padding-top: 135px;
  padding-bottom: 60px;
}

.hero {
  padding-top: 60px;
  padding-bottom: 100px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}

.eyebrow, .kicker {
  color: var(--purple-light);
  font-size: 11px;
  letter-spacing: .21em;
  font-weight: 800;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border: 1px solid rgba(192,132,252,.16);
  background: rgba(124,58,237,.07);
  border-radius: 999px;
}
.pulse {
  width: 7px;
  height: 7px;
  background: #c084fc;
  border-radius: 50%;
  box-shadow: 0 0 16px #c084fc;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  50% { opacity: .35; transform: scale(.7); }
}

h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: "Orbitron", sans-serif;
  letter-spacing: -.03em;
}
h1 {
  margin: 22px 0 20px;
  font-size: clamp(18px, 2.4vw, 34px);
  line-height: 1.15;
  white-space: nowrap;
}
.gradient-text {
  color: transparent;
  background: linear-gradient(110deg, #8b5cf6 0%, #d8b4fe 45%, #9333ea 72%, #c084fc 100%);
  background-size: 220% 220%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: purpleShift 6s ease-in-out infinite;
  filter: drop-shadow(0 0 23px rgba(168,85,247,.13));
}
@keyframes purpleShift {
  0%,100% { background-position: 0% 45%; }
  50% { background-position: 100% 55%; }
}

.hero-sub {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(14px, 1.6vw, 22px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .03em;
  color: #e9d5ff;
  text-shadow: 0 0 16px rgba(168, 85, 247, .4);
  white-space: nowrap;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.centered { justify-content: center; }
.button {
  min-width: 165px;
  height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.button svg, .nav-trade-btn svg, .nav-cta svg {
  flex-shrink: 0;
  vertical-align: middle;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  background: linear-gradient(115deg, #6d28d9, #a855f7, #7e22ce);
  background-size: 180% 180%;
  box-shadow: 0 10px 32px rgba(126,34,206,.32), inset 0 1px 0 rgba(255,255,255,.23);
  animation: purpleShift 5s ease infinite;
}
.button-primary:hover { box-shadow: 0 15px 40px rgba(168,85,247,.42); }
.button-secondary {
  border: 1px solid rgba(192,132,252,.2);
  background: rgba(255,255,255,.035);
  color: #eadfff;
}
.button-secondary:hover { border-color: rgba(192,132,252,.48); }

.mini-proof {
  margin-top: 52px;
  display: flex;
  gap: clamp(24px, 5vw, 65px);
}
.mini-proof div { display: flex; flex-direction: column; gap: 5px; }
.mini-proof strong {
  font-family: "Orbitron", sans-serif;
  font-size: 18px;
}
.mini-proof span { color: #88799a; font-size: 11px; }

.hero-visual {
  position: relative;
  min-height: 580px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}
.coin-glow {
  position: absolute;
  width: 390px;
  height: 390px;
  background: radial-gradient(circle, rgba(192,132,252,.38), rgba(124,58,237,.15) 38%, transparent 70%);
  filter: blur(20px);
  animation: breathe 4.5s ease-in-out infinite;
}
@keyframes breathe {
  50% { transform: scale(1.14); opacity: .7; }
}

.coin {
  position: relative;
  z-index: 2;
  width: min(360px, 75vw);
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 11px;
  background:
    conic-gradient(from 20deg, #f2e8ff, #7c3aed 15%, #2e1065 27%, #c084fc 44%, #581c87 57%, #e9d5ff 72%, #7e22ce 88%, #f2e8ff);
  box-shadow:
    0 0 0 2px rgba(216,180,254,.14),
    0 0 80px rgba(126,34,206,.36),
    0 30px 80px rgba(0,0,0,.55);
  transform-style: preserve-3d;
  animation: coinFlip10s 10s ease-in-out infinite;
}
@keyframes coinFlip10s {
  0%, 70%, 100% {
    transform: translateY(0) rotateY(0deg) rotateX(4deg);
  }
  35% {
    transform: translateY(-14px) rotateY(0deg) rotateX(-4deg);
  }
  82.5% {
    transform: translateY(-20px) rotateY(180deg) rotateX(0deg);
  }
  95% {
    transform: translateY(0) rotateY(360deg) rotateX(4deg);
  }
}
.coin::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.42);
}
.coin-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform-style: preserve-3d;
  border: 2px solid rgba(255,255,255,.25);
  box-shadow: inset 0 0 50px rgba(168,85,247,.4);
}

.coin-face {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coin-front {
  transform: rotateY(0deg);
}

.coin-back {
  transform: rotateY(180deg);
}

.coin-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.purple-gem-glow {
  position: absolute;
  right: 8.5%;
  top: 43.5%;
  width: 14%;
  height: 14%;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff 0%, #e9d5ff 25%, #c084fc 50%, #9333ea 75%, transparent 100%);
  mix-blend-mode: screen;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.6);
  animation: brilliantPulse10s 10s ease-in-out infinite;
}

.gem-flare {
  position: absolute;
  right: 8.5%;
  top: 43.5%;
  width: 14%;
  height: 14%;
  pointer-events: none;
  background:
    linear-gradient(45deg, transparent 45%, rgba(255,255,255,0.95) 50%, transparent 55%),
    linear-gradient(-45deg, transparent 45%, rgba(255,255,255,0.95) 50%, transparent 55%);
  mix-blend-mode: overlay;
  opacity: 0;
  animation: flareSparkle10s 10s ease-in-out infinite;
}

@keyframes brilliantPulse10s {
  0%, 65%, 100% {
    opacity: 0.15;
    transform: scale(0.7);
    filter: drop-shadow(0 0 2px #a855f7);
  }
  75%, 88% {
    opacity: 1;
    transform: scale(1.7);
    filter: drop-shadow(0 0 25px #e9d5ff) drop-shadow(0 0 45px #a855f7) brightness(1.9);
  }
  94% {
    opacity: 0.5;
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px #c084fc) brightness(1.3);
  }
}

@keyframes flareSparkle10s {
  0%, 68%, 100% {
    opacity: 0;
    transform: scale(0.5) rotate(0deg);
  }
  75%, 88% {
    opacity: 1;
    transform: scale(2.3) rotate(45deg);
  }
  94% {
    opacity: 0.3;
    transform: scale(1.2) rotate(90deg);
  }
}

.orbital-ring {
  position: absolute;
  border: 1px solid rgba(192,132,252,.17);
  border-radius: 50%;
}
.ring-one {
  width: 485px;
  height: 485px;
  animation: ringSpin 18s linear infinite;
}
.ring-one::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  top: 58px;
  right: 79px;
  border-radius: 50%;
  background: #c084fc;
  box-shadow: 0 0 20px #a855f7;
}
.ring-two {
  width: 555px;
  height: 555px;
  border-style: dashed;
  opacity: .55;
  animation: ringSpin 28s linear infinite reverse;
}
@keyframes ringSpin { to { transform: rotate(360deg); } }

.float-card {
  position: absolute;
  z-index: 4;
  min-width: 145px;
  padding: 13px 15px;
  border: 1px solid rgba(192,132,252,.16);
  background: rgba(14, 6, 24, .58);
  backdrop-filter: blur(14px);
  border-radius: 13px;
  box-shadow: 0 14px 40px rgba(0,0,0,.25);
}
.float-card span {
  display: block;
  color: #857394;
  font-size: 9px;
  letter-spacing: .17em;
  margin-bottom: 5px;
}
.float-card strong { font-size: 12px; letter-spacing: .08em; }
.float-card-one { left: -45px; top: 6%; animation: smallFloat 5s ease-in-out infinite; }
.float-card-two { right: -45px; bottom: 6%; animation: smallFloat 5.5s ease-in-out infinite reverse; }
@keyframes smallFloat { 50% { transform: translateY(-10px); } }

.ticker {
  width: 100%;
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  background: rgba(126,34,206,.05);
}
.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 34px;
  animation: ticker 28s linear infinite;
  font-family: "Orbitron", sans-serif;
  font-size: 10px;
  color: #8c7b9d;
  letter-spacing: .14em;
}
.ticker-track i { color: #a855f7; font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 80px;
  align-items: start;
}

.section-heading { max-width: 820px; }
.section-heading h2 {
  margin: 15px 0 0;
  font-size: clamp(34px, 5vw, 61px);
  line-height: 1.06;
}

.glass-panel {
  padding: clamp(28px, 4vw, 50px);
  border: 1px solid var(--border);
  background:
    linear-gradient(145deg, rgba(168,85,247,.07), transparent 45%),
    rgba(255,255,255,.025);
  backdrop-filter: blur(16px);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.glass-panel p {
  color: #c8b9d5;
  font-size: 18px;
  line-height: 1.75;
}
.glass-panel p:last-child { margin-bottom: 0; }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 55px;
}
.stat-card {
  height: 185px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border);
  border-radius: 19px;
  background:
    radial-gradient(circle at 80% 0%, rgba(168,85,247,.08), transparent 35%),
    var(--surface-2);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(192,132,252,.38);
  background: rgba(126,34,206,.08);
}
.stat-label {
  color: #8f7d9f;
  font-size: 9px;
  letter-spacing: .19em;
  font-weight: 700;
}
.stat-card strong {
  margin-top: auto;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(18px, 2vw, 25px);
  word-break: break-word;
}
.stat-card small { margin-top: 8px; color: #8f7d9f; }

.contract-card {
  margin-top: 14px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--border);
  border-radius: 19px;
  background: rgba(255,255,255,.022);
}
.contract-card div { min-width: 0; }
.contract-card code {
  display: block;
  margin-top: 9px;
  color: #d8c9e8;
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.copy-button {
  flex: 0 0 auto;
  padding: 10px 16px;
  color: white;
  border: 1px solid rgba(192,132,252,.22);
  background: rgba(124,58,237,.12);
  border-radius: 10px;
  cursor: pointer;
}
.copy-button:hover { background: rgba(124,58,237,.2); }

.vision { position: relative; }
.vision-light {
  position: absolute;
  width: 400px;
  height: 400px;
  right: -180px;
  top: 110px;
  border-radius: 50%;
  background: rgba(126,34,206,.12);
  filter: blur(90px);
}
.vision-grid {
  margin-top: 65px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.feature {
  height: 280px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 1px solid rgba(192,132,252,.25);
  border-bottom: 1px solid rgba(255,255,255,.05);
  background: linear-gradient(180deg, rgba(124,58,237,.04), transparent);
}
.feature-number {
  color: #a855f7;
  font-family: "Orbitron", sans-serif;
  font-size: 11px;
}
.feature h3 {
  margin: 105px 0 14px;
  font-family: "Orbitron", sans-serif;
  font-size: 25px;
}
.feature p { color: #9e8bae; line-height: 1.7; }

.steps {
  margin-top: 55px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.step {
  padding: 30px 0;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.step > span {
  color: #a855f7;
  font-family: "Orbitron", sans-serif;
  font-size: 11px;
}
.step h3 {
  margin-bottom: 9px;
  font-family: "Orbitron", sans-serif;
  font-size: 20px;
}
.step p { margin: 0; color: #9382a4; line-height: 1.6; }

.final-cta {
  margin-top: 115px;
  padding: clamp(48px, 8vw, 100px) 24px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 50%, rgba(126,34,206,.2), transparent 55%),
    rgba(255,255,255,.018);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), var(--shadow);
  overflow: hidden;
}
.final-cta h2 {
  margin: 16px auto 0;
  font-size: clamp(36px, 6vw, 68px);
}
.community-grid {
  display: grid;
  grid-template-columns: repeat(2, 210px);
  gap: 14px;
  justify-content: center;
  margin: 34px auto 0;
  max-width: 440px;
}

.community-grid .full-width-top {
  grid-column: 1 / -1;
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  height: 48px;
}

.community-grid .button {
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  height: 48px;
  padding: 0 12px;
  font-size: 13px;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}

@media (max-width: 520px) {
  .community-grid {
    grid-template-columns: 1fr;
    max-width: 280px;
  }
}

.footer {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  min-height: 120px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.06);
  color: #766586;
  font-size: 11px;
}
.footer p { text-align: center; margin: 0; }
.footer-links { display: flex; gap: 20px; }
.footer a:hover { color: white; }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 68px;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(11,6,20,.96);
    border: 1px solid var(--border);
    border-radius: 16px;
  }
  .nav.open { display: flex; }
  .menu-button { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 145px;
    text-align: center;
  }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions, .mini-proof { justify-content: center; }
  .hero-visual { min-height: 500px; }
  .float-card-one { left: 8%; }
  .float-card-two { right: 5%; }

  .split { grid-template-columns: 1fr; gap: 45px; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .vision-grid { grid-template-columns: 1fr; }
  .feature { min-height: 220px; }
  .feature h3 { margin-top: 70px; }
}

@media (max-width: 620px) {
  .site-header { height: 68px; padding: 0 16px; }
  .section { width: min(100% - 30px, var(--max)); padding: 85px 0; }

  h1 { font-size: clamp(14px, 3.8vw, 24px); white-space: normal; }
  .hero-sub { font-size: clamp(12px, 3.2vw, 18px); white-space: normal; }
  .hero { padding-top: 118px; gap: 25px; }
  .hero-visual { min-height: 420px; }
  .coin { width: min(290px, 74vw); }
  .ring-one { width: 340px; height: 340px; }
  .ring-two { width: 390px; height: 390px; }
  .coin-glow { width: 300px; height: 300px; }
  .float-card { display: none; }

  .mini-proof { gap: 25px; }
  .mini-proof strong { font-size: 15px; }

  .stat-grid { grid-template-columns: 1fr; }
  .contract-card { align-items: flex-start; }
  .contract-card code { max-width: calc(100vw - 145px); }

  .step { grid-template-columns: 45px 1fr; }
  .footer { padding: 30px 0; flex-direction: column; justify-content: center; text-align: center; }
}

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