:root {
  --bg: #070711;
  --panel: #10101f;
  --panel-2: #17172a;
  --ink: #f8f7ff;
  --muted: #aaa5c2;
  --line: rgba(255, 255, 255, 0.13);
  --pink: #ff3f9d;
  --violet: #8f5bff;
  --cyan: #45d8ff;
  --green: #42f28b;
  --red: #ff365f;
  --gold: #ffd166;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 12%, rgba(143, 91, 255, 0.28), transparent 28%),
    radial-gradient(circle at 86% 6%, rgba(69, 216, 255, 0.18), transparent 24%),
    linear-gradient(180deg, #070711 0%, #0d0716 48%, #070711 100%);
  font-family: Inter, system-ui, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 5px),
    radial-gradient(circle at 50% 0%, rgba(255, 63, 157, 0.1), transparent 38%);
  mix-blend-mode: screen;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 50%;
  display: grid;
  width: min(1120px, calc(100% - 32px));
  grid-template-columns: 1fr auto 44px;
  align-items: center;
  gap: 20px;
  transform: translateX(-50%);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(10, 10, 22, 0.74);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
  padding: 10px 12px 10px 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
  font-weight: 900;
}

.brand-logo {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(255, 63, 157, 0.42);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.nav-links a:hover {
  color: white;
}

.icon-button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: white;
}

.icon-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: #080812;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 92vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  align-items: center;
  gap: clamp(24px, 5vw, 70px);
  padding: 138px max(24px, calc((100vw - 1120px) / 2)) 90px;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  z-index: -5;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.18) contrast(1.08);
}

.hero-shade {
  z-index: -4;
  background:
    linear-gradient(90deg, rgba(7, 7, 17, 0.96) 0%, rgba(7, 7, 17, 0.8) 37%, rgba(7, 7, 17, 0.28) 70%, rgba(7, 7, 17, 0.08) 100%),
    linear-gradient(180deg, rgba(7, 7, 17, 0.1), rgba(7, 7, 17, 0.86));
}

.anime-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 88%);
  opacity: 0.72;
}

.anime-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 12%, rgba(255, 63, 157, 0.12) 13%, transparent 14%),
    linear-gradient(60deg, transparent 64%, rgba(69, 216, 255, 0.12) 65%, transparent 66%);
}

.hero-glow {
  position: absolute;
  z-index: -2;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.34;
}

.hero-glow-one {
  right: 12%;
  top: 18%;
  background: var(--pink);
}

.hero-glow-two {
  right: 36%;
  bottom: 8%;
  background: var(--cyan);
}

.hero-content {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Space Grotesk", Inter, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 7ch;
  margin-bottom: 18px;
  font-size: clamp(4.2rem, 8.7vw, 9.4rem);
  line-height: 0.82;
  text-shadow:
    2px 0 0 rgba(69, 216, 255, 0.7),
    -2px 0 0 rgba(255, 63, 157, 0.65),
    0 0 34px rgba(255, 63, 157, 0.4);
}

.hero-copy {
  max-width: 630px;
  color: #d9d5ee;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.primary-button,
.secondary-button,
.buy-button,
.order-form button {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.primary-button,
.order-form button {
  background: linear-gradient(135deg, var(--pink), var(--violet));
  color: white;
  box-shadow: 0 16px 32px rgba(255, 63, 157, 0.25);
}

.secondary-button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: white;
}

.hero-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(23, 23, 42, 0.86), rgba(12, 12, 24, 0.84)),
    linear-gradient(135deg, rgba(255, 63, 157, 0.14), rgba(69, 216, 255, 0.12));
  box-shadow: var(--shadow);
  padding: 22px;
  backdrop-filter: blur(10px);
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
  color: var(--muted);
  font-weight: 800;
}

.panel-top strong {
  color: var(--green);
}

.signal-card {
  display: flex;
  gap: 14px;
  margin: 20px 0;
  border: 1px solid rgba(69, 216, 255, 0.22);
  border-radius: 8px;
  background: rgba(69, 216, 255, 0.08);
  padding: 16px;
}

.pulse {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(66, 242, 139, 0.12), 0 0 30px rgba(66, 242, 139, 0.7);
  margin-top: 5px;
}

.signal-card p {
  margin: 5px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.mini-products {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mini-products span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  padding: 9px 11px;
  color: #dfdcf0;
  font-size: 0.82rem;
  font-weight: 900;
}

.ticker {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 5vw, 58px);
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #0e0e1c;
  color: white;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ticker span:nth-child(2n) {
  color: var(--gold);
}

.section,
.guarantee-band,
.order-section,
footer {
  padding-inline: max(24px, calc((100vw - 1120px) / 2));
}

.section {
  padding-top: 90px;
  padding-bottom: 90px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}

.section-heading h2,
.guarantee-band h2,
.order-copy h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.98;
}

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

.product-card {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 370px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 12px);
  box-shadow: var(--shadow);
  padding: 18px;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  opacity: 0.18;
}

.spotify::before {
  background: linear-gradient(135deg, var(--green), transparent 56%);
}

.gpt::before {
  background: linear-gradient(135deg, var(--cyan), transparent 56%);
}

.netflix::before {
  background: linear-gradient(135deg, var(--red), transparent 56%);
}

.capcut::before {
  background: linear-gradient(135deg, white, transparent 56%);
}

.alight::before {
  background: linear-gradient(135deg, var(--violet), transparent 56%);
}

.stock {
  align-self: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(4, 4, 12, 0.58);
  padding: 8px 10px;
  font-size: 0.72rem;
  font-weight: 900;
}

.stock.ready {
  color: var(--green);
}

.stock.hot {
  color: var(--gold);
}

.stock.low {
  color: #ff9dbf;
}

.logo-slot {
  position: relative;
  display: grid;
  width: 98px;
  height: 98px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.32);
  margin: 26px 0 22px;
  transform: rotate(-3deg);
}

.logo-slot::after {
  content: "";
  position: absolute;
  width: 84px;
  height: 84px;
  border: 1px solid rgba(69, 216, 255, 0.22);
  border-radius: 8px;
  transform: translate(10px, 10px);
}

.logo-slot img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.logo-slot span {
  color: white;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
}

.product-card h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

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

.product-meta {
  margin-top: auto;
}

.product-meta strong {
  display: block;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.product-meta small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 800;
}

.buy-button {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  background: white;
  color: #080812;
}

.buy-button:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-1px);
}

.guarantee-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 48px;
  align-items: center;
  padding-top: 84px;
  padding-bottom: 84px;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 63, 157, 0.14), transparent 44%),
    #0d0d1b;
}

.guarantee-band p {
  max-width: 58ch;
  color: var(--muted);
  line-height: 1.65;
}

.guarantee-list {
  display: grid;
  gap: 14px;
}

.guarantee-list article {
  border: 1px solid var(--line);
  border-left: 5px solid var(--cyan);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  padding: 18px 20px;
}

.guarantee-list article:nth-child(2) {
  border-left-color: var(--gold);
}

.guarantee-list article:nth-child(3) {
  border-left-color: var(--green);
}

.guarantee-list strong,
.guarantee-list span {
  display: block;
}

.guarantee-list strong {
  margin-bottom: 6px;
  font-size: 1.06rem;
}

.guarantee-list span {
  color: var(--muted);
  line-height: 1.55;
}

.order-section {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 42px;
  align-items: start;
  padding-top: 90px;
  padding-bottom: 92px;
}

.order-copy p {
  max-width: 52ch;
  color: var(--muted);
  line-height: 1.65;
}

.order-form {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
  padding: clamp(20px, 4vw, 34px);
}

.order-form label {
  color: #dfdcf0;
  font-weight: 900;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  outline: 0;
  background: rgba(3, 3, 10, 0.72);
  color: white;
  padding: 14px 15px;
}

.order-form textarea {
  resize: vertical;
}

.order-form button {
  margin-top: 12px;
}

.form-note {
  min-height: 24px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.45;
}

footer {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
}

@media (max-width: 1040px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .brand span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .guarantee-band,
  .order-section {
    display: block;
  }

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

  h1 {
    font-size: clamp(3.8rem, 17vw, 5.6rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-panel,
  .guarantee-list,
  .order-form {
    margin-top: 30px;
  }

  .ticker {
    justify-content: start;
    padding-inline: 24px;
  }

  .section-heading {
    display: block;
  }
}

@media (max-width: 560px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
    text-align: center;
  }

  footer {
    display: block;
  }

  footer span {
    display: block;
    margin: 12px 0;
  }
}
