    :root {
      --footer-bg: #ffffff;
      --footer-text: #111111;
      --accent: #ffffff;
    }

    * {
      box-sizing: border-box;
    }

    html, body {
      height: 100%;
      background: #ffffff;
    }
 
    body {
      margin: 0;
      height: 100vh;
      display: flex;
      flex-direction: column;
      background: #ffffff;
      font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
      overflow: hidden;
    }

    .skip-link {
      position: absolute;
      left: -999px;
      top: 16px;
      background: #000000;
      color: #ffffff;
      padding: 8px 12px;
      border-radius: 6px;
      text-decoration: none;
      z-index: 10;
    }

    .skip-link:focus {
      left: 16px;
    }

    .sr-only {
      border: 0;
      clip: rect(0 0 0 0);
      height: 1px;
      margin: -1px;
      overflow: hidden;
      padding: 0;
      position: absolute;
      width: 1px;
      white-space: nowrap;
    }

    .site-header {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 0;
    }

    main {
      flex: 1;
      min-height: 0;
      display: flex;
      justify-content: center;
      align-items: flex-start;
      position: relative;
      overflow: hidden;
    }

    .hero-panel {
      flex: 1;
      position: relative;
      display: flex;
      justify-content: center;
      align-items: flex-start;
      overflow: hidden;
      width: 100%;
      height: 100%;
      min-height: 0;
    }

    .hero {
      height: 100%;
      display: block;
    }

    .hero-image {
      display: block;
      height: 100%;
      width: auto;
    }

    .waitlist-form {
      position: absolute;
      left: 42%;
      bottom: 12%;
      transform: translateX(-50%);
      display: grid;
      gap: 10px;
      width: min(480px, 88vw);
      padding: 16px 18px;
      background: #f2f2f2;
      border-radius: 18px;
      border: 1px solid rgba(0, 0, 0, 0.12);
      box-shadow: 0 18px 32px rgba(0, 0, 0, 0.25);
      z-index: 2;
    }

    .form-head {
      display: grid;
      gap: 4px;
    }

    .form-head h2 {
      margin: 0;
      font-size: 1.05rem;
      font-weight: 600;
      color: #111111;
    }

    .form-head p {
      margin: 0;
      font-size: 0.9rem;
      color: #4b5563;
    }

    .input-row {
      display: flex;
      align-items: center;
      gap: 10px;
      background: #ffffff;
      border-radius: 999px;
      padding: 6px 8px;
      border: 1px solid rgba(0, 0, 0, 0.08);
    }

    .input-row input {
      flex: 1;
      border: none;
      background: transparent;
      padding: 6px 8px;
      font-size: 0.95rem;
      color: #1b1e22;
      outline: 2px solid transparent;
    }

    .input-row input::placeholder {
      color: #6b7380;
    }

    .input-row button {
      border: none;
      background: #111111;
      color: #ffffff;
      padding: 8px 16px;
      border-radius: 999px;
      font-size: 0.8rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      cursor: pointer;
    }

    .input-row input:focus-visible,
    .input-row button:focus-visible,
    .footer-link:focus-visible,
    .back-button:focus-visible,
    .skip-link:focus-visible {
      outline: 3px solid #ffd24d;
      outline-offset: 2px;
    }

    .form-note {
      margin: 0;
      font-size: 0.8rem;
      color: #4b5563;
    }

    .form-feedback {
      min-height: 0.9rem;
      font-size: 0.8rem;
      color: #0f5132;
    }

    .site-footer {
      padding: 16px 24px;
      background: var(--footer-bg);
      color: var(--footer-text);
      text-align: center;
      letter-spacing: 0.04em;
      font-size: 0.9rem;
    }

    .footer-content {
      max-width: 1100px;
      margin: 0 auto;
    }

    .footer-link {
      color: inherit;
      text-decoration: underline;
    }

    .footer-link:hover {
      color: #000000;
    }

    body.policy-page {
      height: auto;
      min-height: 100vh;
      overflow: auto;
      background: #ffffff;
      color: #111111;
    }

    .policy-header {
      padding: 24px 24px 0;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .brand-link {
      color: #ffffff;
      text-decoration: none;
      font-size: 1.1rem;
      letter-spacing: 0.04em;
    }

    .brand-link:hover {
      text-decoration: underline;
    }

    .back-button {
      position: absolute;
      left: 24px;
      top: 24px;
      display: inline-flex;
      align-items: center;
      padding: 6px 12px;
      border: 1px solid #3a3a3a;
      border-radius: 999px;
      color: #ffffff;
      text-decoration: none;
      font-size: 0.85rem;
    }

    .back-button:hover {
      border-color: #ffffff;
    }

    .policy-page main {
      flex: 1 0 auto;
      display: block;
      position: relative;
      overflow: visible;
    }

    .policy-main {
      padding: 32px 24px 64px;
    }

    .policy-content {
      max-width: 900px;
      margin: 0 auto;
      line-height: 1.6;
    }

    .policy-content h1 {
      margin: 0 0 8px;
      font-size: 2rem;
    }

    .policy-content h2 {
      margin: 28px 0 8px;
      font-size: 1.2rem;
    }

    .policy-content p {
      margin: 0 0 12px;
    }

    .policy-date {
      margin: 0 0 24px;
      color: #000000;
    }

    .policy-content ul {
      margin: 8px 0 16px 20px;
      padding: 0;
    }

    .policy-content a {
      color: #9cd3ff;
    }

    .policy-content a:hover {
      color: #cfe9ff;
    }

    body.policy-page .brand-link {
      color: #111111;
    }

    body.policy-page .back-button {
      color: #111111;
      border-color: #111111;
    }

    body.policy-page .back-button:hover {
      border-color: #000000;
    }

    body.policy-page .policy-content a {
      color: #111111;
    }

    body.policy-page .policy-content a:hover {
      color: #000000;
    }

    body.policy-page .site-footer {
      background: #ffffff;
      color: #111111;
    }

    @media (max-width: 600px) {
      body {
        height: 100svh;
      }

      .site-footer {
        font-size: 0.8rem;
        padding: 14px 16px;
      }

      .back-button {
        left: 16px;
        top: 20px;
      }

      .waitlist-form {
        width: min(360px, 90vw);
        padding: 14px 14px;
        gap: 8px;
        left: 50%;
        bottom: 16%;
      }

      .form-head h2 {
        font-size: 1rem;
      }

      .form-head p {
        font-size: 0.85rem;
      }

      .input-row input {
        font-size: 0.9rem;
      }

      .input-row button {
        padding: 7px 12px;
        font-size: 0.75rem;
      }
    }
