/* Falcon landing — loaded only on site home. */
.falcon-landing {
--radius: 0.25rem;

  --navy: #102a43;
  --navy-dark: #091d30;
  --navy-soft: #1d3b55;
  --warm-white: #faf8f4;
  --paper: #f4f1eb;
  --beige: #e9e5de;
  --line: #d8d4cc;
  --grey: #5f666b;
  --ink: #17242e;
  --green: #147a43;
  --red: #c62832;
  --gold: #b89552;

  --background: var(--warm-white);
  --foreground: var(--ink);
  --card: #fff;
  --card-foreground: var(--ink);
  --popover: #fff;
  --popover-foreground: var(--ink);
  --primary: var(--navy);
  --primary-foreground: #fff;
  --secondary: var(--paper);
  --secondary-foreground: var(--navy);
  --muted: var(--beige);
  --muted-foreground: var(--grey);
  --accent: var(--paper);
  --accent-foreground: var(--navy);
  --destructive: var(--red);
  --destructive-foreground: #fff;
  --border: rgb(16 42 67 / 14%);
  --input: rgb(16 42 67 / 14%);
  --ring: var(--gold);
  --font-serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --font-sans: "Sora", "Helvetica Neue", Arial, sans-serif;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
  background: var(--warm-white);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
}
.falcon-landing *, .falcon-landing *::before, .falcon-landing *::after { box-sizing: border-box; }
.falcon-landing a { color: inherit; text-decoration: none; }
.falcon-landing img { display: block; max-width: 100%; }
.falcon-landing p, .falcon-landing h1, .falcon-landing h2, .falcon-landing h3, .falcon-landing figure { margin: 0; }
.falcon-landing a:focus-visible, .falcon-landing summary:focus-visible, .falcon-landing button:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 4px;
}
.falcon-landing ::selection { background: color-mix(in srgb, var(--green) 28%, white); color: var(--navy-dark); }

.falcon-landing /*
 * Falcon Innovation Academy — editorial design system
 * Inspired by Falcon Expert Institute: navy,
.falcon-landing warm paper,
.falcon-landing serif display,
.falcon-landing UAE accents.
 */


/* ——— Landing shell ——— */
.page-shell {

  width: min(1320px, calc(100% - 80px));
  margin-inline: auto;

}
.falcon-landing .section-kicker {

  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--green);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.19em;
  text-transform: uppercase;

}
.falcon-landing .section-kicker.light-kicker {

  color: #8bbda1;

}
.falcon-landing .uae-rule,
.falcon-landing .accent-rule {

  height: 3px;
  display: grid;
  grid-template-columns: 18px 1fr;

}
.falcon-landing .uae-rule {

  width: 54px;

}
.falcon-landing .accent-rule {

  width: 83px;
  grid-template-columns: 30px 1fr;
  margin-top: 31px;

}
.falcon-landing .uae-rule i,
.falcon-landing .accent-rule i {

  background: var(--red);

}
.falcon-landing .uae-rule b,
.falcon-landing .accent-rule b {

  background: var(--green);

}
.falcon-landing .button {

  min-height: 53px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 23px;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;

}
.falcon-landing .button-navy {

  background: var(--navy);
  color: #fff;

}
.falcon-landing .button-navy:hover {

  background: var(--green);

}
.falcon-landing .button-white {

  background: #fff;
  color: var(--navy);

}
.falcon-landing .button-white:hover {

  background: var(--green);
  color: #fff;

}
.falcon-landing .button-ghost {

  border: 1px solid rgba(255, 255, 255, 0.42);
  color: #fff;

}
.falcon-landing .button-ghost:hover {

  background: #fff;
  color: var(--navy);

}
.falcon-landing .button-outline {

  border: 1px solid var(--navy);
  color: var(--navy);

}
.falcon-landing .button-outline:hover {

  background: var(--navy);
  color: #fff;

}
.falcon-landing .text-link {

  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-transform: uppercase;

}
.falcon-landing .text-link span {

  font-size: 18px;
  font-weight: 400;
  transition: transform 180ms ease;

}
.falcon-landing .text-link:hover span {

  transform: translateX(4px);

}
.falcon-landing .lead-serif {

  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.55;

}
.falcon-landing /* ——— Header ——— */
.institution-bar {

  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;

}
.falcon-landing .institution-bar-inner {

  min-height: 33px;
  display: flex;
  align-items: center;
  justify-content: space-between;

}
.falcon-landing .institution-bar-inner > div {

  display: flex;
  gap: 30px;

}
.falcon-landing .institution-bar-inner > div span + span::before {

  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: var(--gold);

}
.falcon-landing .institution-bar-inner > div span {

  position: relative;

}
.falcon-landing .site-header {

  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
  border-bottom: 1px solid rgba(16, 42, 67, 0.14);

}
.falcon-landing .header-main {

  min-height: 112px;
  display: grid;
  grid-template-columns: minmax(220px, 380px) 1fr;
  align-items: stretch;
  column-gap: 28px;

}
.falcon-landing .logo-link {

  display: flex;
  align-items: center;
  padding: 12px 24px 12px 0;
  border-right: 1px solid var(--line);

}
.falcon-landing .logo-link img,
.falcon-landing .full-logo {

  width: min(100%, 360px);
  height: auto;
  max-height: 88px;
  object-fit: contain;
  object-position: left center;

}
.falcon-landing .desktop-navigation {

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-width: 0;

}
.falcon-landing .main-nav {

  display: flex;
  align-items: center;
  gap: clamp(14px, 1.2vw, 24px);

}
.falcon-landing .main-nav a {

  white-space: nowrap;
  color: #263b4d;
  font-size: 12.5px;
  font-weight: 680;
  letter-spacing: 0.025em;
  transition: color 180ms ease;
  display: inline-flex;
  align-items: center;
  padding: 2px 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;

}
.falcon-landing .main-nav a:hover {

  color: var(--green);
  background: transparent;
  box-shadow: none;

}
.falcon-landing .main-nav a:focus {

  outline: none;
  background: transparent;
  box-shadow: none;

}
.falcon-landing .main-nav a:focus-visible {

  outline: 2px solid var(--gold);
  outline-offset: 3px;
  background: transparent;
  box-shadow: none;

}
.falcon-landing .main-nav a:active {

  color: var(--green);
  background: transparent;
  box-shadow: none;

}
.falcon-landing .main-nav a[aria-current="page"] {

  color: var(--navy);
  background: transparent;
  box-shadow: inset 0 -2px 0 var(--green);

}
.falcon-landing .header-cta {

  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 17px;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;

}
.falcon-landing .header-cta:hover {

  background: var(--green);

}
.falcon-landing .mobile-nav-trigger {

  display: none;

}
.falcon-landing /* ——— Hero ——— */
.hero {

  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(420px, 42%) 1fr;
  background: var(--paper);
  border-bottom: 1px solid var(--line);

}
.falcon-landing .hero-copy {

  position: relative;
  display: flex;
  justify-content: flex-end;
  overflow: hidden;

}
.falcon-landing .hero-copy::before {

  content: "FIA";
  position: absolute;
  left: -44px;
  bottom: -95px;
  color: rgba(16, 42, 67, 0.035);
  font-family: var(--font-serif);
  font-size: 270px;
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 1;
  pointer-events: none;

}
.falcon-landing .hero-copy-inner {

  position: relative;
  z-index: 1;
  width: min(560px, calc(100% - 80px));
  margin-right: 58px;
  padding: 82px 0 64px;
  align-self: center;

}
.falcon-landing .hero .eyebrow {

  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--green);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.19em;
  text-transform: uppercase;

}
.falcon-landing .hero .eyebrow span {

  color: var(--red);

}
.falcon-landing .hero h1 {

  margin-top: 25px;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: clamp(42px, 4.2vw, 68px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;

}
.falcon-landing .hero h1 em {

  color: var(--navy-soft);
  font-style: italic;
  font-weight: 400;

}
.falcon-landing .hero-lead {

  max-width: 510px;
  margin-top: 28px;
  color: #56626b;
  font-size: 17px;
  line-height: 1.72;

}
.falcon-landing .hero-actions {

  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;

}
.falcon-landing .hero-note {

  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #7b817f;
  font-family: var(--font-serif);
  font-size: 13px;
  font-style: italic;

}
.falcon-landing .hero-image {

  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: var(--navy);

}
.falcon-landing .hero-image::after {

  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 29, 48, 0.16), transparent 40%),
    linear-gradient(0deg, rgba(9, 29, 48, 0.58), transparent 34%);

}
.falcon-landing .hero-image img {

  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  object-position: center 51%;

}
.falcon-landing .hero-image figcaption {

  position: absolute;
  z-index: 2;
  left: 38px;
  right: 38px;
  bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.82);
  font-size: 9px;
  font-weight: 670;
  letter-spacing: 0.16em;
  text-transform: uppercase;

}
.falcon-landing /* ——— Program / mission ——— */
.mission-section {

  padding: 116px 0;
  overflow: hidden;
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.72);

}
.falcon-landing .mission-grid {

  display: grid;
  grid-template-columns: 0.87fr 1.13fr;
  gap: 92px;
  align-items: center;

}
.falcon-landing .mission-copy h2 {

  margin-top: 17px;
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(42px, 4.3vw, 64px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;

}
.falcon-landing .mission-copy > p:not(.section-kicker) {

  max-width: 580px;
  margin-top: 23px;
  font-size: 15px;
  line-height: 1.82;

}
.falcon-landing .mission-copy p.mission-lead {

  margin-top: 31px;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 21px;
  line-height: 1.58;

}
.falcon-landing .mission-stats {

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 28px;
  max-width: 420px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);

}
.falcon-landing .mission-stats strong {

  display: block;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;

}
.falcon-landing .mission-stats span {

  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;

}
.falcon-landing .light-link {

  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-top: 37px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-transform: uppercase;

}
.falcon-landing .light-link:hover {

  border-color: var(--green);

}
.falcon-landing .mission-collage {

  position: relative;
  min-height: 560px;

}
.falcon-landing .mission-main-image,
.falcon-landing .mission-small-image {

  position: absolute;
  overflow: hidden;

}
.falcon-landing .mission-main-image {

  top: 0;
  left: 0;
  width: 68%;
  height: 480px;

}
.falcon-landing .mission-main-image::after,
.falcon-landing .mission-small-image::after {

  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 29, 48, 0.5), transparent 45%);

}
.falcon-landing .mission-main-image img,
.falcon-landing .mission-small-image img {

  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78);

}
.falcon-landing .mission-main-image figcaption,
.falcon-landing .mission-small-image figcaption {

  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 13px;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;

}
.falcon-landing .mission-small-image {

  z-index: 2;
  top: 52px;
  right: 0;
  width: 37%;
  height: 220px;
  border: 8px solid var(--navy-dark);

}
.falcon-landing .mission-small-image.second {

  top: auto;
  right: 3%;
  bottom: 0;
  width: 43%;
  height: 240px;

}
.falcon-landing /* ——— Courses slider ——— */
.courses-section.falcon-course-slider {

  padding: 72px 0 78px;
  background: var(--warm-white);
  text-align: left;

}
.falcon-landing .falcon-slider-head {

  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 18px;

}
.falcon-landing .falcon-slider-copy {

  flex: 0 1 780px;
  width: min(780px, 100%);

}
.falcon-landing .falcon-slider-eyebrow {

  margin: 0 0 17px;
  color: var(--green);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;

}
.falcon-landing .falcon-slider-copy > h2 {

  margin: 0 0 15px;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: clamp(44px, 4.2vw, 58px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-wrap: balance;

}
.falcon-landing .falcon-slider-subtitle {

  margin: 0;
  color: var(--grey);
  font-size: 15px;
  line-height: 1.6;

}
.falcon-landing .falcon-slider-controls {

  display: grid;
  grid-template-columns: auto 48px 48px;
  align-items: center;
  flex-shrink: 0;
  margin-bottom: 2px;

}
.falcon-landing .falcon-slider-count {

  margin-right: 20px;
  color: var(--grey);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;

}
.falcon-landing .falcon-slider-current {

  color: var(--green);

}
.falcon-landing .falcon-slider-arrow {

  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--navy);
  font-size: 17px;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;

}
.falcon-landing .falcon-slider-next {

  border-color: var(--navy);
  background: var(--navy);
  color: #fff;

}
.falcon-landing .falcon-slider-next:hover:not(:disabled) {

  border-color: var(--green);
  background: var(--green);

}
.falcon-landing .falcon-slider-arrow:disabled {

  opacity: 0.35;
  cursor: default;

}
.falcon-landing .falcon-slider-viewport {

  overflow: hidden;

}
.falcon-landing .falcon-slider-track {

  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  width: 100%;
  margin: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;

}
.falcon-landing .falcon-slider-track::-webkit-scrollbar {

  display: none;

}
.falcon-landing .falcon-course-card {

  display: grid;
  grid-template-columns: minmax(360px, 0.84fr) minmax(0, 1.16fr);
  flex: 0 0 78%;
  width: 78%;
  max-width: 78%;
  min-height: 350px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  color: inherit;
  scroll-snap-align: start;
  text-decoration: none;
  transition: border-color 180ms ease;

}
.falcon-landing .falcon-course-card:hover {

  border-color: color-mix(in srgb, var(--green) 35%, var(--line));

}
.falcon-landing .falcon-course-card__media {

  width: 100%;
  height: 100%;
  min-height: 350px;
  border-right: 1px solid var(--line);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

}
.falcon-landing .falcon-course-card__body {

  display: flex;
  flex-direction: column;
  min-height: 350px;
  padding: 24px 30px;

}
.falcon-landing .falcon-course-step {

  margin: 0 0 10px;
  color: var(--green);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;

}
.falcon-landing .falcon-course-card h3 {

  margin: 0 0 14px;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: clamp(26px, 2.25vw, 34px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.1;
  text-wrap: balance;

}
.falcon-landing .falcon-course-card__desc {

  margin: 0;
  color: var(--grey);
  font-size: 14px;
  line-height: 1.55;

}
.falcon-landing .falcon-course-card__footer {

  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);

}
.falcon-landing .falcon-course-status {

  color: var(--green);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;

}
.falcon-landing .falcon-course-action {

  color: var(--navy);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;

}
.falcon-landing .falcon-course-action::after {

  content: "  →";

}
.falcon-landing .falcon-slider-dots {

  display: flex;
  justify-content: center;
  gap: 9px;
  margin: 16px 0 0;

}
.falcon-landing .falcon-slider-dot {

  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #d3d3cf;
  cursor: pointer;
  transition: width 180ms ease, border-radius 180ms ease, background 180ms ease;

}
.falcon-landing .falcon-slider-dot.is-active {

  width: 28px;
  border-radius: 99px;
  background: var(--green);

}
.falcon-landing /* ——— Corporate ——— */
/* Mirrored vs .why-split (copy left / photo right) so the two blocks don't read as one */
.corporate-section {

  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 720px;
  background: var(--warm-white);
  border-top: 1px solid var(--line);

}
.falcon-landing .corporate-photo {

  position: relative;
  order: 2;
  min-height: 720px;
  overflow: hidden;

}
.falcon-landing .corporate-photo::after {

  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 29, 48, 0.7), transparent 43%);

}
.falcon-landing .corporate-photo img {

  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
  filter: saturate(0.75);

}
.falcon-landing .corporate-photo-label {

  position: absolute;
  z-index: 2;
  left: 40px;
  right: max(40px, calc((100vw - 1320px) / 2));
  bottom: 38px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
  color: #fff;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;

}
.falcon-landing .corporate-copy {

  order: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;

}
.falcon-landing .corporate-copy-inner {

  width: min(570px, calc(100% - 90px));
  margin-right: 72px;
  padding: 72px 0;

}
.falcon-landing .corporate-copy h2 {

  margin-top: 18px;
  margin-bottom: 28px;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.99;

}
.falcon-landing .corporate-copy-inner > p:not(.section-kicker):not(.lead-serif) {

  margin-top: 18px;
  color: var(--grey);
  font-size: 14px;
  line-height: 1.78;

}
.falcon-landing .corporate-copy .button-outline {

  margin-top: 35px;

}
.falcon-landing /* ——— Why / uniqueness split ——— */
.why-split {

  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 720px;
  background: var(--paper);

}
.falcon-landing .why-photo {

  position: relative;
  min-height: 720px;
  overflow: hidden;

}
.falcon-landing .why-photo::after {

  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 29, 48, 0.7), transparent 43%);

}
.falcon-landing .why-photo img {

  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
  filter: saturate(0.75);

}
.falcon-landing .why-photo-label {

  position: absolute;
  z-index: 2;
  left: max(40px, calc((100vw - 1320px) / 2));
  right: 40px;
  bottom: 38px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
  color: #fff;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;

}
.falcon-landing .why-copy {

  display: flex;
  align-items: center;

}
.falcon-landing .why-copy-inner {

  width: min(570px, calc(100% - 90px));
  margin-left: 72px;
  padding: 72px 0;

}
.falcon-landing .why-copy h2 {

  margin-top: 18px;
  margin-bottom: 28px;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.99;

}
.falcon-landing .why-points {

  margin-top: 36px;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);

}
.falcon-landing .why-point {

  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);

}
.falcon-landing .why-point span {

  color: var(--red);
  font-family: var(--font-serif);
  font-size: 13px;
  font-style: italic;

}
.falcon-landing .why-point h3 {

  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;

}
.falcon-landing .why-point p {

  margin-top: 6px;
  color: var(--grey);
  font-size: 13px;
  line-height: 1.65;

}
.falcon-landing /* ——— Certificate ——— */
.certificate-section {

  padding: 112px 0;
  background: var(--warm-white);
  border-top: 1px solid var(--line);

}
.falcon-landing .certificate-grid {

  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;

}
.falcon-landing .certificate-copy h2 {

  margin-top: 18px;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;

}
.falcon-landing .certificate-copy p {

  margin-top: 22px;
  max-width: 520px;
  color: var(--grey);
  font-size: 15px;
  line-height: 1.78;

}
.falcon-landing .certificate-frame {

  position: relative;
  background: transparent;
  padding: 0;
  border: 0;

}
.falcon-landing /* Sample certificate image */
.cert-card {

  position: relative;
  width: 100%;
  overflow: hidden;
  background: #f9f8f3;
  border: 1px solid var(--line);
  box-shadow: 0 28px 70px rgba(9, 29, 48, 0.16);

}
.falcon-landing .cert-card__image {

  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1024 / 723;
  object-fit: contain;
  object-position: center;

}
.falcon-landing /* ——— FAQ ——— */
.faq-section {

  padding: 112px 0;
  background: #fff;
  border-top: 1px solid var(--line);

}
.falcon-landing .faq-grid {

  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 72px;

}
.falcon-landing .faq-grid h2 {

  margin-top: 18px;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;

}
.falcon-landing .faq-grid > div > p {

  margin-top: 22px;
  max-width: 360px;
  color: var(--grey);
  font-size: 14px;
  line-height: 1.75;

}
.falcon-landing .faq-list {

  border-top: 1px solid var(--navy);

}
.falcon-landing .faq-item {

  border-bottom: 1px solid var(--line);

}
.falcon-landing .faq-item summary {

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  cursor: pointer;
  list-style: none;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;

}
.falcon-landing .faq-item summary::-webkit-details-marker {

  display: none;

}
.falcon-landing .faq-item summary b {

  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--navy);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 400;
  transition:
    background 180ms ease,
    color 180ms ease;

}
.falcon-landing .faq-item[open] summary b {

  background: var(--navy);
  color: #fff;

}
.falcon-landing .faq-item p {

  padding: 0 0 26px;
  max-width: 640px;
  color: var(--grey);
  font-size: 14px;
  line-height: 1.75;

}
.falcon-landing /* ——— Final CTA ——— */
.final-cta {

  position: relative;
  padding: 100px 0 105px;
  overflow: hidden;
  background: var(--navy);
  color: #fff;

}
.falcon-landing .final-cta::before {

  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 9px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    var(--green) 0 48%,
    #fff 48% 58%,
    var(--red) 58% 100%
  );

}
.falcon-landing .final-cta-grid {

  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.83fr;
  gap: 90px;
  align-items: end;

}
.falcon-landing .final-cta h2 {

  margin-top: 17px;
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(42px, 4.3vw, 64px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;

}
.falcon-landing .final-cta-copy > p {

  max-width: 500px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.5;

}
.falcon-landing .final-actions {

  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;

}
.falcon-landing /* ——— Footer ——— */
.site-footer {

  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.74);

}
.falcon-landing .footer-top {

  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(2, minmax(140px, 0.9fr));
  gap: clamp(30px, 3.2vw, 52px);
  padding: 54px 0 50px;

}
.falcon-landing .footer-brand a {

  display: inline-block;

}
.falcon-landing .footer-brand img,
.falcon-landing .footer-logo {

  display: block;
  width: min(280px, 100%);
  height: auto;

}
.falcon-landing .footer-brand p {

  margin-top: 12px;
  max-width: 320px;
  font-size: 13px;
  line-height: 1.7;

}
.falcon-landing .footer-brand p:first-of-type {

  margin-top: 18px;

}
.falcon-landing .footer-column {

  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 8px;

}
.falcon-landing .footer-column h3 {

  margin-bottom: 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.17em;
  text-transform: uppercase;

}
.falcon-landing .footer-column a,
.falcon-landing .footer-column button {

  background: none;
  border: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.76);
  font: inherit;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  transition: color 160ms ease;

}
.falcon-landing .footer-column a:hover,
.falcon-landing .footer-column button:hover {

  color: #fff;

}
.falcon-landing .footer-bottom {

  min-height: 72px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
  letter-spacing: 0.035em;
  padding: 22px 0;

}
.falcon-landing /* ——— Reveal ——— */
@keyframes section-reveal {

  from {
    opacity: 0;
    transform: translate3d(var(--reveal-x, 0), var(--reveal-y, 24px), 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

}
.falcon-landing .reveal {
  opacity: 1;
  transform: none;
}
.falcon-landing .reveal-left {

  --reveal-x: -24px;
  --reveal-y: 0;

}
.falcon-landing .reveal-right {

  --reveal-x: 24px;
  --reveal-y: 0;

}
.falcon-landing [data-in-view="true"] .reveal {

  animation: section-reveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: var(--reveal-delay, 0ms);

}
.falcon-landing /* ——— Responsive ——— */
@media (max-width: 1100px) {

  .page-shell {
    width: min(100% - 56px, 1080px);
  }

  .header-cta {
    display: none;
  }

  .hero {
    grid-template-columns: 48% 52%;
  }

  .hero-copy-inner {
    width: calc(100% - 56px);
    margin-right: 28px;
  }

  .falcon-slider-head,
  .mission-grid,
  .certificate-grid,
  .faq-grid,
  .final-cta-grid,
  .why-split,
  .corporate-section {
    grid-template-columns: 1fr;
  }

  .falcon-landing .falcon-slider-head {
    display: block;
  }

  .falcon-landing .falcon-slider-copy > h2 {
    font-size: clamp(38px, 10.5vw, 48px);
  }

  .falcon-landing .falcon-slider-controls {
    grid-template-columns: auto 46px 46px;
    justify-content: start;
    margin: 24px 0 0;
  }

  .falcon-landing .falcon-slider-arrow {
    width: 46px;
    height: 46px;
  }

  .falcon-landing .falcon-course-card {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .falcon-landing .falcon-course-card__media {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .falcon-landing .falcon-course-card__body {
    min-height: 350px;
    padding: 25px 22px 26px;
  }

  .falcon-landing .falcon-course-card h3 {
    font-size: 27px;
  }

  .why-copy-inner {
    width: min(100% - 56px, 720px);
    margin: 0 auto;
  }

  .corporate-copy-inner {
    width: min(100% - 56px, 720px);
    margin: 0 auto;
  }

  /* Stack photo → copy on mobile (natural DOM order) */
  .corporate-photo,
  .corporate-copy {
    order: unset;
  }

  .corporate-copy {
    justify-content: flex-start;
  }

  .why-photo,
  .why-photo img,
  .corporate-photo,
  .corporate-photo img {
    min-height: 480px;
  }

  .corporate-photo-label {
    left: 40px;
    right: 40px;
  }

  .mission-collage {
    max-width: 720px;
    width: 100%;
    min-height: 500px;
  }

}
@media (max-width: 900px) {

  .falcon-landing .institution-bar-inner > div span:not(:last-child) {
    display: none;
  }

  .falcon-landing .header-main {
    min-height: 116px;
    grid-template-columns: minmax(200px, 320px) 1fr;
  }

  .falcon-landing .full-logo {
    width: min(100%, 300px);
  }

  .falcon-landing .desktop-navigation .main-nav {
    display: none;
  }

  .falcon-landing .mobile-nav-trigger {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .falcon-landing .hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .falcon-landing .hero-copy {
    justify-content: center;
  }

  .falcon-landing .hero-copy-inner {
    width: min(100% - 56px, 720px);
    margin: 0;
    padding: 64px 0 56px;
  }

  .falcon-landing .hero-image,
  .falcon-landing .hero-image img {
    min-height: 420px;
  }

}
@media (max-width: 680px) {

  .falcon-landing .page-shell {
    width: calc(100% - 36px);
  }

  .falcon-landing .institution-bar-inner > div {
    display: none;
  }

  .falcon-landing .header-main {
    min-height: 80px;
    grid-template-columns: 1fr auto;
  }

  .falcon-landing .logo-link {
    border-right: 0;
    padding-right: 0;
  }

  .falcon-landing .logo-link img,
  .falcon-landing .full-logo {
    width: min(100%, 240px);
    max-height: 64px;
  }

  .falcon-landing .hero-copy-inner {
    width: calc(100% - 36px);
    padding: 48px 0 40px;
  }

  .falcon-landing .hero h1 {
    font-size: 40px;
  }

  .falcon-landing .hero-image,
  .falcon-landing .hero-image img {
    min-height: 320px;
  }

  .falcon-landing .hero-image figcaption {
    left: 18px;
    right: 18px;
  }

  .falcon-landing .hero-actions,
  .falcon-landing .final-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .falcon-landing .button {
    width: 100%;
    justify-content: center;
  }

  .falcon-landing .mission-section,
  .falcon-landing .courses-section,
  .falcon-landing .certificate-section,
  .falcon-landing .faq-section {
    padding: 76px 0 82px;
  }

  .falcon-landing .mission-collage {
    min-height: 420px;
  }

  .falcon-landing .mission-main-image {
    width: 82%;
    height: 320px;
  }

  .falcon-landing .mission-small-image {
    height: 160px;
  }

  .falcon-landing .mission-small-image.second {
    height: 180px;
  }

  .falcon-landing .why-photo-label b {
    display: none;
  }

  .falcon-landing .footer-top {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
  }

  .falcon-landing .footer-brand {
    grid-column: 1 / -1;
  }

}
@media (prefers-reduced-motion: reduce) {

  .falcon-landing html {
    scroll-behavior: auto;
  }

  .falcon-landing .reveal {
    opacity: 1;
    transform: none;
  }

  [data-in-view="true"] .reveal {
    animation: none;
  }

}

.falcon-landing .header-actions { display: flex; align-items: center; gap: 12px; }
.falcon-landing .header-auth { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy); white-space: nowrap; }
.falcon-landing .header-auth:hover { color: var(--green); }
.falcon-landing .mobile-nav-trigger__button { display: inline-flex; align-items: center; gap: 12px; border: 0; background: none; padding: 0; font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy); cursor: pointer; }
.falcon-landing .mobile-nav-panel { position: fixed; inset: 0; z-index: 60; pointer-events: none; visibility: hidden; }
.falcon-landing .mobile-nav-panel.is-open { pointer-events: auto; visibility: visible; }
.falcon-landing .mobile-nav-panel__backdrop { position: absolute; inset: 0; background: rgba(9, 29, 48, 0.45); opacity: 0; transition: opacity 180ms ease; }
.falcon-landing .mobile-nav-panel.is-open .mobile-nav-panel__backdrop { opacity: 1; }
.falcon-landing .mobile-nav-panel__sheet { position: absolute; top: 0; right: 0; width: min(88vw, 24rem); height: 100%; background: var(--warm-white); border-left: 1px solid var(--line); padding: 4rem 1.5rem 2rem; transform: translateX(100%); transition: transform 220ms ease; overflow-y: auto; }
.falcon-landing .mobile-nav-panel.is-open .mobile-nav-panel__sheet { transform: translateX(0); }
.falcon-landing .mobile-nav-panel__title { font-size: 0.875rem; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--navy); }
.falcon-landing .mobile-nav-panel__links { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.falcon-landing .mobile-nav-panel__links a { font-size: 1.125rem; font-weight: 600; color: var(--navy); }
.falcon-landing .legal-modal { position: fixed; inset: 0; z-index: 70; display: flex; align-items: center; justify-content: center; padding: 1.5rem; pointer-events: none; visibility: hidden; }
.falcon-landing .legal-modal.is-open { pointer-events: auto; visibility: visible; }
.falcon-landing .legal-modal__backdrop { position: absolute; inset: 0; background: rgba(9, 29, 48, 0.55); }
.falcon-landing .legal-modal__dialog { position: relative; z-index: 1; width: min(42rem, 100%); max-height: 85vh; overflow-y: auto; background: var(--warm-white); border: 1px solid rgba(16, 42, 67, 0.1); padding: 1.75rem 1.5rem; }
.falcon-landing .legal-modal__title { font-size: 1.25rem; font-weight: 800; color: var(--ink); }
.falcon-landing .legal-modal__meta { margin-top: 0.35rem; font-size: 0.875rem; color: rgba(23, 36, 46, 0.5); }
.falcon-landing .legal-modal__section { margin-top: 1.25rem; }
.falcon-landing .legal-modal__section h3 { font-weight: 700; }
.falcon-landing .legal-modal__section p { margin-top: 0.35rem; font-size: 0.875rem; line-height: 1.65; color: rgba(0,0,0,0.65); }
.falcon-landing .legal-modal__close { position: absolute; top: 1rem; right: 1rem; width: 2.25rem; height: 2.25rem; border: 1px solid var(--line); background: #fff; cursor: pointer; font-size: 1.25rem; }
body.pagelayout-frontpage.falcon-landing-active {
  padding-top: 0 !important;
}
body.pagelayout-frontpage.falcon-landing-active #page-wrapper,
body.pagelayout-frontpage.falcon-landing-active #page { max-width: none; padding: 0; margin: 0; }
body.pagelayout-frontpage.falcon-landing-active [role="main"] {
  padding: 0;
  margin: 0;
}
body.pagelayout-login .falcon-landing-chrome .site-header {
  position: sticky;
  top: 0;
}
body.pagelayout-login .falcon-landing.falcon-landing-chrome {
  min-height: 0 !important;
  height: auto;
}
body.pagelayout-login #page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body.pagelayout-login .falcon-landing-chrome {
  flex: 0 0 auto;
}
body.pagelayout-login #page {
  flex: 1 1 auto;
  min-height: 0 !important;
  display: flex;
  flex-direction: column;
}
body.pagelayout-login #page-content {
  flex: 1 1 auto;
  min-height: 0 !important;
}
body.pagelayout-login .login-layout-left {
  position: relative !important;
  top: auto !important;
  height: auto !important;
  align-self: stretch !important;
}
body.pagelayout-login .login-layout-right,
body.pagelayout-login .login-layout-right-content {
  min-height: 100%;
}
body.pagelayout-login .login-layout-right-content {
  min-height: 100% !important;
}
body.falcon-chrome-active {
  padding-top: 0 !important;
}
body.falcon-chrome-active .falcon-landing.falcon-landing-chrome {
  min-height: 0 !important;
  height: auto;
}
body.falcon-chrome-active .falcon-app-chrome .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1040;
}
/* Boost #page-wrapper is flex — reserve app header height or #page overlaps the chrome. */
body.falcon-chrome-active #page-wrapper {
  flex-direction: column;
}
body.falcon-chrome-active .falcon-app-chrome.falcon-landing-chrome {
  flex: 0 0 auto;
  width: 100%;
  /* Spacer for fixed .site-header — keeps #page from jumping under the chrome. */
  height: var(--falcon-app-chrome-height, 7.0625rem) !important;
  min-height: var(--falcon-app-chrome-height, 7.0625rem) !important;
}
body.falcon-chrome-active .navbar.fixed-top {
  display: none !important;
}

/* Boost drawers use ~60px top offset; Falcon app header is taller. */
@media (min-width: 992px) {
  body.falcon-chrome-active .drawer-left,
  body.falcon-chrome-active .drawer-right,
  body.falcon-chrome-active #theme_boost-drawers-courseindex.drawer {
    top: var(--falcon-app-chrome-height, 7.0625rem);
    height: calc(100vh - var(--falcon-app-chrome-height, 7.0625rem));
  }

  body.falcon-chrome-active #page.drawers {
    margin-top: 0;
  }

  body.falcon-chrome-active .drawer-toggles .drawer-toggler {
    top: calc(var(--falcon-app-chrome-height, 7.0625rem) + 1rem);
  }

  body:not(.falcon-chrome-active):not(.pagelayout-login):not(.falcon-landing-active) .drawer-left,
  body:not(.falcon-chrome-active):not(.pagelayout-login):not(.falcon-landing-active) .drawer-right,
  body:not(.falcon-chrome-active):not(.pagelayout-login):not(.falcon-landing-active) #theme_boost-drawers-courseindex.drawer {
    top: var(--falcon-navbar-height, 6rem);
    height: calc(100vh - var(--falcon-navbar-height, 6rem));
  }

  body:not(.falcon-chrome-active):not(.pagelayout-login):not(.falcon-landing-active) #page.drawers {
    margin-top: var(--falcon-navbar-height, 6rem);
  }

  body:not(.falcon-chrome-active):not(.pagelayout-login):not(.falcon-landing-active) .drawer-toggles .drawer-toggler {
    top: calc(var(--falcon-navbar-height, 6rem) + 1rem);
  }
}
.falcon-landing-chrome.chrome-mode-minimal .desktop-navigation {
  justify-content: flex-end;
}

/* App chrome — user menu toggle */
.falcon-app-chrome .header-user-menu {
  margin-left: 4px;
}
.falcon-app-chrome .header-user-menu .usermenu,
.falcon-app-chrome .header-user-menu .dropdown {
  height: 100%;
}
.falcon-app-chrome .falcon-user-menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--navy);
  text-decoration: none;
  line-height: 1;
}
.falcon-app-chrome .falcon-user-menu-chevron {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--navy);
  opacity: 0.72;
}
.falcon-app-chrome .falcon-user-menu-toggle:hover,
.falcon-app-chrome .falcon-user-menu-toggle:focus,
.falcon-app-chrome .falcon-user-menu-toggle.show {
  background: transparent;
  border: 0;
  box-shadow: none;
  color: var(--green);
}
.falcon-app-chrome .falcon-user-menu-toggle:hover .falcon-user-menu-chevron,
.falcon-app-chrome .falcon-user-menu-toggle.show .falcon-user-menu-chevron {
  border-top-color: var(--green);
  opacity: 1;
}
.falcon-app-chrome .falcon-user-menu-toggle .userbutton {
  display: inline-flex;
  align-items: center;
}
.falcon-app-chrome .falcon-user-menu-toggle .avatars {
  display: inline-flex;
  align-items: center;
}
.falcon-app-chrome .falcon-user-menu-toggle .avatar {
  display: inline-flex;
}
.falcon-app-chrome .falcon-user-menu-toggle .userinitials,
.falcon-app-chrome .falcon-user-menu-toggle .userpicture {
  width: 36px;
  height: 36px;
  margin: 0;
}
.falcon-app-chrome .falcon-user-menu-toggle .userinitials {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid rgba(16, 42, 67, 0.14);
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
}
.falcon-app-chrome .falcon-user-menu-toggle:hover .userinitials,
.falcon-app-chrome .falcon-user-menu-toggle.show .userinitials {
  border-color: var(--green);
  color: var(--green);
}
.falcon-app-chrome .falcon-user-menu-dropdown {
  margin-top: 10px;
  padding: 0.35rem 0;
  border: 1px solid var(--line);
  border-radius: 0;
  box-shadow: 0 12px 32px rgba(9, 29, 48, 0.12);
}
.falcon-app-chrome .falcon-user-menu-dropdown .dropdown-item {
  font-size: 0.8125rem;
  padding: 0.55rem 1rem;
  color: var(--navy);
}
.falcon-app-chrome .falcon-user-menu-dropdown .dropdown-item:hover,
.falcon-app-chrome .falcon-user-menu-dropdown .dropdown-item:focus {
  background: var(--paper);
  color: var(--green);
}
body.pagelayout-frontpage.falcon-landing-active .main-inner,
body.pagelayout-frontpage.falcon-landing-active #page-content,
body.pagelayout-frontpage.falcon-landing-active #region-main,
body.pagelayout-frontpage.falcon-landing-active #region-main-box { max-width: none; padding: 0; margin: 0; border: 0; background: transparent; }
body.pagelayout-frontpage.falcon-landing-active.limitedwidth #page.drawers,
body.pagelayout-frontpage.falcon-landing-active.limitedwidth .main-inner { max-width: none; }
body.pagelayout-frontpage.falcon-landing-active .navbar,
body.pagelayout-frontpage.falcon-landing-active footer:not(.site-footer),
body.pagelayout-frontpage.falcon-landing-active .drawer-toggles,
body.pagelayout-frontpage.falcon-landing-active .breadcrumb,
body.pagelayout-frontpage.falcon-landing-active #page-header,
body.pagelayout-frontpage.falcon-landing-active .activity-header,
body.pagelayout-frontpage.falcon-landing-active .secondary-navigation { display: none !important; }
@media (prefers-reduced-motion: reduce) {
  .falcon-landing { scroll-behavior: auto; }
  .falcon-landing .reveal { opacity: 1; transform: none; }
  .falcon-landing [data-in-view="true"] .reveal { animation: none; }
}
