 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      border-color: #e5e5e5;
      outline-color: rgba(232, 61, 87, 0.5);
    }

    :root {
      --background: #f8f8f8;
      --foreground: #1a1a1a;
      --card: #ffffff;
      --card-foreground: #1a1a1a;
      --primary: #000000;
      --primary-foreground: #ffffff;
      --secondary: #666666;
      --secondary-foreground: #ffffff;
      --muted: #efefef;
      --muted-foreground: #888888;
      --accent: #e83d57;
      --accent-foreground: #ffffff;
      --border: #e5e5e5;
      --input: #f5f5f5;
      --chart-1: #e83d57;
      --chart-2: #c43494;
      --chart-3: #6536a3;
      --chart-4: #2c7cb3;
      --chart-5: #3fa96b;
      --radius: 0.5rem;
    }

    body {
      background-color: var(--background);
      color: var(--foreground);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      line-height: 1.6;
    }

    /* Subtle gradient accents throughout the page */
    :root::before {
      content: "";
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at 20% 50%, rgba(232, 61, 87, 0.02) 0%, transparent 50%),
                  radial-gradient(circle at 80% 80%, rgba(196, 52, 148, 0.02) 0%, transparent 50%),
                  radial-gradient(circle at 40% 0%, rgba(101, 54, 163, 0.02) 0%, transparent 50%);
      pointer-events: none;
      z-index: -1;
    }

    /* Navigation */
    nav {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 50;
      background-color: rgba(248, 248, 248, 0.95);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid var(--border);
    }

    .nav-container {
      max-width: 80rem;
      margin: 0 auto;
      padding: 0.75rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      text-decoration: none;
      color: var(--foreground);
    }

    .nav-logo img {
      height: 32px;
    }

    .nav-logo span {
      font-size: 1.125rem;
      font-weight: 600;
      color: var(--foreground);
    }

    .nav-links {
      display: none;
      gap: 2rem;
      list-style: none;
    }

    @media (min-width: 768px) {
      .nav-links {
        display: flex;
      }
    }

    .nav-links a {
      font-size: 0.875rem;
      color: rgba(26, 26, 26, 0.6);
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .nav-links a:hover {
      color: var(--foreground);
    }

    .nav-cta {
      background-color: var(--foreground);
      color: var(--primary-foreground);
      border: none;
      padding: 0.5rem 1rem;
      border-radius: 0.375rem;
      font-size: 0.875rem;
      cursor: pointer;
      transition: background-color 0.2s ease;
    }

    .nav-cta:hover {
      background-color: rgba(26, 26, 26, 0.9);
    }

    /* Main container padding for fixed navbar */
    main {
      min-height: 100vh;
      background-color: var(--background);
    }

    /* Hero Section */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding-top: 5rem;
      padding-left: 1.5rem;
      padding-right: 1.5rem;
      background-color: var(--background);
    }

    .hero-content {
      max-width: 48rem;
      margin: 0 auto;
      text-align: center;
      animation: fadeInUp 0.6s ease-out;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero h1 {
      font-size: clamp(2rem, 5vw, 3.75rem);
      font-weight: 600;
      line-height: 1.2;
      margin-bottom: 1.5rem;
      color: var(--foreground);
    }

    .hero p {
      font-size: 1.125rem;
      color: rgba(26, 26, 26, 0.6);
      max-width: 42rem;
      margin: 0 auto 2rem;
      line-height: 1.6;
    }

    .hero-buttons {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      justify-content: center;
      margin-bottom: 4rem;
    }

    @media (min-width: 640px) {
      .hero-buttons {
        flex-direction: row;
      }
    }

    .btn {
      padding: 0.75rem 1.5rem;
      border-radius: 0.375rem;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.2s ease;
      border: none;
      text-decoration: none;
      display: inline-block;
    }

    .btn-primary {
      background-color: var(--foreground);
      color: var(--primary-foreground);
    }

    .btn-primary:hover {
      background-color: rgba(26, 26, 26, 0.9);
    }

    .btn-secondary {
      background-color: transparent;
      color: var(--foreground);
      border: 1px solid var(--border);
    }

    .btn-secondary:hover {
      background-color: var(--muted);
    }

    .hero-screenshot {
      border-radius: 0.5rem;
      border: 1px solid var(--border);
      overflow: hidden;
      background-color: var(--card);
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
      animation: fadeInUp 0.8s ease-out 0.2s both;
    }

    .screenshot-placeholder {
      aspect-ratio: 16 / 9;
      background-color: var(--muted);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: rgba(26, 26, 26, 0.4);
    }

    .screenshot-placeholder .code {
      font-family: "Courier New", monospace;
      font-size: 0.875rem;
      margin-bottom: 0.5rem;
    }

    /* Section Styles */
    section {
      padding: 6rem 1.5rem;
    }

    .section-container {
      max-width: 80rem;
      margin: 0 auto;
    }

    section.alt {
      background-color: rgba(26, 26, 26, 0.02);
      border-top: 1px solid var(--border);
    }

    section h2 {
      font-size: clamp(2.25rem, 5vw, 3rem);
      font-weight: 600;
      text-align: center;
      margin-bottom: 4rem;
      color: var(--foreground);
    }

    /* Features Grid */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
    }

    .feature-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 0.375rem;
      padding: 1.5rem;
      transition: all 0.2s ease;
    }

    .feature-card:hover {
      border-color: #d0d0d0;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    }

    .feature-card h3 {
      font-size: 1.125rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: var(--foreground);
    }

    .feature-card p {
      font-size: 0.875rem;
      color: rgba(26, 26, 26, 0.6);
      line-height: 1.6;
    }

    /* How It Works */
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1rem;
    }

    .step-card {
      background: rgba(26, 26, 26, 0.02);
      border: 1px solid var(--border);
      border-radius: 0.375rem;
      padding: 2rem;
      position: relative;
    }

    .step-number {
      font-size: 2.25rem;
      font-weight: 700;
      color: var(--accent);
      margin-bottom: 1rem;
    }

    .step-card h3 {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 0.75rem;
      color: var(--foreground);
    }

    .step-card p {
      font-size: 0.875rem;
      color: rgba(26, 26, 26, 0.6);
      line-height: 1.6;
    }

    /* Comparison Table */
    .comparison-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 2rem;
    }

    .comparison-table th {
      text-align: left;
      padding-bottom: 1rem;
      font-weight: 600;
      color: rgba(26, 26, 26, 0.6);
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      border-bottom: 1px solid var(--border);
    }

    .comparison-table td {
      padding: 1.5rem 0;
      font-size: 1.125rem;
      border-bottom: 1px solid rgba(26, 26, 26, 0.1);
    }

    .comparison-table tr:hover {
      background-color: rgba(26, 26, 26, 0.02);
    }

    .comparison-table .blitz-feature {
      color: var(--primary);
      font-weight: 600;
    }

    /* Mission Control Section */
    .mission-desc {
      text-align: center;
      margin-bottom: 3rem;
    }

    .mission-desc h2 {
      margin-bottom: 1.5rem;
    }

    .mission-desc p {
      font-size: 1.25rem;
      color: rgba(26, 26, 26, 0.6);
      max-width: 42rem;
      margin: 0 auto;
      line-height: 1.6;
    }

    .dashboard-visual {
      background: linear-gradient(to bottom, rgba(26, 26, 26, 0.02), transparent);
      border: 1px solid var(--border);
      border-radius: 0.375rem;
      padding: 4rem;
      height: 24rem;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .dashboard-visual::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at center, rgba(26, 26, 26, 0.05), transparent);
      pointer-events: none;
    }

    .dashboard-text {
      position: relative;
      text-align: center;
    }

    .dashboard-text .command {
      font-family: "Courier New", monospace;
      font-size: 0.875rem;
      color: rgba(232, 61, 87, 0.6);
      margin-bottom: 0.5rem;
    }

    .dashboard-text .placeholder {
      color: rgba(26, 26, 26, 0.4);
    }

    /* Security Section */
    .security-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }

    @media (max-width: 768px) {
      .security-content {
        grid-template-columns: 1fr;
      }
    }

    .security-text h2 {
      text-align: left;
      margin-bottom: 1.5rem;
      font-size: 3rem;
    }

    .security-text p {
      font-size: 1.25rem;
      color: rgba(26, 26, 26, 0.6);
      line-height: 1.6;
    }

    .security-visual {
      position: relative;
      height: 16rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .security-icon {
      position: relative;
      width: 8rem;
      height: 8rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .security-glow {
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at center, rgba(0, 0, 0, 0.1), transparent);
      border-radius: 50%;
      filter: blur(40px);
    }

    .security-icon-inner {
      position: absolute;
      inset: 1rem;
      background: radial-gradient(circle at center, rgba(0, 0, 0, 0.15), transparent);
      border-radius: 50%;
      filter: blur(20px);
    }

    .security-icon-text {
      position: relative;
      font-size: 3rem;
    }

    /* CTA Section */
    .cta-section {
      background-color: rgba(26, 26, 26, 0.02);
      border-top: 1px solid var(--border);
      text-align: center;
    }

    .cta-content {
      max-width: 42rem;
      margin: 0 auto;
    }

    .cta-content h2 {
      margin-bottom: 1.5rem;
      font-size: 3rem;
    }

    .cta-content p {
      font-size: 1.25rem;
      color: rgba(26, 26, 26, 0.6);
      margin-bottom: 2rem;
      line-height: 1.6;
    }

    .btn-demo {
      background-color: var(--primary);
      color: var(--primary-foreground);
      padding: 0.75rem 2rem;
      border-radius: 9999px;
    }

    .btn-demo:hover {
      background-color: rgba(26, 26, 26, 0.9);
    }

    /* Footer */
    footer {
      background-color: var(--background);
      border-top: 1px solid var(--border);
      padding: 4rem 1.5rem;
    }

    .footer-container {
      max-width: 80rem;
      margin: 0 auto;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-section h4 {
      font-weight: 600;
      margin-bottom: 1rem;
      color: var(--foreground);
    }

    .footer-section ul {
      list-style: none;
    }

    .footer-section li {
      margin-bottom: 0.5rem;
    }

    .footer-section a {
      font-size: 0.875rem;
      color: rgba(26, 26, 26, 0.6);
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .footer-section a:hover {
      color: var(--foreground);
    }

    .footer-branding p {
      font-size: 0.875rem;
      color: rgba(26, 26, 26, 0.6);
      line-height: 1.6;
    }

    .footer-bottom {
      border-top: 1px solid rgba(26, 26, 26, 0.1);
      padding-top: 2rem;
      text-align: center;
      font-size: 0.875rem;
      color: rgba(26, 26, 26, 0.4);
    }

    /* Gradient accent utilities */
    .gradient-border {
      position: relative;
      background: linear-gradient(to right, #ffffff, #ffffff) padding-box,
        linear-gradient(90deg, rgba(232, 61, 87, 0.15), rgba(196, 52, 148, 0.1), rgba(101, 54, 163, 0.05)) border-box;
      border: 1px solid transparent;
    }

    /* Subtle gradient top accent */
    .gradient-accent-top::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(232, 61, 87, 0.1), transparent);
    }