/* =====================================================================
   Fairstone Conference — Adapt to Win
   Scoped to .fcn-landing — safe alongside an existing WP theme.
   ===================================================================== */

.fcn-landing {
  --fcn-accent: #29bb89;
  --fcn-accent-dark: #1E8D67;
  --fcn-accent-tint: #e6f7f0;
  --fcn-purple: #24174c;
  --fcn-purple-tint: rgba(36, 23, 76, 0.06);
  --fcn-ink: #2c3e50;
  --fcn-ink-55: rgba(44, 62, 80, 0.55);
  --fcn-ink-70: rgba(44, 62, 80, 0.70);
  --fcn-line: rgba(44, 62, 80, 0.12);
  --fcn-bg: #f1f1f6;

  --fcn-radius-card: 8px;
  --fcn-radius-btn: 4px;
  --fcn-radius-pill: 999px;
  --fcn-shadow-card: 0 1px 0 rgba(44,62,80,0.04), 0 2px 6px rgba(44,62,80,0.07);

  --fcn-font-head: "Montserrat", system-ui, sans-serif;
  --fcn-font-body: "Open Sans", system-ui, sans-serif;

  font-family: var(--fcn-font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--fcn-ink);
  background: var(--fcn-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fcn-landing *,
.fcn-landing *::before,
.fcn-landing *::after { box-sizing: border-box; }

.fcn-landing img { max-width: 100%; display: block; }

.fcn-landing button {
  font-family: inherit;
  cursor: pointer;
}

/* Reveal-on-scroll baseline */
.fcn-landing [data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 700ms cubic-bezier(.2,.7,.2,1),
              transform 700ms cubic-bezier(.2,.7,.2,1);
}
.fcn-landing [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Layout shell ----------------------------------------- */
.fcn-landing__shell {
  max-width: 720px;
  margin: 0 auto;
  background: var(--fcn-bg);
}
@media (min-width: 1024px) {
  .fcn-landing__shell { max-width: 880px; }
}

.fcn-landing__sections {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 36px 0 0;
}

/* ---------- Hero ------------------------------------------------- */
.fcn-hero {
  position: relative;
  height: 460px;
  overflow: hidden;
  background: var(--fcn-purple);
  color: #fff;
  /* Reset WordPress theme's global `header { position:fixed; z-index:20; display:none@mobile ... }` */
  display: block;
  z-index: 1;
  transition: none;
  top: auto;
  left: auto;
  /* Full-bleed breakout from the centred shell */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* header-nav.js adds .nav-up to every <header> on scroll-down.
   header.nav-up { top:-20vh } has specificity (0,1,1) which beats .fcn-hero (0,1,0).
   .fcn-hero.nav-up (0,2,0) wins — prevents the hero being yanked upward and creating a gap. */
.fcn-hero.nav-up {
  top: 0;
}

/* Keep the site navigation bar visible on the conference page.
   (0,4,1) beats header.nav-up (0,1,1) so the nav stays fixed at top:0. */
header.nav-up:not(.mobile):not(.fcn-hero):not(.fcn-sectionhead) {
  top: 0;
}
@media (min-width: 1024px) {
  .fcn-hero { height: 540px; }
}

.fcn-hero__media {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 9px),
    #1c1140;
}
.fcn-hero__media[data-image] { background: center / cover no-repeat var(--fcn-purple); }

.fcn-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(36,23,76,0.55) 0%,
    rgba(36,23,76,0.30) 35%,
    rgba(20,12,46,0.92) 100%);
}

.fcn-hero__rings {
  position: absolute;
  right: -160px;
  top: 30px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(41,187,137,0.20);
  opacity: 0.5;
  pointer-events: none;
}
.fcn-hero__rings::after {
  content: '';
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  border: 1px solid rgba(41,187,137,0.33);
}

.fcn-hero__content {
  position: absolute;
  inset: 0;
  max-width: 720px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .fcn-hero__content { max-width: 880px; }
}

.fcn-hero__top {
  position: absolute;
  top: 28px;
  left: 22px;
  right: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.fcn-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 8px;
  border-radius: var(--fcn-radius-pill);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  font-family: var(--fcn-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
}
.fcn-hero__chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fcn-accent);
  box-shadow: 0 0 0 4px rgba(41,187,137,0.20);
}

.fcn-hero__id {
  font-family: var(--fcn-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.fcn-hero__body {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 80px;
}
.fcn-hero__eyebrow {
  font-family: var(--fcn-font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fcn-accent);
  margin: 0 0 18px;
}
.fcn-hero__title {
  margin: 0;
  font-family: var(--fcn-font-head);
  font-weight: 600;
  font-size: clamp(44px, 12vw, 68px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
}
.fcn-hero__title .fcn-accent { color: var(--fcn-accent); }

.fcn-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
  list-style: none;
  padding: 0;
}
.fcn-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px 7px 10px;
  border-radius: var(--fcn-radius-pill);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.94);
  font-size: 13px;
  font-weight: 500;
}
.fcn-hero__pill svg { stroke: rgba(255,255,255,0.78); }

.fcn-hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fcn-font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.fcn-hero__scroll::after {
  content: '';
  width: 28px;
  height: 1px;
  background: rgba(255,255,255,0.4);
}

/* ---------- Section header --------------------------------------- */
.fcn-sectionhead {
  padding: 0 22px;
  margin: 0 0 18px;
  /* Reset WordPress theme's global `header { position:fixed; z-index:20; display:none@mobile ... }` */
  display: block;
  position: static;
  background: transparent;
  width: auto;
  z-index: auto;
  transition: none;
  top: auto;
  left: auto;
}
.fcn-sectionhead__kicker {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
  font-family: var(--fcn-font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.fcn-sectionhead__num { color: var(--fcn-accent); }
.fcn-sectionhead__lead { color: var(--fcn-ink-55); }
.fcn-sectionhead__title {
  margin: 0;
  font-family: var(--fcn-font-head);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--fcn-ink);
}

/* ---------- Card base -------------------------------------------- */
.fcn-section { padding: 0 22px; }

.fcn-card {
  background: #fff;
  border: 1px solid var(--fcn-line);
  border-radius: var(--fcn-radius-card);
  box-shadow: var(--fcn-shadow-card);
  overflow: hidden;
}
.fcn-card--padded { padding: 20px; }

.fcn-card__head {
  padding: 20px 20px 4px;
}
.fcn-card__title {
  margin: 4px 0 0;
  font-family: var(--fcn-font-head);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--fcn-ink);
}
.fcn-eyebrow {
  font-family: var(--fcn-font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fcn-ink-55);
}

/* ---------- WiFi ------------------------------------------------- */
.fcn-wifi__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.fcn-iconbadge {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: var(--fcn-accent-tint);
  color: var(--fcn-accent-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fcn-iconbadge--warn {
  background: rgba(180,120,30,0.12);
  color: #a06b18;
}

.fcn-wifi__row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--fcn-line);
}
.fcn-wifi__row:last-child { border-bottom: 0; }

.fcn-wifi__field { flex: 1; min-width: 0; }
.fcn-wifi__value {
  margin-top: 4px;
  font-family: var(--fcn-font-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--fcn-ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fcn-wifi__note {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--fcn-ink-70);
}

.fcn-copybtn {
  appearance: none;
  border: 1px solid rgba(44,62,80,0.20);
  background: #fff;
  color: var(--fcn-ink);
  height: 36px;
  padding: 0 12px;
  border-radius: var(--fcn-radius-btn);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  transition: background 200ms, color 200ms, border-color 200ms;
}
.fcn-copybtn:hover { background: var(--fcn-purple-tint); border-color: rgba(36,23,76,0.25); }
.fcn-copybtn.is-copied {
  background: var(--fcn-accent-tint);
  border-color: var(--fcn-accent);
  color: var(--fcn-accent-dark);
}

/* ---------- IconRow (venue / safety / guidelines) ---------------- */
.fcn-iconrow {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--fcn-line);
}
.fcn-iconrow:last-child { border-bottom: 0; }
.fcn-iconrow__icon {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: var(--fcn-accent-tint);
  color: var(--fcn-accent-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fcn-iconrow__body { flex: 1; min-width: 0; padding-top: 1px; }
.fcn-iconrow__title {
  margin: 0;
  font-family: var(--fcn-font-head);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  color: var(--fcn-ink);
}
.fcn-iconrow__line {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fcn-ink-70);
}
.fcn-iconrow__line--muted { color: var(--fcn-ink-55); }
.fcn-iconrow__line + .fcn-iconrow__line { margin-top: 2px; }
.fcn-iconrow__line:first-of-type { margin-top: 4px; }

.fcn-card__list { padding: 0 20px 8px; }

/* ---------- Safety variant -------------------------------------- */
.fcn-safety {
  background: linear-gradient(180deg, #fffaf2 0%, #fff 60%);
  border-color: rgba(180,120,30,0.18);
}
.fcn-safety .fcn-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.fcn-safety__head-text { display: flex; flex-direction: column; }
.fcn-safety__head-text .fcn-eyebrow { color: #a06b18; }

/* ---------- Contacts -------------------------------------------- */
.fcn-contacts__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.fcn-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: var(--fcn-radius-pill);
  background: var(--fcn-accent-tint);
  color: var(--fcn-accent-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid rgba(41,187,137,0.25);
}
.fcn-tag__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--fcn-accent);
}

.fcn-contacts__list { display: flex; flex-direction: column; }
.fcn-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--fcn-line);
}
.fcn-contact:first-child { border-top: 1px solid var(--fcn-line); }
.fcn-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--fcn-purple);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fcn-font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.fcn-contact__meta { flex: 1; min-width: 0; }
.fcn-contact__name {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--fcn-ink);
  letter-spacing: -0.005em;
}
.fcn-contact__role { font-size: 13px; color: var(--fcn-ink-55); }
.fcn-contact__lanyard {
  width: 8px;
  height: 22px;
  border-radius: 2px;
  background: var(--fcn-accent);
}

.fcn-contacts__note {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--fcn-ink-70);
}

/* ---------- Travel ---------------------------------------------- */
.fcn-travel__map {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #e8eaf0;
}
.fcn-travel__map-label {
  position: absolute;
  left: 14px;
  bottom: 12px;
  font-family: var(--fcn-font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
}
.fcn-travel__pin {
  position: absolute;
  left: 52%;
  top: 48%;
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fcn-travel__pin-label {
  padding: 6px 10px;
  background: var(--fcn-purple);
  color: #fff;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  font-family: var(--fcn-font-body);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.fcn-travel__pin-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--fcn-accent);
  box-shadow: 0 0 0 5px rgba(41,187,137,0.20);
  margin-top: 4px;
}

.fcn-travel__body { padding: 20px; }
.fcn-travel__copy {
  margin: 10px 0 16px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--fcn-ink-70);
}
.fcn-travel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
@media (max-width: 540px) {
  .fcn-travel__actions { flex-direction: column; }
  .fcn-travel__actions .fcn-btn { width: 100%; justify-content: center; }
}
.fcn-btn {
  appearance: none;
  border: 1px solid transparent;
  cursor: pointer;
  height: 44px;
  padding: 0 20px;
  border-radius: var(--fcn-radius-btn);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--fcn-font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform 0.3s ease-in-out, background 0.2s ease-in-out, color 0.2s ease-in-out;
}
.fcn-btn--primary {
  background: var(--fcn-purple);
  border-color: var(--fcn-purple);
  color: #fff;
}
.fcn-btn--primary:hover {
  background: #1a1138;
  border-color: #1a1138;
  text-decoration: none;
}
.fcn-btn--secondary {
  background: transparent;
  border-color: var(--fcn-purple);
  color: var(--fcn-purple);
}
.fcn-btn--secondary:hover {
  background: var(--fcn-purple);
  color: #fff;
  text-decoration: none;
}
.fcn-btn--green {
  background: var(--fcn-accent);
  border-color: var(--fcn-accent);
  color: #fff;
}
.fcn-btn--green:hover {
  background: var(--fcn-accent-dark);
  border-color: var(--fcn-accent-dark);
  transform: scale(0.97);
  text-decoration: none;
}
.fcn-btn:active { transform: translateY(1px); }

.fcn-travel__partner {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--fcn-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--fcn-ink-55);
}
.fcn-travel__partner-name {
  font-weight: 600;
  color: var(--fcn-ink);
}

/* ---------- Taxi panel ------------------------------------------ */
.fcn-taxi-panel {
  margin-top: 16px;
  border: 1px solid var(--fcn-line);
  border-radius: var(--fcn-radius-card);
  overflow: hidden;
}
.fcn-taxi-panel[hidden] { display: none; }

.fcn-taxi-section-label {
  font-family: var(--fcn-font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fcn-ink-55);
  padding: 14px 16px 8px;
  display: block;
}

/* Taxi number list */
.fcn-taxi-numbers { border-bottom: 1px solid var(--fcn-line); }

.fcn-taxi-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  border-top: 1px solid var(--fcn-line);
  text-decoration: none;
  transition: background 150ms;
}
.fcn-taxi-row:hover { background: var(--fcn-purple-tint); text-decoration: none; }
.fcn-taxi-row__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--fcn-ink);
}
.fcn-taxi-row__number {
  font-size: 14px;
  font-weight: 500;
  color: var(--fcn-accent-dark);
}

/* App buttons */
.fcn-taxi-apps { padding-bottom: 14px; }
.fcn-taxi-apps__row {
  display: flex;
  gap: 10px;
  padding: 4px 16px 0;
}
.fcn-taxi-app-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 48px;
  padding: 0 20px;
  border-radius: var(--fcn-radius-btn);
  text-decoration: none;
  transition: opacity 150ms;
  flex: 1;
}
.fcn-taxi-app-btn:hover { opacity: 0.85; text-decoration: none; }
.fcn-taxi-app-btn--uber { background: #000; }
.fcn-taxi-app-btn--bolt { background: #34d186; }

.fcn-taxi-app-btn__wordmark {
  font-family: var(--fcn-font-head);
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}

/* ---------- Agenda ---------------------------------------------- */
.fcn-agenda__head {
  padding: 20px 20px 6px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}
.fcn-agenda__date {
  font-family: var(--fcn-font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--fcn-ink-55);
  text-transform: uppercase;
}

.fcn-agenda__list { padding: 8px 0; }

.fcn-agendaitem {
  appearance: none;
  background: transparent;
  border: 0;
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 0 20px;
  display: block;
  color: inherit;
  font-family: inherit;
}
.fcn-agendaitem__row {
  display: grid;
  grid-template-columns: 54px 14px 1fr auto;
  align-items: center;
  column-gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--fcn-line);
}
.fcn-agendaitem:first-child .fcn-agendaitem__row { border-top: 0; }
.fcn-agendaitem__time {
  font-family: var(--fcn-font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--fcn-ink);
  letter-spacing: 0;
}
.fcn-agendaitem__bullet { display: flex; justify-content: center; }
.fcn-agendaitem__bullet span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(44,62,80,0.28);
}
.fcn-agendaitem--session .fcn-agendaitem__bullet span {
  width: 8px; height: 8px;
  background: var(--fcn-accent);
  box-shadow: 0 0 0 4px rgba(41,187,137,0.12);
}
.fcn-agendaitem--evening .fcn-agendaitem__bullet span {
  background: var(--fcn-purple);
}
.fcn-agendaitem__label {
  display: block;
  min-width: 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--fcn-ink);
  letter-spacing: -0.005em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fcn-agendaitem--break .fcn-agendaitem__label {
  color: var(--fcn-ink-55);
  font-weight: 400;
}
.fcn-agendaitem--headline .fcn-agendaitem__label { font-weight: 700; }
.fcn-agendaitem__loc {
  display: block;
  font-size: 12px;
  color: var(--fcn-accent-dark);
  font-weight: 600;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fcn-agendaitem__chev { display: none; }
.fcn-agendaitem__detail { display: none; }
.fcn-agendaitem { cursor: default; }

.fcn-agenda__section-label {
  padding: 10px 20px 6px;
  font-family: var(--fcn-font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fcn-ink-55);
  border-top: 1px solid var(--fcn-line);
}
.fcn-agenda__section-label--evening {
  margin-top: 8px;
  color: var(--fcn-purple);
  border-top-color: rgba(36,23,76,0.14);
}

/* ---------- Footer ---------------------------------------------- */
.fcn-footer {
  padding: 36px 22px 60px;
  text-align: center;
}
.fcn-footer__mark {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  background: var(--fcn-purple);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fcn-font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.fcn-footer__id {
  margin-top: 12px;
  font-family: var(--fcn-font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--fcn-ink-55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.fcn-footer__note {
  margin-top: 6px;
  font-size: 12px;
  color: rgba(44,62,80,0.40);
}

/* ---------- Desktop polish -------------------------------------- */
@media (min-width: 768px) {
  .fcn-sectionhead { padding: 0 32px; }
  .fcn-section { padding: 0 32px; }
  .fcn-hero__top { top: 32px; left: 32px; right: 32px; }
  .fcn-hero__body { left: 32px; right: 32px; bottom: 96px; }
  .fcn-hero__scroll { left: 32px; }
  .fcn-sectionhead__title { font-size: 30px; }
  .fcn-card__title { font-size: 22px; }
  .fcn-iconrow__title { font-size: 16px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .fcn-landing [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .fcn-agendaitem__chev { transition: none; }
}
