:root {
  --bg: #060713;
  --bg-soft: #0f1230;
  --text: #eef2ff;
  --muted: #aab2d8;
  --primary: #2ee8ff;
  --secondary: #7d63ff;
  --card: rgba(18, 22, 55, 0.68);
  --stroke: rgba(255, 255, 255, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background:
    radial-gradient(circle at 15% 20%, #1b225b 0%, var(--bg) 45%),
    radial-gradient(circle at 80% 10%, #1b1854 0%, transparent 40%),
    var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.glow-orb {
  position: fixed;
  width: min(520px, 90vw);
  height: min(520px, 90vw);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.glow-orb-a {
  top: -12%;
  left: -8%;
  background: radial-gradient(circle, rgba(46, 232, 255, 0.5) 0%, transparent 70%);
}

.glow-orb-b {
  bottom: -20%;
  right: -10%;
  background: radial-gradient(circle, rgba(125, 99, 255, 0.55) 0%, transparent 70%);
}

.nav,
main {
  position: relative;
  z-index: 1;
}

.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  white-space: nowrap;
}

.logo-wrap {
  display: grid;
  place-items: center;
  filter: drop-shadow(0 10px 22px rgba(46, 232, 255, 0.35));
}

.logo-emblem {
  animation: emblem-pulse 3.2s ease-in-out infinite;
}

@keyframes emblem-pulse {
  0%,
  100% {
    filter:
      drop-shadow(0 10px 22px rgba(46, 232, 255, 0.35))
      drop-shadow(0 0 0 rgba(255, 255, 255, 0));
    transform: scale(1);
  }
  50% {
    filter:
      drop-shadow(0 14px 28px rgba(46, 232, 255, 0.55))
      drop-shadow(0 0 12px rgba(188, 156, 255, 0.35));
    transform: scale(1.03);
  }
}

.links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.links a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.75rem 1.2rem;
  color: var(--text);
  font-weight: 600;
  background: transparent;
  cursor: pointer;
  font: inherit;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

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

.btn.primary {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  box-shadow: 0 16px 30px rgba(109, 90, 255, 0.35);
}

.btn.ghost {
  border-color: var(--stroke);
  background: rgba(255, 255, 255, 0.04);
}

main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2rem 1.25rem 5rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
  min-height: 82vh;
}

.eyebrow {
  color: var(--primary);
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

h1 {
  margin: 0.2rem 0 1rem;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1.05;
}

h1 .brand-line {
  display: inline-block;
  font-size: 0.42em;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
  background: none;
  -webkit-text-fill-color: var(--muted);
}

h1 span:not(.brand-line) {
  background: linear-gradient(90deg, var(--primary), #bc9cff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sub {
  color: var(--muted);
  line-height: 1.65;
  max-width: 560px;
}

.hero-cta {
  margin: 1.6rem 0;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.stats {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.stats article {
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--stroke);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
}

.stats h3 {
  margin: 0;
  font-size: 1.1rem;
}

.stats p {
  margin: 0.3rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.hero-visual {
  perspective: 1200px;
  display: grid;
  place-items: center;
}

.hero-scene {
  position: relative;
  width: min(480px, 100%);
  min-height: 420px;
  display: grid;
  place-items: center;
  will-change: transform;
}

.vault-sphere {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  left: 8%;
  top: 4%;
  background:
    radial-gradient(
      circle at 30% 25%,
      rgba(46, 232, 255, 0.45),
      rgba(125, 99, 255, 0.15) 45%,
      rgba(6, 7, 19, 0.9) 70%
    ),
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), transparent 55%);
  box-shadow:
    inset 0 0 40px rgba(46, 232, 255, 0.25),
    0 0 60px rgba(125, 99, 255, 0.25);
  animation: vault-spin 22s linear infinite;
  z-index: 0;
}

@keyframes vault-spin {
  to {
    transform: rotateY(360deg);
  }
}

.float-coin {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: #0a0f24;
  background: linear-gradient(145deg, #e8eeff, #9fb0ff);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.35);
  z-index: 2;
  animation: coin-float 5s ease-in-out infinite;
}

.float-coin--a {
  top: 18%;
  right: 6%;
  background: linear-gradient(145deg, #ffd978, #ff9f1a);
  animation-delay: 0s;
}

.float-coin--b {
  bottom: 28%;
  left: 2%;
  background: linear-gradient(145deg, #dce6ff, #7a9dff);
  animation-delay: 0.6s;
}

.float-coin--c {
  top: 42%;
  right: 2%;
  background: linear-gradient(145deg, #9dffd9, #2ee8ff);
  animation-delay: 1.1s;
}

@keyframes coin-float {
  0%,
  100% {
    transform: translateY(0) rotateX(12deg);
  }
  50% {
    transform: translateY(-12px) rotateX(18deg);
  }
}

.holo-panel {
  position: absolute;
  width: 200px;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(46, 232, 255, 0.35);
  background: rgba(12, 16, 40, 0.55);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.holo-panel--back {
  left: 0;
  bottom: 12%;
  transform: translateZ(-40px) rotateY(8deg) scale(0.92);
  opacity: 0.85;
}

.holo-panel--front {
  right: 0;
  top: 10%;
  transform: translateZ(30px) rotateY(-10deg) scale(0.95);
}

.holo-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.holo-value {
  font-weight: 700;
  font-size: 0.95rem;
  color: #e8f7ff;
}

.pulse-dots {
  letter-spacing: 0.35em;
  color: var(--primary);
  animation: dots-pulse 1.4s ease-in-out infinite;
}

@keyframes dots-pulse {
  0%,
  100% {
    opacity: 0.45;
  }
  50% {
    opacity: 1;
  }
}

.wallet-3d {
  width: min(460px, 90%);
  aspect-ratio: 1.5 / 1;
  border-radius: 24px;
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(
      130deg,
      rgba(46, 232, 255, 0.12),
      rgba(125, 99, 255, 0.2),
      rgba(255, 255, 255, 0.04)
    ),
    var(--card);
  box-shadow: 0 40px 65px rgba(3, 8, 32, 0.62);
  transform-style: preserve-3d;
  animation: float 6s ease-in-out infinite;
  position: relative;
  z-index: 3;
  will-change: transform;
}

.neon-edge {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  box-shadow:
    0 0 0 1px rgba(46, 232, 255, 0.15),
    0 0 24px rgba(125, 99, 255, 0.2);
}

.wallet-shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(118deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0) 45%);
  opacity: 0.42;
  pointer-events: none;
}

.chip {
  width: 56px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ffe9a0, #d8a829);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
}

.wallet-3d p {
  margin: 0.7rem 0 0;
  font-weight: 600;
  color: #dffbff;
}

.wallet-3d h4 {
  margin: 2.2rem 0 0;
  color: #cfd6ff;
  font-weight: 500;
}

.wallet-3d h2 {
  margin: 0.3rem 0 1.2rem;
  font-size: clamp(1.4rem, 4vw, 2.3rem);
}

.coins {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.coin {
  padding: 0.38rem 0.65rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #081022;
}

.btc {
  background: #ffbe4a;
}

.eth {
  background: #96b7ff;
}

.sol {
  background: #7affdf;
}

.section-heading {
  margin-top: 4.5rem;
  max-width: 720px;
}

.section-heading h2 {
  margin: 0.35rem 0 0.75rem;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  line-height: 1.15;
}

.section-lead {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.cards {
  margin-top: 1.75rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

.cards-motion .card-glide {
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}

.cards-motion .card-glide:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 24px 50px rgba(3, 8, 32, 0.45);
  border-color: rgba(46, 232, 255, 0.35);
}

.card {
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.03);
}

.card p {
  color: var(--muted);
  line-height: 1.6;
}

.split {
  margin-top: 4rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.split p {
  color: var(--muted);
  line-height: 1.65;
}

.split-security .security-aside {
  position: relative;
}

.shield-3d {
  width: 120px;
  height: 140px;
  margin: 0 auto 1.25rem;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
  will-change: transform;
}

.shield-core {
  position: absolute;
  inset: 10% 12%;
  clip-path: polygon(50% 0%, 100% 25%, 100% 62%, 50% 100%, 0% 62%, 0% 25%);
  background: linear-gradient(165deg, rgba(46, 232, 255, 0.55), rgba(125, 99, 255, 0.35));
  box-shadow: inset 0 0 25px rgba(255, 255, 255, 0.2);
}

.shield-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(46, 232, 255, 0.35);
  opacity: 0.6;
  animation: shield-spin 14s linear infinite;
}

@keyframes shield-spin {
  to {
    transform: rotate(360deg);
  }
}

.security-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.security-list li {
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
}

.globe-stage {
  display: grid;
  place-items: center;
  margin: 2rem 0 1rem;
  min-height: 280px;
}

.globe {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  position: relative;
  background:
    radial-gradient(
      circle at 35% 28%,
      rgba(46, 232, 255, 0.35),
      rgba(125, 99, 255, 0.12) 40%,
      rgba(10, 14, 36, 0.95) 70%
    );
  box-shadow:
    inset 0 0 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 30px 70px rgba(0, 0, 0, 0.45);
  will-change: transform;
}

.orbit {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: orbit-rotate 18s linear infinite;
}

.orbit span {
  position: absolute;
  top: -14px;
  left: 10%;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #0a1028;
  background: linear-gradient(90deg, #c8ebff, #b9a6ff);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.orbit--b {
  animation-duration: 22s;
  animation-direction: reverse;
}

.orbit--b span {
  left: auto;
  right: 8%;
  top: auto;
  bottom: 10%;
}

.orbit--c {
  animation-duration: 26s;
}

.orbit--c span {
  left: 50%;
  top: auto;
  bottom: -8px;
  transform: translateX(-50%);
}

.orbit--d {
  animation-duration: 20s;
  animation-direction: reverse;
}

.orbit--d span {
  left: 72%;
  top: 22%;
}

@keyframes orbit-rotate {
  to {
    transform: rotate(360deg);
  }
}

.ui-showcase {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: end;
}

.ui-screen {
  border-radius: 22px;
  padding: 1rem 1.1rem;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 20px 45px rgba(3, 8, 32, 0.4);
  min-height: 200px;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.ui-screen:hover {
  transform: translateY(-10px) rotateX(4deg);
  box-shadow: 0 34px 60px rgba(3, 8, 32, 0.5);
}

.ui-screen header {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.ui-screen ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
  font-size: 0.88rem;
}

.ui-screen li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}

.ui-screen strong {
  color: var(--text);
  font-weight: 600;
}

.ui-screen--a {
  transform: translateY(12px) rotate(-2deg);
}

.ui-screen--b {
  transform: translateY(0) scale(1.02);
}

.ui-screen--c {
  transform: translateY(20px) rotate(2deg);
}

.ui-chart {
  height: 90px;
  border-radius: 12px;
  background: linear-gradient(
    90deg,
    rgba(46, 232, 255, 0.08),
    rgba(125, 99, 255, 0.35),
    rgba(46, 232, 255, 0.12)
  );
  position: relative;
  overflow: hidden;
}

.ui-chart::after {
  content: "";
  position: absolute;
  inset: 20% 8% 12%;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-bottom-color: transparent;
  border-left-color: transparent;
}

.ui-caption {
  margin: 0.65rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.ui-nft-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.45rem;
}

.ui-nft-grid span {
  aspect-ratio: 1;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(46, 232, 255, 0.2), rgba(125, 99, 255, 0.35));
}

.difference {
  margin-top: 4.5rem;
  padding: 2rem 1.5rem;
  border-radius: 22px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.02);
}

.difference h2 {
  margin: 0.35rem 0 1rem;
  font-size: clamp(1.45rem, 3.2vw, 2rem);
}

.difference-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.difference-list li {
  padding: 0.75rem 0.9rem 0.75rem 2.25rem;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(6, 8, 24, 0.55);
  position: relative;
}

.difference-list li::before {
  content: "";
  position: absolute;
  left: 0.85rem;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transform: translateY(-50%);
  box-shadow: 0 0 12px rgba(46, 232, 255, 0.45);
}

.cta {
  margin-top: 4rem;
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 20px;
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(125, 99, 255, 0.22), rgba(0, 0, 0, 0.08));
}

.cta p {
  color: var(--muted);
}

.cta-tagline {
  font-size: 1.05rem;
  font-weight: 600;
  color: #e4e9ff;
  margin: 0.25rem 0 1.25rem;
}

.cta-foot {
  margin: 1rem 0 0;
  font-size: 0.82rem;
}

.muted {
  color: var(--muted);
}

.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-up.in {
  opacity: 1;
  transform: translateY(0);
}

.delay {
  transition-delay: 0.18s;
}

@keyframes float {
  0%,
  100% {
    transform: rotateX(10deg) rotateY(-10deg) translateY(0);
  }
  50% {
    transform: rotateX(14deg) rotateY(-14deg) translateY(-14px);
  }
}

/* ── Logo image ─────────────────────────────────────── */
.logo-img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
  box-shadow: 0 6px 18px rgba(46, 232, 255, 0.3);
}

/* ── Footer ─────────────────────────────────────────── */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--stroke);
  background: rgba(6, 7, 19, 0.72);
  backdrop-filter: blur(12px);
  padding: 3rem 1.25rem 2rem;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-tagline {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
}

.footer-contact a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: var(--primary);
}

.footer-copy {
  margin: 0;
  color: rgba(170, 178, 216, 0.55);
  font-size: 0.82rem;
}

/* ── Inner page layout ──────────────────────────────── */
.page-hero {
  padding: 4rem 0 2rem;
  max-width: 720px;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 0.4rem 0 1rem;
}

.page-hero .sub {
  font-size: 1.05rem;
}

.page-content {
  max-width: 800px;
  margin-top: 2.5rem;
  line-height: 1.75;
  color: var(--muted);
}

.page-content h2 {
  color: var(--text);
  font-size: 1.3rem;
  margin: 2.5rem 0 0.6rem;
  border-left: 3px solid var(--primary);
  padding-left: 0.75rem;
}

.page-content h3 {
  color: var(--text);
  font-size: 1.05rem;
  margin: 1.6rem 0 0.4rem;
}

.page-content p {
  margin: 0 0 1rem;
}

.page-content ul,
.page-content ol {
  padding-left: 1.5rem;
  margin: 0 0 1rem;
}

.page-content li {
  margin-bottom: 0.4rem;
}

.page-content a {
  color: var(--primary);
  text-decoration: none;
}

.page-content a:hover {
  text-decoration: underline;
}

.page-content strong {
  color: var(--text);
}

/* ── Contact cards ──────────────────────────────────── */
.contact-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
  margin: 2rem 0;
}

.contact-card {
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 1.5rem 1.25rem;
  background: var(--card);
  text-align: center;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.contact-card:hover {
  border-color: rgba(46, 232, 255, 0.4);
  transform: translateY(-4px);
}

.contact-card .contact-icon {
  font-size: 2rem;
  margin-bottom: 0.6rem;
  display: block;
}

.contact-card h3 {
  color: var(--text);
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-card a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-card a:hover {
  text-decoration: underline;
}

@media (max-width: 980px) {
  .hero,
  .split {
    grid-template-columns: 1fr;
  }

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

  .ui-showcase {
    grid-template-columns: 1fr;
  }

  .ui-screen--a,
  .ui-screen--b,
  .ui-screen--c {
    transform: none;
  }

  .holo-panel--back,
  .holo-panel--front {
    display: none;
  }

  .vault-sphere {
    width: 120px;
    height: 120px;
    left: 50%;
    margin-left: -60px;
  }

  .links {
    display: none;
  }

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