/* ── HOME HERO ───────────────────────────────────────── */

.home-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 80px) clamp(20px, 5vw, 60px) 100px;
  position: relative;
  overflow: hidden;
}

/* radial glow orbs */
.home-hero::before,
.home-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.home-hero::before {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(92, 255, 113, 0.07) 0%, transparent 65%);
  top: -150px;
  left: -200px;
}

.home-hero::after {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(42, 247, 214, 0.06) 0%, transparent 65%);
  bottom: -100px;
  right: -150px;
}

.home-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border-bright);
  border-radius: 100px;
  padding: 7px 18px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.9s var(--ease) both;
}

.home-hero .eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gradient);
  flex-shrink: 0;
}

.home-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4.5rem, 12vw, 10rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.9s var(--ease) 0.1s both;
}

.home-hero h1 .line-dim { color: var(--text-muted); }

.home-hero h1 .line-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.home-hero .tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 440px;
  margin: 0 auto 52px;
  line-height: 1.65;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.9s var(--ease) 0.18s both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.9s var(--ease) 0.26s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient);
  color: #07090A;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 14px 30px;
  border-radius: 100px;
  text-decoration: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
  letter-spacing: 0.02em;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(92, 255, 113, 0.28);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  border: 1px solid var(--border-bright);
  transition: color 0.2s, border-color 0.2s, transform 0.2s;
}

.btn-ghost:hover {
  color: var(--text);
  border-color: rgba(92, 255, 113, 0.4);
  transform: translateY(-2px);
}

/* scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
  animation: fadeUp 1.2s var(--ease) 0.6s both;
}

.scroll-hint span {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.scroll-hint .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-dim), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

/* ── PRODUCTS SECTION ────────────────────────────────── */

.products-section {
  padding: clamp(80px, 10vw, 140px) clamp(20px, 5vw, 60px);
}

.products-section .section-header {
  max-width: var(--max-w);
  margin: 0 auto 56px;
}

.products-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  letter-spacing: 0.02em;
  line-height: 0.92;
  margin-bottom: 16px;
}

.products-section .section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 420px;
  line-height: 1.65;
}

.product-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* ── PRODUCT CARDS ───────────────────────────────────── */

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s, background 0.3s;
}

.product-card:not(.coming-soon):hover {
  transform: translateY(-5px);
  border-color: var(--border-bright);
  background: var(--bg-card-hover);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.35);
}

/* Featured card spans 2 columns */
.product-card.featured {
  grid-column: span 2;
  flex-direction: row;
  align-items: flex-start;
  gap: 36px;
  border-color: rgba(92, 255, 113, 0.14);
  padding: 40px;
}

.product-card.featured:hover {
  border-color: rgba(92, 255, 113, 0.32);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.35), 0 0 60px rgba(92, 255, 113, 0.05);
}

/* gradient top-edge accent on featured card */
.product-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-h);
}

.card-screenshot {
  width: 130px;
  flex-shrink: 0;
}

.card-screenshot .phone-frame {
  width: 100%;
  border-radius: 26px;
  border-width: 1.5px;
}

.card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-app-icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.card-category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}

.card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.9rem, 2.8vw, 2.6rem);
  letter-spacing: 0.02em;
  line-height: 0.94;
  margin-bottom: 14px;
}

.card-desc {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.65;
  margin-bottom: 28px;
  flex: 1;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  transition: gap 0.2s var(--ease-spring);
}

.product-card:hover .card-link { gap: 10px; }

.card-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Coming soon cards */
.product-card.coming-soon {
  opacity: 0.45;
  cursor: default;
}

.coming-soon-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 6px;
}

.card-title-sm {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 10px;
}

/* ── ABOUT STRIP ─────────────────────────────────────── */

.about-strip {
  padding: clamp(70px, 9vw, 120px) clamp(20px, 5vw, 60px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  letter-spacing: 0.02em;
  line-height: 0.94;
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 440px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: border-color 0.2s, transform 0.2s;
}

.stat-item:hover {
  border-color: var(--border-bright);
  transform: translateY(-2px);
}

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.6rem;
  letter-spacing: 0.02em;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ── RESPONSIVE ──────────────────────────────────────── */

@media (max-width: 960px) {
  .product-grid { grid-template-columns: 1fr; }
  .product-card.featured { grid-column: span 1; flex-direction: column; }
  .card-screenshot { width: 110px; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 600px) {
  .card-screenshot { display: none; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}
