
:root {
  --black: #050505;
  --black-soft: #0d0d0d;
  --white: #ffffff;
  --paper: #f4f4f1;
  --muted: #a7a7a1;
  --line: rgba(255, 255, 255, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--black);
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(700px 500px at 50% 8%, rgba(255, 255, 255, 0.07), transparent 66%),
    linear-gradient(180deg, #030303, #090909 52%, #030303);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

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

.site {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding:
    calc(42px + max(28px, env(safe-area-inset-top)))
    18px
    max(22px, env(safe-area-inset-bottom));
}

.ticker {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: 42px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #050505;
  background: #fff;
  border-bottom: 1px solid #fff;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
}

.ticker__track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: ticker-move 30s linear infinite;
  will-change: transform;
}

.ticker__group {
  display: flex;
  flex-shrink: 0;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 0 28px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ticker span::after {
  content: "✦";
  font-size: 9px;
}

@keyframes ticker-move {
  from { transform: translateX(0); }
  to { transform: translateX(-25%); }
}

.grid-bg {
  position: fixed;
  z-index: -3;
  inset: 0;
  opacity: 0.6;
  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: 54px 54px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 80%);
  pointer-events: none;
}

.orb {
  position: fixed;
  z-index: -2;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 44px rgba(255, 255, 255, 0.015),
    0 0 0 92px rgba(255, 255, 255, 0.01);
  pointer-events: none;
}

.orb--left {
  top: 14%;
  left: -350px;
}

.orb--right {
  right: -350px;
  bottom: -2%;
}

.hero {
  width: 100%;
  max-width: 720px;
  text-align: center;
}

.logo-frame {
  position: relative;
  width: 146px;
  height: 146px;
  margin: 0 auto 20px;
  padding: 7px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 34px;
  box-shadow:
    0 24px 55px rgba(0, 0, 0, 0.55),
    0 0 0 7px rgba(255, 255, 255, 0.025);
}

.logo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.035);
  pointer-events: none;
}

.logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 27px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 15px;
  color: #d7d7d2;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.kicker span {
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 13px rgba(255, 255, 255, 0.75);
}

h1 {
  max-width: 660px;
  margin: 0 auto;
  font-size: clamp(39px, 7vw, 64px);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

h1 strong {
  color: #050505;
  background: #fff;
  padding: 0 0.12em 0.05em;
  font-weight: inherit;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.intro {
  max-width: 555px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  text-wrap: balance;
}

.channels {
  display: grid;
  gap: 13px;
  width: 100%;
  max-width: 610px;
  margin: 31px auto 0;
}

.channel {
  position: relative;
  min-height: 82px;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) 46px;
  align-items: center;
  gap: 14px;
  padding: 15px;
  text-align: left;
  text-decoration: none;
  border-radius: 20px;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.channel--primary {
  color: #050505;
  background: #fff;
  border: 1px solid #fff;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.38);
}

.channel--secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
}

.channel:hover {
  transform: translateY(-3px);
}

.channel--primary:hover {
  background: var(--paper);
}

.channel--secondary:hover {
  background: rgba(255, 255, 255, 0.085);
  border-color: rgba(255, 255, 255, 0.4);
}

.channel:active {
  transform: translateY(-1px) scale(0.995);
}

.channel:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.86);
  outline-offset: 4px;
}

.badge {
  position: absolute;
  top: -10px;
  right: 17px;
  padding: 5px 10px;
  color: #fff;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.channel__icon,
.channel__arrow {
  display: grid;
  place-items: center;
  border-radius: 14px;
}

.channel__icon {
  width: 50px;
  height: 50px;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.channel--secondary .channel__icon {
  background: rgba(255, 255, 255, 0.08);
}

.channel__icon img {
  width: 31px;
  height: 31px;
  object-fit: contain;
}

.channel__copy strong,
.channel__copy small {
  display: block;
}

.channel__copy strong {
  font-size: 19px;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.channel__copy small {
  margin-top: 4px;
  color: rgba(5, 5, 5, 0.62);
  font-size: 12px;
  font-weight: 650;
}

.channel--secondary .channel__copy small {
  color: rgba(255, 255, 255, 0.62);
}

.channel__arrow {
  width: 46px;
  height: 46px;
  background: rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.channel--secondary .channel__arrow {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.channel__arrow svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.channel:hover .channel__arrow svg {
  transform: translate(2px, -2px);
}

.trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px auto 0;
}

.trust span {
  padding: 6px 10px;
  color: #a9a9a4;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.stores {
  width: 100%;
  margin: 34px auto 0;
}

.stores p {
  margin: 0 0 14px;
  color: #858580;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stores div {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.stores span {
  padding: 9px 13px;
  color: #d7d7d2;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  font-size: 11px;
  font-weight: 800;
}

footer {
  margin-top: 21px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 11px;
}

@media (max-width: 560px) {
  .ticker {
    height: 36px;
  }

  .ticker span {
    padding: 0 19px;
    font-size: 9px;
    letter-spacing: 0.11em;
  }

  .site {
    padding:
      calc(36px + max(18px, env(safe-area-inset-top)))
      11px
      max(15px, env(safe-area-inset-bottom));
  }

  .logo-frame {
    width: 118px;
    height: 118px;
    margin-bottom: 16px;
    border-radius: 27px;
  }

  .logo-frame img {
    border-radius: 21px;
  }

  h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .intro {
    max-width: 390px;
    font-size: 14px;
  }

  .channels {
    margin-top: 27px;
  }

  .channel {
    min-height: 72px;
    grid-template-columns: 43px minmax(0, 1fr) 40px;
    gap: 11px;
    padding: 13px;
    border-radius: 18px;
  }

  .channel__icon {
    width: 43px;
    height: 43px;
    border-radius: 12px;
  }

  .channel__icon img {
    width: 27px;
    height: 27px;
  }

  .channel__copy strong {
    font-size: 16px;
  }

  .channel__copy small {
    font-size: 11px;
  }

  .channel__arrow {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .stores {
    margin-top: 28px;
  }
}

@media (max-height: 740px) and (min-width: 561px) {
  .site {
    padding-top: 58px;
  }

  .logo-frame {
    width: 118px;
    height: 118px;
    margin-bottom: 14px;
  }

  .channels {
    margin-top: 24px;
  }

  .stores {
    margin-top: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker__track {
    animation: none;
  }

  .channel,
  .channel__arrow svg {
    transition: none;
  }
}
