@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&family=IBM+Plex+Sans+Condensed:wght@400;600&display=swap');

:root {
  --bg: #0b0b0b;
  --panel: #111111;
  --ink: #f7f7f2;
  --muted: #b6b6b2;
  --accent: #34f6a1;
  --accent-2: #ff9a3d;
  --border: rgba(247, 247, 242, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'IBM Plex Sans Condensed', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #0b0b0b 0%, #0f1113 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.6;
  pointer-events: none;
}

a {
  color: var(--ink);
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

.container {
  position: relative;
  width: min(1180px, 92vw);
  margin: 0 auto;
  padding: 32px 0 70px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 28px;
  padding: 16px 18px;
  border: 2px solid var(--ink);
  background: var(--panel);
}

.nav-title {
  font-family: 'Space Mono', monospace;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-icon {
  width: 28px;
  height: 28px;
  border: 2px solid var(--ink);
  background: #0b0b0b;
  object-fit: cover;
}

.nav-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.nav-links a {
  font-family: 'Space Mono', monospace;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.nav-links a.active {
  color: var(--ink);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 4px;
}

.hero {
  display: grid;
  gap: 24px;
  padding: 30px;
  border: 2px solid var(--ink);
  background: var(--panel);
}

.hero-split {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.hero-split > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero h1 {
  margin: 0;
  font-family: 'Space Mono', monospace;
  font-size: clamp(34px, 5vw, 58px);
  text-transform: uppercase;
  line-height: 1.05;
}

.hero p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions-stack {
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.store-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  height: var(--store-badge-height, 52px);
  overflow: hidden;
}

.store-badge img {
  height: var(--store-badge-height, 52px);
  width: auto;
  display: block;
}

.store-badge.google img {
  transform: scale(1.12);
  transform-origin: center;
}


.store-badge.coming-soon {
  position: relative;
  opacity: 0.75;
  pointer-events: none;
}

.store-badge.coming-soon span {
  position: absolute;
  right: 6px;
  bottom: 6px;
  padding: 4px 8px;
  border: 2px solid var(--ink);
  background: var(--panel);
  color: var(--ink);
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 2px solid var(--ink);
  background: var(--accent);
  color: #0b0b0b;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.section {
  margin-top: 30px;
  padding: 26px;
  border: 2px solid var(--ink);
  background: var(--panel);
}

.section h2 {
  margin: 0 0 12px;
  font-family: 'Space Mono', monospace;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.6;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  padding: 16px;
  border: 2px solid var(--border);
  background: #0e0e0e;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.card p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
}

.card-media {
  height: 150px;
  margin-bottom: 12px;
  border: 2px dashed var(--border);
  display: flex;
  align-items: flex-end;
  padding: 12px;
  font-family: 'Space Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  color: var(--muted);
}

.card-image {
  width: 100%;
  height: 440px;
  margin-bottom: 12px;
  border: 2px solid var(--ink);
  object-fit: cover;
  object-position: top;
  background: #0b0b0b;
}

.card-image.contain {
  object-fit: contain;
  object-position: center;
  background: #0b0b0b;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.card-link span {
  color: var(--muted);
  font-weight: 500;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 6px 10px;
  border: 2px solid var(--border);
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  padding: 16px;
  border: 2px solid var(--border);
  background: #0e0e0e;
}

.timeline-item span {
  color: var(--accent-2);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-media {
  width: 100%;
  border: 2px solid var(--ink);
  background: #0b0b0b;
  object-fit: cover;
  object-position: top;
}

.footer {
  margin-top: 32px;
  text-align: left;
  color: var(--muted);
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: rise 700ms ease forwards;
}

.reveal.delay-1 { animation-delay: 0.1s; }
.reveal.delay-2 { animation-delay: 0.2s; }
.reveal.delay-3 { animation-delay: 0.3s; }

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  nav {
    align-items: flex-start;
  }

  .hero {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
