:root {
  --bg: #0b0f1a;
  --bg-deep: #070a12;
  --text: #e3efff;
  --muted: #8da3c7;
  --accent: #4fd1c5;
  --accent-deep: #1a7a78;
  --danger: #ff4d4d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "IBM Plex Mono", "Courier New", monospace;
  color: var(--text);
  background: radial-gradient(circle at 20% 20%, #10182c 0%, var(--bg) 50%, var(--bg-deep) 100%);
  min-height: 100vh;
}

.header,
.footer {
  background: #0c1222;
  color: var(--text);
  border-bottom: 1px solid rgba(115, 140, 185, 0.15);
}

.footer {
  border-top: 1px solid rgba(115, 140, 185, 0.15);
  border-bottom: none;
}

.header button {
  background: #1e2a3f;
  border: 1px solid rgba(140, 180, 255, 0.35);
  color: #e8f2ff;
  border-radius: 6px;
}

.main {
  max-width: none;
  margin: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
}

.landing {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  padding: 56px 24px;
  align-items: center;
}

.hero {
  max-width: 520px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 12px;
}

h1 {
  font-size: clamp(28px, 4vw, 44px);
  margin: 0 0 12px;
}

.subhead {
  margin: 0 0 16px;
  color: #c3d7ff;
  font-size: 16px;
}

.body {
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
  margin: 0 0 24px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.cta,
.ghost {
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
}

.cta {
  background: var(--accent);
  color: #051417;
  box-shadow: 0 12px 24px rgba(79, 209, 197, 0.25);
}

.ghost {
  border: 1px solid rgba(141, 163, 199, 0.35);
  color: var(--text);
}

.meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 12px;
}

.stage {
  display: flex;
  justify-content: center;
}

.shop {
  max-width: 520px;
}

.shop h2 {
  margin: 0 0 12px;
  font-size: 20px;
}

.note {
  margin: 0 0 12px;
  font-size: 12px;
  color: var(--muted);
}

.status {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
}

.products {
  display: grid;
  gap: 12px;
}

.product {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  border-radius: 10px;
  background: rgba(15, 22, 36, 0.85);
  border: 1px solid rgba(115, 140, 185, 0.2);
}

.product-label {
  font-size: 13px;
  color: var(--text);
}

.product button {
  background: var(--accent);
  color: #051417;
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
}

.frame {
  width: min(360px, 90vw);
  aspect-ratio: 2 / 3;
  border-radius: 16px;
  position: relative;
  background: linear-gradient(160deg, #0d1527, #090c16);
  box-shadow: inset 0 0 0 1px rgba(115, 140, 185, 0.2), 0 24px 50px rgba(2, 10, 26, 0.55);
  overflow: hidden;
}

.scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.03) 1px,
    transparent 1px,
    transparent 4px
  );
  opacity: 0.4;
}

.grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(26, 34, 56, 0.4) 0%, transparent 40%),
    repeating-linear-gradient(to right, rgba(26, 34, 56, 0.3) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(to bottom, rgba(26, 34, 56, 0.3) 0 1px, transparent 1px 36px);
  opacity: 0.6;
}

.card {
  position: absolute;
  inset: 0;
}

.wallet {
  position: absolute;
  width: 46px;
  height: 34px;
  border-radius: 10px;
  background: #3fd5c8;
  border: 2px solid #1e7f82;
  left: 18%;
  top: 52%;
  box-shadow: 0 6px 12px rgba(4, 12, 24, 0.45);
}

.wallet::before,
.wallet::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 12px;
  background: #f6fbff;
  border-radius: 6px;
  top: 8px;
}

.wallet::before {
  left: 10px;
  transform: rotate(-8deg);
}

.wallet::after {
  right: 10px;
  transform: rotate(8deg);
}

.pipes,
.pipes.second {
  position: absolute;
  width: 40px;
  background: var(--danger);
  left: 64%;
  top: -20%;
  height: 60%;
  box-shadow: inset -6px 0 0 rgba(6, 6, 10, 0.6);
}

.pipes.second {
  top: 60%;
  height: 50%;
}

@media (min-width: 900px) {
  .landing {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 80px 64px;
  }
}
