:root {
  --ink: #f7f8fb;
  --muted: rgba(247, 248, 251, 0.68);
  --line: rgba(255, 255, 255, 0.12);
  --blue: #0aaeea;
  --cyan: #18d7dd;
  --bg: #121213;
  --card: rgba(255, 255, 255, 0.055);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 18%, rgba(24, 215, 221, 0.12), transparent 28rem),
    radial-gradient(circle at 86% 16%, rgba(10, 174, 234, 0.10), transparent 28rem),
    #121213;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 72%);
}

.page-shell {
  width: min(1120px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  place-items: center;
  padding: 48px 0;
}

.card {
  position: relative;
  width: min(820px, 100%);
  overflow: hidden;
  padding: clamp(32px, 6vw, 72px);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  background: var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  padding-top: 0px;
}

.card::before,
.card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.card::before {
  width: 240px;
  height: 240px;
  right: -112px;
  top: -96px;
  background: linear-gradient(135deg, rgba(10, 174, 234, 0.18), rgba(24, 215, 221, 0.04));
}

.card::after {
  width: 170px;
  height: 170px;
  left: -96px;
  bottom: -74px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

.logo {
  width: min(520px, 80vw);
  height: auto;
  display: block;
  clip-path: inset(2% 3% 2% 3%);
}

.eyebrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.055);
}

.pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 0 rgba(24, 215, 221, 0.5);
  animation: pulse 1.7s infinite;
}

h1 {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  font-size: clamp(2.35rem, 7vw, 5.25rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.intro {
  position: relative;
  z-index: 1;
  max-width: 635px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.75;
}

.divider {
  display: flex;
  align-items: center;
  gap: 12px;
}

.divider span:first-child,
.divider span:last-child {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.ball {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-size: 18px;
  line-height: 1;
  flex: 0 0 auto;
}

.ball::before {
  content: "⚽";
}

.details {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 560px;
  margin: 0 auto 34px;
}

.details div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
}

.details strong,
.details span {
  display: block;
}

.details strong {
  margin-bottom: 6px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.details span {
  color: var(--muted);
  font-size: 0.95rem;
}

.storefront {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  margin-top: 20px;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 16px 30px rgba(10, 174, 234, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.storefront:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 22px 42px rgba(10, 174, 234, 0.32);
  filter: brightness(1.08);
}

.storefront:active {
  transform: translateY(-1px) scale(0.99);
  box-shadow: 0 12px 24px rgba(10, 174, 234, 0.24);
}

.storefront:focus-visible {
  outline: 3px solid rgba(10, 174, 234, 0.45);
  outline-offset: 4px;
}

.contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(10, 174, 234, 0.26);
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 10px rgba(24, 215, 221, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(24, 215, 221, 0);
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1120px);
    padding: 20px 0;
  }

  .card {
    border-radius: 26px;
  }

  .logo-wrap {
    width: 100%;
    margin-bottom: 28px;
  }

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