:root {
  --bg: #09070f;
  --panel: rgba(19, 15, 29, 0.82);
  --panel-strong: #151020;
  --border: rgba(255,255,255,.09);
  --text: #f7f4ff;
  --muted: #aaa4b9;
  --purple: #9b6cff;
  --purple-2: #6e43d8;
  --shadow: 0 24px 70px rgba(0,0,0,.34);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% -10%, rgba(132,82,255,.20), transparent 38%),
    radial-gradient(circle at 100% 40%, rgba(86,46,173,.12), transparent 32%),
    var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button, a { font: inherit; }

button { cursor: pointer; }

.app-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.topbar {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.055);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  text-decoration: none;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -.03em;
}

.brand-mark, .about-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(145deg, #b78cff, #7141d6);
  box-shadow: 0 8px 30px rgba(137,79,255,.3);
  color: white;
  font-weight: 800;
}

.top-actions { display: flex; gap: 10px; align-items: center; }

.ghost-button,
.primary-button,
.secondary-button {
  border: 0;
  border-radius: 13px;
  padding: 12px 17px;
  color: var(--text);
  transition: transform .18s ease, opacity .18s ease, background .18s ease;
}

.ghost-button {
  background: transparent;
  border: 1px solid var(--border);
}

.ghost-button:hover,
.secondary-button:hover { background: rgba(255,255,255,.06); }

.primary-button {
  background: linear-gradient(135deg, #a879ff, #7041d8);
  box-shadow: 0 12px 30px rgba(121,67,220,.25);
  font-weight: 700;
}

.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover { transform: translateY(-1px); }

.primary-button.small { padding: 10px 15px; }

.secondary-button {
  background: rgba(255,255,255,.045);
  border: 1px solid var(--border);
}

.main { padding-bottom: 70px; }

.hero {
  text-align: center;
  padding: 112px 0 100px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(173,135,255,.2);
  background: rgba(145,93,255,.08);
  border-radius: 999px;
  color: #d8c9ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8dffb2;
  box-shadow: 0 0 13px rgba(141,255,178,.7);
}

h1 {
  margin: 24px auto 20px;
  max-width: 820px;
  font-size: clamp(48px, 8vw, 86px);
  line-height: .99;
  letter-spacing: -.065em;
}

h1 span {
  background: linear-gradient(90deg, #ffffff, #b58aff 58%, #8a5de8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subtitle {
  max-width: 670px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 11px;
  margin-top: 30px;
}

.hero-actions button { min-width: 145px; }

.trust-row {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 10px;
  color: #777184;
  font-size: 12px;
}

.examples {
  padding: 18px 0 50px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 25px;
  margin-bottom: 18px;
}

.section-kicker {
  display: block;
  color: #9c7bdf;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  margin-bottom: 8px;
}

.section-heading h2,
.about h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -.04em;
}

.section-note {
  color: #777184;
  font-size: 12px;
  padding-bottom: 3px;
}

.example-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.example-card {
  min-height: 112px;
  display: grid;
  grid-template-columns: 42px 1fr 20px;
  align-items: center;
  gap: 14px;
  padding: 20px;
  text-align: left;
  color: var(--text);
  background: linear-gradient(145deg, rgba(25,20,37,.92), rgba(14,11,22,.92));
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 14px 45px rgba(0,0,0,.12);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.example-card:hover {
  transform: translateY(-3px);
  border-color: rgba(166,124,255,.35);
  background: linear-gradient(145deg, rgba(32,25,49,.98), rgba(15,12,24,.98));
}

.card-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: rgba(146,93,255,.12);
  border: 1px solid rgba(164,122,255,.16);
  color: #c4a8ff;
  font-weight: 800;
}

.example-card strong {
  display: block;
  font-size: 15px;
  margin-bottom: 7px;
}

.example-card small {
  display: block;
  color: #898294;
  line-height: 1.5;
  font-size: 12px;
}

.arrow { color: #726b7c; }

.about { padding: 45px 0 0; }

.about-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--border);
  background: rgba(16,12,24,.72);
  border-radius: 24px;
}

.about-mark { width: 48px; height: 48px; border-radius: 15px; }

.about h2 { font-size: 24px; margin-bottom: 9px; }

.about p {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.footer {
  border-top: 1px solid rgba(255,255,255,.055);
  padding: 24px 0 35px;
  display: flex;
  justify-content: space-between;
  color: #686170;
  font-size: 11px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 18px);
  opacity: 0;
  pointer-events: none;
  background: #211a2f;
  border: 1px solid rgba(181,145,255,.24);
  color: #eee7ff;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 12px;
  transition: .2s ease;
  z-index: 10000;
}

.toast.show { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 700px) {
  .app-shell { width: min(100% - 24px, 1180px); }
  .topbar { height: 70px; }
  .ghost-button { display: none; }
  .hero { padding: 82px 0 72px; }
  h1 { font-size: clamp(45px, 15vw, 68px); }
  .subtitle { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions button { width: 100%; }
  .trust-row { flex-wrap: wrap; }
  .section-heading { display: block; }
  .section-note { display: block; margin-top: 8px; }
  .example-grid { grid-template-columns: 1fr; }
  .about-card { grid-template-columns: 1fr; }
  .footer { gap: 15px; flex-direction: column; }
}
