 :root {
      --bg: #0b0f14;
      --panel: rgba(15, 23, 42, 0.8);
      --panel-2: rgba(17, 24, 39, 0.9);
      --text: #e5eefb;
      --muted: #93a4bb;
      --line: rgba(148, 163, 184, 0.18);
      --brand: #7c3aed;
      --brand-2: #22c55e;
      --accent: #f59e0b;
      --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
    }
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      min-height: 100vh;
      background:
        radial-gradient(circle at top left, rgba(124, 58, 237, 0.18), transparent 34%),
        radial-gradient(circle at top right, rgba(34, 197, 94, 0.14), transparent 28%),
        linear-gradient(180deg, #06080d 0%, #0b0f14 48%, #09111b 100%);
      color: var(--text);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      line-height: 1.5;
    }
    a { color: inherit; text-decoration: none; }
    .wrap {
      width: min(1120px, calc(100% - 32px));
      margin: 0 auto;
      padding: 20px 0 56px;
    }
    .nav {
      position: sticky;
      top: 16px;
      z-index: 5;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      padding: 14px 18px;
      margin-bottom: 26px;
      border: 1px solid var(--line);
      border-radius: 18px;
      background: rgba(3, 7, 18, 0.72);
      backdrop-filter: blur(16px);
      box-shadow: var(--shadow);
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      letter-spacing: 0.02em;
    }
    .logo {
      width: 34px;
      height: 34px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--brand), #2563eb 55%, var(--brand-2));
      box-shadow: 0 12px 32px rgba(124, 58, 237, 0.35);
    }
    .navlinks {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
      color: var(--muted);
      font-size: 14px;
    }
    .navlinks a:hover { color: var(--text); }
    .pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 14px;
      border-radius: 999px;
      border: 1px solid var(--line);
      color: var(--muted);
      background: rgba(255,255,255,0.02);
      font-size: 13px;
    }
    .pill::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--brand-2);
      box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12);
    }
    .hero {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 24px;
      align-items: center;
      padding: 34px 0 28px;
    }
    .kicker {
      color: #c4b5fd;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    h1 {
      font-size: clamp(3rem, 7vw, 5.75rem);
      line-height: 0.96;
      margin: 0 0 18px;
      max-width: 10ch;
      letter-spacing: -0.05em;
    }
    h2 {
      margin: 0 0 16px;
      font-size: clamp(2rem, 4vw, 3rem);
      letter-spacing: -0.04em;
    }
    .lede {
      font-size: clamp(1.05rem, 1.5vw, 1.3rem);
      color: #cbd5e1;
      max-width: 58ch;
      margin: 0 0 28px;
    }
    .actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 22px;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 18px;
      border-radius: 14px;
      font-weight: 700;
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.03);
      color: var(--text);
      transition: transform .18s ease, background .18s ease, border-color .18s ease;
    }
    .btn:hover { transform: translateY(-1px); border-color: rgba(255,255,255,0.28); }
    .btn.primary {
      background: linear-gradient(135deg, var(--brand), #2563eb);
      border-color: transparent;
      box-shadow: 0 16px 38px rgba(37, 99, 235, 0.28);
    }
    .meta {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      color: var(--muted);
      font-size: 14px;
    }
    .card {
      border: 1px solid var(--line);
      border-radius: 24px;
      background: linear-gradient(180deg, rgba(15, 23, 42, 0.9), rgba(8, 15, 25, 0.9));
      box-shadow: var(--shadow);
    }
    .preview {
      padding: 18px;
      position: relative;
      overflow: hidden;
      min-height: 460px;
    }
    .preview::before {
      content: "";
      position: absolute;
      inset: auto -30% -32% auto;
      width: 260px;
      height: 260px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(124,58,237,0.35), transparent 70%);
      filter: blur(10px);
    }
    .window {
      position: relative;
      border: 1px solid var(--line);
      border-radius: 18px;
      background: rgba(2, 6, 23, 0.7);
      overflow: hidden;
    }
    .windowbar {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 12px 14px;
      border-bottom: 1px solid var(--line);
      color: var(--muted);
      font-size: 13px;
    }
    .dot { width: 10px; height: 10px; border-radius: 50%; }
    .red { background: #ef4444; }
    .amber { background: #f59e0b; }
    .green { background: #22c55e; }
    .windowbody { padding: 18px; display: grid; gap: 14px; }
    .taskbox {
      border: 1px solid rgba(124, 58, 237, 0.24);
      background: linear-gradient(180deg, rgba(124,58,237,0.16), rgba(124,58,237,0.05));
      border-radius: 18px;
      padding: 18px;
    }
    .taskbox h3 { margin: 0 0 6px; font-size: 18px; }
    .taskbox p { margin: 0; color: var(--muted); }
    .stack {
      display: grid;
      gap: 12px;
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .mini {
      padding: 14px;
      border-radius: 16px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.03);
    }
    .mini strong { display: block; margin-bottom: 6px; }
    .mini span { color: var(--muted); font-size: 14px; }
    section { padding: 18px 0; }
    .sectiontitle {
      margin: 0 0 14px;
      font-size: 13px;
      color: #c4b5fd;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-weight: 700;
    }
    .grid3 {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }
    .panel {
      padding: 22px;
      min-height: 170px;
    }
    .panel h3 { margin: 0 0 10px; font-size: 22px; }
    .panel p, .panel li { color: var(--muted); }
    .panel ul { margin: 10px 0 0; padding-left: 18px; }
    .pricing {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      align-items: stretch;
    }
    .pricecard {
      padding: 24px;
      position: relative;
    }
    .pricecard.featured {
      background: linear-gradient(180deg, rgba(124,58,237,0.16), rgba(15,23,42,0.9));
      border-color: rgba(124,58,237,0.32);
      transform: translateY(-4px);
    }
    .badge {
      display: inline-flex;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(124,58,237,0.18);
      color: #ddd6fe;
      font-size: 12px;
      font-weight: 700;
      margin-bottom: 14px;
    }
    .price {
      font-size: 44px;
      font-weight: 800;
      margin: 10px 0 2px;
      letter-spacing: -0.05em;
    }
    .price span { font-size: 16px; color: var(--muted); font-weight: 600; }
    .faq {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }
    .faqitem { padding: 20px; }
    .faqitem h3 { margin: 0 0 8px; }
    .faqitem p { margin: 0; color: var(--muted); }
    .cta {
      margin: 24px 0 0;
      padding: 26px;
      border-radius: 24px;
      background: linear-gradient(135deg, rgba(124,58,237,0.22), rgba(34,197,94,0.12));
      border: 1px solid rgba(255,255,255,0.12);
      display: flex;
      justify-content: space-between;
      gap: 18px;
      align-items: center;
      flex-wrap: wrap;
    }
    .cta h2 { margin: 0 0 8px; font-size: 30px; }
    .cta p { margin: 0; color: var(--muted); }
    .pagehero {
      padding: 30px 0 18px;
      display: grid;
      gap: 14px;
      max-width: 860px;
    }
    .eyebrow {
      color: #c4b5fd;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-weight: 700;
    }
    .listcard {
      padding: 22px;
    }
    .listcard ul { margin: 10px 0 0; padding-left: 18px; color: var(--muted); }
    .split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .small { color: var(--muted); font-size: 14px; }
    footer {
      padding: 24px 0 12px;
      color: var(--muted);
      font-size: 14px;
    }
    @media (max-width: 900px) {
      .hero, .grid3, .pricing, .faq, .split { grid-template-columns: 1fr; }
      .stack { grid-template-columns: 1fr; }
      .nav { position: static; }
      h1 { max-width: 100%; }
    }

    .prose p {
      color: var(--muted);
      max-width: 72ch;
    }
    .prose h3 {
      margin-top: 18px;
      margin-bottom: 8px;
      font-size: 22px;
    }
    .prose ul {
      color: var(--muted);
      padding-left: 20px;
    }
    .callout {
      margin-top: 18px;
      padding: 18px;
      border-radius: 18px;
      border: 1px solid rgba(124, 58, 237, 0.24);
      background: linear-gradient(180deg, rgba(124,58,237,0.12), rgba(124,58,237,0.04));
    }
    .formcard {
      padding: 24px;
    }
    .formgrid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      margin-top: 10px;
    }
    .field {
      display: grid;
      gap: 8px;
    }
    .label {
      color: var(--muted);
      font-size: 14px;
      font-weight: 600;
    }
    .input,
    .textarea {
      width: 100%;
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.04);
      color: var(--text);
      border-radius: 14px;
      padding: 14px 16px;
      font: inherit;
      outline: none;
    }
    .input:focus,
    .textarea:focus {
      border-color: rgba(124, 58, 237, 0.65);
      box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.16);
    }
    .textarea {
      min-height: 126px;
      resize: vertical;
    }
