
    :root {
      --primary: #003C75;
      --primary-light: #4A90D9;
      --accent: #FFD700;
      --accent-hover: #E5C200;
      --background: #121212;
      --surface: #1C1C1E;
      --surface-elevated: #242426;
      --card-bg: #1C1C1E;
      --text-dark: #F0F0F0;
      --text-body: #D8D8D8;
      --text-muted: #B0B0B0;
      --border: #2A2A2C;
      --button-bg: #2A2A2C;
      --button-hover: #3A3A3C;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
      background-color: var(--background);
      color: var(--text-body);
      line-height: 1.6;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    a {
      color: var(--primary-light);
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }

    /* Header */
    header {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      z-index: 10;
      background-color: rgba(28, 28, 30, 0.85);
      color: #FFFFFF;
      padding: 16px;
      text-align: center;
    }

    .header-content {
      max-width: 680px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .header-logo {
      height: 48px;
      width: auto;
      border-radius: 8px;
    }

    header h1 {
      font-size: 1.5rem;
      font-weight: 500;
      margin-bottom: 0;
    }

    /* Main */
    main {
      flex: 1;
      max-width: 800px;
      margin: 0 auto;
      padding: 0 16px;
      width: 100%;
    }

    /* Hero */
    .hero {
      padding: 0;
      text-align: center;
    }

    .hero-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 32px;
      padding: 54px;
    }

    .hero-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      order: 1;
      padding-top: 80px;
    }

    .hero-heading {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 12px;
    }

    .hero-subheading {
      font-size: 1.1rem;
      color: var(--text-body);
      max-width: 500px;
      margin: 0 0 24px;
    }

    .hero-image-wrapper {
      order: 2;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .hero-cta-group {
      order: 3;
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
    }

    .cta-button {
      display: inline-block;
      padding: 16px;
      font-size: 1rem;
      font-weight: 600;
      font-family: inherit;
      background-color: #FF9F05;
      color: #1A1A1A;
      border: none;
      border-radius: 12px;
      box-shadow: none;
      cursor: pointer;
      text-decoration: none;
      transition: background-color 0.2s ease, transform 0.1s ease;
      width: 100%;
      max-width: 320px;
      text-align: center;
    }

    .cta-button:hover {
      background-color: #E58E04;
      text-decoration: none;
      transform: translateY(-1px);
    }

    .cta-button:active {
      transform: translateY(0);
    }

    .platform-indicators {
      margin-top: 16px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }

    .platform-icons {
      display: flex;
      gap: 12px;
      align-items: center;
      justify-content: center;
    }

    .platform-icons svg {
      width: 20px;
      height: 20px;
      fill: var(--text-muted);
      opacity: 0.6;
    }

    .platform-text {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin: 0;
    }

    /* Features */
    .features {
      padding: 24px 0 48px;
    }

    .features h2 {
      text-align: center;
      font-size: 2.25rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 32px;
    }

    .features-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .feature-card {
      background-color: var(--card-bg);
      border-radius: 12px;
      padding: 24px;
      border: 1px solid var(--border);
    }

    .feature-card img {
      width: 100%;
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 16px;
      display: block;
    }

    .feature-card h3 {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 8px;
      text-align: center;
    }

    .feature-card p {
      font-size: 0.95rem;
      color: var(--text-muted);
      margin: 0;
    }

    /* Subscribe - Conversion Section */
    .subscribe {
      margin-left: calc(-50vw + 50%);
      margin-right: calc(-50vw + 50%);
      padding: 64px 24px;
      text-align: center;
      background: linear-gradient(180deg, var(--background) 0%, #181819 35%, #181819 65%, var(--background) 100%);
    }

    .subscribe-inner {
      max-width: 540px;
      margin: 0 auto;
    }

    .subscribe-logo {
      width: 128px;
      height: auto;
      border-radius: 10px;
      margin-bottom: 20px;
    }

    .subscribe h2 {
      font-size: 2.75rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 12px;
    }

    .subscribe p {
      font-size: 1.05rem;
      color: var(--text-muted);
      margin-bottom: 28px;
      line-height: 1.5;
    }

    .subscribe-form {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .subscribe-form input[type="email"] {
      width: 100%;
      padding: 16px;
      font-size: 1rem;
      border: 1px solid var(--border);
      border-radius: 12px;
      font-family: inherit;
      background-color: var(--surface-elevated);
      color: var(--text-dark);
      min-height: 52px;
    }

    .subscribe-form input[type="email"]:focus {
      outline: none;
      border-color: #FF9F05;
      box-shadow: 0 0 0 3px rgba(255, 159, 5, 0.15);
    }

    .subscribe-form input[type="email"]::placeholder {
      color: var(--text-muted);
    }

    .subscribe-form button {
      width: 100%;
      padding: 16px;
      font-size: 1rem;
      font-weight: 600;
      font-family: inherit;
      background-color: #FF9F05;
      color: #1A1A1A;
      border: none;
      border-radius: 12px;
      box-shadow: none;
      cursor: pointer;
      min-height: 52px;
      transition: background-color 0.2s ease, opacity 0.2s ease;
    }

    .subscribe-form button:hover:not(:disabled) {
      background-color: #E58E04;
    }

    .subscribe-form button:disabled {
      opacity: 0.7;
      cursor: not-allowed;
    }

    .form-message {
      padding: 12px 16px;
      border-radius: 12px;
      font-size: 0.95rem;
      margin-top: 16px;
      display: none;
    }

    .form-message.success {
      background-color: rgba(40, 167, 69, 0.15);
      color: #28A745;
      border: 1px solid rgba(40, 167, 69, 0.3);
      display: block;
    }

    .form-message.error {
      background-color: rgba(229, 57, 53, 0.15);
      color: #E53935;
      border: 1px solid rgba(229, 57, 53, 0.3);
      display: block;
    }

    .subscribe-form.hidden {
      display: none;
    }

    /* Honeypot field - must be invisible to users */
    .hp-field {
      position: absolute;
      left: -9999px;
      opacity: 0;
      pointer-events: none;
      height: 0;
      width: 0;
      overflow: hidden;
    }

    /* Contact */
    .contact {
      padding: 48px 0;
      text-align: center;
    }

    .contact-card {
      background-color: var(--card-bg);
      border-radius: 12px;
      padding: 32px 24px;
      border: 1px solid var(--border);
      max-width: 680px;
      margin: 0 auto;
    }

    .contact h2 {
      font-size: 2.25rem;
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 16px;
    }

    .contact p {
      font-size: 0.95rem;
      margin-bottom: 12px;
    }

    .contact p:last-child {
      margin-bottom: 0;
    }

    .contact a {
      color: var(--primary-light);
    }

    /* Privacy Policy */
    .page-privacy main {
      max-width: 1140px;
      padding-top: 128px;
      padding-bottom: 32px;
    }

    .effective-date {
      color: var(--text-muted);
      font-size: 0.9rem;
      margin-bottom: 16px;
    }

    .intro {
      margin-bottom: 24px;
      font-size: 1rem;
    }

    .section {
      background-color: var(--card-bg);
      border-radius: 12px;
      padding: 20px;
      margin-bottom: 16px;
      border: 1px solid var(--border);
    }

    .section h2 {
      color: var(--text-dark);
      font-size: 1.125rem;
      font-weight: 600;
      margin-bottom: 12px;
    }

    .section p {
      margin-bottom: 12px;
      font-size: 0.95rem;
      color: var(--text-muted);
    }

    .section p:last-child {
      margin-bottom: 0;
    }

    .section ul {
      margin: 8px 0 12px 20px;
      font-size: 0.95rem;
    }

    .section ul:last-child {
      margin-bottom: 0;
    }

    .section li {
      margin-bottom: 6px;
    }

    /* Footer */
    footer {
      background-color: var(--surface);
      color: var(--text-muted);
      padding: 40px 24px 32px;
      text-align: center;
      border-top: 1px solid var(--border);
    }

    .footer-content {
      max-width: 680px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .footer-logo {
      width: 28px;
      height: 28px;
      border-radius: 6px;
    }

    .footer-brand-name {
      font-size: 1rem;
      font-weight: 500;
      color: var(--text-dark);
    }

    .footer-links {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .footer-links a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.875rem;
      transition: color 0.2s ease;
    }

    .footer-links a:hover {
      color: var(--text-dark);
      text-decoration: none;
    }

    .footer-copyright {
      font-size: 0.8rem;
      opacity: 0.6;
      margin: 0;
    }

    /* Tablet */
    @media (min-width: 600px) {
      header {
        padding: 40px 24px;
      }

      header h1 {
        font-size: 2.5rem;
      }

      main {
        padding: 0 24px;
      }

      .hero {
        padding: 0px 0;
        max-height: 85vh;
        background-image: url('images/website-hero.png');
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
      }

      .hero-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
      }

      .hero-content {
        flex: 1;
        align-items: flex-start;
        text-align: left;
        order: 1;
      }

      .hero-heading {
        font-size: 2.75rem;
      }

      .hero-subheading {
        font-size: 1.15rem;
      }

      .hero-image-wrapper {
        flex: 0 0 auto;
        order: 2;
      }

      .hero-cta-group {
        order: 3;
        align-items: flex-start;
        width: auto;
      }

      .cta-button {
        width: auto;
      }

      .platform-indicators {
        align-items: flex-start;
      }

      .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
      }

      .feature-card {
        padding: 28px;
      }

      .subscribe {
        padding: 80px 32px;
      }

      .subscribe-form {
        flex-direction: row;
      }

      .subscribe-form input[type="email"] {
        flex: 7;
      }

      .subscribe-form button {
        flex: 3;
        width: auto;
      }
    }

    /* Desktop */
    @media (min-width: 900px) {
      header {
        padding: 20px;
      }

      header h1 {
        font-size: 2rem;
        font-weight: 500;
      }

      main {
        max-width: 960px;
        padding: 0 32px;
      }

      .hero {
        padding: 20px 0;
      }

      .hero-container {
        gap: 60px;
      }

      .hero-heading {
        font-size: 3rem;
      }

      .hero-subheading {
        font-size: 2rem;
        max-width: 440px;
      }

      .features {
        padding: 32px 0;
      }

      .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
      }

      .feature-card {
        padding: 24px 20px;
      }

      .subscribe {
        padding: 32px 40px;
      }

      .subscribe h2 {
        font-size: 3rem;
      }

      .subscribe-inner {
        max-width: 600px;
      }

      .contact {
        padding: 32px 0;
      }
    }

    /* Large Desktop */
    @media (min-width: 1200px) {
      main {
        max-width: 1200px;
        padding: 0 40px;
      }

      .hero-heading {
        font-size: 3.25rem;
      }

      .subscribe-inner {
        max-width: 640px;
      }
    }

    /* Small Mobile */
    @media (max-width: 480px) {
      .section {
        padding: 16px;
        border-radius: 8px;
      }

      .section h2 {
        font-size: 1.05rem;
      }

      .section p,
      .section ul {
        font-size: 0.9rem;
      }
    }
