    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --bg: #0A0A0A;
      --bg-surface: #121212;
      --line: #1E1E1E;
      --text: #F0F0ED;
      --text-dim: #A1A1A1;
      --muted: #5C5C5C;
      --accent: #1A73E8;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background-color: var(--bg);
      color: var(--text);
      font-family: 'Google Sans', sans-serif;
      font-size: 16px;
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    ::selection {
      background: rgba(255, 255, 255, 0.2);
      color: #FFF;
    }

    .wrap {
      max-width: 1100px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 40px;
      padding-right: 40px;
    }

    .blue-zone {
      --bg: #0f3f86;
      --bg-surface: rgba(255, 255, 255, 0.1);
      --line: rgba(255, 255, 255, 0.2);
      --text-dim: rgba(255, 255, 255, 0.7);
      --muted: rgba(255, 255, 255, 0.5);
      background-color: var(--bg);
    }

    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 50;
      background: var(--bg);
      border-bottom: 0.5px solid var(--line);
    }

    .nav-wrap {
      max-width: 1100px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 40px;
      padding-right: 40px;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 500;
      font-size: 17px;
      color: var(--text);
      letter-spacing: -0.2px;
    }

    .nav-pill,
    .btn {
      background: #1A73E8;
      color: #ffffff;
      font-family: 'Google Sans', sans-serif;
      font-size: 13px;
      font-weight: 500;
      padding: 6px 16px;
      border-radius: 8px;
      border: none;
      box-shadow: 
        inset 0 1px 1px rgba(255, 255, 255, 0.4), 
        inset 0 -2px 4px rgba(0, 0, 0, 0.25), 
        0 1px 3px rgba(0, 0, 0, 0.2), 
        0 0 0 0.5px rgba(0, 0, 0, 0.5);
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .btn {
      padding: 10px 24px;
      font-size: 13px;
    }

    .nav-pill:hover,
    .btn:hover {
      background: #1557B0;
    }

    section {
      border-bottom: 0.5px solid var(--line);
    }

    .hero {
      padding-top: 160px;
      padding-bottom: 80px;
    }

    .hero h1 {
      font-family: 'Ovo', serif;
      font-size: 80px;
      font-weight: 400;
      line-height: 1.05;
      letter-spacing: -1px;
      margin-bottom: 24px;
      max-width: 800px;
      color: #FFFFFF;
    }

    .hero h1 .dim {
      color: var(--muted);
    }

    .hero p {
      font-size: 20px;
      color: var(--text-dim);
      max-width: 600px;
      line-height: 1.5;
      margin-bottom: 48px;
    }

    .hero-visual {
      width: 100%;
      max-width: 500px;
      margin: 0 0 32px 0;
      text-align: left;
      position: relative;
    }

    .hv-bar {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 16px 20px;
      background: var(--bg-surface);
      border: 0.5px solid var(--line);
      border-radius: 12px;
      font-size: 15px;
      color: var(--text);
    }

    .hv-icon {
      color: var(--text-dim);
      flex-shrink: 0;
    }

    .sound-wave {
      display: flex;
      align-items: center;
      gap: 2px;
      height: 18px;
      flex-shrink: 0;
      width: 18px;
      justify-content: center;
    }
    .sound-wave .bar {
      width: 3px;
      height: 6px;
      background: #1A73E8;
      border-radius: 3px;
      animation: bounce 0.8s infinite ease-in-out;
    }
    .sound-wave .bar:nth-child(1) { animation-delay: -0.4s; }
    .sound-wave .bar:nth-child(2) { animation-delay: -0.2s; }
    .sound-wave .bar:nth-child(3) { animation-delay: 0s; }

    @keyframes bounce {
      0%, 100% { height: 6px; }
      50% { height: 14px; }
    }

    .hv-cursor {
      display: inline-block;
      width: 2px;
      height: 18px;
      background: #1A73E8;
      margin-left: 2px;
      vertical-align: middle;
      animation: blink 1s step-end infinite;
    }

    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0; }
    }

    .hv-result {
      position: absolute;
      top: calc(100% + 8px);
      left: 0;
      right: 0;
      background: var(--bg-surface);
      border: 0.5px solid var(--line);
      border-radius: 8px;
      padding: 12px 16px;
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 14px;
      color: var(--text);
      opacity: 0;
      transform: translateY(-8px);
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      pointer-events: none;
    }

    .hv-result.show {
      opacity: 1;
      transform: translateY(0);
    }

    .cols {
      padding-top: 80px;
      padding-bottom: 100px;
    }

    .section-label {
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 64px;
    }

    .bento-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-auto-rows: minmax(200px, auto);
      gap: 24px;
    }

    .bento-box:nth-child(1) { grid-column: span 2; }
    .bento-box:nth-child(2) { grid-column: span 1; grid-row: span 2; }
    .bento-box:nth-child(3) { grid-column: span 1; }
    .bento-box:nth-child(4) { grid-column: span 1; }

    .bento-box {
      padding: 40px;
      background: var(--bg-surface);
      border: 0.5px solid var(--line);
      border-radius: 12px;
      transition: border-color 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }

    .bento-box:hover {
      border-color: rgba(255, 255, 255, 0.2);
    }

    .icon {
      width: 24px;
      height: 24px;
      color: var(--text);
      margin-bottom: 24px;
      display: block;
    }

    .bento-box h3 {
      font-size: 19px;
      font-weight: 500;
      color: var(--text);
      margin-bottom: 12px;
    }

    .bento-box p {
      font-size: 15px;
      color: var(--text-dim);
      line-height: 1.6;
      max-width: 600px;
    }

    .stat {
      padding-top: 120px;
      padding-bottom: 120px;
      display: flex;
      align-items: baseline;
      gap: 40px;
    }

    .stat-big {
      font-size: 120px;
      font-weight: 400;
      letter-spacing: -4px;
      line-height: 1;
      color: var(--text);
    }

    .stat-desc {
      font-size: 18px;
      color: var(--text-dim);
      max-width: 300px;
      line-height: 1.6;
    }

    .lana {
      padding-top: 120px;
      padding-bottom: 120px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .lana h2 {
      font-size: 40px;
      font-weight: 400;
      letter-spacing: -1.5px;
      line-height: 1.1;
      margin-bottom: 20px;
      color: var(--text);
    }

    .lana p {
      font-size: 17px;
      color: var(--text-dim);
      line-height: 1.6;
      max-width: 400px;
    }

    .chat {
      display: flex;
      flex-direction: column;
      gap: 16px;
      background: var(--bg-surface);
      border: 0.5px solid var(--line);
      padding: 32px;
      border-radius: 16px;
    }

    .msg {
      font-size: 15px;
      line-height: 1.5;
      padding: 16px 20px;
      max-width: 90%;
    }

    .msg.user {
      background: rgba(255, 255, 255, 0.06);
      color: var(--text);
      align-self: flex-end;
      border-radius: 12px 12px 4px 12px;
    }

    .msg.ai {
      background: transparent;
      border: 0.5px solid rgba(255, 255, 255, 0.1);
      color: var(--text-dim);
      align-self: flex-start;
      border-radius: 12px 12px 12px 4px;
    }

    .msg.ai .sender {
      display: block;
      font-size: 12px;
      font-weight: 500;
      color: var(--text);
      margin-bottom: 8px;
    }

    .waitlist {
      padding-top: 160px;
      padding-bottom: 160px;
      text-align: center;
    }

    .waitlist h2 {
      font-size: 48px;
      font-weight: 400;
      letter-spacing: -1.5px;
      margin-bottom: 16px;
      color: var(--text);
    }

    .waitlist p {
      font-size: 19px;
      color: var(--text-dim);
      margin-bottom: 48px;
    }

    .email-row {
      display: inline-flex;
      align-items: center;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 14px;
      padding: 6px;
      border: 0.5px solid rgba(255, 255, 255, 0.1);
      box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.15);
      transition: all 0.2s ease;
    }

    .email-row:focus-within {
      border-color: rgba(255, 255, 255, 0.25);
      background: rgba(255, 255, 255, 0.08);
    }

    .email-row input {
      background: transparent;
      border: none;
      outline: none;
      padding: 8px 16px;
      font-family: 'Google Sans', sans-serif;
      font-size: 15px;
      color: var(--text);
      width: 280px;
    }

    .email-row input::placeholder {
      color: var(--muted);
    }

    .email-row button {
      background: #1A73E8;
      color: #ffffff;
      border: none;
      padding: 8px 16px;
      font-family: 'Google Sans', sans-serif;
      font-size: 13px;
      font-weight: 500;
      cursor: pointer;
      border-radius: 8px;
      box-shadow: 
        inset 0 1px 1px rgba(255, 255, 255, 0.4), 
        inset 0 -2px 4px rgba(0, 0, 0, 0.25), 
        0 1px 3px rgba(0, 0, 0, 0.2), 
        0 0 0 0.5px rgba(0, 0, 0, 0.5);
      transition: all 0.2s ease;
    }

    .email-row button:hover {
      background: #1557B0;
    }

    .footer-wrap {
      max-width: 1100px;
      margin-left: auto;
      margin-right: auto;
      padding: 80px 40px 40px 40px;
    }
    
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 64px;
    }

    .fg-brand .tagline {
      font-size: 14px;
      color: var(--text-dim);
      line-height: 1.6;
    }

    .fg-group h4 {
      font-size: 14px;
      font-weight: 500;
      color: var(--text);
      margin-bottom: 24px;
    }

    .fg-group a {
      display: block;
      font-size: 14px;
      color: var(--text-dim);
      text-decoration: none;
      margin-bottom: 12px;
      transition: color 0.2s;
    }

    .fg-group a:hover {
      color: var(--text);
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 32px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .fb-socials {
      display: flex;
      gap: 24px;
    }

    .fb-socials a {
      font-size: 14px;
      color: var(--text-dim);
      text-decoration: none;
      transition: color 0.2s;
    }

    .fb-socials a:hover {
      color: var(--text);
    }

    .f-copy {
      font-size: 14px;
      color: var(--text-dim);
    }

    @media (max-width: 720px) {

      .wrap,
      .nav-wrap,
      .footer-wrap {
        padding-left: 24px;
        padding-right: 24px;
      }

      .hero {
        padding-top: 140px;
        padding-bottom: 80px;
      }

      .hero-visual {
        margin: 0 0 24px 0;
      }

      .hv-bar {
        padding: 12px 16px;
        font-size: 13px;
        gap: 8px;
      }

      .hero h1 {
        font-size: 50px;
        letter-spacing: -1px;
      }

      .hero p {
        font-size: 16px;
      }

      .bento-grid {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .bento-box:nth-child(1),
      .bento-box:nth-child(2),
      .bento-box:nth-child(3),
      .bento-box:nth-child(4) {
        grid-column: span 1;
        grid-row: auto;
      }

      .stat {
        flex-direction: column;
        gap: 24px;
      }

      .stat-big {
        font-size: 80px;
      }

      .lana {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .waitlist h2 {
        font-size: 40px;
      }

      .email-row {
        flex-direction: column;
        border-radius: 12px;
        width: 100%;
        padding: 8px;
      }

      .email-row input {
        width: 100%;
        text-align: center;
      }

      .email-row button {
        width: 100%;
        border-radius: 8px;
      }

      .footer-wrap {
        padding: 40px 24px;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-bottom: 48px;
      }

      .fg-brand {
        grid-column: span 2;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      * {
        transition: none !important;
      }
    }

.legal-content {
  text-align: left;
  max-width: 1100px;
  margin: 0 auto;
  padding: 140px 40px 80px 40px;
  color: var(--text-dim);
  line-height: 1.7;
  font-size: 16px;
  font-family: 'Google Sans', sans-serif;
}
.legal-content h1 {
  font-size: 64px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -1.5px;
}
.legal-content h2 {
  font-size: 28px;
  font-weight: 400;
  color: var(--text);
  margin-top: 56px;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.legal-content p {
  margin-bottom: 16px;
}
.legal-content ul {
  margin-bottom: 24px;
  padding-left: 24px;
}
.legal-content li {
  margin-bottom: 8px;
}
.legal-content a {
  color: #1A73E8;
  text-decoration: none;
}
.legal-content a:hover {
  text-decoration: underline;
}
