.pilot-page {
  min-height: 100vh;
  background: var(--bg, #050507);
  color: var(--text, #f7f7fb);
}

.pilot-topbar,
.pilot-shell {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.pilot-topbar {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.pilot-shell {
  display: grid;
  gap: 24px;
  padding-block: 32px 48px;
}

.pilot-hero,
.pilot-panel,
.pilot-timeline,
.pilot-action-card {
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 22px;
  background: rgba(8, 8, 12, 0.92);
}

.pilot-hero {
  padding: clamp(24px, 5vw, 52px);
}

.pilot-hero h1 {
  max-width: 780px;
  margin: 14px 0 10px;
  font-size: clamp(2.25rem, 7vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.pilot-lead {
  max-width: 720px;
  margin: 0;
  color: #c8c8d4;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
}

.pilot-dates {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  overflow: hidden;
}

.pilot-dates div {
  min-width: 0;
  padding: 18px;
}

.pilot-dates div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.pilot-dates span,
.pilot-dates strong {
  display: block;
}

.pilot-dates span {
  margin-bottom: 5px;
  color: #a9a9b8;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.pilot-dates strong {
  overflow-wrap: anywhere;
  font-size: 1rem;
}

.pilot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.pilot-panel,
.pilot-timeline,
.pilot-action-card {
  padding: clamp(22px, 4vw, 34px);
}

.pilot-panel h2,
.pilot-timeline h2,
.pilot-action-card h2 {
  margin: 6px 0 14px;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.pilot-panel ul {
  margin: 0;
  padding-left: 1.25rem;
}

.pilot-panel li + li {
  margin-top: 9px;
}

.pilot-panel.caution {
  border-color: rgba(255, 221, 0, 0.65);
}

.pilot-timeline {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: 28px;
  align-items: start;
}

.pilot-timeline ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pilot-timeline li {
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
}

.pilot-timeline strong,
.pilot-timeline span {
  display: block;
}

.pilot-timeline strong {
  color: var(--brand-accent, #7774ff);
  margin-bottom: 4px;
}

.pilot-action-card {
  display: grid;
  gap: 18px;
}

.pilot-consent {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 14px;
  cursor: pointer;
}

.pilot-consent input {
  width: 22px;
  height: 22px;
  margin: 2px 0 0;
  accent-color: var(--brand-accent, #7774ff);
}

.pilot-consent strong,
.pilot-consent small {
  display: block;
}

.pilot-consent small {
  margin-top: 5px;
  color: #bdbdcc;
  line-height: 1.45;
}

.pilot-action-card .signup-submit {
  width: min(100%, 460px);
}

@media (max-width: 760px) {
  .pilot-topbar,
  .pilot-shell {
    width: min(100% - 20px, 680px);
  }

  .pilot-topbar {
    min-height: 64px;
  }

  .pilot-shell {
    gap: 14px;
    padding-block: 14px 86px;
  }

  .pilot-hero,
  .pilot-panel,
  .pilot-timeline,
  .pilot-action-card {
    border-radius: 16px;
    padding: 18px;
  }

  .pilot-grid,
  .pilot-timeline {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pilot-dates {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pilot-dates div {
    padding: 12px 10px;
  }

  .pilot-dates strong {
    font-size: 0.84rem;
    line-height: 1.3;
  }

  .pilot-timeline ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 430px) {
  .pilot-hero h1 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .pilot-dates {
    grid-template-columns: 1fr;
  }

  .pilot-dates div + div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .pilot-timeline ol {
    grid-template-columns: 1fr 1fr;
  }
}
