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

    :root {
      --black: #000000;
      --white: #ffffff;
      --off: #888888;
      --border: rgba(255,255,255,0.10);
      --font-size-title: clamp(36px, 10vw, 96px);
      --font-title: 'Black Ops One', cursive;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--black);
      color: var(--white);
      font-family: 'Space Grotesk', sans-serif;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
      min-height: 100svh;
      display: flex;
      flex-direction: column;
    }

    nav {
      position: sticky;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 48px;
      background: var(--black);
      border-bottom: 1px solid var(--border);
    }

    .nav-logo a {
      display: block;
      line-height: 0;
    }

    .nav-logo img {
      height: clamp(20px, 4vw, 50px);
      width: auto;
      display: block;
      opacity: 0;
      animation: fadeUp 0.8s 0.1s ease forwards;
    }

    .nav-cta {
      opacity: 0;
      animation: fadeUp 0.8s 0.2s ease forwards;
      flex-shrink: 1;
      min-width: 0;
    }

    .btn-nav {
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 12px 24px;
      box-sizing: border-box;
      max-width: 100%;
    }

    .page {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 80px 48px 100px;
    }

    .page-inner {
      width: 100%;
      max-width: 640px;
      margin: 0 auto;
    }

    h1 {
      font-family: var(--font-title);
      font-weight: 400;
      font-size: var(--font-size-title);
      line-height: 1.0;
      letter-spacing: 0.01em;
      opacity: 0;
      animation: fadeUp 0.9s 0.45s ease forwards;
    }

    .line-draw {
      display: block;
      width: 0;
      height: 2px;
      background: var(--white);
      margin-top: 44px;
      animation: drawLine 1.2s 1.1s cubic-bezier(0.77,0,0.18,1) forwards;
    }

    .page-sub {
      margin-top: 48px;
      max-width: 52ch;
      font-size: clamp(18px, 2vw, 22px);
      font-weight: 300;
      line-height: 1.65;
      color: rgba(255,255,255,0.6);
      opacity: 0;
      animation: fadeUp 0.7s 0.85s ease forwards;
    }

    .join-form {
      margin-top: 56px;
      opacity: 0;
      animation: fadeUp 0.7s 1.0s ease forwards;
    }

    .form-field {
      margin-bottom: 40px;
    }

    .form-label {
      display: block;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--off);
      margin-bottom: 14px;
    }

    .form-label-optional {
      font-weight: 300;
      text-transform: none;
      letter-spacing: 0.04em;
      color: rgba(255,255,255,0.3);
    }

    .form-input,
    .form-textarea {
      width: 100%;
      background: transparent;
      border: none;
      border-bottom: 1px solid var(--border);
      color: var(--white);
      font-family: 'Space Grotesk', sans-serif;
      font-size: 16px;
      font-weight: 300;
      padding: 14px 0;
      outline: none;
      transition: border-color 0.2s;
    }

    .form-input::placeholder,
    .form-textarea::placeholder {
      color: rgba(255,255,255,0.25);
    }

    .form-input:focus,
    .form-textarea:focus {
      border-color: rgba(255,255,255,0.45);
    }

    .form-textarea {
      min-height: 140px;
      resize: vertical;
      line-height: 1.65;
    }

    .form-checks {
      margin-top: 8px;
      margin-bottom: 8px;
    }

    .form-check {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 22px;
    }

    .form-check input[type="checkbox"] {
      appearance: none;
      width: 18px;
      height: 18px;
      flex-shrink: 0;
      margin-top: 3px;
      border: 1px solid rgba(255,255,255,0.25);
      background: transparent;
      cursor: pointer;
      transition: border-color 0.2s, background 0.2s;
    }

    .form-check input[type="checkbox"]:checked {
      background: var(--white);
      border-color: var(--white);
    }

    .form-check-label {
      font-size: 14px;
      font-weight: 300;
      line-height: 1.55;
      color: rgba(255,255,255,0.55);
    }

    .form-check-label a {
      color: rgba(255,255,255,0.8);
      text-decoration: underline;
      text-underline-offset: 3px;
      transition: color 0.2s;
    }

    .form-check-label a:hover {
      color: var(--white);
    }

    .form-actions {
      margin-top: 48px;
    }

    .btn-primary {
      display: inline-block;
      background: var(--white);
      color: var(--black);
      font-family: 'Space Grotesk', sans-serif;
      font-size: 16px;
      font-weight: 500;
      letter-spacing: 0.02em;
      padding: 18px 40px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: background 0.2s, color 0.2s, transform 0.15s;
    }

    .btn-primary:hover {
      background: var(--off);
      transform: translateY(-1px);
    }

    .btn-primary:disabled {
      opacity: 0.35;
      cursor: not-allowed;
      transform: none;
    }

    .btn-primary:disabled:hover {
      background: var(--white);
      transform: none;
    }

    .footer-bottom {
      border-top: 1px solid var(--border);
      padding: 28px 48px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
    }

    .footer-bottom-left img {
      height: 28px;
      width: auto;
      opacity: 0.35;
    }

    .footer-bottom-right {
      font-size: 12px;
      color: rgba(255,255,255,0.22);
      letter-spacing: 0.04em;
    }

    .footer-legal {
      display: flex;
      gap: 20px;
      font-size: 12px;
    }

    .footer-legal a {
      color: rgba(255,255,255,0.35);
      text-decoration: none;
      letter-spacing: 0.04em;
      transition: color 0.2s;
    }

    .footer-legal a:hover { color: rgba(255,255,255,0.65); }

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

    @keyframes drawLine {
      to { width: min(560px, 65vw); }
    }

    @media (max-width: 768px) {
      nav {
        flex-wrap: wrap;
        gap: 12px 16px;
        padding: 24px;
      }
      .nav-cta {
        margin-left: auto;
      }
      .btn-nav {
        font-size: 11px;
        padding: 10px 14px;
        letter-spacing: 0.05em;
      }
      .page { padding: 60px 24px 80px; }
      .footer-bottom { padding: 24px; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation: none !important; opacity: 1 !important; }
      .line-draw { width: min(560px, 65vw); }
    }