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

:root {
  --bg: #0a0a0a;
  --bg2: #111111;
  --border: #1e1e1e;
  --text: #e8e8e8;
  --muted: #666;
  --accent: #22c55e;
  --accent-dim: rgba(34, 197, 94, 0.12);
}

html { scroll-behavior: smooth; scroll-padding-top: 5.5rem; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  border-bottom: 1px solid var(--border);
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
}
.logo img { width: 32px; height: 32px; flex-shrink: 0; }
.logo-text {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.logo-text span { color: var(--accent); }

.hero-logo {
  width: 72px;
  height: 72px;
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 24px rgba(34, 197, 94, 0.25));
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s;
}
.nav-link:hover,
.nav-link.is-current { color: var(--text); }

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.lang-switcher button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  padding: 0.25rem 0.4rem;
  border-radius: 4px;
  letter-spacing: 0.04em;
  transition: color 0.15s, background 0.15s;
}

.lang-switcher button:hover { color: var(--text); }
.lang-switcher button.active { color: var(--accent); }

.lang-sep {
  font-size: 0.7rem;
  color: #333;
  user-select: none;
}

nav a.cta {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  padding: 0.45rem 1rem;
  border: 1px solid var(--accent);
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
nav a.cta:hover { background: var(--accent); color: #000; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 1.5rem 4rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(34, 197, 94, 0.25);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.pilot-now {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 2rem;
}

h1 {
  font-size: clamp(2.4rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
  max-width: 820px;
  margin-bottom: 1.5rem;
}
h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #22c55e 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 3rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-primary { background: var(--accent); color: #000; }
.btn-primary:hover { background: #16a34a; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: #444; }

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 7rem 1.5rem;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 600px;
  margin-bottom: 1.5rem;
}

.section-desc {
  color: var(--muted);
  max-width: 500px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 4rem;
}

.step {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: border-color 0.2s;
}
.step:hover { border-color: #333; }

.step-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.step h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}
.step p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

.who {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.who .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 7rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 700px) {
  .who .inner { grid-template-columns: 1fr; gap: 3rem; }
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.tag {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
}

.quote-block {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
}
.quote-text {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.quote-author { font-size: 0.85rem; color: var(--muted); }

.cta-band {
  max-width: 1100px;
  margin: 0 auto;
  padding: 7rem 1.5rem;
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.cta-band p { color: var(--muted); font-size: 1.05rem; margin-bottom: 2.5rem; }

.access-form {
  max-width: 420px;
  margin: 0 auto 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
}
.access-form label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: -0.35rem;
}
.access-form input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}
.access-form input::placeholder { color: #444; }
.access-form input:focus {
  outline: none;
  border-color: rgba(34, 197, 94, 0.5);
}
.access-form input.invalid { border-color: #f87171; }
.access-form input.invalid:focus { border-color: #f87171; }
.access-form .btn { width: 100%; justify-content: center; margin-top: 0.25rem; }
.access-form .btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-status {
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.5;
}
.form-status.success { color: var(--accent); }
.form-status.error { color: #f87171; }

.cta-alt {
  font-size: 0.85rem;
  color: var(--muted);
}
.cta-alt a {
  color: var(--accent);
  text-decoration: none;
  margin-left: 0.35rem;
}
.cta-alt a:hover { text-decoration: underline; }

.resto-band {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
  text-align: center;
  border-top: 1px solid var(--border);
}
.resto-band p {
  color: var(--muted);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.clips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 900px;
}
.clips.featured {
  grid-template-columns: minmax(220px, 320px);
  margin-left: auto;
  margin-right: auto;
  justify-items: center;
}

.clip {
  margin: 0;
}
.clip-frame {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
}
.clip-frame img,
.clip-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.clip figcaption {
  margin-top: 0.85rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.clip figcaption strong {
  display: block;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.page-clips { padding-bottom: 6.5rem; }

.not-found {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 1.5rem 4rem;
}
.not-found h1 { font-size: clamp(2rem, 5vw, 3rem); }
.not-found p { color: var(--muted); max-width: 420px; margin-bottom: 2rem; }

footer {
  border-top: 1px solid var(--border);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
footer p { font-size: 0.8rem; color: var(--muted); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a {
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }

@media (max-width: 720px) {
  nav { padding: 1rem 1.25rem; }
  .nav-right { gap: 0.65rem; }
  nav a.cta { font-size: 0.78rem; padding: 0.4rem 0.75rem; }
  .nav-link { font-size: 0.75rem; }
  .logo-text { display: none; }
}
