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

:root {
  --bg:           #07070f;
  --bg-2:         #0c0c18;
  --bg-card:      #0f0f1e;
  --bg-card-h:    #141428;
  --purple:       #bf86ff;
  --purple-l:     #d0a8ff;
  --cyan:         #22d3ee;
  --cyan-l:       #67e8f9;
  --grad:         linear-gradient(135deg, #bf86ff 0%, #ed3a9b 100%);
  --grad-text:    linear-gradient(135deg, #d4b3ff 0%, #f9a8d4 100%);
  --text:         #f1f5f9;
  --text-2:       #94a3b8;
  --text-3:       #475569;
  --border:       rgba(255,255,255,0.07);
  --border-acc:   rgba(191,134,255,0.3);
  --r-sm:         8px;
  --r:            16px;
  --r-lg:         24px;
  --r-xl:         40px;
  --font:         'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w:        1200px;
  --ease:         0.2s ease;
}

html { scroll-behavior: smooth; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── MARQUEE ── */
.marquee-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-strip:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-item {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  white-space: nowrap;
  padding: 0 20px;
  flex-shrink: 0;
}

.marquee-dot {
  font-size: 10px;
  color: var(--border-acc);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  opacity: 0.6;
}

.marquee-item.hi { color: var(--purple-l); }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-acc); border-radius: 3px; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(7,7,15,0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-decoration: none;
  color: var(--text);
}

.nav-logo .acc { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.nav-icon { height: 18px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color var(--ease);
}
.nav-links a:hover { color: var(--text); }

/* ── HERO (index) ── */
.hero {
  padding: 190px 0 130px;
  position: relative;
  overflow: hidden;
}

/* Ghost app icons — hidden by default, only shown on wide desktop */
.hero-ghost {
  display: none;
}

@media (min-width: 1100px) {
  .hero-ghost {
    display: block;
    position: absolute;
    pointer-events: none;
    user-select: none;
    z-index: 0;
  }

  .hero-ghost-mpx {
    width: 400px;
    top: 60px;
    right: -30px;
    opacity: 0.055;
    transform: rotate(14deg);
  }

  .hero-ghost-zynth {
    width: 340px;
    bottom: 20px;
    right: 160px;
    opacity: 0.04;
    transform: rotate(-9deg);
  }

  .hero-ghost-forma {
    width: 300px;
    bottom: 30px;
    left: -40px;
    opacity: 0.05;
    transform: rotate(-12deg);
  }
}

/* Keep hero text above ghosts */
.hero > .container {
  position: relative;
  z-index: 1;
}

.hero-glow-1 {
  position: absolute;
  width: 1000px; height: 1000px;
  background: radial-gradient(circle, rgba(191,134,255,0.24) 0%, rgba(150,80,220,0.09) 42%, transparent 68%);
  top: -220px; left: -280px;
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(237,58,155,0.17) 0%, transparent 65%);
  bottom: -140px; right: -140px;
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--purple-l);
  padding: 6px 14px;
  background: rgba(191,134,255,0.09);
  border: 1px solid rgba(191,134,255,0.2);
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-eyebrow .pulse {
  width: 6px; height: 6px;
  background: var(--purple-l);
  border-radius: 50%;
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.75); }
}

.hero h1 {
  font-size: clamp(52px, 7.5vw, 100px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.045em;
  margin-bottom: 28px;
}

.hero p {
  font-size: 20px;
  color: var(--text-2);
  max-width: 480px;
  line-height: 1.75;
}

/* ── SECTION ── */
.section { padding: 100px 0; }

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--purple-l);
  margin-bottom: 12px;
}

.section-header { margin-bottom: 60px; }

.section-title {
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

/* ── APP ICON (adaptive icon layer composite) ── */
.app-icon {
  position: relative;
  border-radius: 22%;
  overflow: hidden;
  flex-shrink: 0;
  display: block;
}

.app-icon img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-icon .icon-fg {
  position: absolute; /* layered on top of icon-bg */
}

/* Sizes */
.app-icon-sm  { width: 52px;  height: 52px;  border-radius: 18%; }
.app-icon-md  { width: 88px;  height: 88px;  border-radius: 20%; }
.app-icon-lg  { width: 120px; height: 120px; border-radius: 22%; }
.app-icon-xl  { width: 160px; height: 160px; border-radius: 24%; }

/* SVG icon foregrounds: no canvas padding built in, so inset and contain.
   Use explicit top/right/bottom/left instead of the inset shorthand —
   the shorthand can mis-resolve on some Android WebViews. */
.app-icon .icon-fg-svg {
  top: 13%;
  right: 13%;
  bottom: 13%;
  left: 13%;
  width: 74%;
  height: 74%;
  object-fit: contain;
}

/* ── PRODUCTS GRID ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(191,134,255,0.35);
  box-shadow: 0 24px 80px rgba(191,134,255,0.26), 0 0 0 1px rgba(191,134,255,0.2), 0 8px 50px rgba(237,58,155,0.09);
}

.product-preview {
  height: 210px;
  background: linear-gradient(135deg, #bf86ff 0%, #ed3a9b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-preview::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(7,7,15,0.7) 100%);
  pointer-events: none;
}

/* Icon shadow inside card preview */
.product-preview .app-icon {
  box-shadow: 0 12px 48px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.07);
  position: relative;
  z-index: 1;
}

/* mpx hero icon */
.mpx-hero-icon {
  margin: 0 auto 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.08), 0 0 80px rgba(237,58,155,0.2);
}

.product-body { padding: 28px; }

.product-platform {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-l);
  background: rgba(191,134,255,0.09);
  border: 1px solid rgba(191,134,255,0.22);
  border-radius: 100px;
  padding: 3px 10px;
  margin-bottom: 14px;
}

.product-name {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.product-name .dot { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.product-desc {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 24px;
}

.product-arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  color: var(--purple-l);
  letter-spacing: 0.01em;
  transition: gap var(--ease);
}
.product-card:hover .product-arrow { gap: 12px; }

/* ── ZYNTH CARD ── */
.zynth-preview {
  background: linear-gradient(135deg, #f1c700 0%, #ff6c55 100%);
}

.zynth-osc {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Sine-wave SVG is 200% wide so one period = 25% of element = seamless loop */
.zynth-sine {
  width: 200%;
  height: 56px;
  flex-shrink: 0;
  animation: zynth-scroll 5s linear infinite;
  opacity: 0.9;
}

@keyframes zynth-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-25%); }
}

/* Zynth platform pill */
.platform-zynth {
  color: #ff6c55;
  background: rgba(255,108,85,0.09);
  border-color: rgba(255,108,85,0.22);
}

/* Zynth arrow */
.arrow-zynth { color: #ff6c55; }

/* ── FORMA CARD (coming soon) ── */
.forma-preview {
  background: linear-gradient(135deg, #00c853 0%, #76ff03 100%);
}

/* Non-interactive coming-soon card: no lift, green-tinted hover */
.product-card-soon { cursor: default; }
.product-card-soon:hover {
  transform: none;
  border-color: rgba(0,255,3,0.32);
  box-shadow: 0 24px 80px rgba(0,200,83,0.18), 0 0 0 1px rgba(0,255,3,0.16);
}

/* forma "Coming Soon" pill */
.platform-soon {
  color: #7dff5e;
  background: rgba(0,255,3,0.09);
  border-color: rgba(0,255,3,0.25);
}

/* In-development status row (replaces the "View product" arrow) */
.product-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-2);
  letter-spacing: 0.01em;
}
.product-status .status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #00ff03;
  animation: soon-pulse 2s ease-out infinite;
}
@keyframes soon-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(0,255,3,0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(0,255,3,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,255,3,0); }
}

/* Coming-soon slot */
.card-soon {
  background: transparent;
  border: 1px dashed rgba(255,255,255,0.09);
  border-radius: var(--r-lg);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.soon-plus {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px dashed rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--text-3);
}

.soon-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-3);
}

/* ── FOOTER ── */
footer {
  border-top: none;
  padding: 36px 0;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(191,134,255,0.5) 30%, rgba(237,58,155,0.4) 70%, transparent);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-logo {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text);
  text-decoration: none;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-3);
}

/* ── MPX HERO ── */
.mpx-hero {
  padding: 168px 0 110px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.mpx-hero .container {
  position: relative;
  z-index: 2;
}

.mpx-glow {
  position: absolute;
  width: 1100px; height: 950px;
  background: radial-gradient(ellipse, rgba(191,134,255,0.2) 0%, rgba(237,58,155,0.09) 42%, transparent 68%);
  top: -320px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 1;
}

.mpx-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-3);
  text-decoration: none;
  margin-bottom: 56px;
  transition: color var(--ease);
  letter-spacing: 0.01em;
}
.mpx-back:hover { color: var(--text-2); }

.mpx-platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple-l);
  background: rgba(191,134,255,0.08);
  border: 1px solid rgba(191,134,255,0.22);
  border-radius: 100px;
  padding: 7px 16px;
  margin-bottom: 36px;
}

.mpx-title {
  font-size: clamp(80px, 14vw, 168px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.88;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.mpx-title .dot { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.mpx-tagline {
  font-size: clamp(17px, 2.2vw, 22px);
  color: var(--text-2);
  max-width: 520px;
  margin: 0 auto 52px;
  line-height: 1.7;
}

.cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--grad);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: opacity var(--ease), transform var(--ease);
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  border-radius: 100px;
  text-decoration: none;
  border: 1px solid var(--border);
  letter-spacing: 0.01em;
  transition: border-color var(--ease), background var(--ease);
}
.btn-ghost:hover { border-color: var(--border-acc); background: rgba(191,134,255,0.06); }

/* ── SCREENSHOTS ── */
.screenshots-section {
  padding: 80px 0 100px;
}

.screenshots-section .section-header { text-align: center; }

.screenshots-grid {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px 0 8px;
}

/* Phone mockup */
.phone-wrap { position: relative; }

.phone-frame {
  width: 228px;
  background: #0d0d1c;
  border-radius: 46px;
  padding: 13px;
  border: 1.5px solid rgba(255,255,255,0.1);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 40px 100px rgba(0,0,0,0.6),
    0 0 50px rgba(191,134,255,0.08);
  position: relative;
  transition: box-shadow var(--ease), transform var(--ease);
}

.phone-wrap:hover .phone-frame {
  transform: translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06) inset,
    0 50px 110px rgba(0,0,0,0.7),
    0 0 70px rgba(191,134,255,0.14);
}

.phone-screen {
  background: #0a0a14;
  border-radius: 34px;
  overflow: hidden;
  aspect-ratio: 9 / 19.5;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Punch-hole camera */
.phone-camera {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 11px; height: 11px;
  background: #0a0a14;
  border-radius: 50%;
  z-index: 10;
  border: 1px solid rgba(255,255,255,0.06);
}

/* Screenshot placeholder */
.ss-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: absolute;
  inset: 0;
}

.ss-plus {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px dashed rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: rgba(255,255,255,0.18);
}

.ss-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.12);
  font-weight: 600;
}

.phone-caption {
  text-align: center;
  margin-top: 18px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: 0.04em;
}

/* ── FEATURES ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  transition: border-color var(--ease), background var(--ease);
}

.feature-card:hover {
  border-color: rgba(191,134,255,0.3);
  background: var(--bg-card-h);
  box-shadow: 0 4px 28px rgba(191,134,255,0.1), 0 0 0 0.5px rgba(191,134,255,0.15);
}

.feature-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(191,134,255,0.24) 0%, rgba(237,58,155,0.18) 100%);
  border: 1px solid rgba(191,134,255,0.28);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
  box-shadow: 0 0 20px rgba(191,134,255,0.1) inset;
}

.feature-icon svg { width: 22px; height: 22px; display: block; }

/* keep text/badge above the watermark */
.feature-icon, .feature-title, .feature-desc { position: relative; z-index: 1; }

/* large faint watermark of the same icon, bleeding from the corner */
.feature-ghost {
  position: absolute;
  right: -14px;
  bottom: -18px;
  width: 124px; height: 124px;
  color: rgba(191,134,255,0.07);
  pointer-events: none;
  z-index: 0;
  transition: color var(--ease), transform var(--ease);
}
.feature-card:hover .feature-ghost {
  color: rgba(237,58,155,0.1);
  transform: translate(-3px, -3px) scale(1.05);
}

/* hidden icon sprite */
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.feature-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}

/* ── VISUALIZER LIVE DEMO ── */
.viz-stage { max-width: 760px; margin: 0 auto; }

.viz-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  background: #0a0a14;
  box-shadow: 0 24px 70px rgba(0,0,0,0.5),
              0 0 0 1px rgba(255,255,255,0.07),
              0 0 80px rgba(191,134,255,0.14);
}
.viz-canvas { display: block; width: 100%; height: 100%; }

.viz-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px; height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(10,10,20,0.5);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--text);
  cursor: pointer;
  z-index: 2;
  transition: background var(--ease), border-color var(--ease), transform var(--ease);
}
.viz-arrow:hover { background: rgba(191,134,255,0.2); border-color: var(--border-acc); }
.viz-arrow:active { transform: translateY(-50%) scale(0.92); }
.viz-prev { left: 14px; }
.viz-next { right: 14px; }
.viz-arrow svg { width: 17px; height: 17px; }

.viz-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}
.viz-dots { display: flex; gap: 8px; }
.viz-dot {
  width: 7px; height: 7px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background var(--ease), transform var(--ease);
}
.viz-dot.active { background: var(--purple); transform: scale(1.3); }
.viz-style-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-2);
}

/* ── PROCEDURAL ART LIVE DEMO ── */
.artgen-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
@media (min-width: 860px) {
  .artgen-inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
  }
}

.artgen-copy .section-title { margin-bottom: 0; }

.artgen-desc {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
  margin: 18px 0 22px;
  max-width: 32em;
}

.artgen-live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--purple-l);
  letter-spacing: 0.01em;
}
.artgen-dot {
  width: 8px; height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #ed3a9b;
  animation: artgen-pulse 1.6s ease-out infinite;
}
@keyframes artgen-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(237,58,155,0.5); }
  70%  { box-shadow: 0 0 0 9px rgba(237,58,155,0); }
  100% { box-shadow: 0 0 0 0 rgba(237,58,155,0); }
}

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

.artgen-tile {
  position: relative;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,0.5),
              0 0 0 1px rgba(255,255,255,0.07),
              0 0 70px rgba(191,134,255,0.16);
}

.artgen-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: block;
  opacity: 0;
  transition: opacity 0.6s ease;
}

/* ── SUPPORT ── */
.support-section { text-align: center; }
.support-section .section-title { margin-bottom: 18px; }
.support-text {
  max-width: 50ch;
  margin: 0 auto 28px;
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.7;
}
.support-btn { font-size: 15px; }
.support-btn svg { color: var(--purple-l); }

/* ── DOWNLOAD SECTION ── */
.download-section {
  padding: 90px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.download-section::before {
  content: '';
  position: absolute;
  width: 900px; height: 700px;
  background: radial-gradient(ellipse at center, rgba(191,134,255,0.18) 0%, rgba(237,58,155,0.09) 40%, transparent 68%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.download-section .container {
  position: relative;
  z-index: 1;
}

.download-section .section-title { margin-bottom: 36px; }

.android-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}

.android-btn:hover {
  border-color: rgba(191,134,255,0.4);
  box-shadow: 0 0 60px rgba(191,134,255,0.2), 0 0 30px rgba(237,58,155,0.08);
  transform: translateY(-2px);
}

.android-btn svg { flex-shrink: 0; }

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(191,134,255,0.35) 25%, rgba(237,58,155,0.28) 75%, transparent);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero { padding: 148px 0 90px; }
  .hero p { font-size: 17px; }
  .mpx-hero { padding: 130px 0 80px; }
  .phone-frame { width: 190px; }
  .screenshots-grid { gap: 16px; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .section { padding: 72px 0; }
}

@media (max-width: 480px) {
  .phone-frame { width: 155px; border-radius: 36px; padding: 10px; }
  .phone-screen { border-radius: 28px; }
  .phone-camera { top: 10px; width: 9px; height: 9px; }
  .screenshots-grid { gap: 12px; }
  .mpx-title { font-size: clamp(64px, 18vw, 100px); }
}
