* { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
      line-height: 1.6;
      color: #1a1a2e;
      background: #fafafa;
    }
    .header {
      background: #1a1a2e;
      color: #fff;
      padding: 24px 0;
    }
    .header-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .logo {
      font-size: 22px;
      font-weight: 700;
      color: #fff;
      text-decoration: none;
    }
    .nav a {
      color: #fff;
      text-decoration: none;
      margin-left: 24px;
      font-size: 14px;
      opacity: 0.85;
    }
    .nav a:hover { opacity: 1; }
    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 56px 24px 80px;
    }
    .hero {
      text-align: center;
      margin-bottom: 24px;
    }
    h1 {
      font-size: 42px;
      margin-bottom: 14px;
      color: #1a1a2e;
      letter-spacing: -0.02em;
    }
    .hero p {
      font-size: 18px;
      color: #6b7280;
      max-width: 600px;
      margin: 0 auto;
    }
    /* Founding Offer Banner */
    .founding-banner {
      background: linear-gradient(135deg, #f59e0b, #ef4444);
      color: #fff;
      padding: 20px 24px;
      border-radius: 14px;
      text-align: center;
      margin: 32px auto;
      max-width: 800px;
      box-shadow: 0 8px 24px rgba(245, 158, 11, 0.25);
    }
    .founding-banner h3 {
      font-size: 20px;
      margin-bottom: 8px;
    }
    .founding-banner ul {
      list-style: none;
      display: inline-flex;
      flex-wrap: wrap;
      gap: 16px 24px;
      justify-content: center;
      padding: 0;
      font-size: 14px;
    }
    .founding-banner li::before {
      content: '✓ ';
      font-weight: 700;
      margin-right: 4px;
    }

    /* Billing toggle */
    .toggle-wrap {
      display: flex;
      justify-content: center;
      margin: 32px 0 16px;
    }
    .toggle {
      display: inline-flex;
      background: #e5e7eb;
      border-radius: 999px;
      padding: 4px;
    }
    .toggle button {
      border: none;
      background: transparent;
      padding: 10px 22px;
      font-size: 14px;
      font-weight: 500;
      border-radius: 999px;
      cursor: pointer;
      color: #6b7280;
      transition: all 0.2s;
    }
    .toggle button.active {
      background: #fff;
      color: #1a1a2e;
      box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }
    .save-pill {
      display: inline-block;
      background: #10b981;
      color: #fff;
      font-size: 11px;
      font-weight: 600;
      padding: 2px 6px;
      border-radius: 4px;
      margin-left: 6px;
      vertical-align: 1px;
    }

    /* Pricing grid */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-top: 24px;
    }
    .plan {
      background: #fff;
      border-radius: 16px;
      padding: 32px 28px;
      border: 1px solid #e5e7eb;
      display: flex;
      flex-direction: column;
      transition: all 0.2s;
    }
    .plan:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    }
    .plan.featured {
      border-color: #4f46e5;
      box-shadow: 0 12px 32px rgba(79, 70, 229, 0.15);
      position: relative;
    }
    .featured-tag {
      position: absolute;
      top: -12px; left: 50%;
      transform: translateX(-50%);
      background: #4f46e5;
      color: #fff;
      font-size: 12px;
      font-weight: 600;
      padding: 4px 14px;
      border-radius: 999px;
    }
    .plan-name {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 4px;
    }
    .plan-tagline {
      font-size: 13px;
      color: #6b7280;
      margin-bottom: 18px;
    }
    .plan-price {
      font-size: 32px;
      font-weight: 700;
      color: #1a1a2e;
      margin-bottom: 4px;
    }
    .plan-price span {
      font-size: 14px;
      color: #6b7280;
      font-weight: 400;
    }
    .plan-billing-note {
      font-size: 12px;
      color: #6b7280;
      margin-bottom: 24px;
      min-height: 18px;
    }
    .plan-features {
      list-style: none;
      margin-bottom: 28px;
      flex: 1;
    }
    .plan-features li {
      padding: 6px 0;
      font-size: 14px;
      color: #374151;
      padding-left: 24px;
      position: relative;
    }
    .plan-features li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: #10b981;
      font-weight: 700;
    }
    .btn {
      display: inline-block;
      width: 100%;
      padding: 12px 20px;
      border-radius: 10px;
      font-size: 14px;
      font-weight: 600;
      text-align: center;
      text-decoration: none;
      cursor: pointer;
      border: none;
      transition: all 0.15s;
    }
    .btn-primary {
      background: #4f46e5;
      color: #fff;
    }
    .btn-primary:hover {
      background: #4338ca;
    }
    .btn-secondary {
      background: #1a1a2e;
      color: #fff;
    }
    .btn-secondary:hover {
      background: #000;
    }

    /* What's included */
    .included {
      background: #fff;
      border-radius: 16px;
      padding: 36px;
      margin-top: 56px;
    }
    .included h2 {
      font-size: 24px;
      margin-bottom: 24px;
      text-align: center;
    }
    .included-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 12px 28px;
    }
    .included-grid li {
      list-style: none;
      padding: 6px 0 6px 28px;
      font-size: 14px;
      color: #374151;
      position: relative;
    }
    .included-grid li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: #10b981;
      font-weight: 700;
      font-size: 16px;
    }

    /* FAQ */
    .faq {
      margin-top: 56px;
    }
    .faq h2 {
      font-size: 28px;
      margin-bottom: 24px;
      text-align: center;
    }
    details {
      background: #fff;
      border-radius: 12px;
      padding: 18px 24px;
      margin-bottom: 12px;
      cursor: pointer;
    }
    details[open] {
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }
    summary {
      font-size: 16px;
      font-weight: 500;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    summary::-webkit-details-marker { display: none; }
    summary::after {
      content: '+';
      font-size: 22px;
      color: #6b7280;
      transition: transform 0.2s;
    }
    details[open] summary::after {
      transform: rotate(45deg);
    }
    details p {
      margin-top: 12px;
      color: #4b5563;
      font-size: 14px;
      line-height: 1.7;
    }

    /* CTA bottom */
    .cta {
      background: #1a1a2e;
      color: #fff;
      border-radius: 16px;
      padding: 48px 32px;
      text-align: center;
      margin-top: 56px;
    }
    .cta h2 {
      font-size: 28px;
      margin-bottom: 12px;
    }
    .cta p {
      color: #d1d5db;
      margin-bottom: 24px;
    }
    .cta .btn {
      width: auto;
      padding: 14px 32px;
      background: #fff;
      color: #1a1a2e;
    }

    footer {
      background: #1a1a2e;
      color: #9ca3af;
      padding: 32px 0;
      text-align: center;
      font-size: 13px;
      margin-top: 60px;
    }
    footer a { color: #fff; margin: 0 12px; }

    @media (max-width: 600px) {
      h1 { font-size: 30px; }
      .hero p { font-size: 16px; }
      .container { padding: 40px 16px 60px; }
      .nav a { margin-left: 12px; font-size: 13px; }
      .plan { padding: 24px 20px; }
      .included { padding: 24px; }
      .cta { padding: 32px 20px; }
      .founding-banner { padding: 16px 18px; margin-left: -8px; margin-right: -8px; }
    }

        .brand{display:flex;align-items:center;gap:10px;font-weight:700;font-size:18px;text-decoration:none;color:inherit}
  .brand img{width:28px;height:28px;border-radius:6px}