/* American Airlines — Flight attendant careers
   ============================================================ */

/* ---------- American Sans (licensed webfonts) ---------- */
@font-face {
  font-family: "American Sans";
  src: url("../fonts/AmericanSansW05-Light.woff2") format("woff2");
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "American Sans";
  src: url("../fonts/AmericanSansW05-Regular.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "American Sans";
  src: url("../fonts/AmericanSansW05-Medium.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "American Sans";
  src: url("../fonts/AmericanSansW05-Bold.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  /* Primary palette */
  --aa-blue:        #0078D2;
  --aa-dark-blue:   #00467F;
  --aa-light-gray:  #D0DAE0;
  --aa-dark-gray:   #36495A;
  --aa-black:       #131313;
  --aa-white:       #FFFFFF;
  /* Flagship red */
  --aa-red:         #C30019;

  /* Functional */
  --ink:            #1d2630;
  --ink-soft:       #4a5868;
  --line:           #e4e9ee;
  --bg:             #ffffff;
  --bg-alt:         #f4f7f9;
  --bg-navy:        #00467F;

  /* Layout */
  --nav-w:          272px;
  --nav-h:          64px;
  --maxw:           1080px;
  --radius:         14px;
  --radius-sm:      9px;
  --shadow:         0 1px 2px rgba(19,19,19,.04), 0 12px 32px rgba(19,19,19,.08);
  --shadow-sm:      0 1px 2px rgba(19,19,19,.05), 0 6px 18px rgba(19,19,19,.06);

  --font: "American Sans", "Helvetica Neue", Arial, system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--aa-dark-blue); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { color: var(--aa-dark-blue); line-height: 1.12; letter-spacing: -.01em; margin: 0 0 .5em; font-weight: 700; }
/* Two-tone headline accent */
.hl { color: var(--aa-blue); }
.hero .hl, .section--navy .hl { color: #7cc0f2; }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.22rem; font-weight: 700; }
p  { margin: 0 0 1.05em; color: var(--ink-soft); }
.eyebrow {
  font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--aa-blue); margin: 0 0 .9em;
}

/* ============================================================
   Left navigation (persistent on desktop, off-canvas on mobile)
   ============================================================ */
/* Desktop: horizontal top bar. Mobile (<=880px) restores an off-canvas drawer. */
.sidebar {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h);
  background: var(--bg-navy);
  color: #cfe0ef;
  display: flex; flex-direction: row; align-items: center;
  padding: 0 clamp(16px, 3vw, 34px);
  z-index: 60;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.sidebar__brand {
  display: flex; flex-direction: row; align-items: center; gap: 12px;
  padding: 0; margin-right: auto; color: #fff; text-decoration: none;
}
.sidebar__brand:hover { text-decoration: none; }
.brand-logo { width: 88px; height: auto; display: block; }
.brand-sub {
  font-weight: 600; font-size: .7rem; color: #9fc1de;
  letter-spacing: .08em; text-transform: uppercase;
  padding-left: 12px; border-left: 1px solid rgba(255,255,255,.18);
}

.sidebar__nav { display: flex; flex-direction: row; align-items: center; gap: 2px; padding: 0; }
.sidebar__nav a {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 13px; border-radius: 999px;
  color: #cfe0ef; font-weight: 600; font-size: .9rem; text-decoration: none;
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.sidebar__nav a .dot { display: none; }
.sidebar__nav a:hover { background: rgba(255,255,255,.10); color: #fff; }
.sidebar__nav a.is-active { background: #fff; color: var(--aa-dark-blue); }
.sidebar__nav a.is-active .dot { background: var(--aa-red); }

.sidebar__cta { display: none; }
.sidebar__foot { display: none; margin-top: auto; padding: 14px 24px 0; font-size: .72rem; color: #7fa6c8; }
.sidebar__foot a { color: #aecbe6; }

/* Mid-desktop: tighten the bar so all seven links fit */
@media (max-width: 1120px) {
  .brand-sub { display: none; }
  .sidebar__nav a { padding: 9px 10px; font-size: .84rem; }
}

/* mobile top bar */
.topbar {
  display: none;
  position: sticky; top: 0; z-index: 55;
  align-items: center; justify-content: space-between;
  background: var(--bg-navy); color: #fff; padding: 12px 16px;
}
.topbar b { font-weight: 700; }
.hamburger {
  width: 44px; height: 40px; border: 1px solid rgba(255,255,255,.3); border-radius: 9px;
  background: transparent; color: #fff; font-size: 1.3rem; cursor: pointer; display:grid; place-items:center;
}
.scrim { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 58; }

/* ============================================================
   Main content shell
   ============================================================ */
.shell { margin-left: 0; padding-top: var(--nav-h); }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px); }
.section { padding: clamp(54px, 7vw, 92px) 0; }
.section--alt { background: var(--bg-alt); }
.section--navy { position: relative; overflow: hidden; background: var(--bg-navy); color: #dce8f3; }
.section--navy > .container { position: relative; z-index: 2; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--navy p { color: #c3d6e8; }
.lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 60ch; }
.measure { max-width: 64ch; }
.center { text-align: center; margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  font-weight: 700; font-size: 1rem; cursor: pointer; border: 2px solid transparent;
  transition: transform .12s ease, box-shadow .15s, background .15s, color .15s;
  text-decoration: none; line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--primary { background: var(--aa-red); color: #fff; }
.btn--primary:hover { background: #a30015; color: #fff; box-shadow: 0 10px 26px rgba(195,0,25,.28); }
.btn--blue { background: var(--aa-blue); color: #fff; }
.btn--blue:hover { background: var(--aa-dark-blue); color: #fff; }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn--ghost:hover { background: rgba(255,255,255,.12); color: #fff; }
.btn--outline { background: #fff; color: var(--aa-dark-blue); border-color: var(--aa-light-gray); }
.btn--outline:hover { border-color: var(--aa-blue); color: var(--aa-dark-blue); }
.btn .arrow { transition: transform .15s; }
.btn:hover .arrow { transform: translateX(3px); }
.btn--block { width: 100%; justify-content: center; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; min-height: 72vh; display: flex; align-items: flex-end;
  color: #fff; overflow: hidden;
  background: linear-gradient(115deg, #003a6b 0%, #00467F 45%, #0061ad 100%);
}
.hero__media { position: absolute; inset: 0; }
.hero__media img,
.hero__media video { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(0deg, rgba(0,28,54,.9) 0%, rgba(0,28,54,.4) 34%, rgba(0,28,54,0) 58%),
    linear-gradient(90deg, rgba(0,42,79,.82) 0%, rgba(0,52,95,.5) 50%, rgba(0,52,95,.12) 100%);
}
.hero__inner { position: relative; z-index: 2; padding: 0 0 clamp(44px, 6vw, 76px); }
.hero h1 { color: #fff; max-width: 16ch; }
.hero p { color: #e4eef8; font-size: 1.2rem; max-width: 48ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
/* decorative image slot */
.slot {
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.04) 0 14px, rgba(255,255,255,.07) 14px 28px),
    linear-gradient(120deg, #0a3e6e, #0078D2);
  display: grid; place-items: center; color: rgba(255,255,255,.85);
  font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; text-align: center;
}
.slot small { display:block; opacity:.75; text-transform:none; letter-spacing:0; margin-top:4px; font-size:.72rem; }

/* ============================================================
   Reusable components
   ============================================================ */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm);
}
.card h3 { margin-bottom: .35em; }
.card p:last-child { margin-bottom: 0; }
.card__icon {
  width: 46px; height: 46px; border-radius: 12px; margin-bottom: 16px;
  background: #eaf3fb; color: var(--aa-blue); display: grid; place-items: center;
}
.card__icon svg { width: 24px; height: 24px; }
.card__icon img { width: 30px; height: 30px; object-fit: contain; }

/* media + text split */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.split--rev .split__media { order: 2; }
.split__media .frame { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow); }
.split__media .frame img { width:100%; height:100%; object-fit: cover; }

/* stat row */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.stat { text-align: center; padding: 8px; }
.stat b { display: block; font-size: clamp(2rem, 4vw, 2.8rem); color: var(--aa-dark-blue); font-weight: 700; line-height: 1; }
.section--navy .stat b { color: #fff; }
.stat span { font-size: .95rem; color: var(--ink-soft); }
.section--navy .stat span { color: #bcd2e6; }

/* checklist */
.ticks { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.ticks li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-soft); }
.ticks li::before {
  content: ""; flex: 0 0 auto; margin-top: 4px;
  width: 20px; height: 20px; border-radius: 50%;
  background: #e7f6ee url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2316a06a' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.honest li::before {
  background: #fdeef0 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C30019' stroke-width='3' stroke-linecap='round'%3E%3Cline x1='12' y1='8' x2='12' y2='13'/%3E%3Cline x1='12' y1='17' x2='12' y2='17'/%3E%3C/svg%3E") center / 13px no-repeat;
}

/* timeline (hiring journey) */
.timeline { position: relative; margin: 0; padding: 0; list-style: none; }
.timeline::before { content:""; position:absolute; left: 19px; top: 8px; bottom: 8px; width: 2px; background: var(--aa-light-gray); }
.timeline li { position: relative; padding: 0 0 30px 58px; }
.timeline li:last-child { padding-bottom: 0; }
.timeline .num {
  position: absolute; left: 0; top: 0; width: 40px; height: 40px; border-radius: 50%;
  background: var(--aa-blue); color: #fff; font-weight: 700; display: grid; place-items: center; z-index: 1;
}
.timeline h3 { margin-bottom: .25em; }
.timeline li > p { margin: .15em 0 0; font-size: .98rem; color: var(--ink-soft); }

/* testimonial */
.quote { display: flex; flex-direction: column; gap: 16px; }
.quote blockquote { margin: 0; font-size: 1.08rem; color: var(--ink); font-weight: 500; }
.quote .who { display: flex; align-items: center; gap: 12px; }
.quote .avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--aa-light-gray); flex:0 0 auto; overflow:hidden; display:grid; place-items:center; color:var(--aa-dark-gray); font-weight:700; }
.quote .who b { color: var(--aa-dark-gray); }
.quote .who span { display:block; font-size: .85rem; color: var(--ink-soft); }

/* FAQ accordion */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 20px 44px 20px 4px; position: relative;
  font-weight: 700; color: var(--aa-dark-gray); font-size: 1.05rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; font-weight: 400; color: var(--aa-blue); transition: transform .2s;
}
.faq details[open] summary::after { content: "\2013"; }
.faq details[open] summary { color: var(--aa-dark-blue); }
.faq .faq__body { padding: 0 4px 22px; color: var(--ink-soft); }
.faq .faq__body p:last-child { margin-bottom: 0; }

/* callout band */
.band {
  background: linear-gradient(120deg, #00335f, #0078D2);
  border-radius: 20px; padding: clamp(30px,4vw,52px); color: #fff;
  display: grid; grid-template-columns: 1.3fr .7fr; gap: 32px; align-items: center;
}
.band h2 { color: #fff; }
.band p { color: #d8e8f6; margin-bottom: 0; }
.band__cta { display: flex; flex-direction: column; gap: 12px; }

/* page footer */
.footer { background: var(--aa-black); color: #aebccb; padding: 40px 0; }
.footer .container { display: flex; flex-wrap: wrap; gap: 18px 40px; align-items: center; justify-content: space-between; }
.footer a { color: #d4e1ee; font-weight: 600; }
.footer .links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer small { color: #7e8e9e; }
.footer .social { display: flex; gap: 14px; align-items: center; }
.footer .social a { color: #aebccb; display: inline-flex; transition: color .15s, transform .12s; }
.footer .social a:hover { color: #fff; transform: translateY(-1px); text-decoration: none; }
.footer .social svg { width: 20px; height: 20px; display: block; }

/* Destinations grid */
.dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.dest { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4; box-shadow: var(--shadow-sm); }
.dest img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.dest:hover img { transform: scale(1.05); }
.dest figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 16px 16px 14px;
  color: #fff; font-weight: 700; font-size: 1.05rem; letter-spacing: -.01em;
  background: linear-gradient(transparent, rgba(0,30,60,.78));
}
@media (max-width: 880px) { .dest-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .dest-grid { grid-template-columns: 1fr; } }

/* Lifestyle strip */
.life-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.life-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
@media (max-width: 880px) { .life-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .life-grid { grid-template-columns: 1fr; } }

/* ===== Comparison matrix ===== */
.compare-scroll {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.compare { width: 100%; min-width: 880px; border-collapse: separate; border-spacing: 0; font-size: .95rem; }
.compare th, .compare td { padding: 15px 18px; border-bottom: 1px solid var(--line); text-align: center; vertical-align: middle; }
.compare thead th { background: var(--bg-navy); color: #fff; border-bottom: none; }
.compare thead th:first-child { border-top-left-radius: var(--radius); }
.compare thead th:last-child { border-top-right-radius: var(--radius); }
.compare .tier { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.compare .tier .n {
  width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.14); color: #cfe0ef; font-size: .72rem; font-weight: 700;
}
.compare .tier b { font-size: 1rem; color: #fff; }
.compare .rowhead {
  position: sticky; left: 0; z-index: 3; background: #fff; text-align: left;
  font-weight: 700; color: var(--aa-dark-gray); width: 188px; min-width: 188px; box-shadow: 1px 0 0 var(--line);
}
.compare thead .rowhead { background: var(--bg-navy); color: #fff; box-shadow: none; }
.compare tbody tr:nth-child(odd) td { background: #f6f9fb; }
.compare tbody tr:nth-child(odd) .rowhead { background: #f6f9fb; }
.compare td strong { display: block; font-weight: 600; color: var(--ink); }
.compare td small { display: block; font-size: .73rem; color: var(--ink-soft); margin-top: 3px; line-height: 1.35; }
/* Neutral data cells */
.compare td.yes strong { color: var(--ink); }
.compare td.no strong { color: var(--ink); }
.cmp-hint { display: none; font-size: .82rem; color: var(--ink-soft); margin-top: 12px; text-align: center; }
@media (max-width: 880px) { .cmp-hint { display: block; } }
/* featured (American) column */
.compare thead th.feat { background: var(--aa-red); }
.compare thead th.feat .feat-mark { width: 34px; height: auto; display: block; margin: 0 auto 5px; }
.compare thead th.feat .feat-tag {
  font-size: .64rem; text-transform: uppercase; letter-spacing: .1em; color: #fff;
  background: rgba(255,255,255,.22); padding: 2px 9px; border-radius: 999px;
}
/* American column: emphasized and sticky */
.compare .feat { position: sticky; left: 188px; z-index: 2; background: #f1f7fd; }
.compare tbody tr:nth-child(odd) td.feat { background: #e9f2fb; }
.compare thead th.feat { z-index: 4; }
.compare th.feat, .compare td.feat { box-shadow: inset 2px 0 0 var(--aa-red), inset -2px 0 0 var(--aa-red); }
.compare tbody tr:last-child td.feat { box-shadow: inset 2px 0 0 var(--aa-red), inset -2px 0 0 var(--aa-red), inset 0 -2px 0 var(--aa-red); }

.pad-top { margin-top: 40px; }
.mt-0 { margin-top: 0; }
.tag { display:inline-block; background:#eaf3fb; color:var(--aa-dark-blue); font-weight:700; font-size:.78rem; padding:5px 12px; border-radius:999px; letter-spacing:.03em; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .split, .band { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 880px) {
  .shell { margin-left: 0; padding-top: 0; }
  .topbar { display: flex; }
  .sidebar {
    flex-direction: column; align-items: stretch;
    top: 0; left: 0; bottom: 0; right: auto; height: auto;
    width: min(86vw, 320px);
    padding: 26px 0 18px;
    border-bottom: none; border-right: 1px solid rgba(255,255,255,.06);
    overflow-y: auto;
    transform: translateX(-100%); transition: transform .25s ease;
    box-shadow: 0 0 40px rgba(0,0,0,.4);
  }
  .sidebar__brand { flex-direction: column; align-items: flex-start; gap: 9px; padding: 4px 24px 20px; margin-right: 0; }
  .brand-logo { width: 112px; }
  .brand-sub { display: block; padding-left: 0; border-left: none; font-size: .74rem; }
  .sidebar__nav { flex-direction: column; padding: 8px 14px; gap: 2px; overflow-y: auto; }
  .sidebar__nav a { padding: 11px 14px; font-size: .98rem; border-radius: 10px; gap: 12px; }
  .sidebar__nav a .dot { display: block; width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.3); flex: 0 0 auto; }
  .sidebar__nav a.is-active .dot { background: var(--aa-red); }
  .sidebar__foot { display: block; }
  body.nav-open .sidebar { transform: translateX(0); }
  body.nav-open .scrim { display: block; }
}
@media (max-width: 620px) {
  .grid--2, .grid--3, .grid--4, .stats { grid-template-columns: 1fr; }
  .footer .container { flex-direction: column; align-items: flex-start; }
}

/* ===== Copy-doc components: pull-quote, fact list, reality checkpoint ===== */

/* Pull-quote (crew voice) */
.pullquote { max-width: 820px; margin: 0 auto; padding: 6px 0 6px 28px; border-left: 4px solid var(--aa-blue); }
.pullquote p { font-size: 1.5rem; line-height: 1.32; color: var(--aa-dark-blue); font-weight: 600; margin: 0; }
.pullquote cite { display: block; margin-top: 12px; font-size: .9rem; font-style: normal; color: var(--ink-soft); font-weight: 500; }
.section--navy .pullquote { border-left-color: #6fb6ec; }
.section--navy .pullquote p { color: #fff; }
.section--navy .pullquote cite { color: #bfe0fb; }

/* Fact list with graphic markers */
.factlist { list-style: none; margin: 1.4rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 30px; }
.factlist li { display: flex; gap: 13px; align-items: flex-start; font-size: 1.02rem; color: var(--ink); line-height: 1.4; }
.factlist li::before { content: ""; flex: 0 0 auto; width: 11px; height: 11px; margin-top: 6px; border-radius: 50%; background: var(--aa-blue); box-shadow: 0 0 0 4px rgba(0,120,210,.14); }
@media (max-width: 640px) { .factlist { grid-template-columns: 1fr; } }

/* Map-pin markers for the bases list */
.factlist--pins li::before {
  width: 15px; height: 19px; margin-top: 3px; border-radius: 0;
  background: no-repeat center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230078D2'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5A2.5 2.5 0 1 1 12 6.5a2.5 2.5 0 0 1 0 5z'/%3E%3C/svg%3E");
  box-shadow: none;
}

/* Reality checkpoint (footnote-style section ender) */
.checkpoint { display: flex; gap: 14px; align-items: flex-start; max-width: 760px; margin: 2.2rem auto 0; padding: 18px 22px; background: #fff7f7; border: 1px solid #f1d3d7; border-left: 4px solid var(--aa-red); border-radius: var(--radius-sm); }
.checkpoint .cp-mark { flex: 0 0 auto; width: 27px; height: 27px; border-radius: 50%; background: var(--aa-red); color: #fff; font-weight: 800; font-size: .82rem; display: grid; place-items: center; margin-top: 1px; }
.checkpoint .cp-body { font-size: .96rem; color: var(--ink); line-height: 1.5; }
.checkpoint .cp-label { display: block; font-size: .72rem; letter-spacing: .09em; text-transform: uppercase; font-weight: 700; color: var(--aa-red); margin-bottom: 2px; }

/* ===== Single-page anchor navigation ===== */
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: calc(var(--nav-h) + 14px); }
@media (max-width: 880px) { section[id] { scroll-margin-top: 72px; } }

/* ============================================================
   Brand accents
   ============================================================ */

/* Corner flight-swoosh (bottom-right) */
.corner-fx {
  position: absolute; right: 0; bottom: 0;
  width: min(1100px, 100%); height: auto;
  pointer-events: none; user-select: none; z-index: 1;
}

/* Wings badge on the final hiring step */
.timeline .num--wings { background: var(--aa-red); width: 44px; height: 44px; }
.timeline .num--wings img { width: 30px; height: 30px; }

/* ===== Meet the crew — event-banner portraits ===== */
.crew-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.crew-grid img {
  width: 100%; height: auto; display: block;
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  /* Portrait color treatment */
  filter: saturate(1.2) contrast(1.04) brightness(1.02);
  transition: transform .28s cubic-bezier(.2,.7,.2,1), box-shadow .28s ease;
  will-change: transform;
}
.crew-grid img:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 44px rgba(0,42,79,.30);
}
@media (prefers-reduced-motion: reduce) {
  .crew-grid img { transition: none; }
  .crew-grid img:hover { transform: none; }
}
@media (max-width: 980px) { .crew-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .crew-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== FAQ page ===== */
.section--navy h1 { color: #fff; }
.faq-cat { margin: 2.8rem 0 1rem; }
.faq-cat:first-of-type { margin-top: .5rem; }
.faq-page { max-width: 860px; }

/* ===== Ready-to-apply countdown ===== */
.countdown { margin: 30px auto 0; max-width: 600px; }
.cd-tiles { display: flex; justify-content: center; gap: clamp(10px, 3vw, 26px); }
.cd-cell { display: flex; flex-direction: column; align-items: center; gap: 7px; min-width: 62px; }
.cd-num {
  font-size: clamp(2.1rem, 6vw, 3.3rem); font-weight: 700; line-height: 1; color: #fff;
  font-variant-numeric: tabular-nums; letter-spacing: -.01em;
}
.cd-lab { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: #bfe0fb; font-weight: 700; }
.countdown .btn--live { margin-top: 24px; }
.countdown .btn--live[hidden] { display: none; }
