:root {
  --bg: #0b0b10;
  --bg2: #11111a;
  --card: #161625;
  --text: #f5f5f7;
  --muted: #a1a1b3;
  --accent: #ff7a18;
  --accent2: #ffb347;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: radial-gradient(circle at top, #1b1b2b 0%, var(--bg) 45%);
  color: var(--text);
  line-height: 1.6;
}

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

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

.container {
  width: min(1150px, 92%);
  margin: 0 auto;
}

.narrow {
  width: min(850px, 92%);
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 11, 16, 0.75);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.brand-mark {
  color: var(--accent);
  font-size: 1.3rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--text);
}

.hero {
  padding: 90px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  color: var(--accent2);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 1;
  margin-bottom: 18px;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 12px;
}

.hero-text {
  color: var(--muted);
  max-width: 580px;
  margin-bottom: 28px;
}

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

.hero-actions.center {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #111;
  font-weight: 700;
  box-shadow: var(--shadow);
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: none;
}

.btn-small {
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 0.95rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-meta span {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
}

.hero-media {
  display: flex;
  justify-content: center;
}

.hero-logo {
  width: min(340px, 90%);
  filter: drop-shadow(0 0 40px rgba(255, 122, 24, 0.15));
}

.section {
  padding: 72px 0;
}

.section h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 18px;
}

.section p {
  color: var(--muted);
}

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

.cards {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
}

.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 122, 24, 0.35);
}

.card h3 {
  margin-bottom: 10px;
}

.screenshots {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 28px;
}

.screenshots img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.video-box {
  margin-top: 24px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.contact-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 28px;
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 82px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 122, 24, 0.35);
}

.footer {
  padding: 24px 0 40px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  text-align: center;
}

@media (max-width: 900px) {
  .hero-grid,
  .cards,
  .screenshots,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 60px;
  }

  .hero-media {
    order: -1;
  }
}


/* --- Magic effects --- */
.cursor {
  display: inline-block;
  animation: blink 0.8s infinite;
  color: var(--accent2);
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.glass-nav {
  background: rgba(11, 11, 16, 0.9) !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.particle {
  position: fixed;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(255, 122, 24, 0.6);
  box-shadow: 0 0 20px rgba(255, 122, 24, 0.8);
  z-index: 0;
  animation: floatUp linear forwards;
}

@keyframes floatUp {
  from {
    transform: translateY(0) scale(1);
    opacity: 0.9;
  }
  to {
    transform: translateY(-120vh) scale(0.3);
    opacity: 0;
  }
}

.hero, .section, .footer, .header {
  position: relative;
  z-index: 1;
}

button, .btn, .card, .contact-card, .screenshots img {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn:hover, .card:hover, .contact-card:hover {
  box-shadow: 0 16px 40px rgba(255, 122, 24, 0.14);
}