    :root {
      --bg-color: #faf9f6; 
      --text-main: #1c1c1c;
      --text-muted: #555555;
      --accent: #ffa760; 
      --accent-hover: #245a33;
      --font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    
    body {
      font-family: var(--font-family);
      background-color: var(--bg-color);
      color: var(--text-main);
      line-height: 1.6;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

    .container {
      width: 90%;
      max-width: 1100px;
      margin: 0 auto;
    }

    header {
      padding: 2rem 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .logo {
      font-size: 1.5rem;
      font-weight: 800;
      letter-spacing: -0.05rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    
    .logo img {
      height: 2rem;
      width: auto;
    }
    
    .logo > span { color: var(--text-main); }
    
    .logo span span { color: var(--accent); }

    .hero {
      text-align: center;
      padding: 6rem 0 4rem;
      flex: 1;
    }

    .waitlist-form {
      display: flex;
      flex-direction: column;
      gap: 10px;
      max-width: 400px;
      margin: 0 auto;
    }

    input[type="email"] {
      padding: 1rem 1.5rem;
      border: 1px solid #ddd;
      border-radius: 8px;
      font-size: 1rem;
      outline: none;
    }

    button {
      background: var(--accent);
      color: white;
      padding: 1rem;
      border: none;
      border-radius: 8px;
      font-weight: 600;
      cursor: pointer;
      transition: opacity 0.2s;
    }

    button:hover { opacity: 0.9; }
    
    .hero h1 {
      font-size: clamp(2.5rem, 5vw, 4.5rem);
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 1.5rem;
      letter-spacing: -0.02em;
    }

    .hero p {
      font-size: 1.25rem;
      color: var(--text-muted);
      max-width: 600px;
      margin: 0 auto 2.5rem;
    }

    .cta-button {
      display: inline-block;
      background-color: var(--accent);
      color: white;
      padding: 1rem 2.5rem;
      font-size: 1.1rem;
      font-weight: 600;
      border-radius: 50px;
      text-decoration: none;
      transition: background-color 0.2s ease, transform 0.2s ease;
    }

    .cta-button:hover {
      background-color: var(--accent-hover);
      transform: translateY(-2px);
    }

    .values {
      padding: 4rem 0 6rem;
    }

    .values-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 3rem;
      text-align: left;
    }

    .value-card h3 {
      font-size: 1.4rem;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .value-card p {
      color: var(--text-muted);
    }

    footer {
      text-align: center;
      padding: 2rem 0;
      color: var(--text-muted);
      font-size: 0.9rem;
      border-top: 1px solid #eaeaea;
    }

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

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

    @keyframes scaleIn {
      from {
        opacity: 0;
        transform: scale(0.95);
      }
      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    header {
      animation: fadeInDown 0.6s ease-out;
    }

    .hero h1 {
      animation: fadeInUp 0.8s ease-out 0.2s both;
    }

    .hero p {
      animation: fadeInUp 0.8s ease-out 0.4s both;
    }

    #waitlist-container {
      animation: fadeInUp 0.8s ease-out 0.6s both;
    }

    .value-card {
      animation: fadeInUp 0.8s ease-out;
      animation-fill-mode: both;
    }

    .value-card:nth-child(1) { animation-delay: 0.2s; }
    .value-card:nth-child(2) { animation-delay: 0.4s; }
    .value-card:nth-child(3) { animation-delay: 0.6s; }

    .cta-button {
      transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    }

    .cta-button:hover {
      box-shadow: 0 8px 16px rgba(255, 167, 96, 0.3);
    }

    input[type="email"]:focus {
      animation: scaleIn 0.3s ease-out;
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(255, 167, 96, 0.1);
    }

    button {
      transition: background-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
    }

    button:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(255, 167, 96, 0.3);
    }

    button:active {
      transform: translateY(0);
    }

    @media (max-width: 768px) {
      .hero { padding: 4rem 0 3rem; }
      .values { padding: 2rem 0 4rem; }
    }