@font-face {
  font-family: 'Press Start 2P';
  src: url('PressStart2P.ttf') format('truetype');
  font-display: swap;
}

:root {
  --orange: #FF9500;
  --orange-hover: #FFAA22;
  --bg: #0d0d0f;
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-bg-hover: rgba(255, 255, 255, 0.1);
  --text: #f5f5f7;
  --text-secondary: #999;
  --text-tertiary: #666;
  --radius-sm: 8px;
  --radius-md: 10px;
  --radius-lg: 12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Glass Card */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: background 0.2s, border-color 0.2s;
}

.glass-card:hover {
  background: var(--glass-bg-hover);
  border-color: rgba(255, 255, 255, 0.15);
}

/* Section Label */
.section-label {
  font-family: 'Press Start 2P', monospace;
  font-size: 8px;
  color: var(--text-secondary);
  letter-spacing: 2px;
  display: block;
  margin-bottom: 12px;
}

/* Hero */
.hero {
  padding: 100px 0 80px;
  text-align: center;
}

.app-icon {
  width: 120px;
  height: 120px;
  border-radius: 26px;
  margin-bottom: 32px;
  box-shadow: 0 8px 40px rgba(255, 149, 0, 0.25);
}

.hero h1 {
  font-family: 'Press Start 2P', monospace;
  font-size: 34px;
  color: var(--orange);
  margin-bottom: 20px;
  line-height: 1.4;
}

.tagline {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 40px;
}

.cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--orange);
  color: #fff;
}

.btn-primary:hover {
  background: var(--orange-hover);
  box-shadow: 0 4px 24px rgba(255, 149, 0, 0.35);
}

/* Chip Group */
.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.chip {
  font-family: 'Press Start 2P', monospace;
  font-size: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.chip:hover {
  background: var(--glass-bg-hover);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text);
}

/* Sections */
.platforms,
.features,
.use-cases {
  padding: 80px 0;
  text-align: center;
}

h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 32px;
}

/* Features Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  text-align: left;
}

.feature-grid .glass-card {
  padding: 28px 24px;
}

.feature-icon {
  margin-bottom: 16px;
}

.pixel-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: var(--orange);
  border-radius: 2px;
  box-shadow:
    20px 0 0 -4px rgba(255,149,0,0.5),
    0 0 0 0 var(--orange);
}

.feature-grid h3 {
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  color: var(--orange);
  margin-bottom: 8px;
}

.feature-grid p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* CTA Section */
.cta-section {
  padding: 80px 0 100px;
  text-align: center;
}

.cta-card {
  padding: 48px 32px;
}

.cta-card h2 {
  margin-bottom: 12px;
}

.cta-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 32px;
}

/* Footer */
footer {
  text-align: center;
  padding: 24px 0;
  font-size: 0.8rem;
  color: var(--text-tertiary);
}
