    :root {
      --st-bg: #f8fafc;
      --st-surface: #ffffff;
      --st-surface-2: #f1f5f9;
      --st-text: #0f172a;
      --st-muted: #64748b;
      --st-border: #e2e8f0;
      --st-primary: #2563eb;
      --st-primary-dark: #1d4ed8;
      --st-primary-soft: #dbeafe;
      --st-success: #059669;
      --st-warning: #d97706;
      --st-radius: 20px;
      --st-shadow: 0 18px 50px rgba(15, 23, 42, 0.09);
      --st-max: 1180px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--st-text);
      background:
        radial-gradient(circle at 12% -10%, rgba(37, 99, 235, 0.16), transparent 28rem),
        radial-gradient(circle at 88% 8%, rgba(14, 165, 233, 0.14), transparent 24rem),
        var(--st-bg);
      line-height: 1.55;
    }

    a {
      color: inherit;
    }

    .page-shell {
      overflow: hidden;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      border-bottom: 1px solid rgba(226, 232, 240, 0.78);
      background: rgba(255, 255, 255, 0.82);
      backdrop-filter: blur(16px);
    }

    .nav-wrap {
      width: min(100% - 32px, var(--st-max));
      margin: 0 auto;
      min-height: 74px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      min-width: max-content;
    }

    .brand img {
      width: 42px;
      height: 42px;
      border-radius: 10px;
    }

    .brand-name {
      display: flex;
      flex-direction: column;
      line-height: 1.05;
      font-weight: 800;
      letter-spacing: -0.03em;
      font-size: 1.3rem;
    }

    .brand-name small {
      margin-top: 4px;
      color: var(--st-muted);
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .nav-links {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 8px;
    }

    .nav-links a,
    .nav-links button {
      appearance: none;
      border: 0;
      background: transparent;
      padding: 10px 12px;
      border-radius: 999px;
      color: #334155;
      font-weight: 700;
      text-decoration: none;
      cursor: pointer;
      font: inherit;
      font-size: 0.94rem;
    }

    .nav-links a:hover,
    .nav-links button:hover {
      background: var(--st-surface-2);
      color: var(--st-text);
    }

    .nav-links .nav-primary {
      color: #fff;
      background: var(--st-primary);
      box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
    }

    .nav-links .nav-primary:hover {
      background: var(--st-primary-dark);
      color: #fff;
    }

    .mobile-menu-button {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--st-border);
      background: #fff;
      border-radius: 12px;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    .mobile-menu-button span,
    .mobile-menu-button::before,
    .mobile-menu-button::after {
      content: "";
      display: block;
      width: 18px;
      height: 2px;
      background: var(--st-text);
      border-radius: 999px;
    }

    .mobile-menu-button span {
      margin: 4px 0;
    }

    .section {
      padding: 84px 0;
    }

    .container {
      width: min(100% - 32px, var(--st-max));
      margin: 0 auto;
    }

    .hero {
      padding: 90px 0 74px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
      gap: 54px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border: 1px solid #bfdbfe;
      background: rgba(219, 234, 254, 0.8);
      color: #1e40af;
      border-radius: 999px;
      font-weight: 800;
      font-size: 0.86rem;
    }

    .hero h1 {
      margin: 18px 0 20px;
      font-size: clamp(2.7rem, 7vw, 3.9rem);
      line-height: 0.95;
      letter-spacing: -0.075em;
    }

    .hero-copy {
      max-width: 720px;
      margin: 0 0 26px;
      color: #334155;
      font-size: clamp(1.05rem, 2vw, 1.28rem);
    }

    .hero-copy strong {
      color: var(--st-text);
    }

    .cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
      margin: 26px 0;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 48px;
      padding: 12px 18px;
      border-radius: 14px;
      border: 1px solid transparent;
      font-weight: 800;
      text-decoration: none;
      cursor: pointer;
      transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
    }

    .btn:hover {
      transform: translateY(-1px);
    }

    .btn-primary {
      background: var(--st-primary);
      color: #fff;
      box-shadow: 0 16px 28px rgba(37, 99, 235, 0.24);
    }

    .btn-primary:hover {
      background: var(--st-primary-dark);
      color: #fff;
    }

    .btn-secondary {
      background: #fff;
      color: var(--st-text);
      border-color: var(--st-border);
    }

    .btn-secondary:hover {
      background: var(--st-surface-2);
    }

    .hero-footnotes {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 18px;
      color: var(--st-muted);
      font-size: 0.95rem;
    }

    .hero-footnotes span {
      display: inline-flex;
      align-items: center;
      gap: 7px;
    }

    .hero-footnotes span::before {
      content: "✓";
      width: 18px;
      height: 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: #dcfce7;
      color: #166534;
      font-size: 0.76rem;
      font-weight: 900;
    }

    .hero-card {
      position: relative;
      border: 1px solid rgba(226, 232, 240, 0.8);
      border-radius: 28px;
      background: rgba(255, 255, 255, 0.74);
      box-shadow: var(--st-shadow);
      backdrop-filter: blur(18px);
      padding: 18px;
    }

    .cmd {
      color: #38bdf8;
      font-weight: 700;
    }

    .ok {
      color: #86efac;
      margin: 8px 0;
    }

    .warn {
      color: #fbbf24;
      margin-top: 6px;
    }

    .metrics-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-top: 14px;
    }

    .metric {
      border: 1px solid var(--st-border);
      border-radius: 16px;
      background: #fff;
      padding: 14px;
    }

    .metric strong {
      display: block;
      font-size: 1.35rem;
      line-height: 1;
      letter-spacing: -0.04em;
    }

    .metric span {
      display: block;
      margin-top: 6px;
      color: var(--st-muted);
      font-weight: 700;
      font-size: 0.8rem;
    }

    .section-header {
      max-width: 760px;
      margin-bottom: 34px;
    }

    .section-header.center {
      margin-inline: auto;
      text-align: center;
    }

    .section-kicker {
      color: var(--st-primary);
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-weight: 900;
      font-size: 0.78rem;
      margin-bottom: 10px;
    }

    .section h2,
    .pricing h2 {
      margin: 0;
      font-size: clamp(2rem, 4vw, 3.4rem);
      line-height: 1.02;
      letter-spacing: -0.055em;
    }

    .section-lead {
      color: #475569;
      font-size: 1.08rem;
      margin: 14px 0 0;
    }

    .problem-grid,
    .feature-grid,
    .security-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .card {
      background: var(--st-surface);
      border: 1px solid var(--st-border);
      border-radius: var(--st-radius);
      box-shadow: 0 12px 26px rgba(15, 23, 42, 0.04);
      padding: 24px;
    }

    .card-icon {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--st-primary-soft);
      color: var(--st-primary);
      margin-bottom: 16px;
    }

    .card svg {
      width: 24px;
      height: 24px;
    }

    .card h3 {
      margin: 0 0 8px;
      font-size: 1.15rem;
      letter-spacing: -0.02em;
    }

    .card p {
      margin: 0;
      color: var(--st-muted);
    }

    .workflow {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 22px;
      align-items: start;
    }

    .workflow-list {
      display: grid;
      gap: 12px;
    }

    .workflow-step {
      display: grid;
      grid-template-columns: 42px 1fr;
      gap: 14px;
      padding: 18px;
      border-radius: 18px;
      background: #fff;
      border: 1px solid var(--st-border);
    }

    .step-number {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      background: #0f172a;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
    }

    .workflow-step h3 {
      margin: 0 0 4px;
      font-size: 1.02rem;
    }

    .workflow-step p {
      margin: 0;
      color: var(--st-muted);
    }

    .screenshot-card {
      min-height: 100%;
      border-radius: 26px;
      border: 1px solid var(--st-border);
      background: linear-gradient(160deg, #0f172a, #1e3a8a);
      color: #fff;
      box-shadow: var(--st-shadow);
      padding: 22px;
      position: relative;
      overflow: hidden;
    }

    .screenshot-card::after {
      content: "";
      position: absolute;
      width: 260px;
      height: 260px;
      border-radius: 50%;
      background: rgba(96, 165, 250, 0.18);
      right: -80px;
      top: -80px;
    }

    .mini-dashboard {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 14px;
    }

    .dash-row {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 12px;
      align-items: center;
      padding: 14px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.09);
      border-radius: 16px;
    }

    .dash-row strong {
      display: block;
      font-size: 0.95rem;
    }

    .dash-row span {
      color: rgba(255, 255, 255, 0.72);
      font-size: 0.84rem;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 6px 10px;
      border-radius: 999px;
      font-size: 0.76rem;
      font-weight: 900;
      background: rgba(134, 239, 172, 0.14);
      color: #bbf7d0;
    }

    .badge.warn {
      background: rgba(252, 211, 77, 0.14);
      color: #fde68a;
    }

    .security {
      background: #0f172a;
      color: #fff;
    }

    .security .section-kicker,
    .security .section-lead {
      color: #bfdbfe;
    }

    .security .card {
      background: rgba(255, 255, 255, 0.07);
      border-color: rgba(226, 232, 240, 0.14);
      color: #fff;
    }

    .security .card p {
      color: rgba(255, 255, 255, 0.72);
    }

    .video-container {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      border-radius: 24px;
      overflow: hidden;
      border: 1px solid var(--st-border);
      box-shadow: var(--st-shadow);
      background: #0f172a;
    }

    .video-container iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }

    .pricing {
      padding: 84px 0;
    }

    .toggle-wrapper {
  position: relative;
  width: 260px;
  height: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  border: 4px solid #333;
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
  user-select: none;
}

.toggle-wrapper input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.slider-pill {
  position: absolute;
  left: 4px;
  width: calc(50% - 6px);
  height: calc(100% - 8px);
  border-radius: 999px;
  background: #d9ecff;
  border: 1px solid #9fcbff;
  transition: left 180ms ease;
  z-index: 1;
}

.toggle-wrapper input:checked ~ .slider-pill {
  left: calc(50% + 2px);
}

.toggle-label {
  position: relative;
  z-index: 2;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #111;
}

.toggle-wrapper input:not(:checked) ~ .monthly,
.toggle-wrapper input:checked ~ .annually {
  color: #005ecb;
}

.hero-grid > *,
.hero-card,
.terminal,
.terminal-body,
.terminal-code {
  min-width: 0;
}

.terminal-code {
  overflow-x: auto;
  white-space: pre;
}

    body.billing-annual .slider-handle,
    #billingToggle:checked + .slider-pill .slider-handle {
      transform: translateX(25px);
    }

    body:not(.billing-annual) .annual-price,
    

    .pricing-card-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
      margin-top: 34px;
    }

    .pricing-card {
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 16px;
      border: 1px solid var(--st-border);
      border-radius: 24px;
      background: #fff;
      padding: 22px;
      box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
    }

    .pricing-card.featured {
      border-color: #93c5fd;
      box-shadow: 0 20px 44px rgba(37, 99, 235, 0.13);
      /* transform: translateY(-8px); */
    }

    .pricing-card .tag {
      position: absolute;
      top: -13px;
      left: 18px;
      padding: 6px 10px;
      border-radius: 999px;
      background: var(--st-primary);
      color: #fff;
      font-size: 0.73rem;
      font-weight: 900;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .plan-title {
      font-size: 1.05rem;
      font-weight: 900;
      letter-spacing: -0.02em;
    }

    .plan-price {
      min-height: 54px;
      font-size: 2.1rem;
      line-height: 1;
      font-weight: 900;
      letter-spacing: -0.06em;
      display: flex;
      align-items: end;
      gap: 4px;
      flex-wrap: wrap;
    }

    .plan-price small,
    .plan-price span {
      font-size: 0.9rem;
      color: var(--st-muted);
      font-weight: 800;
      letter-spacing: normal;
    }

    .plan-description {
      color: var(--st-muted);
      margin: 0;
      min-height: 124px;
    }

    .plan-actions {
      display: grid;
      gap: 8px;
    }

    .plan-actions .btn {
      width: 100%;
      min-height: 44px;
      font-size: 0.92rem;
    }

    .plan-features {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 9px;
      color: #334155;
      font-size: 0.94rem;
    }

    .plan-features li {
      display: flex;
      gap: 8px;
    }

    .plan-features li::before {
      content: "✓";
      color: var(--st-success);
      font-weight: 900;
    }

    .pricing-table-wrap {
      margin-top: 24px;
      overflow-x: auto;
      border-radius: 22px;
      border: 1px solid var(--st-border);
      background: #fff;
      box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
    }

    .pricing-table {
      width: 100%;
      min-width: 860px;
      border-collapse: collapse;
    }

    .pricing-table th,
    .pricing-table td {
      padding: 14px 16px;
      border-bottom: 1px solid var(--st-border);
      text-align: center;
      vertical-align: middle;
    }

    .pricing-table th:first-child,
    .pricing-table td:first-child {
      text-align: left;
      color: #334155;
      font-weight: 800;
      position: sticky;
      left: 0;
      background: #fff;
      z-index: 1;
    }

    .pricing-table thead th {
      background: #f8fafc;
      color: var(--st-text);
      font-weight: 900;
    }

    .checkmark {
      color: var(--st-success);
      font-weight: 900;
    }

    .integrations-row {
      display: flex;
      flex-wrap: wrap;
      gap: 28px;
      align-items: center;
      justify-content: center;
      padding: 28px;
      border-radius: 24px;
      background: #fff;
      border: 1px solid var(--st-border);
    }

    .integrations-row img {
      max-height: 42px;
      max-width: 190px;
      object-fit: contain;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    details {
      border: 1px solid var(--st-border);
      border-radius: 18px;
      background: #fff;
      padding: 18px 20px;
    }

    summary {
      cursor: pointer;
      font-weight: 900;
      color: var(--st-text);
    }

    details p {
      margin: 10px 0 0;
      color: var(--st-muted);
    }

    .site-footer {
      padding: 42px 0;
      border-top: 1px solid var(--st-border);
      background: #fff;
      text-align: center;
      color: var(--st-muted);
    }

    .footer-logo {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      margin-bottom: 10px;
    }

    .footer-links {
      display: inline-flex;
      gap: 12px;
      align-items: center;
      justify-content: center;
      margin-top: 8px;
    }

    .footer-links a {
      color: var(--st-muted);
      text-decoration: none;
      font-weight: 700;
    }

    @media (max-width: 1050px) {
      .hero-grid,
      .workflow {
        grid-template-columns: 1fr;
      }

      .pricing-card-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .pricing-card.featured {
        transform: none;
      }
    }

    @media (max-width: 860px) {
      .mobile-menu-button {
        display: inline-flex;
        flex-direction: column;
      }

      .nav-links {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 80px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border-radius: 18px;
        background: #fff;
        border: 1px solid var(--st-border);
        box-shadow: var(--st-shadow);
      }

      .nav-links.open {
        display: flex;
      }

      .nav-links a,
      .nav-links button {
        text-align: left;
        border-radius: 12px;
      }

      .problem-grid,
      .feature-grid,
      .security-grid,
      .faq-grid {
        grid-template-columns: 1fr;
      }

      .hero {
        padding-top: 56px;
      }

      .hero-card {
        padding: 12px;
      }

      .metrics-row {
        grid-template-columns: 1fr;
      }
            .plan-description {
        min-height: 48px;
      }
    }

    @media (max-width: 640px) {
      .container,
      .nav-wrap {
        width: min(100% - 24px, var(--st-max));
      }

      .section,
      .pricing {
        padding: 58px 0;
      }

      .hero {
        padding: 46px 0 54px;
      }

      .cta-row,
      .btn {
        width: 100%;
      }

      .pricing-card-grid {
        grid-template-columns: 1fr;
      }

      .brand-name small {
        display: none;
      }
    }