/* =========================================================
   FONT SETUP
   ---------------------------------------------------------
   Put your .otf/.ttf files in: assets/fonts/
   Then change the filenames below if needed.

   To change a section's font, edit the --font-* variables
   inside :root below. Every major text item also has its own
   class in index.html so you can target it directly.
   ========================================================= */

@font-face {
  font-family: 'EurostileRegular';
  src: url('assets/fonts/Eurostile.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'EurostileBold';
  src: url('assets/fonts/Eurostile_Bold.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'EurostileBlack';
  src: url('assets/fonts/Eurostile_Black.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'EurostileMedium';
  src: url('assets/fonts/Eurostile_Medium_Italic.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

:root {
  /* FONT CONTROLS - change these to any @font-face name above */
  --font-body: 'EurostileRegular', Arial, Helvetica, sans-serif;
  --font-nav: 'EurostileRegular', Arial, Helvetica, sans-serif;
  --font-button: 'EurostileBold', Arial, Helvetica, sans-serif;
  --font-hero-title: 'EurostileBold';
  --font-hero-subtitle: 'EurostileRegular', Arial, Helvetica, sans-serif;
  --font-stat-icon: 'EurostileRegular', Arial, Helvetica, sans-serif;
  --font-stat-number: 'EurostileBold', Impact, sans-serif;
  --font-stat-label: 'EurostileBold', Arial, Helvetica, sans-serif;
  --font-section-title: 'EurostileBold', Impact, sans-serif;
  --font-section-link: 'EurostileBold', Arial, Helvetica, sans-serif;
  --font-flight-number: 'EurostileRegular', Arial, Helvetica, sans-serif;
  --font-flight-route: 'EurostileBlack', Impact, sans-serif;
  --font-flight-details: 'EurostileRegular', Arial, Helvetica, sans-serif;
  --font-news-category: 'EurostileBold', Arial, Helvetica, sans-serif;
  --font-news-headline: 'EurostileBold', Arial, Helvetica, sans-serif;
  --font-news-body: 'EurostileRegular', Arial, Helvetica, sans-serif;
  --font-cta-title: 'EurostileBlack', Impact, sans-serif;
  --font-cta-subtitle: 'EurostileRegular', Arial, Helvetica, sans-serif;
  --font-footer: 'EurostileRegular', Arial, Helvetica, sans-serif;
  --font-footer-heading: 'EurostileBold', Arial, Helvetica, sans-serif;

  --purple: #6338e7;
  --purple-dark: #4b26d0;
  --blue: #0aa4ff;
  --navy: #071b3d;
  --ink: #101629;
  --muted: #5d6375;
  --line: #deddea;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 0 48px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 28px rgba(22, 26, 48, 0.08);
  backdrop-filter: blur(10px);
}

.brand img {
  width: 178px;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 34px);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: -0.008em;
  font-family: var(--font-nav);
}


.main-nav a {
  color: #141721;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
}

.main-nav a:not(.portal-btn)::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  background: var(--purple);
  transform: scaleX(0);
  transition: transform .2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }
.main-nav a.active { color: var(--purple); }

.portal-btn {
  color: white !important;
  background: var(--purple);
  padding: 12px 18px;
  border-radius: 7px;
  box-shadow: 0 9px 20px rgba(99, 56, 231, 0.25);
}

.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 56px 48px 52px;
  overflow: hidden;
  background: url('assets/hero-map-bg.webp') center center / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.38) 0%, rgba(255,255,255,.08) 35%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}

.hero-map {
  display: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(420px, 95vw);
  padding-top: 6px;
}

.hero-copy h1 {
  margin: 0 0 28px;
  text-transform: uppercase;
  font-size: clamp(38px, 4vw, 62px);
  line-height: .94;
  letter-spacing: -0.008em;
  font-weight: 950;
}

.hero-copy h1 span { color: var(--purple); }
.hero-copy p {
  margin: 0 0 32px;
  max-width: 310px;
  font-size: 20px;
  line-height: 1.38;
  color: #282838;
}

.hero-actions {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 5px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 13px;
  transition: .2s ease;
}

.btn.primary {
  background: var(--purple);
  color: white;
  box-shadow: 0 12px 22px rgba(99, 56, 231, 0.28);
}

.btn.secondary {
  color: var(--purple);
  border: 3px solid var(--purple);
  background: white;
}

.btn:hover { transform: translateY(-2px); }

.stats-bar {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
  padding: 12px 32px 16px;
  position: relative;
}

.stat-card {
  position: relative;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  border-right: 1px solid var(--line);
  color: var(--purple);
}
.stat-card:last-child { border-right: 0; }
.stat-icon {
  font-size: 42px;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-card strong {
  display: block;
  font-size: clamp(44px, 5vw, 72px);
  line-height: .82;
  letter-spacing: -0.008em;
  font-weight: 500;
  font-family: var(--font-stat-number);
}
.stat-card span {
  margin-top: 10px;
  color: #161625;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
}

.section {
  width: 100%;
  padding: 24px 48px 50px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 14px;
}
.section-heading h2 {
  margin: 0;
  text-transform: uppercase;
  font-size: clamp(24px, 2.5vw, 36px);
  letter-spacing: -0.008em;
  color: #101629;
}
.section-heading a {
  color: var(--purple);
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 900;
  font-size: 14px;
}

.flight-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.flight-card {
  position: relative;
  height: 270px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 12px 28px rgba(16, 22, 41, .13);
}
.flight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.flight-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 34%, rgba(0,0,0,.72) 100%);
}
.flight-card:hover img { transform: scale(1.04); }
.flight-info {
  position: absolute;
  z-index: 1;
  left: 20px;
  right: 20px;
  bottom: 18px;
  color: white;
  text-transform: uppercase;
  text-shadow: 0 2px 7px rgba(0,0,0,.35);
}
.flight-info small { font-weight: 900; font-size: 18px; }
.flight-info h3 {
  margin: 5px 0 2px;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: .9;
  font-weight: 950;
  letter-spacing: -0.008em;
}
.flight-info p { margin: 0; font-size: 18px; font-weight: 800; }

.news-section {
  width: 100%;
  padding: 44px 48px 58px;
  background: linear-gradient(120deg, #256fe3 0%, #644edf 48%, #a66ac6 100%);
  color: white;
}
.news-heading h2,
.news-heading a { color: white; }
.news-heading { margin-bottom: 30px; }
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 52px;
}
.news-card {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 24px;
  align-items: center;
}
.news-card img {
  width: 230px;
  height: 190px;
  object-fit: cover;
  box-shadow: 0 10px 18px rgba(0,0,0,.18);
}
.news-card small {
  display: block;
  color: #e8ddff;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 12px;
  margin-bottom: 8px;
}
.news-card h3 {
  margin: 0 0 7px;
  font-size: 21px;
  line-height: 1.05;
}
.news-card p {
  margin: 0 0 16px;
  max-width: 390px;
  font-size: 18px;
  line-height: 1.25;
}
.learn-btn {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 4px;
  background: var(--purple);
  color: white;
  text-decoration: none;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(0,0,0,.15);
}

.cta-section {
  position: relative;
  min-height: 210px;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(235,240,255,.6), rgba(235,240,255,.6)),
    url('assets/summer.webp') center 58% / cover no-repeat;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.55), rgba(147,100,216,.35));
  backdrop-filter: blur(1px);
}
.cta-content {
  position: relative;
  z-index: 1;
  padding: 28px 20px;
}
.cta-content h2 {
  margin: 0;
  color: #08275a;
  text-transform: uppercase;
  font-size: clamp(42px, 5.4vw, 78px);
  line-height: .9;
  letter-spacing: -0.008em;
  font-weight: 950;
}
.cta-content p {
  margin: 12px 0 26px;
  color: #0a244a;
  font-size: clamp(20px, 2vw, 31px);
}
.cta-content .btn { font-size: 20px; border-radius: 22px; padding: 0 32px; min-height: 50px; }

.site-footer {
  min-height: 122px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 26px 48px;
  color: #0c2551;
  background: #fff;
}
.site-footer img { width: 165px; }
.footer-social {
  text-align: center;
  text-transform: uppercase;
  color: #0c2551;
}
.footer-social span { display: block; font-size: 21px; margin-bottom: 6px; }
.footer-social strong { display: block; font-size: 34px; color: var(--purple); line-height: 1; }
.footer-social small { display: block; margin-top: 6px; font-weight: 700; }
.site-footer p {
  justify-self: end;
  margin: 0;
  font-size: 18px;
  text-align: right;
}


/* =========================================================
   TEXT FONT ASSIGNMENTS
   ---------------------------------------------------------
   Every visible text type has a class and a default font.
   To change one exact item, target its specific class.
   Example:
   .stat-number-registered { font-family: 'EurostileBlack'; }
   .flight-route-southwest { font-family: 'EurostileExtendedBlack'; }
   ========================================================= */

.nav-text { font-family: var(--font-nav); }
.nav-home, .nav-dispatch, .nav-fleet, .nav-about, .nav-operations, .nav-pireps, .nav-portal { font-family: var(--font-nav); }

.hero-title { font-family: var(--font-hero-title); }
.hero-title-accent { font-family: inherit; }
.hero-subtitle { font-family: var(--font-hero-subtitle); }

.btn, .btn-dispatch, .btn-pirep, .cta-button, .learn-btn, .learn-btn-summer, .learn-btn-system { font-family: var(--font-button); }

.stat-icon, .stat-icon-registered, .stat-icon-flights, .stat-icon-hours, .stat-icon-destinations, .stat-icon-performance {
  font-family: var(--font-stat-icon);
}
.stat-number, .stat-number-registered, .stat-number-flights, .stat-number-hours, .stat-number-destinations, .stat-number-performance {
  font-family: var(--font-stat-number);
}
.stat-label, .stat-label-registered, .stat-label-flights, .stat-label-hours, .stat-label-destinations, .stat-label-performance {
  font-family: var(--font-stat-label);
}

.section-title, .featured-title, .news-title { font-family: var(--font-section-title); }
.section-link, .featured-link, .news-link { font-family: var(--font-section-link); }

.flight-number, .flight-number-southwest, .flight-number-american, .flight-number-frontier {
  font-family: var(--font-flight-number);
}
.flight-route, .flight-route-southwest, .flight-route-american, .flight-route-frontier {
  font-family: var(--font-flight-route);
}
.flight-carrier, .flight-carrier-southwest, .flight-carrier-american, .flight-carrier-frontier,
.flight-airframe, .flight-airframe-southwest, .flight-airframe-american, .flight-airframe-frontier {
  font-family: var(--font-flight-details);
}

.news-category, .news-category-summer, .news-category-system { font-family: var(--font-news-category); }
.news-headline, .news-headline-summer, .news-headline-system { font-family: var(--font-news-headline); }
.news-body, .news-body-summer, .news-body-system { font-family: var(--font-news-body); }

.cta-title { font-family: var(--font-cta-title); }
.cta-subtitle { font-family: var(--font-cta-subtitle); }

.footer-heading { font-family: var(--font-footer-heading); }
.footer-icon, .footer-discord, .footer-copyright { font-family: var(--font-footer); }

/* OPTIONAL PER-ITEM EXAMPLES - uncomment/edit if you want one item different
.stat-number-performance { font-family: 'EurostileBlack'; }
.nav-portal { font-family: 'EurostileBold'; }
.news-headline-system { font-family: 'EurostileExtendedMedium'; }
*/

@media (max-width: 1100px) {
  .site-header { padding: 0 22px; height: auto; min-height: 82px; flex-wrap: wrap; justify-content: center; padding-block: 14px; }
  .main-nav { justify-content: center; flex-wrap: wrap; }
  .hero { min-height: 560px; align-items: end; background-position: 62% center; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-card:nth-child(2n) { border-right: 0; }
  .flight-grid, .news-grid { grid-template-columns: 1fr; }
  .flight-card { height: 360px; }
}

@media (max-width: 700px) {
  .site-header, .hero, .section, .news-section, .site-footer { padding-left: 18px; padding-right: 18px; }
  .brand img { width: 145px; }
  .main-nav { gap: 12px; font-size: 12px; }
  .hero { min-height: 680px; padding-top: 280px; background-position: 58% top; }
  .hero::after { background: linear-gradient(180deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.98) 54%); }
  .stats-bar { grid-template-columns: 1fr; padding: 0 18px; }
  .stat-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat-card:last-child { border-bottom: 0; }
  .section-heading { align-items: start; flex-direction: column; }
  .flight-card { height: 340px; }
  .news-card { grid-template-columns: 1fr; }
  .news-card img { width: 100%; height: 250px; }
  .site-footer { grid-template-columns: 1fr; text-align: center; }
  .site-footer img, .site-footer p { justify-self: center; text-align: center; }
}

/* =========================================================
   DISPATCH PAGE
   ========================================================= */
.dispatch-page {
  background: #ecefff;
  overflow: hidden;
}

.dispatch-hero {
  position: relative;
  min-height: 355px;
  display: flex;
  align-items: center;
  padding: 58px 48px 74px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.84) 29%, rgba(255,255,255,0.30) 100%),
    url('assets/hero-map-bg.webp') center center / cover no-repeat;
}

.dispatch-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 590px;
}

.dispatch-title {
  margin: 0;
  font-family: var(--font-hero-title);
  font-size: clamp(62px, 7vw, 106px);
  line-height: .8;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.dispatch-kicker {
  margin: 8px 0 28px;
  font-family: var(--font-section-title);
  font-size: clamp(26px, 3.1vw, 44px);
  line-height: .95;
  text-transform: uppercase;
  color: var(--purple);
  letter-spacing: -0.008em;
}

.dispatch-subtitle {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.25;
  color: #202336;
}

.dispatch-shell {
  width: min(1290px, calc(100% - 96px));
  margin: -58px auto 70px;
  padding: 72px 64px 42px;
  position: relative;
  z-index: 3;
  background: rgba(255,255,255,.96);
  border-radius: 72px;
  box-shadow: 0 22px 55px rgba(11, 18, 42, .18);
}

.dispatch-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 5vw, 112px);
  margin-bottom: 50px;
}

.dispatch-method {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 22px;
  background: #fff;
  border: 1px solid #e6e3ef;
  border-radius: 8px;
  box-shadow: 0 9px 22px rgba(25, 28, 50, .17);
  transition: .18s ease;
}

.dispatch-method-active {
  border: 3px solid var(--purple);
  box-shadow: 0 10px 24px rgba(99, 56, 231, .15);
}

.dispatch-method:hover { transform: translateY(-4px); }

.dispatch-method img {
  width: 112px;
  height: 112px;
  object-fit: contain;
  margin-bottom: 18px;
}

.dispatch-method h3 {
  margin: 0 0 12px;
  font-family: var(--font-section-title);
  color: var(--purple);
  text-transform: uppercase;
  font-size: 24px;
  line-height: 1;
}

.dispatch-method:not(.dispatch-method-active) h3 { color: #171725; }
.dispatch-method p {
  margin: 0;
  max-width: 250px;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.22;
  color: #202336;
}

.dispatch-search-panel,
.dispatch-results-panel {
  background: #ecefff;
  border-radius: 28px;
  padding: 24px;
  margin-bottom: 28px;
}

.dispatch-panel-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.dispatch-panel-heading img {
  width: 74px;
  height: 55px;
  object-fit: contain;
}

.dispatch-panel-heading h2,
.results-heading h2 {
  margin: 0 0 7px;
  font-family: var(--font-section-title);
  color: var(--purple);
  text-transform: uppercase;
  font-size: 30px;
  line-height: 1;
}

.dispatch-panel-heading p,
.results-heading p {
  margin: 0;
  font-size: 20px;
  color: #242431;
}

.dispatch-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: end;
}

.dispatch-form .btn {
  grid-column: 1 / -1;
  width: 265px;
}

.dispatch-form label span {
  display: block;
  margin: 0 0 8px;
  font-family: var(--font-section-link);
  font-size: 12px;
  color: #565a70;
  text-transform: uppercase;
}

.dispatch-input {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 10px;
  background: #fff;
  border: 1px solid #cfcbe5;
  border-radius: 5px;
  font-size: 16px;
  color: #11182c;
}

.dispatch-input strong {
  font-size: 26px;
  line-height: 1;
  color: var(--purple);
}

.results-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-bottom: 30px;
}

.results-heading h2 span { font-family: var(--font-body); }
.results-heading a {
  color: var(--purple);
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--font-section-link);
  font-size: 18px;
  white-space: nowrap;
}

.result-card-grid {
  display: flex;
  justify-content: center;
}

.result-card {
  width: 420px;
  max-width: 100%;
  padding: 28px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 10px rgba(25, 28, 50, .5);
  color: #101629;
  margin: 0 auto;
}

.result-card-main {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.aircraft-summary {
    text-align: center;
}

.aircraft-registration {
    font-size: 38px;
    font-weight: 800;
    color: #5f36f5;
    margin: 8px 0;
}

.aircraft-type {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 4px;
}

.aircraft-airline {
    font-size: 16px;
    color: #5f6472;
}

.aircraft-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 20px;
}

.aircraft-detail-box {
    background: #f6f5fb;
    border: 1px solid #e3defc;
    border-radius: 14px;
    padding: 14px;
}

.aircraft-detail-box span {
    display: block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 6px;
}

.aircraft-detail-box strong {
    font-size: 17px;
    color: #101629;
}

.result-card-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 10px;
}

.result-card-top img {
  width: 58px;
  height: 45px;
  object-fit: contain;
}

.result-card-top span {
  padding: 4px 12px;
  border: 1px solid #24b833;
  border-radius: 999px;
  background: #e9ffeb;
  color: #0a9a18;
  text-transform: uppercase;
  font-family: var(--font-section-link);
  font-size: 11px;
}

.result-carrier {
  margin: 0;
  font-size: 17px;
}

.result-card h3 {
  margin: 8px 0 18px;
  color: var(--purple);
  font-family: var(--font-section-title);
  font-size: 24px;
  line-height: 1;
}

.route-pair,
.time-pair,
.result-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.route-pair strong,
.time-pair strong {
  display: block;
  font-family: var(--font-section-title);
  color: #030617;
  line-height: .92;
}

.route-pair strong { font-size: 32px; }
.time-pair strong { font-size: 30px; }
.route-pair small,
.time-pair small {
  display: block;
  margin-top: 5px;
  font-size: 14px;
}

.route-pair b {
  color: var(--purple);
  font-size: 42px;
  line-height: 1;
}

.time-pair {
  margin-top: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid #bfc0c8;
}

.result-meta {
  margin-top: 18px;
  font-size: 17px;
}

.registration {
  margin: 22px 0;
  text-align: center;
  font-size: 20px;
}

.details-btn {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--purple);
  border-radius: 7px;
  color: var(--purple);
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--font-button);
  font-size: 17px;
}

.dispatch-note {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px 24px;
  border: 1px solid var(--purple);
  border-radius: 8px;
  background: #ecefff;
}

.note-icon {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  color: var(--purple);
  font-size: 43px;
}

.dispatch-note strong {
  display: block;
  font-family: var(--font-news-headline);
  font-size: 25px;
  line-height: 1;
}

.dispatch-note p {
  margin: 5px 0 0;
  font-size: 17px;
}

.dispatch-note a {
  min-width: 230px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--purple);
  border-radius: 7px;
  color: var(--purple);
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--font-button);
  font-size: 16px;
}

@media (max-width: 1100px) {
  .dispatch-shell { width: min(900px, calc(100% - 44px)); padding: 44px 28px; border-radius: 44px; }
  .dispatch-methods, .result-card-grid { grid-template-columns: 1fr; gap: 22px; }
  .dispatch-method { min-height: 210px; }
  .dispatch-form { grid-template-columns: repeat(2, 1fr); }
  .dispatch-note { grid-template-columns: 1fr; text-align: center; }
  .note-icon { margin-inline: auto; }
  .dispatch-note a { min-width: 0; width: 100%; }
}

@media (max-width: 700px) {
  .dispatch-hero { min-height: 390px; padding: 42px 22px 86px; background-position: center; }
  .dispatch-title { font-size: 58px; }
  .dispatch-kicker { font-size: 28px; }
  .dispatch-shell { width: calc(100% - 24px); margin-top: -50px; padding: 28px 14px; border-radius: 28px; }
  .dispatch-form { grid-template-columns: 1fr; }
  .dispatch-search-panel, .dispatch-results-panel { padding: 18px; }
  .results-heading { flex-direction: column; align-items: start; }
  .route-pair strong { font-size: 27px; }
  .time-pair strong { font-size: 26px; }
}

/* INOP sticker for disabled Route Search */
.dispatch-method {
  position: relative;
  overflow: visible;
}

.dispatch-method-inop {
  opacity: .74;
  cursor: not-allowed;
}

.dispatch-method-inop:hover {
  transform: none;
}

.dispatch-method-inop::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: rgba(255,255,255,.38);
  pointer-events: none;
}

.dispatch-method .inop-sticker {
  position: absolute;
  z-index: 5;
  width: 46%;
  height: auto;
  top: 50px;
  left: 50%;
  margin: 0;
  transform: translateX(-50%) rotate(-7deg);
  filter: drop-shadow(0 8px 8px rgba(0,0,0,.28));
  pointer-events: none;
}

.aircraft-search-form {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1.2fr .7fr;
  gap: 24px;
  align-items: end;
}

.aircraft-search-form .btn {
  grid-column: 1 / -1;
  width: 265px;
  margin-top: 20px;
}

.aircraft-search-form input {
  width: 100%;
  min-height: 42px;
  padding: 12px;
  border: 1px solid #cfcbe5;
  border-radius: 5px;
  font: inherit;
}

.empty-result {
  grid-column: 1 / -1;
  text-align: center;
}

@media (max-width: 900px) {
  .aircraft-search-form {
    grid-template-columns: 1fr;
  }

  .dispatch-method .inop-sticker {
    width: 170px;
  }
}


/* Aircraft database search refinements */
.aircraft-search-form select:disabled {
  opacity: .55;
  cursor: not-allowed;
  background: #f2f1f7;
}

.aircraft-result-card .route-pair strong {
  font-size: 28px;
}

.aircraft-result-card .time-pair strong {
  font-size: 18px;
}

.aircraft-result-card .result-card-top img[src$="logo.webp"] {
  object-fit: contain;
  padding: 4px;
}

/* Final Aircraft Search Result Card - Option 3 layout */
.result-card-grid {
  display: flex;
  justify-content: center;
}

.aircraft-showcase-card {
  width: 720px;
  max-width: 100%;
  overflow: hidden;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(25, 28, 50, .14);
  color: #101629;
}

.aircraft-showcase-main {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 38px;
  align-items: center;
  padding: 34px 36px 28px;
}

.aircraft-image-stack {
  position: relative;
  width: 205px;
  height: 205px;
  margin: 0 auto;
}

.aircraft-tail-circle {
  width: 205px;
  height: 205px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 16px 30px rgba(25, 28, 50, .16);
}

.aircraft-showcase-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.aircraft-showcase-header h3 {
  margin: 0;
  color: #101629;
  font-family: var(--font-section-title);
  font-size: 30px;
  line-height: 1;
}

.aircraft-status {
  padding: 7px 16px;
  border: 1px solid #24b833;
  border-radius: 999px;
  background: #effff1;
  color: #0a9a18;
  font-family: var(--font-section-link);
  font-size: 12px;
  text-transform: uppercase;
  white-space: nowrap;
}

.aircraft-detail-line {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid #dedfea;
}

.aircraft-detail-icon {
  color: var(--purple);
  font-size: 34px;
  line-height: 1;
}

.aircraft-detail-line small {
  display: block;
  color: #747b8c;
  font-family: var(--font-section-link);
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.aircraft-detail-line strong {
  display: block;
  color: #101629;
  font-family: var(--font-flight-route);
  font-size: 28px;
  line-height: 1;
}

.aircraft-showcase-footer {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(90deg, #f5f0ff 0%, #f8f4ff 100%);
  color: var(--purple);
  text-decoration: none;
  font-family: var(--font-button);
  font-size: 18px;
  text-transform: uppercase;
}

.aircraft-showcase-footer span {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--purple);
  border-radius: 50%;
  font-family: var(--font-body);
  font-weight: 800;
}

@media (max-width: 760px) {
  .aircraft-showcase-main {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 30px 24px 24px;
  }

  .aircraft-showcase-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .aircraft-image-stack,
  .aircraft-tail-circle {
    width: 190px;
    height: 190px;
  }
}

.footer-discord-icon {
    width: 38px;
    height: 38px;
    object-fit: contain;
    display: block;
    margin: 8px auto;
}

.info-icon-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex-shrink: 0;
}
/* =========================================================
   PIREP PAGE - Mockup Matching Layout
   ========================================================= */
.pirep-page-body {
  background: #ecefff;
}

.pirep-page {
  background: #ecefff;
  padding: 58px 0 72px;
}

.pirep-hero,
.pirep-form-card {
  width: min(1075px, calc(100% - 96px));
  margin-left: auto;
  margin-right: auto;
}

.pirep-hero {
  display: grid;
  grid-template-columns: 1fr 435px;
  align-items: center;
  gap: 44px;
  margin-bottom: 38px;
}

.pirep-title-block {
  display: flex;
  align-items: center;
  gap: 26px;
}

.pirep-title-block img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.pirep-title-block h1 {
  margin: 0;
  font-family: var(--font-cta-title);
  font-size: 66px;
  line-height: .82;
  letter-spacing: -0.02em;
  color: #050509;
}

.pirep-title-block h2 {
  margin: 6px 0 10px;
  font-family: var(--font-section-title);
  font-size: 26px;
  color: #050509;
}

.pirep-title-block p {
  margin: 0;
  font-size: 13px;
  color: #252538;
}

.pirep-info-card {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: start;
  background: #fff;
  border-radius: 8px;
  padding: 22px 26px;
  box-shadow: 0 8px 18px rgba(16, 22, 41, .25);
}

.pirep-info-card img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  margin-top: 2px;
}

.pirep-info-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-section-title);
  font-size: 27px;
}

.pirep-info-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
}

.pirep-form-card {
  background: #fff;
  border-radius: 7px;
  padding: 26px 24px 15px;
  box-shadow: 0 3px 15px rgba(16, 22, 41, .22);
}

.pirep-form-card > h2 {
  margin: 0;
  font-family: var(--font-section-title);
  font-size: 42px;
  line-height: 1;
  color: #050509;
}

.pirep-title-underline {
  width: 157px;
  height: 5px;
  background: var(--purple);
  border-radius: 999px;
  margin: 10px 0 22px;
}

.pirep-tabs {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 13px;
  margin-bottom: 38px;
}

.pirep-tab {
  height: 45px;
  border: 2px solid var(--purple);
  border-radius: 5px;
  background: var(--purple);
  color: #fff;
  font-family: var(--font-button);
  font-size: 16px;
  cursor: pointer;
  transition: .18s ease;
}

.pirep-tab.active {
  background: #fff;
  color: var(--purple);
  box-shadow: inset 0 0 0 1px rgba(99, 56, 231, .12);
}

.pirep-tab:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 14px rgba(99, 56, 231, .16);
}

.pirep-form {
  min-height: 150px;
}

.pirep-pane {
  display: none;
}

.pirep-pane.active {
  display: block;
}

.pirep-field-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 40px;
  row-gap: 43px;
}

.pirep-field-grid label,
.pirep-wide-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-section-link);
  font-size: 15px;
  color: #101010;
  letter-spacing: 0.36px;
}

.pirep-field-grid input,
.pirep-field-grid select,
.pirep-wide-field textarea,
.time-fields-row input {
  width: 100%;
  border: 2px solid #ded7ef;
  border-radius: 5px;
  background: #eee9fb;
  color: #101629;
  font-family: var(--font-body);
  font-size: 17px;
  outline: none;
  transition: .18s ease;
}

.pirep-field-grid input,
.pirep-field-grid select {
  height: 43px;
  padding: 0 14px;
}

.pirep-field-grid input::placeholder,
.pirep-wide-field textarea::placeholder {
  color: #a7a3b2;
  font-family: var(--font-section-link);
}

.pirep-field-grid input:focus,
.pirep-field-grid select:focus,
.pirep-wide-field textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(99, 56, 231, .12);
}

.pirep-wide-field {
  margin-top: 40px;
}

.pirep-wide-field textarea {
  min-height: 170px;
  resize: vertical;
  padding: 16px;
}

.pirep-note-options {
  grid-template-columns: repeat(4, 1fr);
}

.pirep-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 20px;
}

.pirep-action-right {
  display: flex;
  gap: 12px;
  align-items: center;
}

.pirep-nav-btn,
.pirep-submit {
  min-width: 138px;
  height: 46px;
  padding: 0 16px;
  border-radius: 5px;
  font-family: var(--font-button);
  font-size: 16px;
  text-transform: uppercase;
  cursor: pointer;
  transition: .18s ease;
}

.pirep-nav-btn {
  background: #fff;
  color: var(--purple);
  border: 3px solid var(--purple);
}

.pirep-nav-btn:hover {
  background: #f5f1ff;
}

.pirep-submit {
  border: 0;
  background: #9b9b9b;
  color: #fff;
  cursor: not-allowed;
}

.pirep-submit.ready {
  background: #139700;
  cursor: pointer;
  box-shadow: 0 10px 18px rgba(19, 151, 0, .22);
}

.pirep-submit.ready:hover {
  background: #0f8300;
}

.footer-discord-link {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 1100px) {
  .pirep-hero,
  .pirep-form-card {
    width: min(100% - 36px, 1075px);
  }

  .pirep-hero {
    grid-template-columns: 1fr;
  }

  .pirep-tabs {
    grid-template-columns: repeat(4, 1fr);
  }

  .pirep-field-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .pirep-page {
    padding-top: 32px;
  }

  .pirep-title-block {
    align-items: flex-start;
    gap: 16px;
  }

  .pirep-title-block img {
    width: 72px;
    height: 72px;
  }

  .pirep-title-block h1 {
    font-size: 48px;
  }

  .pirep-title-block h2 {
    font-size: 20px;
  }

  .pirep-info-card {
    grid-template-columns: 1fr;
  }

  .pirep-tabs,
  .pirep-field-grid,
  .pirep-note-options {
    grid-template-columns: 1fr;
  }

  .pirep-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .pirep-action-right {
    flex-direction: column;
  }

  .pirep-nav-btn,
  .pirep-submit {
    width: 100%;
  }
}

.field-error {
    border-color: #dc2626 !important;
}

.error-message {
    color: #dc2626;
    font-size: 13px;
    margin-top: 6px;
}

/* =========================================================
   OPERATIONS PAGE
   ========================================================= */
.operations-page-body {
  background: #ecefff;
}

.operations-page {
  background: #ecefff;
  padding: 58px 0 72px;
}

.operations-hero,
.operations-card {
  width: min(1075px, calc(100% - 96px));
  margin-left: auto;
  margin-right: auto;
}

.operations-hero {
  display: grid;
  grid-template-columns: 1fr 600px;
  align-items: center;
  gap: 44px;
  margin-bottom: 38px;
}

.operations-title-block {
  display: flex;
  align-items: center;
  gap: 26px;
}

.operations-title-block img {
  width: 115px;
  height: 115px;
  object-fit: contain;
}

.operations-title-block h1 {
  margin: 0;
  font-family: var(--font-cta-title);
  font-size: 66px;
  line-height: .82;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #050509;
}

.operations-title-block h2 {
  margin: 6px 0 10px;
  font-family: var(--font-section-title);
  font-size: 26px;
  color: #050509;
}

.operations-title-block p {
  margin: 0;
  font-size: 13px;
  color: #252538;
}

.operations-stats-card {
  display: grid;
  grid-template-columns: 260px 2px 260px;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 20px 22px;
  box-shadow: 0 8px 18px rgba(16, 22, 41, .25);
  max-width: 500px;
  width: 100%;
  min-height: 135px;
  margin-left: 0px;
}

.operations-stat-block {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 12px;
  justify-content: start;
}

.operations-stat-block > div {
    margin-left: -70px;
}

.operations-stat-block img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  position: relative;
  top: -30px;
}

.operations-stat-block:last-child img {
    position: relative;
    left: -10px;
}

.operations-stat-block h3 {
  margin: 0 0 4px;
  font-family: var(--font-section-title);
  font-size: 20px;
  line-height: 1;
  color: #050509;
  text-align: center;
}

.operations-stat-block strong {
  display: block;
  font-family: var(--font-stat-number);
  font-size: 44px;
  line-height: .85;
  color: #050509;
  text-align: center;
}

.operations-stat-block span {
  display: block;
  margin-top: 6px;
  font-size: 15px;
  color: #a3a0a8;
  text-align: center;
}

.operations-stat-divider {
  width: 2px;
  height: 92px;
  background: #eee9fb;
  margin: 0 -30px;
}

.operations-card {
  background: #fff;
  border-radius: 7px;
  padding: 28px 26px 42px;
  box-shadow: 0 3px 15px rgba(16, 22, 41, .22);
}

.operations-card > h2 {
  margin: 0 0 30px;
  font-family: var(--font-section-title);
  font-size: 42px;
  line-height: 1;
  color: #050509;
}

.operations-tabs {
  display: grid;
  grid-template-columns: 135px 195px 140px 140px 155px;
  justify-content: space-around;
  gap: 22px;
  margin-bottom: 22px;
}

.operations-tab {
  height: 45px;
  border: 3px solid var(--purple);
  border-radius: 5px;
  background: #fff;
  color: var(--purple);
  font-family: var(--font-button);
  font-size: 16px;
  text-transform: uppercase;
  cursor: pointer;
  transition: .18s ease;
}

.operations-tab.active,
.operations-tab:hover {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 8px 14px rgba(99, 56, 231, .16);
}

.operations-divider {
  height: 3px;
  background: #eee9fb;
  margin-bottom: 24px;
}

.operations-panel {
  display: none;
}

.operations-panel.active {
  display: block;
}

.operations-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.operations-panel-header h3 {
  margin: 0;
  font-family: var(--font-section-title);
  font-size: 32px;
  color: #050509;
}

.operations-panel-header p {
  margin: 2px 0 0;
  font-size: 18px;
  color: #252538;
}

.operations-outline-btn {
  min-width: 136px;
  height: 42px;
  border: 3px solid var(--purple);
  border-radius: 5px;
  background: #fff;
  color: var(--purple);
  font-family: var(--font-button);
  font-size: 15px;
  cursor: pointer;
  transition: .18s ease;
}

.operations-outline-btn:hover {
  background: #f5f1ff;
}

.pirep-review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
  padding: 0 42px 0;
}

.ops-pirep-card {
  background: #fff;
  border-radius: 9px;
  padding: 12px 16px 17px;
  box-shadow: 0 3px 15px rgba(16, 22, 41, .28);
  border: 1px solid rgba(222, 221, 234, .8);
}

.ops-pirep-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ops-pirep-topline h4 {
  margin: 0;
  font-family: var(--font-section-title);
  font-size: 34px;
  color: #050509;
}

.ops-pirep-topline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  height: 24px;
  padding: 0 12px;
  border-radius: 999px;
  border: 3px solid #e39f00;
  background: #ffc124;
  color: #946700;
  font-family: var(--font-button);
  font-size: 14px;
  text-transform: uppercase;
}

.ops-pirep-card p {
  margin: 4px 0;
  color: #242434;
  font-size: 14px;
  line-height: 1.25;
}

.ops-pirep-card strong {
  display: block;
  margin: 13px 0 15px;
  font-family: var(--font-flight-route);
  font-size: 32px;
  line-height: 1;
  color: var(--purple);
}

.ops-pirep-card button {
  width: 100%;
  height: 45px;
  margin-top: 10px;
  border: 3px solid var(--purple);
  border-radius: 5px;
  background: #fff;
  color: var(--purple);
  font-family: var(--font-button);
  font-size: 20px;
  cursor: pointer;
  transition: .18s ease;
}

.ops-pirep-card button:hover {
  background: var(--purple);
  color: #fff;
}

.operations-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.operations-tool-card {
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px solid #ded7ef;
  border-radius: 9px;
  background: #f8f6ff;
  color: #251c54;
  font-family: var(--font-section-title);
  font-size: 22px;
}

/* =========================================================
   OPERATIONS - ECONOMY DASHBOARD
   ========================================================= */

.economy-dashboard {
  display: grid;
  gap: 24px;
}

.economy-hero-card {
  padding: 34px 36px;
  border-radius: 14px;
  background: linear-gradient(135deg, #6338e7 0%, #4b26d0 100%);
  color: #fff;
  box-shadow: 0 14px 30px rgba(99, 56, 231, .28);
}

.economy-hero-card span {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-button);
  font-size: 15px;
  text-transform: uppercase;
  opacity: .9;
}

.economy-hero-card strong {
  display: block;
  font-family: var(--font-stat-number);
  font-size: clamp(54px, 7vw, 82px);
  line-height: .85;
}

.economy-hero-card p {
  margin: 14px 0 0;
  font-size: 20px;
}

.economy-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.economy-stat-card,
.economy-breakdown-card {
  background: #fff;
  border: 2px solid #ded7ef;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 8px 20px rgba(16, 22, 41, .12);
}

.economy-stat-card span {
  display: block;
  margin-bottom: 10px;
  color: #5d6375;
  font-family: var(--font-button);
  font-size: 13px;
  text-transform: uppercase;
}

.economy-stat-card strong {
  display: block;
  color: var(--purple);
  font-family: var(--font-section-title);
  font-size: 34px;
  line-height: 1;
}

.economy-breakdown-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.economy-breakdown-card h4 {
  margin: 0 0 18px;
  color: #050509;
  font-family: var(--font-section-title);
  font-size: 26px;
}

.economy-breakdown-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-top: 2px solid #eee9fb;
}

.economy-breakdown-row span {
  color: #5d6375;
  font-size: 17px;
}

.economy-breakdown-row strong {
  color: #101629;
  font-family: var(--font-button);
  font-size: 20px;
}

.economy-distribution-item {
  padding: 16px 0;
  border-top: 2px solid #eee9fb;
}

.economy-distribution-label {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 10px;
}

.economy-distribution-label span {
  color: #5d6375;
  font-size: 17px;
}

.economy-distribution-label strong {
  color: #101629;
  font-family: var(--font-button);
  font-size: 20px;
}

.economy-distribution-track {
  width: 100%;
  height: 13px;
  overflow: hidden;
  border-radius: 999px;
  background: #eee9fb;
}

.economy-distribution-fill {
  width: 0%;
  height: 100%;
  border-radius: 999px;
  background: var(--purple);
  transition: width .45s ease;
}

.economy-distribution-item small {
  display: block;
  margin-top: 7px;
  color: #5d6375;
  font-family: var(--font-button);
  font-size: 13px;
  text-align: right;
}

@media (max-width: 900px) {
  .economy-summary-grid,
  .economy-breakdown-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .operations-hero,
  .operations-card {
    width: min(100% - 36px, 1075px);
  }

  .operations-hero {
    grid-template-columns: 1fr;
  }

  .operations-tabs {
    grid-template-columns: repeat(2, 1fr);
    justify-content: stretch;
  }

  .pirep-review-grid,
  .operations-placeholder-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0;
  }
}

@media (max-width: 650px) {
  .operations-page {
    padding-top: 32px;
  }

  .operations-title-block {
    align-items: flex-start;
    gap: 16px;
  }

  .operations-title-block img {
    width: 72px;
    height: 72px;
  }

  .operations-title-block h1 {
    font-size: 48px;
  }

  .operations-title-block h2 {
    font-size: 20px;
  }

  .operations-stats-card {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .operations-stat-divider {
    width: 100%;
    height: 3px;
    margin: 0;
  }

  .operations-tabs {
    grid-template-columns: 1fr;
  }

  .operations-panel-header {
    align-items: stretch;
    flex-direction: column;
  }

  .operations-outline-btn {
    width: 100%;
  }
  
}

.pirep-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(10, 10, 20, 0.58);
}

.pirep-modal.open {
  display: flex;
}

.pirep-modal-card {
  position: relative;
  width: min(1050px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 10px;
  padding: 32px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.pirep-modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  border: none;
  background: transparent;
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
}

.pirep-modal-card h2 {
  margin: 0;
  font-family: var(--font-section-title);
  font-size: 42px;
}

#modalPirepSubtitle {
  margin: 8px 0 24px;
  color: #5d6375;
}

.modal-section {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 3px solid #eee9fb;
}

.modal-section h3 {
  margin: 0 0 18px;
  font-family: var(--font-section-title);
  font-size: 28px;
}

.modal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.modal-grid div,
.modal-wide {
  background: #eee9fb;
  border: 2px solid #ded7ef;
  border-radius: 6px;
  padding: 12px 14px;
}

.modal-grid span,
.modal-wide span {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-section-link);
  font-size: 13px;
  color: #555;
}

.modal-grid strong,
.modal-wide strong {
  display: block;
  font-family: var(--font-body);
  font-size: 18px;
  color: #101629;
}

.modal-wide {
  margin-top: 18px;
}

.pirep-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 30px;
}

.modal-deny-btn,
.modal-approve-btn {
  min-width: 140px;
  height: 46px;
  border-radius: 5px;
  font-family: var(--font-button);
  font-size: 16px;
  cursor: pointer;
}

.modal-deny-btn {
  border: 3px solid #c82333;
  background: #fff;
  color: #c82333;
}

.modal-approve-btn {
  border: 3px solid #139700;
  background: #139700;
  color: #fff;
}

/* ================================
   PILOT PORTAL
================================ */

.portal-body {
  background: #ecefff;
  min-height: 100vh;
}

.portal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: calc(100vh - 90px);
  background: #ecefff;
}

.portal-sidebar {
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.portal-side-link {
  border: none;
  background: transparent;
  color: #6f6f6f;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 18px;
  border-radius: 8px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  transition: all .2s ease;
}

.portal-side-link img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  flex-shrink: 0;
}

.portal-side-link.active {
  background: #5b35d5;
  color: white;
  box-shadow: 0 12px 25px rgba(91,53,213,.25);
}

.portal-side-link:hover:not(.active) {
  background: rgba(91,53,213,.08);
}

.portal-side-link span {
  font-size: 15px;
}

.portal-content {
  padding: 28px 48px 60px;
}

.portal-content h1 {
  font-size: 58px;
  line-height: 1;
  margin: 0;
  font-weight: 900;
  color: #050505;
}

.portal-subtitle {
  font-size: 20px;
  margin: 8px 0 26px;
  color: #333;
}

.portal-card {
  background: white;
  border-radius: 6px;
  padding: 24px;
  margin-bottom: 32px;
  box-shadow: 0 12px 24px rgba(37, 25, 73, 0.18);
  position: relative;
}

.profile-card {
  display: block;
}

.portal-card h2 {
  margin: 0 0 22px;
  font-size: 24px;
  font-weight: 900;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 28px 70px;
}

.profile-grid div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.profile-grid small {
  color: #888;
  font-size: 13px;
  font-weight: 600;
}

.profile-grid strong {
  color: #050505;
  font-size: 22px;
  font-weight: 900;
}

.profile-edit-btn {
  display: block;
  margin-top: 30px;
  margin-left: auto;
}

.preferences-btn {
  float: right;
  margin-top: -40px;
}

.preferences-grid {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 900px) {
  .portal-layout {
    grid-template-columns: 1fr;
  }

  .portal-sidebar {
    flex-direction: row;
    overflow-x: auto;
    padding: 20px;
  }

  .portal-content {
    padding: 24px;
  }

  .portal-content h1 {
    font-size: 42px;
  }

  .profile-card {
    grid-template-columns: 1fr;
  }

  .avatar-panel {
    border-left: none;
    border-top: 3px solid #cfcfcf;
    padding-top: 24px;
  }

  .profile-grid,
  .preferences-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================
   LOGIN / REGISTER PAGE
================================ */

.access-page-body {
  background: #f0ecff;
  min-height: 100vh;
  font-family: inherit;
}

.access-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
}

.access-card {
  width: 100%;
  max-width: 1050px;
  background: white;
  border-radius: 8px;
  padding: 48px 72px;
  box-shadow: 0 12px 28px rgba(37, 25, 73, 0.16);
}

.access-logo {
  display: block;
  width: 260px;
  margin: 0 auto 28px;
}

.access-kicker {
  text-align: center;
  color: #5b35d5;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.access-card h1 {
  text-align: center;
  font-size: 64px;
  line-height: 1;
  margin: 0 0 18px;
  color: #12182f;
  font-weight: 900;
}

.access-lead {
  text-align: center;
  font-size: 20px;
  margin-bottom: 32px;
}

.access-pill-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.access-pill-row span {
  background: #e8e0ff;
  color: #5b35d5;
  font-weight: 900;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 14px;
}

.access-form {
  max-width: 760px;
  margin: 0 auto;
}

.access-form label {
  display: block;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #06132f;
}

.access-form input {
  width: 100%;
  height: 46px;
  border: 2px solid #d9d0ef;
  background: #eee8fb;
  border-radius: 5px;
  padding: 0 16px;
  font-size: 16px;
  margin-bottom: 18px;
}

.access-form input:focus {
  outline: none;
  border-color: #5b35d5;
}

.access-form button {
  margin-top: 4px;
}

.access-card hr {
  border: none;
  border-top: 2px solid #ddd6ef;
  margin: 42px auto;
  max-width: 760px;
}

.access-form h2 {
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 26px;
  color: #12182f;
  text-transform: none;
  font-family: inherit;
}

.access-error {
  color: #d00025;
  font-weight: 800;
  margin-top: 14px;
}

@media (max-width: 800px) {
  .access-card {
    padding: 36px 24px;
  }

  .access-card h1 {
    font-size: 42px;
  }

  .access-logo {
    width: 220px;
  }

  .access-pill-row {
    flex-direction: column;
    align-items: center;
  }
}

.access-section-title {
  font-family: var(--font-section-title) !important;
  font-size: 54px !important;
  font-weight: 900 !important;
  color: #12182f !important;
  line-height: 1 !important;
  margin-bottom: 32px !important;
  text-transform: none !important;
}

.access-page-body,
.access-page-body * {
  font-family: var(--font-body) !important;
}

.access-card h1,
.access-section-title {
  font-family: var(--font-section-title) !important;
}

.access-form label,
.access-form button,
.access-pill-row span,
.access-kicker {
  font-family: var(--font-button) !important;
}

/* ================================
   EDIT PROFILE MODAL
================================ */

.portal-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(10, 10, 20, 0.58);
}

.portal-modal.open {
  display: flex;
}

.portal-modal-card {
  position: relative;
  width: min(560px, 100%);
  background: white;
  border-radius: 10px;
  padding: 32px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.portal-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  border: none;
  background: transparent;
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
}

.portal-modal-card h2 {
  margin: 0;
  font-family: var(--font-section-title);
  font-size: 42px;
  color: #050509;
}

.portal-modal-card p {
  margin: 8px 0 24px;
  color: #5d6375;
  font-size: 17px;
}

.portal-edit-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
  font-family: var(--font-section-link);
  font-size: 15px;
  color: #101010;
  text-transform: uppercase;
}

.portal-edit-form input {
  width: 100%;
  height: 44px;
  border: 2px solid #ded7ef;
  border-radius: 5px;
  background: #eee9fb;
  color: #101629;
  font-family: var(--font-body);
  font-size: 17px;
  padding: 0 14px;
  outline: none;
}

.portal-edit-form input:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(99, 56, 231, .12);
}

.portal-edit-message {
  min-height: 20px;
  margin: 6px 0 18px;
  color: #c82333;
  font-family: var(--font-button);
}

.portal-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 24px;
}

.portal-edit-form select {
  width: 100%;
  height: 44px;
  border: 2px solid #ded7ef;
  border-radius: 5px;
  background: #eee9fb;
  color: #101629;
  font-family: var(--font-body);
  font-size: 17px;
  padding: 0 14px;
  outline: none;
}

.portal-edit-form input[readonly] {
  opacity: 0.7;
  cursor: not-allowed;
}

.switch-row {
  position: relative;
  display: grid !important;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
}

.switch-row input {
  display: none;
}

.portal-switch {
  width: 56px;
  height: 30px;
  border-radius: 999px;
  background: #bbb;
  position: relative;
  cursor: pointer;
  transition: 0.2s ease;
}

.portal-switch::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: white;
  transition: 0.2s ease;
}

.switch-row input:checked + .portal-switch {
  background: var(--purple);
}

.switch-row input:checked + .portal-switch::after {
  transform: translateX(26px);
}

/* Condense Pilot Portal profile layout */
.portal-content {
  max-width: 1100px;
  padding: 28px 36px 60px;
}

.profile-grid,
.preferences-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 46px;
}

.portal-card {
  padding: 24px 28px;
}

.profile-edit-btn,
.preferences-btn {
  float: none;
  display: block;
  margin: 24px 0 0 auto;
}

.portal-layout {
  grid-template-columns: 220px 1fr;
}

.portal-sidebar {
  padding: 34px 22px;
}

.portal-card.preferences-card {
    max-width: 850px;
    margin-left: 0;
    margin-right: auto;
}

.preferences-card .preferences-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr)) !important;
  gap: 28px 70px;
}

/* Pilot Portal polish */
.portal-layout {
  grid-template-columns: 220px 1fr;
}

.portal-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 36px 60px;
}

.portal-card,
.preferences-card {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 32px 36px;
}

.profile-grid,
.preferences-card .preferences-grid {
  gap: 34px 80px;
}

.portal-card h2 {
  margin-bottom: 28px;
}

.profile-edit-btn,
.preferences-btn {
  margin-top: 34px;
  margin-left: auto;
}

.portal-side-link {
  min-height: 58px;
}

.portal-page {
  display: none;
}

.portal-page.active {
  display: block;
}

.dashboard-title {
  color: var(--purple) !important;
}

.dashboard-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 24px 0 30px;
}

.dashboard-stat-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: white;
  border-radius: 10px;
  padding: 18px;
  box-shadow: 0 8px 20px rgba(37, 25, 73, 0.18);
}

.dashboard-stat-card img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  background: #eee9fb;
  padding: 9px;
  border-radius: 8px;
  flex: 0 0 42px;
  margin-top: 0;
}

.dashboard-stat-card small {
  display: block;
  text-transform: uppercase;
  color: #303447;
  font-weight: 900;
  font-size: 12px;
}

.dashboard-stat-card strong {
  display: block;
  font-size: 30px;
  line-height: 1;
  margin: 8px 0;
}

.dashboard-stat-card span {
  color: #888;
  font-size: 13px;
}

.dashboard-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 24px;
}

.dashboard-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 10px 24px rgba(0,0,0,.12);

    display: flex;
    flex-direction: column;
}

.dashboard-card-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.dashboard-card-heading h2 {
  margin: 0;
  color: var(--purple);
  font-size: 22px;
  text-transform: uppercase;
}

.dashboard-card-heading a {
  color: var(--purple);
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
}

.recent-pirep-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.recent-pirep {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.recent-pirep strong {
  display: block;
  font-size: 18px;
}

.recent-pirep small {
  display: block;
  color: #777;
  margin-top: 3px;
}

.status-pill {
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.status-pill.approved {
  background: #e9ffe9;
  border: 2px solid #2fa84f;
  color: #2fa84f;
}

.status-pill.pending {
  background: #fff8d8;
  border: 2px solid #c5a200;
  color: #8a7000;
}

.status-pill.denied {
  background: #ffe3e3;
  border: 2px solid #c83535;
  color: #c83535;
}

.dashboard-outline-btn {
  width: 100%;
  min-height: 42px;
  margin-top: 24px;
  border: 3px solid var(--purple);
  border-radius: 7px;
  background: white;
  color: var(--purple);
  font-family: var(--font-button);
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fake-chart {
  height: 245px;
  display: flex;
  align-items: end;
  gap: 26px;
  padding: 40px 14px 34px;
  border-left: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  overflow: visible;
}

.fake-chart div {
  flex: 1;
  background: var(--purple);
  border-radius: 4px 4px 0 0;
  position: relative;
}

.fake-chart span {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 12px;
  color: #333;
}

@media (max-width: 1000px) {
  .dashboard-stat-grid,
  .dashboard-main-grid {
    grid-template-columns: 1fr;
  }
}

.dashboard-card-heading img {
  width: 28px !important;
  height: 28px !important;
  object-fit: contain;
  background: transparent !important;
  padding: 0 !important;
}

.dashboard-stat-card > div {
    flex: 1;
    text-align: center;
}

.dashboard-heading-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dashboard-heading-left img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
}

.dashboard-heading-left h2 {
    margin: 0;
}

.empty-pirep-state {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.empty-pirep-state p {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 700;
    color: #101629;
}

.empty-pirep-state small {
    color: #777;
    font-size: 14px;
}

.dashboard-outline-btn {
    margin-top: auto;
}

.empty-chart {
    position: relative;
}

.empty-chart-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #888;
    font-size: 14px;
    text-align: center;
}

.fake-chart div {
    flex: 1;
    background: var(--purple);
    border-radius: 4px 4px 0 0;
    position: relative;
}

.fake-chart div span {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 12px;
    font-weight: 700;
    color: #555;
}

.chart-value-label {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 11px;
    font-weight: 700;
    color: #555;
    z-index: 2;
}

.auth-loading-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ecefff;
}

.auth-loading-card {
    width: 420px;
    max-width: calc(100% - 40px);
    padding: 32px;
    background: #fff;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(37,25,73,.18);
}

.auth-loading-card img {
    width: 180px;
    margin-bottom: 20px;
}

.auth-loading-card h2 {
  margin: 0 0 8px;
  color: var(--purple);
  font-family: var(--font-section-title);
  font-size: 30px;
  text-transform: uppercase;
}

.auth-loading-card p {
  margin: 0;
  color: #555;
  font-size: 17px;
}

.ops-pirep-row {
    display: grid;
    grid-template-columns: 90px 1fr;
    align-items: center;
    margin-bottom: 8px;
}

.ops-pirep-label {
    color: var(--purple);
    font-size: 18px;
    font-weight: 700;
}

.ops-pirep-value {
    font-size: 18px;
    text-align: right;
}

/* =========================================================
   ABOUT US PAGE
   ========================================================= */

.about-page-body {
  background: #ffffff;
}

.about-page {
  width: min(1180px, calc(100% - 96px));
  margin: 0 auto;
  padding: 28px 0 54px;
}

.about-hero {
  min-height: 330px;
  border-radius: 34px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  padding: 46px 48px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.72) 40%, rgba(255,255,255,.30) 100%),
    url('assets/hero-map-bg.webp') center center / cover no-repeat;
  box-shadow: 0 8px 24px rgba(22, 26, 48, 0.18);
}

.about-hero-copy {
  width: min(520px, 95%);
  position: relative;
  z-index: 1;
}

.about-hero h1 {
  margin: 0;
  text-transform: uppercase;
  font-family: var(--font-hero-title);
  font-size: clamp(56px, 6vw, 86px);
  line-height: .86;
  letter-spacing: -0.015em;
  color: #070b18;
}

.about-hero h1 span {
  color: var(--purple);
}

.about-title-line,
.about-section-line {
  width: 88px;
  height: 5px;
  background: var(--purple);
  border-radius: 99px;
}

.about-title-line {
  margin: 24px 0 18px;
}

.about-hero h2 {
  margin: 0 0 14px;
  font-size: 23px;
  font-family: var(--font-section-title);
  color: #141721;
}

.about-hero p {
  margin: 0;
  max-width: 520px;
  font-size: 20px;
  line-height: 1.38;
  color: #555565;
}

.about-why-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  margin-top: 44px;
}

.about-why-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(22, 26, 48, 0.16);
  background: #100927;
}

.about-why-image img {
  width: 100%;
  display: block;
}

.about-why-copy h2,
.about-principles-section h2,
.about-different-section h2 {
  margin: 0;
  text-transform: uppercase;
  color: var(--purple);
  font-family: var(--font-section-title);
  font-size: clamp(36px, 3.3vw, 48px);
  line-height: .95;
  letter-spacing: -0.01em;
}

.about-why-copy .about-section-line,
.about-principles-section .about-section-line,
.about-different-section .about-section-line {
  margin: 12px 0 18px;
}

.about-why-copy p {
  margin: 0 0 18px;
  color: #252838;
  font-size: 18px;
  line-height: 1.42;
}

.about-check-grid {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 10px 42px;
  margin-top: 16px;
}

.about-check-grid div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--purple);
  font-family: var(--font-section-title);
  font-size: 27px;
  line-height: 1;
}

.about-check-grid img {
  width: 24px;
  height: auto;
  flex: 0 0 auto;
}

.about-principles-section,
.about-different-section {
  margin-top: 44px;
}

.about-principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 38px;
  margin-top: 34px;
}

.about-principle-card {
  min-height: 218px;
  padding: 28px 18px 24px;
  border-radius: 10px;
  background: #fff;
  text-align: center;
  box-shadow: 0 6px 18px rgba(22, 26, 48, 0.18);
  border: 1px solid rgba(222,221,234,.55);
}

.about-principle-card img {
  height: 64px;
  max-width: 92px;
  object-fit: contain;
  margin-bottom: 18px;
}

.about-principle-card h3 {
  margin: 0;
  text-transform: uppercase;
  color: #141721;
  font-family: var(--font-section-title);
  font-size: 28px;
  line-height: 1;
}

.about-principle-card span,
.about-different-card span {
  display: block;
  width: 40px;
  height: 4px;
  background: var(--purple);
  border-radius: 999px;
}

.about-principle-card span {
  margin: 16px auto 18px;
}

.about-principle-card p {
  margin: 0;
  color: #555565;
  font-size: 16px;
  line-height: 1.35;
}

.about-different-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 28px;
}

.about-different-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 110px;
  padding: 16px 20px;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(22, 26, 48, 0.16);
  border: 1px solid rgba(222,221,234,.6);
}

.about-different-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #eee9ff;
}

.about-different-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.about-different-card h3 {
  margin: 0;
  text-transform: uppercase;
  color: var(--purple);
  font-family: var(--font-section-title);
  font-size: 17px;
}

.about-different-card span {
  margin: 8px 0 8px;
  width: 38px;
  height: 3px;
}

.about-different-card p {
  margin: 0;
  color: #272a39;
  font-size: 15px;
  line-height: 1.28;
}

.about-apply-card {
  display: grid;
  grid-template-columns: 128px 1fr auto;
  gap: 28px;
  align-items: center;
  margin-top: 62px;
  padding: 32px 42px;
  border-radius: 10px;
  background: #ececff;
  box-shadow: 0 6px 18px rgba(22, 26, 48, 0.20);
}

.about-apply-logo {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 22px rgba(22, 26, 48, 0.20);
}

.about-apply-logo img {
  width: 78px;
  height: auto;
}

.about-apply-copy h2 {
  margin: 0;
  text-transform: uppercase;
  color: var(--purple);
  font-family: var(--font-section-title);
  font-size: clamp(35px, 3.2vw, 48px);
  line-height: 1;
}

.about-apply-copy .about-section-line {
  margin: 12px 0 14px;
}

.about-apply-copy p {
  margin: 0;
  max-width: 560px;
  color: #303040;
  font-size: 23px;
  line-height: 1.3;
}

.about-apply-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 220px;
  min-height: 64px;
  padding: 0 26px;
  border-radius: 9px;
  background: var(--purple);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--font-button);
  font-size: 28px;
  box-shadow: 0 10px 22px rgba(99,56,231,.28);
  transition: transform .2s ease;
}

.about-apply-btn:hover {
  transform: translateY(-2px);
}

.about-apply-btn span {
  font-size: 25px;
}

@media (max-width: 1024px) {
  .about-page {
    width: min(100% - 48px, 1180px);
  }

  .about-principles-grid {
    gap: 22px;
  }

  .about-check-grid {
    gap: 10px 24px;
  }

  .about-check-grid div {
    font-size: 23px;
  }

  .about-apply-card {
    grid-template-columns: 100px 1fr;
  }

  .about-apply-btn {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .about-page {
    width: min(100% - 28px, 1180px);
    padding-top: 16px;
  }

  .about-hero {
    padding: 34px 26px;
    border-radius: 24px;
  }

  .about-why-section {
    grid-template-columns: 1fr;
  }

  .about-check-grid {
    grid-template-columns: 1fr;
  }

  .about-principles-grid,
  .about-different-grid {
    grid-template-columns: 1fr;
  }

  .about-apply-card {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    padding: 30px 24px;
  }

  .about-apply-copy .about-section-line {
    margin-left: auto;
    margin-right: auto;
  }

  .about-apply-btn {
    grid-column: auto;
    justify-self: center;
  }
}

.chart-value-label {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 600;
  color: #555;
  white-space: nowrap;
}

.recent-pirep-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px solid #f0eef8;
}

.recent-pirep-row:last-child {
  border-bottom: none;
}

.recent-pirep-left {
  display: flex;
  flex-direction: column;
}

.recent-pirep-route {
  font-size: 18px;
  font-weight: 700;
  color: #111;
}

.recent-pirep-details {
  font-size: 14px;
  color: #777;
}

.recent-pirep-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.recent-pirep-status {
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.recent-pirep-status.approved {
  background: #d7f4c8;
  border: 2px solid #66b84e;
  color: #2f6f1f;
}

.recent-pirep-date {
  margin-top: 4px;
  font-size: 13px;
  color: #777;
}

.recent-pirep-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.recent-pirep-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 2px;
}

/* Clean aircraft search dropdown layout */
.aircraft-search-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: end;
}

.aircraft-search-form label {
  width: 100%;
}

.aircraft-search-form select {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border: 1px solid #cfcbe5;
  border-radius: 5px;
  background: #ffffff;
  color: #101629;
  font-family: var(--font-body);
  font-size: 16px;
}

.aircraft-search-form select:disabled {
  background: #f2f1f7;
  color: #9a9a9a;
  opacity: 1;
  cursor: not-allowed;
}

.aircraft-search-form .btn {
  grid-column: 1 / -1;
  width: 265px;
  height: 46px;
  margin-top: 20px;
  justify-self: center;
}

@media (max-width: 900px) {
  .aircraft-search-form {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   FLEET PAGE
   ========================================================= */
.fleet-page-body {
  background: #f7f8ff;
}

.fleet-page {
  width: min(1180px, calc(100% - 96px));
  margin: 0 auto;
  padding: 42px 0 64px;
}

.fleet-hero-card {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 36px;
  align-items: center;
  min-height: 420px;
  padding: 52px 48px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 12px 34px rgba(22, 26, 48, .14);
  overflow: hidden;
}

.fleet-hero-copy small {
  display: block;
  margin-bottom: 18px;
  color: var(--purple);
  font-family: var(--font-button);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.fleet-hero-copy h1 {
  margin: 0;
  color: #101629;
  font-family: var(--font-hero-title);
  font-size: clamp(48px, 5vw, 76px);
  line-height: .94;
  letter-spacing: -0.02em;
}

.fleet-hero-copy h1 span {
  color: var(--purple);
}

.fleet-title-line {
  width: 86px;
  height: 5px;
  margin: 24px 0 22px;
  background: var(--purple);
  border-radius: 999px;
}

.fleet-hero-copy p {
  max-width: 520px;
  margin: 0;
  color: #34384a;
  font-size: 20px;
  line-height: 1.38;
}

.fleet-hero-image-wrap {
  width: 360px;
  height: 360px;
  justify-self: center;
  border-radius: 50%;
  padding: 16px;
  background: #f1edff;
  box-shadow: 0 18px 38px rgba(99, 56, 231, .18);
}

.fleet-hero-image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 50%;
}

.fleet-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin: 36px 0 42px;
  padding: 26px;
  border-radius: 18px;
  background: #eeeaff;
}

.fleet-pillars article {
  min-height: 165px;
  padding: 22px 16px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(22, 26, 48, .10);
}

.fleet-pillars article img {
  height: 72px;
  width: 120px;
  object-fit: contain;
  display: block;
  margin: 0 auto 12px;
}

.fleet-pillars h3 {
  margin: 0 0 7px;
}

.fleet-pillars span {
  display: block;
  margin-bottom: 13px;
  color: var(--purple);
  font-size: 34px;
}

.fleet-pillars p {
  margin: 0;
  color: #424657;
  font-size: 14px;
  line-height: 1.3;
}

.fleet-section,
.fleet-requirements-card {
  margin-top: 34px;
  padding: 34px 36px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(22, 26, 48, .10);
}

.fleet-section-heading.center {
  text-align: center;
}

.fleet-section-heading h2 {
  margin: 0;
  color: #101629;
  font-family: var(--font-section-title);
  font-size: clamp(26px, 3vw, 38px);
  text-transform: uppercase;
}

.fleet-section-heading p {
  margin: 8px auto 0;
  max-width: 640px;
  color: #5d6375;
  font-size: 17px;
}

.fleet-family-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 30px;
}

.fleet-family-card {
  overflow: hidden;
  border: 1px solid #e5e0f8;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(22, 26, 48, .10);
}

.fleet-family-card img {
  width: 100%;
  height: 225px;
  display: block;
  object-fit: cover;
  background: #f0f0f0;
}

.fleet-family-card div {
  padding: 24px;
}

.fleet-family-card h3 {
  margin: 0 0 16px;
  color: var(--purple);
  font-family: var(--font-section-title);
  font-size: 25px;
  text-align: center;
  text-transform: uppercase;
}

.fleet-family-card ul {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  justify-content: center;
  gap: 10px 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fleet-family-card li {
  position: relative;
  padding-left: 16px;
  color: #101629;
  font-size: 16px;
}

.fleet-family-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--purple);
}

.fleet-expansion-card {
  background: #f5f2ff;
}

.fleet-expansion-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.fleet-expansion-grid span {
  width: 170px;
  min-height: 64px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;
  background: #fff;
  color: #101629;
  font-family: var(--font-button);

  box-shadow: 0 6px 14px rgba(22, 26, 48, .08);
}

.fleet-requirements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 28px;
}

.fleet-requirements-grid article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
  padding: 20px;
  border: 1px solid #e5e0f8;
  border-radius: 14px;
  background: #fff;
}

.fleet-requirements-grid span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 2px solid var(--purple);
  border-radius: 50%;
  color: var(--purple);
  font-family: var(--font-button);
}

.fleet-requirements-grid h3 {
  margin: 0 0 6px;
  color: #101629;
  font-family: var(--font-section-title);
  font-size: 17px;
  text-transform: uppercase;
}

.fleet-requirements-grid p {
  margin: 0;
  color: #5d6375;
  font-size: 14px;
  line-height: 1.32;
}

@media (max-width: 1000px) {
  .fleet-page {
    width: min(100% - 36px, 1180px);
  }

  .fleet-hero-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .fleet-title-line {
    margin-left: auto;
    margin-right: auto;
  }

  .fleet-hero-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .fleet-pillars,
  .fleet-requirements-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fleet-expansion-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 650px) {
  .fleet-page {
    width: min(100% - 24px, 1180px);
    padding-top: 24px;
  }

  .fleet-hero-card,
  .fleet-section,
  .fleet-requirements-card {
    padding: 26px 18px;
  }

  .fleet-hero-copy h1 {
    font-size: 44px;
  }

  .fleet-hero-image-wrap {
    width: min(285px, 100%);
    height: min(285px, 80vw);
  }

  .fleet-pillars,
  .fleet-family-grid,
  .fleet-requirements-grid,
  .fleet-expansion-grid {
    grid-template-columns: 1fr;
  }

  .fleet-family-card ul {
    grid-template-columns: 1fr;
    justify-content: start;
  }
}

.featured-flight-editor {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 22px;
  background: #f8f6ff;
  border: 2px solid #ded7ef;
  border-radius: 9px;
}

.featured-flight-editor input,
.featured-flight-editor select {
  width: 100%;
  height: 42px;
  padding: 0 12px;
  border: 2px solid #ded7ef;
  border-radius: 5px;
  background: white;
  font-family: var(--font-body);
}

.featured-flight-editor button {
  height: 44px;
  border: 3px solid var(--purple);
  border-radius: 5px;
  background: var(--purple);
  color: white;
  font-family: var(--font-button);
  cursor: pointer;
}

#featuredFlightsList {
  display: grid;
  gap: 14px;
}
/* =========================================================
   OPERATIONS - FEATURED FLIGHTS ACTIVE CARDS + MODAL
   ========================================================= */
.featured-flight-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.featured-flight-active-card {
  overflow: hidden;
  min-height: 310px;
  border: 2px solid #ded7ef;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(16, 22, 41, .12);
  cursor: pointer;
  transition: .18s ease;
}

.featured-flight-active-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(99, 56, 231, .18);
  border-color: var(--purple);
}

.featured-flight-active-card img,
.featured-flight-image-placeholder {
  width: 100%;
  height: 145px;
  display: block;
  object-fit: cover;
  background: #eee9fb;
}

.featured-flight-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a84a0;
  font-family: var(--font-button);
  text-transform: uppercase;
}

.featured-flight-active-content {
  padding: 18px 20px 20px;
}

.featured-flight-active-content span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 4px 10px;
  border: 1px solid #24b833;
  border-radius: 999px;
  background: #effff1;
  color: #0a9a18;
  font-family: var(--font-button);
  font-size: 11px;
  text-transform: uppercase;
}

.featured-flight-active-content h4 {
  margin: 0 0 8px;
  color: var(--purple);
  font-family: var(--font-section-title);
  font-size: 26px;
  line-height: 1;
}

.featured-flight-active-content strong {
  display: block;
  margin-bottom: 8px;
  color: #101629;
  font-family: var(--font-flight-route);
  font-size: 24px;
  line-height: 1;
}

.featured-flight-active-content p {
  margin: 0 0 4px;
  color: #101629;
  font-size: 17px;
}

.featured-flight-active-content small {
  color: #6b7280;
  font-size: 15px;
}

.featured-flight-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(10, 10, 20, .58);
}

.featured-flight-modal.open {
  display: flex;
}

.featured-flight-modal-card {
  position: relative;
  width: min(720px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
}

.featured-flight-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  border: none;
  background: transparent;
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
}

.featured-flight-modal-card h2 {
  margin: 0;
  color: #050509;
  font-family: var(--font-section-title);
  font-size: 42px;
}

.featured-flight-modal-card p {
  margin: 8px 0 24px;
  color: #5d6375;
  font-size: 17px;
}

.featured-flight-modal-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.featured-flight-modal-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-section-link);
  font-size: 14px;
  color: #101010;
  text-transform: uppercase;
}

.featured-flight-modal-form input,
.featured-flight-modal-form select {
  width: 100%;
  height: 44px;
  border: 2px solid #ded7ef;
  border-radius: 5px;
  background: #eee9fb;
  color: #101629;
  font-family: var(--font-body);
  font-size: 17px;
  padding: 0 14px;
  outline: none;
}

.featured-flight-modal-form input:focus,
.featured-flight-modal-form select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(99, 56, 231, .12);
}

.featured-flight-wide-field,
.featured-flight-modal-actions {
  grid-column: 1 / -1;
}

.featured-flight-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 12px;
}

.featured-flight-save-btn {
  min-width: 190px;
  height: 42px;
  border: 3px solid var(--purple);
  border-radius: 5px;
  background: var(--purple);
  color: #fff;
  font-family: var(--font-button);
  font-size: 15px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .featured-flight-card-grid,
  .featured-flight-modal-form {
    grid-template-columns: 1fr;
  }
}

.stat-icon-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
  margin: 0 auto 12px auto;
}

.featured-skeleton {
    height: 230px;
    border-radius: 12px;
    background: linear-gradient(
        90deg,
        #f1eff9 25%,
        #e8e3f7 50%,
        #f1eff9 75%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    from { background-position: 200% 0; }
    to { background-position: -200% 0; }
}
/* =========================================================
   APPLY PAGE + APPLICATION REVIEW
   ========================================================= */

.apply-page-body {
  margin: 0;
  background: #ecefff;
  color: #101629;
}

.apply-page {
  width: min(1180px, calc(100% - 40px));
  margin: 42px auto 70px;
}

.apply-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  align-items: center;
  gap: 28px;
  padding: 42px;
  border-radius: 18px;
  background: linear-gradient(135deg, #101629 0%, #251c54 55%, #6338e7 100%);
  color: #fff;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(37, 28, 84, .22);
}

.apply-hero .eyebrow {
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-section-link);
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #bfc9ff;
}

.apply-hero h1 {
  margin: 0;
  font-family: var(--font-page-title);
  font-size: clamp(46px, 7vw, 86px);
  line-height: .88;
  text-transform: uppercase;
}

.apply-hero p {
  max-width: 680px;
  margin: 18px 0 0;
  font-size: 20px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .86);
}

.apply-hero img {
  width: 100%;
  transform: rotate(-7deg);
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, .35));
}

.apply-card {
  margin-top: 34px;
  padding: 34px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(17, 18, 35, .12);
}

.apply-card-header h2 {
  margin: 0;
  font-family: var(--font-section-title);
  font-size: 44px;
}

.apply-card-header p {
  margin: 8px 0 28px;
  color: #5d6375;
  font-size: 18px;
}

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

.apply-form label {
  display: grid;
  gap: 8px;
}

.apply-form span {
  font-family: var(--font-section-link);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #251c54;
}

.apply-form input,
.apply-form select,
.apply-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 2px solid #ded7ef;
  border-radius: 8px;
  background: #f8f6ff;
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 16px;
  color: #101629;
  outline: none;
}

.apply-form textarea {
  resize: vertical;
}

.apply-form input:focus,
.apply-form select:focus,
.apply-form textarea:focus {
  border-color: var(--purple);
  background: #fff;
}

.apply-wide-field,
.apply-actions {
  grid-column: 1 / -1;
}

.apply-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 6px;
}

.apply-actions p {
  margin: 0;
  color: #5d6375;
  font-size: 16px;
}

.apply-actions button,
.application-review-card button {
  border: 3px solid var(--purple);
  border-radius: 7px;
  background: var(--purple);
  color: #fff;
  font-family: var(--font-button);
  font-size: 16px;
  cursor: pointer;
}

.apply-actions button {
  min-width: 220px;
  height: 50px;
}

.apply-actions button:disabled {
  opacity: .55;
  cursor: not-allowed;
}

.applications-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.application-review-card {
  padding: 22px;
  border: 2px solid #ded7ef;
  border-radius: 12px;
  background: #f8f6ff;
  box-shadow: 0 10px 24px rgba(17, 18, 35, .08);
}

.application-review-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.application-review-topline h4 {
  margin: 0;
  font-family: var(--font-section-title);
  font-size: 26px;
  color: var(--purple);
}

.application-review-topline span {
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
  color: #251c54;
  font-family: var(--font-section-link);
  font-size: 12px;
  text-transform: uppercase;
}

.application-review-card > strong {
  display: block;
  font-family: var(--font-section-title);
  font-size: 30px;
  color: #101629;
}

.application-review-card p {
  margin: 6px 0 18px;
  color: #5d6375;
}

.application-review-meta {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.application-review-meta div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #ded7ef;
}

.application-review-meta span {
  color: #5d6375;
}

.application-review-meta b {
  color: #101629;
  text-align: right;
}

.application-review-card small {
  display: block;
  margin-bottom: 16px;
  color: #5d6375;
}

.application-review-card button {
  width: 100%;
  min-height: 44px;
}

@media (max-width: 900px) {
  .apply-hero,
  .apply-form,
  .applications-review-grid {
    grid-template-columns: 1fr;
  }

  .apply-hero img {
    max-width: 260px;
    justify-self: center;
  }

  .apply-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .apply-actions button {
    width: 100%;
  }
}

.application-notice {
    background: rgba(99, 56, 231, 0.08);
    border: 1px solid rgba(99, 56, 231, 0.35);
    border-left: 4px solid #6338e7;
    border-radius: 10px;
    padding: 16px 18px;
    margin-bottom: 8px;
    color: #d9d9e6;
    line-height: 1.6;
}

.application-notice strong {
    color: #a50000;
}

.application-notice,
.application-notice p,
.application-notice span {
    color: #000000 !important;
    opacity: 1 !important;
}
