    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
      background: #fafaf9;
      color: #1c1c1e;
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
    }

    @import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,400;14..32,500;14..32,600;14..32,700&display=swap');

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 2rem 1.5rem;
    }

    @media (max-width: 768px) {
      .container {
        padding: 1.5rem 1rem;
      }
    }

    .site-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      margin-bottom: 0.5rem;
    }

    .logo-icon {
      font-size: 2rem;
    }

    .site-title {
      font-size: 2rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      background: linear-gradient(135deg, #1a1a1c, #4a4a4e);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
    }

    .tagline {
      font-size: 0.9rem;
      color: #5e5e5e;
      border-top: 1px solid #e6e6e5;
      display: inline-block;
      padding-top: 0.6rem;
      margin-top: 0.25rem;
    }

    .trust-badge {
      display: inline-block;
      background: #1c1c1e;
      color: white;
      font-size: 0.7rem;
      padding: 0.2rem 0.7rem;
      border-radius: 2rem;
      margin-left: 0.75rem;
      vertical-align: middle;
    }

    .tools-section {
      margin-bottom: 3rem;
    }

    .section-title {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 1.5rem;
      padding-bottom: 0.5rem;
      border-bottom: 2px solid #e6e6e5;
      color: #1c1c1e;
    }

    .tools-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 1.75rem;
    }

    @media (max-width: 700px) {
      .tools-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
      }
    }

    .tool-card {
      background: #ffffff;
      border-radius: 1.5rem;
      padding: 1.75rem;
      box-shadow: 0 1px 2px rgba(0,0,0,0.03), 0 8px 20px -8px rgba(0,0,0,0.08);
      border: 1px solid #efefed;
      transition: all 0.25s ease;
      text-decoration: none;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .tool-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 28px -12px rgba(0,0,0,0.12);
      border-color: #dddcd9;
    }

    .tool-card.coming-soon {
      opacity: 0.85;
      background: #fefefe;
    }

    .tool-card.coming-soon:hover {
      transform: translateY(-2px);
    }

    .tool-icon {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    .tool-name {
      font-size: 1.35rem;
      font-weight: 600;
      color: #1c1c1e;
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 0.5rem;
    }

    .status-badge {
      font-size: 0.65rem;
      font-weight: 500;
      background: #e8f0e8;
      color: #2e7d32;
      padding: 0.2rem 0.6rem;
      border-radius: 2rem;
      letter-spacing: normal;
    }

    .status-badge.coming {
      background: #f0f0ef;
      color: #8e8e93;
    }

    .tool-description {
      font-size: 0.9rem;
      color: #5e5e5e;
      line-height: 1.5;
      margin-bottom: 1.25rem;
      flex-grow: 1;
    }

    .feature-list {
      list-style: none;
      margin-top: 0.5rem;
      margin-bottom: 1.25rem;
    }

    .feature-list li {
      font-size: 0.8rem;
      color: #4a4a4e;
      padding: 0.25rem 0;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .feature-list li::before {
      content: "✓";
      color: #2e7d32;
      font-weight: 600;
    }

    .coming-soon .feature-list li::before {
      color: #a1a1aa;
    }

    .card-footer {
      margin-top: auto;
      padding-top: 1rem;
      border-top: 1px solid #efefed;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 0.75rem;
    }

    .launch-link {
      background: #1c1c1e;
      color: white;
      padding: 0.5rem 1.2rem;
      border-radius: 2rem;
      font-size: 0.8rem;
      font-weight: 500;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      transition: all 0.2s;
      cursor: pointer;
      border: none;
    }

    .launch-link:hover {
      background: #333335;
      transform: translateX(2px);
    }

    .launch-link.disabled {
      background: #e5e5e4;
      color: #8e8e93;
      cursor: default;
      pointer-events: none;
    }

    .secondary-link {
      font-size: 0.75rem;
      color: #8e8e93;
      text-decoration: none;
    }

    .secondary-link:hover {
      color: #1c1c1e;
      text-decoration: underline;
    }

    .info-section {
      background: #ffffff;
      border-radius: 1.5rem;
      padding: 2rem;
      border: 1px solid #efefed;
      margin: 2rem 0 2rem;
    }

    .info-section h2 {
      font-size: 1.4rem;
      font-weight: 600;
      margin-bottom: 1rem;
      color: #111;
    }

    .info-section h3 {
      font-size: 1rem;
      font-weight: 600;
      margin: 1.25rem 0 0.5rem;
      color: #222;
    }

    .info-section p {
      color: #4a4a4e;
      margin-bottom: 0.8rem;
      font-size: 0.9rem;
      line-height: 1.6;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1rem;
      margin: 1.2rem 0;
    }

    .feature-badge {
      background: #f9f9f8;
      padding: 0.6rem 1rem;
      border-radius: 0.75rem;
      font-size: 0.85rem;
      border-left: 3px solid #1c1c1e;
    }

    .site-footer {
      text-align: center;
      margin-top: 2rem;
      padding-top: 1.5rem;
      border-top: 1px solid #efefed;
      font-size: 0.75rem;
      color: #8e8e93;
    }

    .footer-links {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      flex-wrap: wrap;
      margin-bottom: 1rem;
    }

    .footer-links a {
      color: #5e5e5e;
      text-decoration: none;
      font-size: 0.75rem;
    }

    .footer-links a:hover {
      color: #1c1c1e;
      text-decoration: underline;
    }

    hr {
      margin: 1rem 0;
      border: none;
      border-top: 1px solid #efefed;
    }