.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.hero-pills { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0; }
.hero-pills li {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  background: var(--bg-2);
}

.hero-visual { display: grid; place-items: center; }
.loader-window {
  width: 100%;
  max-width: 420px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(124, 58, 237, 0.15);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
  transition: transform 400ms ease;
}
.loader-window:hover { transform: perspective(1200px) rotateY(-2deg) rotateX(0deg); }
.loader-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--line);
}
.chrome-dot { width: 11px; height: 11px; border-radius: 50%; }
.chrome-dot.red { background: #ef4444; }
.chrome-dot.yellow { background: #f59e0b; }
.chrome-dot.green { background: #22c55e; }
.loader-title { margin-left: auto; font-size: 0.78rem; color: var(--muted); letter-spacing: 0.06em; }
.loader-body { padding: 22px; }
.loader-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.18), rgba(34, 211, 238, 0.08));
  border: 1px dashed rgba(124, 58, 237, 0.5);
  border-radius: 12px;
  margin-bottom: 18px;
}
.loader-brand img { width: 40px; height: 40px; }
.loader-brand-name { font-weight: 800; font-size: 0.95rem; letter-spacing: 0.1em; }
.loader-brand-sub { font-size: 0.78rem; color: var(--muted); }
.loader-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 4px;
  font-size: 0.92rem;
  border-bottom: 1px dashed var(--line);
}
.loader-row:last-of-type { border-bottom: none; }
.loader-status { display: inline-flex; align-items: center; gap: 8px; }
.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulse 1.6s ease-out infinite;
}
.loader-launch {
  width: 100%;
  margin-top: 18px;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #6d28d9);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.4);
}

.pitch { max-width: 820px; }
.pitch h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.pitch p { color: #c2c2d0; font-size: 1.08rem; margin: 0; }

.compat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.compat-card {
  position: relative;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  overflow: hidden;
  transition: border-color 200ms ease, transform 200ms ease;
}
.compat-card:hover { border-color: rgba(124, 58, 237, 0.4); transform: translateY(-2px); }
.compat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 80% 0%, rgba(124, 58, 237, 0.15), transparent 70%);
  pointer-events: none;
}
.compat-label {
  position: relative;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  font-weight: 700;
}
.compat-name {
  position: relative;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.compat-meta { position: relative; color: var(--muted); margin-bottom: 18px; }
.compat-tag {
  position: relative;
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 6px;
  text-transform: uppercase;
}
.compat-hw { position: relative; display: flex; gap: 8px; flex-wrap: wrap; }
.compat-hw span {
  padding: 6px 14px;
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  color: var(--text);
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.steps li {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.steps h3 { margin: 0 0 8px; font-size: 1.15rem; letter-spacing: -0.01em; }
.steps p { margin: 0; color: var(--muted); font-size: 0.96rem; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 1.3rem;
  line-height: 1;
  margin-bottom: 14px;
  font-weight: 700;
}

.split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.split-text p { color: #c2c2d0; }

.split-aside { display: grid; }

.faq { max-width: 800px; }
.faq details {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 10px;
  background: var(--bg-3);
  transition: border-color 160ms ease;
}
.faq details[open] { border-color: var(--accent); }
.faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--muted);
  transition: transform 200ms ease, color 200ms ease;
  font-weight: 300;
  display: inline-block;
  line-height: 1;
}
.faq details[open] summary::after { color: var(--accent); transform: rotate(45deg); }
.faq details p { margin: 14px 0 0; color: var(--muted); }