:root {
  --pilot-500: #0a84e8;
  --pilot-700: #075fae;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-900: #0f172a;
  --slate-950: #020617;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--slate-950);
  background: #f8fafc;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }

.nav {
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid var(--slate-200);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.brand-avatar {
  height: 96px;
  width: 96px;
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--slate-200);
  box-shadow: 0 1px 4px rgba(15,23,42,.10);
  flex: 0 0 auto;
}
.brand-avatar img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
}
.brand-title {
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.065em;
  font-weight: 900;
}
.brand-title span { color: var(--pilot-500); }

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  color: var(--slate-600);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--slate-950); }

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.nav-button {
  border-radius: 999px;
  background: var(--slate-950);
  color: white;
  padding: 10px 17px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 1px 5px rgba(15,23,42,.16);
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f5f9fd 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,.96) 36%, rgba(255,255,255,.68) 53%, rgba(255,255,255,0) 73%),
    url("hero-wide.png") right center / auto 100% no-repeat;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  min-height: 720px;
  margin: 0 auto;
  padding: 72px 24px 80px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  gap: 42px;
  align-items: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: #fef3c7;
  border: 1px solid #f6d365;
  color: #312200;
  padding: 8px 13px;
  font-size: 13px;
  font-weight: 800;
}
h1 {
  margin: 0;
  max-width: 670px;
  font-size: clamp(58px, 7vw, 92px);
  line-height: .87;
  letter-spacing: -0.078em;
  font-weight: 900;
}
.lead {
  max-width: 670px;
  margin: 26px 0 22px;
  color: var(--slate-700);
  font-size: 20px;
  line-height: 1.65;
}
.notice {
  max-width: 620px;
  border-left: 5px solid var(--pilot-700);
  border-radius: 14px;
  background: rgba(255,255,255,.96);
  padding: 18px 20px;
  box-shadow: 0 18px 44px rgba(15,23,42,.08);
  color: var(--slate-700);
  font-size: 16px;
}
.countdown {
  max-width: 620px;
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(135deg, #020817, #063065);
  color: white;
  box-shadow: 0 24px 56px rgba(15,23,42,.20);
}
.count-item {
  padding: 22px 14px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.14);
}
.count-item:last-child { border-right: 0; }
.count-number {
  display: block;
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
}
.count-label {
  display: block;
  margin-top: 8px;
  color: var(--slate-300);
  font-size: 14px;
  font-weight: 800;
}

.hero-card-wrap {
  justify-self: end;
  width: min(100%, 465px);
  border-radius: 2rem;
  border: 1px solid var(--slate-200);
  background: white;
  padding: 20px;
  box-shadow: 0 26px 80px rgba(15,23,42,.24);
}
.hero-card {
  border-radius: 1.5rem;
  background: var(--slate-950);
  color: white;
  padding: 26px;
}
.card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}
.card-head-avatar {
  height: 40px;
  width: 40px;
  border-radius: 999px;
  overflow: hidden;
  background: white;
  border: 1px solid var(--slate-200);
}
.card-head-avatar img { width: 100%; height: 100%; object-fit: cover; display:block; }

.card-avatar-large {
  margin-top: 34px;
  display: flex;
  justify-content: center;
}
.card-avatar-large span {
  height: 224px;
  width: 224px;
  display: block;
  overflow: hidden;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--slate-200);
  box-shadow: 0 1px 4px rgba(255,255,255,.18);
}
.card-avatar-large img { height:100%; width:100%; object-fit:cover; display:block; }

.card-message {
  margin-top: 34px;
  border-radius: 18px;
  background: rgba(255,255,255,.10);
  padding: 20px;
}
.card-message strong {
  display: block;
  font-size: 18px;
  line-height: 1.18;
  font-weight: 900;
}
.card-message p {
  margin: 8px 0 0;
  color: var(--slate-300);
  font-size: 14px;
}
.steps {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}
.step {
  border-radius: 18px;
  background: rgba(255,255,255,.10);
  padding: 16px;
  font-size: 14px;
}
.step strong { display:block; }
.step span {
  display:block;
  margin-top: 3px;
  color: var(--slate-300);
}

.section {
  background: white;
  padding: 70px 24px 74px;
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section h2 {
  margin: 0 0 38px;
  text-align: center;
  font-size: 40px;
  line-height: 1.05;
  letter-spacing: -0.055em;
  font-weight: 900;
}
.section h2::after {
  content:"";
  display:block;
  height:3px;
  width:54px;
  border-radius:999px;
  background: var(--pilot-500);
  margin: 16px auto 0;
}
.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 42px;
}
.info-card {
  position: relative;
  border: 1px solid var(--slate-200);
  border-radius: 24px;
  background: white;
  padding: 54px 34px 34px;
  box-shadow: 0 14px 36px rgba(15,23,42,.045);
}
.info-icon {
  position:absolute;
  top:-30px;
  left:50%;
  transform:translateX(-50%);
  width:66px;
  height:66px;
  border-radius:999px;
  background:#e8f3ff;
  display:grid;
  place-items:center;
  font-size:30px;
}
.info-card h3 {
  margin:0 0 14px;
  text-align:center;
  font-size:24px;
  letter-spacing:-.03em;
}
.info-card p {
  margin:0 0 18px;
  color:var(--slate-600);
}
.info-card ul {
  list-style:none;
  padding:0;
  margin:0;
  color:var(--slate-800);
  font-weight:700;
}
.info-card li { margin:10px 0; }
.info-card li::before {
  content:"✓";
  color:var(--pilot-500);
  margin-right:10px;
  font-weight:900;
}

.follow {
  padding: 34px 24px;
  background: linear-gradient(90deg, #eef6ff, #ffffff);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}
.follow-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 78px 1fr auto;
  gap: 26px;
  align-items: center;
}
.plane { font-size: 52px; color: var(--pilot-500); }
.follow h3 { margin:0 0 6px; font-size:22px; }
.follow p { margin:0; color:var(--slate-700); font-size:17px; }
.linkedin {
  min-width: 280px;
  display:inline-flex;
  justify-content:center;
  align-items:center;
  border:2px solid var(--pilot-500);
  color:var(--pilot-700);
  border-radius:10px;
  padding:14px 18px;
  font-weight:900;
  background:white;
}

.footer {
  background: linear-gradient(135deg, #041633, #06274f);
  color: var(--slate-300);
}
.footer-inner {
  max-width: 1280px;
  margin:0 auto;
  padding: 28px 24px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  font-size:14px;
}
.footer-links {
  display:flex;
  gap:34px;
  color:white;
}

.legal-page { background: var(--slate-50); }
.legal-wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 52px 24px 80px;
}
.legal-box {
  border:1px solid var(--slate-200);
  border-radius:28px;
  background:white;
  padding:34px;
  box-shadow:0 16px 40px rgba(15,23,42,.05);
}
.legal-box h1 {
  max-width:none;
  font-size:46px;
  letter-spacing:-.055em;
  line-height:1.05;
}
.legal-box h2 { margin-top:30px; }
.legal-box p { color:var(--slate-700); }

@media (max-width: 1120px) {
  .nav-inner { grid-template-columns: auto auto; }
  .nav-links { display:none; }
  .hero::after {
    background:
      linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,.96) 58%, rgba(255,255,255,.25) 100%),
      url("hero-wide.png") right top / auto 55% no-repeat;
  }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card-wrap { justify-self:center; }
}
@media (max-width: 720px) {
  .nav-inner { padding:14px 18px; }
  .brand-avatar { height:56px; width:56px; }
  .brand-title { font-size:28px; }
  .nav-button { display:none; }
  .hero-inner { min-height:auto; padding:44px 18px 54px; }
  h1 { font-size:54px; }
  .lead { font-size:18px; }
  .countdown { grid-template-columns: repeat(2, 1fr); }
  .count-item:nth-child(2) { border-right:0; }
  .count-item:nth-child(1), .count-item:nth-child(2) { border-bottom:1px solid rgba(255,255,255,.14); }
  .hero-card-wrap { padding:12px; }
  .hero-card { padding:18px; }
  .card-avatar-large span { width:176px; height:176px; }
  .cards { grid-template-columns:1fr; gap:58px; }
  .follow-inner { grid-template-columns:1fr; text-align:center; }
  .footer-inner { flex-direction:column; text-align:center; }
}

/* final update */
.nav-actions { display: none !important; }
.nav-inner { grid-template-columns: auto 1fr; }
.nav-links { justify-content: flex-end; }

.deep-section {
  background: #f8fafc;
  padding: 76px 24px;
  border-top: 1px solid var(--slate-200);
}
.deep-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 34px;
}
.deep-panel {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 34px;
  align-items: start;
  border: 1px solid var(--slate-200);
  border-radius: 32px;
  background: white;
  padding: 34px;
  box-shadow: 0 18px 48px rgba(15,23,42,.045);
}
.deep-panel.alt { grid-template-columns: 1.08fr .92fr; }
.deep-eyebrow {
  margin: 0 0 10px;
  color: var(--pilot-700);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.deep-panel h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 900;
}
.deep-lead {
  margin: 18px 0 0;
  color: var(--slate-700);
  font-size: 18px;
  line-height: 1.7;
}
.muted-note {
  margin-top: 18px;
  color: var(--slate-500);
  font-size: 14px;
}
.deep-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.deep-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  font-weight: 800;
  border: 1px solid var(--slate-200);
  background: white;
}
.deep-btn.primary {
  background: var(--pilot-700);
  color: white;
  border-color: var(--pilot-700);
}
.deep-btn.dark {
  background: var(--slate-950);
  color: white;
  border-color: var(--slate-950);
}
.steps-list {
  display: grid;
  gap: 12px;
}
.mini-step {
  border-radius: 18px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  padding: 16px;
}
.mini-step strong {
  display: block;
  margin-bottom: 4px;
  color: var(--slate-950);
}
.mini-step span {
  display: block;
  color: var(--slate-600);
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}
.benefit {
  border-radius: 18px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  padding: 18px;
}
.benefit strong {
  display: block;
  margin-bottom: 6px;
  color: var(--slate-950);
}
.benefit span {
  color: var(--slate-600);
}
.partner-note {
  margin-top: 18px;
  display: inline-flex;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--pilot-700);
  padding: 9px 13px;
  font-size: 14px;
  font-weight: 800;
}
@media (max-width: 920px) {
  .deep-panel, .deep-panel.alt { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr; }
  .nav-links { display:none; }
}


/* polishing pass */
.nav-inner {
  grid-template-columns: auto 1fr !important;
}
.nav-links {
  justify-content: flex-end !important;
  gap: 28px !important;
}
.nav-actions {
  display: none !important;
}
.hero-inner {
  padding-top: 86px !important;
  padding-bottom: 94px !important;
}
.hero-card-wrap {
  transform: translateY(10px);
}
.deep-section {
  background:
    radial-gradient(circle at 15% 10%, rgba(10,132,232,.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
}
.deep-panel {
  position: relative;
  overflow: hidden;
}
.deep-panel::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background: rgba(10,132,232,.08);
}
.deep-panel.alt::before {
  left: -80px;
  right: auto;
}
.deep-panel > * {
  position: relative;
  z-index: 1;
}
.deep-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.deep-eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--pilot-500);
  box-shadow: 0 0 0 5px rgba(10,132,232,.12);
}
.mini-step,
.benefit {
  transition: transform .18s ease, box-shadow .18s ease;
}
.mini-step:hover,
.benefit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15,23,42,.06);
}
.footer-inner {
  justify-content: space-between !important;
}
@media (max-width: 720px) {
  .nav-inner {
    grid-template-columns: 1fr !important;
  }
  .nav-links {
    display: none !important;
  }
}
