/* === Gate modal: QR code (desktop-only) === */
.gate-modal .qr-block {
  display: none;
  align-items: center; gap: 14px;
  margin: 0 28px 8px;
  padding: 12px;
  background: linear-gradient(135deg, #EFFAFD, #F9FCFD);
  border: 1px solid rgba(75,187,221,0.28);
  border-radius: 14px;
}
@media (min-width: 720px) {
  .gate-modal .qr-block { display: flex; }
}
.gate-modal .qr-block .qr-img {
  width: 84px; height: 84px; flex-shrink: 0;
  background: #fff; border-radius: 10px;
  padding: 6px;
  box-shadow: 0 2px 8px rgba(20,30,50,0.08);
  display: flex; align-items: center; justify-content: center;
}
.gate-modal .qr-block .qr-img img,
.gate-modal .qr-block .qr-img svg { width: 100%; height: 100%; display: block; object-fit: contain; }
.gate-modal .qr-block .qr-txt { line-height: 1.4; }
.gate-modal .qr-block .qr-txt strong {
  display: block; font-size: 13.5px; font-weight: 700;
  color: #1C1C1E; margin-bottom: 2px; letter-spacing: -0.1px;
}
.gate-modal .qr-block .qr-txt span {
  display: block; font-size: 11.5px; color: #6E6E73;
}
@media (max-width: 540px) { .gate-modal .qr-block { margin-left: 22px; margin-right: 22px; } }


/* ============ NEW THIS WEEK (NTW) CARDS ============ */
.ntw-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.ntw-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  overflow: hidden;
  text-decoration: none; color: inherit;
  transition: transform 0.18s, border-color 0.18s, box-shadow 0.18s;
}
.ntw-card:hover {
  transform: translateY(-3px);
  border-color: var(--ink-4);
  box-shadow: 0 14px 28px -12px rgba(0,0,0,0.18);
}

.ntw-cover-well {
  position: relative; overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #FBFAF7;
}
.ntw-cover-bp {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: blur(22px) saturate(140%);
  transform: scale(1.2);
  opacity: 0.85;
}
.ntw-cover {
  position: absolute;
  background-size: cover; background-position: center;
}
.ntw-cover-landscape {
  inset: 0;
  background-color: #1A1A1A;
}
.ntw-cover-portrait {
  /* Size by height so portrait covers fit inside the 16:10 well with air. */
  top: 50%; left: 50%;
  height: calc(100% - 28px);
  width: auto;
  aspect-ratio: 2 / 3;
  max-width: 48%;
  transform: translate(-50%, -50%);
  border-radius: 4px;
  background-size: contain; background-repeat: no-repeat; background-position: center;
  box-shadow: 0 10px 28px rgba(0,0,0,0.32), 0 2px 6px rgba(0,0,0,0.20);
}
.ntw-cover-square {
  top: 50%; left: 50%;
  width: 56%; aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.32), 0 2px 6px rgba(0,0,0,0.20);
}

.ntw-body {
  padding: 14px 16px 18px;
  display: flex; flex-direction: column; gap: 8px;
}
.ntw-row1 {
  display: flex; align-items: center; gap: 8px;
}
.ntw-env-tile {
  width: 22px; height: 22px; border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ntw-env-label {
  font-size: 12px; font-weight: 700; color: var(--ink);
  letter-spacing: -0.1px;
}
.ntw-sub {
  font-size: 12px; color: var(--ink-3);
  margin-inline-start: 4px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  min-width: 0;
}
.ntw-title {
  font-family: inherit; font-weight: 700; font-size: 16px;
  line-height: 1.3; color: var(--ink);
  margin: 0;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 42px;
}
.ntw-kind {
  font-size: 10px; font-weight: 800; letter-spacing: 0.6px;
  text-transform: uppercase;
}

.ntw-cta-row {
  display: flex; justify-content: center;
  margin-top: 36px;
}
.ntw-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; border-radius: 999px; border: none;
  background: #0A0A0A; color: #fff;
  font-family: inherit; font-weight: 700; font-size: 14.5px;
  letter-spacing: -0.1px; cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  transition: transform 0.15s, background 0.15s, gap 0.15s, box-shadow 0.15s;
}
.ntw-cta-btn:hover { transform: translateY(-1px); background: #1a1a1a; gap: 12px; box-shadow: 0 12px 24px rgba(0,0,0,0.26); }

@media (max-width: 980px) {
  .ntw-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .ntw-grid { grid-template-columns: 1fr; }
}


/* ============ HERO STAGE — blurred backdrop band ============
   On screens wider than the hero's 1280px max-width, the page bg
   would normally show on the sides. Instead, this wrapper paints a
   heavily-blurred copy of the active slide's image into the bands so
   the hero feels continuous from edge to edge while the sharp crop
   stays centered. Same vocabulary as the NTW card cover backplates. */
.hero-stage {
  position: relative;
  overflow: hidden;
  background-color: var(--paper);
  isolation: isolate;
}
.hero-stage::before {
  content: '';
  position: absolute; inset: -40px;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  filter: blur(60px) saturate(150%);
  transform: scale(1.1);
  z-index: 0;
  pointer-events: none;
  transition: background-image 500ms ease;
}
.hero-stage::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.18) 100%);
  z-index: 0;
  pointer-events: none;
}
.hero-stage > .hero.hero-slideshow { position: relative; z-index: 1; }
@media (max-width: 1280px) {
  .hero-stage::before, .hero-stage::after { display: none; }
}

/* ============ HERO SLIDESHOW ============
   4 full-bleed slides, image background + dark gradient overlay +
   copy panel on the start edge. Auto-advances every 6s, pauses on
   hover, navigable with dots + chevron arrows. Mobile (≤640px) is
   a horizontal scroll-snap carousel. */
.hero.hero-slideshow {
  position: relative; overflow: hidden;
  padding: 0; border-bottom: 1px solid var(--line);
  height: min(78vh, 640px);
  min-height: 480px;
  max-width: 1280px;
  margin-inline: auto;
}
.hero.hero-slideshow .hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; visibility: hidden;
  transition: opacity 700ms ease;
  pointer-events: none;
}
.hero-slide.is-active { opacity: 1; visibility: visible; pointer-events: auto; }
.hero-slide-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(11,42,56,0.78) 0%, rgba(11,42,56,0.52) 45%, rgba(11,42,56,0.18) 100%),
    linear-gradient(180deg, rgba(11,42,56,0.20) 0%, rgba(11,42,56,0.30) 100%);
}
[dir="rtl"] .hero-slide-overlay {
  background:
    linear-gradient(-90deg, rgba(11,42,56,0.78) 0%, rgba(11,42,56,0.52) 45%, rgba(11,42,56,0.18) 100%),
    linear-gradient(180deg, rgba(11,42,56,0.20) 0%, rgba(11,42,56,0.30) 100%);
}
.hero-slide-content {
  position: relative; height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  max-width: 1200px;
  padding: 0 96px;
  color: #fff;
}
.hero-slide-content .eyebrow {
  /* Eyebrow badge intentionally hidden — the slide image + headline
     carry the topic on their own. */
  display: none;
}
.hero-slide-content h1 {
  font-family: "Iowan Old Style", Georgia, serif; font-weight: 500;
  font-size: 54px; line-height: 1.04; letter-spacing: -1.4px;
  color: #fff; margin: 0 0 18px;
  max-width: 640px; text-wrap: balance;
}
.hero-slide-content h1 .accent {
  font-style: normal; font-weight: 400;
  color: #9ee2f3;
}
.hero-slide-content .lede {
  font-size: 17px; line-height: 1.55;
  color: rgba(255,255,255,0.86);
  max-width: 540px; margin: 0 0 26px;
}
.hero-slide-content .ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-slide-content .btn-primary { background: #fff; color: var(--ink); }
.hero-slide-content .btn-primary:hover { background: rgba(255,255,255,0.92); }
.hero-slide-content .btn-secondary {
  /* Secondary CTA hidden on slides — primary action alone is enough. */
  display: none;
}
.hero-slide-content .btn-secondary:hover { border-color: #fff; }

.hero-slide-app {
  background:
    radial-gradient(circle at 18% 20%, rgba(75,187,221,0.45), transparent 55%),
    radial-gradient(circle at 78% 75%, rgba(146,104,170,0.40), transparent 60%),
    linear-gradient(135deg, #0B2A38 0%, #143849 100%);
}

.hero.hero-slideshow .slide-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 999px;
  background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.32);
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  z-index: 4;
  transition: background 160ms ease, transform 160ms ease;
}
.hero.hero-slideshow .slide-nav:hover { background: rgba(255,255,255,0.30); }
.hero.hero-slideshow .slide-nav-prev { inset-inline-start: 24px; }
.hero.hero-slideshow .slide-nav-next { inset-inline-end: 24px; }
/* Logical placement flips in RTL; mirror chevrons so they point outward. */
[dir="rtl"] .hero.hero-slideshow .slide-nav svg {
  transform: scaleX(-1);
}

.hero.hero-slideshow .slide-dots {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 4;
}
.hero.hero-slideshow .slide-dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: rgba(255,255,255,0.40); border: none; padding: 0;
  cursor: pointer;
  transition: background 200ms ease, width 300ms ease;
}
.hero.hero-slideshow .slide-dot:hover { background: rgba(255,255,255,0.65); }
.hero.hero-slideshow .slide-dot.is-active { background: #fff; width: 26px; }

.hero.hero-slideshow .scroll-cue { color: rgba(255,255,255,0.78); bottom: 60px; }
.hero.hero-slideshow .scroll-cue .line { background: linear-gradient(180deg, rgba(255,255,255,0.78), transparent); }

@media (max-width: 980px) {
  .hero.hero-slideshow { height: min(72vh, 560px); min-height: 440px; }
  .hero-slide-content { padding: 0 84px; }
  .hero-slide-content h1 { font-size: 40px; letter-spacing: -1px; }
}
@media (max-width: 640px) {
  .hero.hero-slideshow { height: auto; min-height: 0; padding: 0; }
  .hero.hero-slideshow .hero-slides {
    position: relative; inset: auto;
    display: flex; flex-direction: row;
    overflow-x: auto; overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .hero.hero-slideshow .hero-slides::-webkit-scrollbar { display: none; }
  .hero-slide {
    position: relative; inset: auto;
    flex: 0 0 100%; width: 100%;
    scroll-snap-align: start; scroll-snap-stop: always;
    padding: 56px 22px 88px;
    min-height: 520px;
    opacity: 1; visibility: visible;
    transition: none;
  }
  .hero-slide-content { padding: 0; min-height: 0; }
  .hero-slide-content .eyebrow { font-size: var(--fs-eyebrow); padding: 6px 10px; margin-bottom: 16px; }
  .hero-slide-content h1 { font-size: 28px; letter-spacing: -0.6px; }
  .hero-slide-content .lede { font-size: 15px; margin-bottom: 20px; }
  .hero-slide-content .btn-primary,
  .hero-slide-content .btn-secondary { padding: 10px 16px; font-size: 13px; }
  .hero-slide-content .btn-primary > svg,
  .hero-slide-content .btn-secondary > svg { width: 12px; height: 12px; }
  .hero.hero-slideshow .slide-nav { display: none; }
  .hero.hero-slideshow .scroll-cue { display: none; }
  .hero.hero-slideshow .slide-dots { bottom: 22px; }
}

/* ============ HERO ROTATOR — COLLAGE ============ */
.hero.hero-rotator { padding: 60px 0 80px; position: relative; }
.hero.hero-rotator .wrap { max-width: 1200px; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 56px; align-items: center;
}
.hero-copy { max-width: 560px; }
.hero-copy .eyebrow {
  display: inline-flex; align-items: center;
  font-size: 11px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--brand); margin-bottom: 18px; padding: 0;
  background: transparent; border: none; box-shadow: none;
}
.hero-copy .eyebrow::before { content: none; }
.hero.hero-rotator h1 {
  font-family: "Iowan Old Style", Georgia, serif; font-weight: 500;
  font-size: 54px; line-height: 1.03; letter-spacing: -1.4px;
  margin: 0 0 18px; color: var(--ink);
  text-wrap: balance;
}
.hero.hero-rotator .lede {
  font-size: 17px; line-height: 1.55; color: var(--ink-2);
  max-width: 520px; margin: 0 0 24px;
}

/* COLLAGE: 4 tiles, absolute positioning, swap on click */
.hero-collage {
  position: relative;
  aspect-ratio: 5 / 6;
  width: 100%;
}
.hero-tile {
  position: absolute;
  border: none; padding: 0; cursor: pointer;
  background: #1B2A3D;
  border-radius: 12px; overflow: hidden;
  font-family: inherit;
  transition: top 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              left 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              right 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              bottom 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              width 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              height 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              z-index 0s linear 0.275s,
              box-shadow 0.3s;
  box-shadow: 0 18px 40px -12px rgba(20,24,30,0.38), 0 4px 10px rgba(20,24,30,0.14);
}
.hero-tile:hover:not(.is-active) { box-shadow: 0 24px 50px -14px rgba(20,24,30,0.50), 0 6px 14px rgba(20,24,30,0.18); transform: rotate(0deg) scale(1.02); }
.hero-tile.is-active { box-shadow: 0 32px 64px -18px rgba(20,24,30,0.42), 0 8px 18px rgba(20,24,30,0.16); }
.hero-tile-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.7s ease;
}
.hero-tile.is-active .hero-tile-img { transform: scale(1.03); }
.hero-tile::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.62) 100%);
  pointer-events: none;
}
.hero-tile-label {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 12px 14px; z-index: 1; color: #fff;
}
.hero-tile-label span {
  font-family: "Iowan Old Style", Georgia, serif; font-weight: 500;
  font-size: 13px; letter-spacing: -0.1px; line-height: 1.2;
  display: block;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  opacity: 0; transform: translateY(4px);
  transition: opacity 0.3s 0.1s, transform 0.3s 0.1s, font-size 0.3s;
}
.hero-tile.is-active .hero-tile-label span {
  opacity: 1; transform: translateY(0);
  font-size: 18px;
}
.hero-tile:hover:not(.is-active) .hero-tile-label span { opacity: 1; transform: translateY(0); }

/* App tile placeholder */
.hero-tile-img-app {
  background: radial-gradient(140% 90% at 30% 0%, #4BBBDD 0%, #2C6A7E 60%, #0E3A48 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px;
  padding: 8% 0;
}
.hero-app-phone {
  position: relative;
  width: 56%;
  aspect-ratio: 9 / 19.5;
  background: #0A0A0A;
  border-radius: 14% / 6.4%;
  padding: 5% 5% 4%;
  box-shadow: 0 18px 40px rgba(0,0,0,0.45), inset 0 0 0 1.5px rgba(255,255,255,0.10);
  overflow: hidden;
}
.hero-app-notch {
  position: absolute; top: 3%; left: 50%; transform: translateX(-50%);
  width: 34%; height: 3.6%;
  background: #000; border-radius: 999px;
  z-index: 2;
}
.hero-app-screen {
  width: 100%; height: 100%;
  background: #FBFAF7;
  border-radius: 9% / 4.2%;
  overflow: hidden;
  display: flex; flex-direction: column;
  padding: 14% 7% 5%;
  gap: 5%;
}
.hero-app-statusbar {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 6.5px; font-weight: 600; color: #1C1C1E;
  margin-bottom: 2%;
}
.hero-app-bars { display: inline-flex; color: #1C1C1E; }
.hero-app-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 3%;
}
.hero-app-logo-img { height: 8px; width: auto; display: block; }
.hero-app-menu { font-size: 11px; color: #1C1C1E; line-height: 1; }
.hero-app-feed-card {
  display: flex; gap: 5%;
  padding: 4%;
  background: #fff; border-radius: 8%;
  box-shadow: 0 1px 2px rgba(0,0,0,0.06), 0 0 0 0.5px rgba(0,0,0,0.04);
  margin-bottom: 4%;
}
.hero-app-cover {
  width: 28%; aspect-ratio: 4 / 3; flex-shrink: 0;
  border-radius: 6%;
  background-size: cover; background-position: center;
}
.hero-app-meta {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column; gap: 2%;
  justify-content: center;
}
.hero-app-eyebrow {
  font-size: 5px; font-weight: 700; color: #6E6E73;
  letter-spacing: 0.3px; line-height: 1;
}
.hero-app-title {
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 7px; font-weight: 500; color: #1C1C1E;
  line-height: 1.15;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.hero-app-kind {
  font-size: 5px; color: #6E6E73; line-height: 1;
}

/* Slot positions: A=lead/active, B/C/D = smaller thumbnails — overlapping 3D collage */
.hero-tile.in-slot-a {
  top: 4%; left: 0; width: 68%; height: 78%;
  z-index: 3;
  transform: rotate(0deg);
}
.hero-tile.in-slot-b {
  top: 0; right: 0; width: 38%; height: 36%;
  z-index: 5;
  transform: rotate(2.5deg);
}
.hero-tile.in-slot-c {
  top: 42%; right: 4%; width: 36%; height: 36%;
  z-index: 4;
  transform: rotate(-3deg);
}
.hero-tile.in-slot-d {
  bottom: 0; left: 14%; width: 58%; height: 24%;
  z-index: 2;
  transform: rotate(-1.5deg);
}
.hero-tile {
  border: 4px solid #fff;
}
.hero-tile:hover:not(.is-active) {
  z-index: 6 !important;
}

.hero.hero-rotator .scroll-cue { bottom: 18px; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-collage { max-width: 540px; margin-inline: auto; }
  .hero.hero-rotator h1 { font-size: 42px; }
}
@media (max-width: 720px) {
  .hero.hero-rotator { padding: 36px 0 100px; }
  .hero.hero-rotator h1 { font-size: 32px; letter-spacing: -0.8px; }
  .hero-tile.is-active .hero-tile-label span { font-size: 14px; }
  .hero-tile-label { padding: 8px 10px; }
  .hero-tile-label span { font-size: 11px; }
}

/* Tablet portrait & below: hero pictures side-by-side on top, text below; NTW becomes carousel */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-copy { order: 2; }
  .hero-collage {
    order: 1; position: relative;
    aspect-ratio: auto; max-width: none; width: 100%;
    height: 180px; display: flex; gap: 8px; margin-inline: 0;
  }
  .hero-tile,
  .hero-tile.in-slot-a,
  .hero-tile.in-slot-b,
  .hero-tile.in-slot-c,
  .hero-tile.in-slot-d {
    position: relative;
    top: auto; left: auto; right: auto; bottom: auto;
    width: auto; height: 100%;
    flex: 1 1 0;
    transform: none;
    border-radius: 12px; border-width: 3px;
    z-index: 1;
    transition: flex-grow 0.45s ease, flex 0.45s ease, box-shadow 0.3s;
  }
  .hero-tile.is-active { flex: 2.6 1 0; z-index: 2; }
  .hero-tile:hover:not(.is-active) { transform: none; z-index: 1 !important; }
  .hero-tile.is-active .hero-tile-img { transform: none; }
  .hero-tile-label { padding: 8px 10px; }
  .hero-tile.is-active .hero-tile-label span { font-size: 15px; opacity: 1; transform: translateY(0); }
  .hero-tile:not(.is-active) .hero-tile-label span { font-size: 0; opacity: 0; }

  /* NTW: horizontal carousel */
  .ntw-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    gap: 12px;
    margin: 0;
    margin-inline-end: -24px;
    padding: 4px 0 14px 0;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
  }
  .ntw-grid::-webkit-scrollbar { display: none; }
  .ntw-card {
    flex: 0 0 260px;
    width: 260px;
    scroll-snap-align: start;
  }
}


.ft-get-app { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; padding: 9px 16px; border-radius: 999px; background: #fff; color: #0A0A0A !important; font-size: 13px; font-weight: 600; transition: background 0.18s; }
.ft-get-app:hover { background: rgba(255,255,255,0.85); }
.ft-social { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.ft-soc { width: 32px; height: 32px; border-radius: 999px; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.85); display: inline-flex; align-items: center; justify-content: center; transition: background 0.18s, color 0.18s; }
.ft-soc:hover { background: rgba(255,255,255,0.18); color: #fff; }

/* ft-fix */
.ft-get-app { background: rgba(255,255,255,0.10) !important; color: #fff !important; border: 1px solid rgba(255,255,255,0.18); padding: 9px 18px !important; }
.ft-get-app:hover { background: rgba(255,255,255,0.18) !important; }
.ft-get-app svg { color: #fff !important; }
.ft-soc { background: rgba(255,255,255,0.06) !important; color: rgba(255,255,255,0.78) !important; }
.ft-soc:hover { background: rgba(255,255,255,0.14) !important; color: #fff !important; }
footer.site .legal { gap: 18px; flex-wrap: wrap; }
footer.site .legal > a { color: rgba(255,255,255,0.5); font-size: 12px; padding: 0; }
footer.site .legal > a:hover { color: #fff; }

/* ft-fix-v2 */
.ft-get-app {
  background: transparent !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.55) !important;
  padding: 11px 22px !important;
  border-radius: 999px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  gap: 10px !important;
}
.ft-get-app:hover { background: rgba(255,255,255,0.08) !important; border-color: #fff !important; }
.ft-soc {
  width: 36px !important; height: 36px !important;
  flex: 0 0 36px !important;
  padding: 0 !important;
}
.ft-soc svg { width: 16px !important; height: 16px !important; flex-shrink: 0; display: block; }
.ft-social { gap: 10px !important; }

/* ft-fix-v3 */
footer.site .ft-soc { padding: 0 !important; display: inline-flex !important; align-items: center !important; justify-content: center !important; line-height: 1 !important; }
footer.site .ft-soc svg { width: 16px !important; height: 16px !important; display: block !important; }
footer.site .ft-get-app { padding: 11px 22px !important; }

/* ft-fix-v4 */
footer.site .ft-get-app { display: flex !important; width: 252px !important; justify-content: center !important; gap: 10px !important; }
footer.site .ft-get-app .ft-app-icons { display: inline-flex; gap: 6px; align-items: center; }
footer.site .ft-get-app .ft-app-icons svg { display: block; }

/* ft-fix-v5 */
footer.site .legal { display: flex; align-items: center; }
footer.site .legal > span { margin-right: auto; }
footer.site .legal > a + a { margin-left: 12px; }
footer.site .legal > a:first-of-type { margin-left: 12px; }
[dir="rtl"] footer.site .legal > span { margin-right: 0; margin-left: auto; }
[dir="rtl"] footer.site .legal > a + a { margin-left: 0; margin-right: 12px; }
[dir="rtl"] footer.site .legal > a:first-of-type { margin-left: 0; margin-right: 12px; }

/* ft-fix-v6: collapsible columns on small screens */
@media (max-width: 880px) {
  footer.site .columns { grid-template-columns: 1fr !important; gap: 0 !important; }
  footer.site .columns > div:first-child { padding: 0 0 24px; }
  footer.site .columns > div:not(:first-child) { border-top: 1px solid rgba(255,255,255,0.10); }
  footer.site .columns > div:not(:first-child) > h4 { margin: 0; padding: 18px 0; cursor: pointer; display: flex; align-items: center; justify-content: space-between; font-size: 14px; }
  footer.site .columns > div:not(:first-child) > h4::after { content: ''; width: 10px; height: 10px; border-right: 2px solid rgba(255,255,255,0.55); border-bottom: 2px solid rgba(255,255,255,0.55); transform: rotate(45deg); transition: transform 0.2s; }
  footer.site .columns > div:not(:first-child).ft-open > h4::after { transform: rotate(-135deg); }
  footer.site .columns > div:not(:first-child) > a { max-height: 0; overflow: hidden; padding: 0; margin: 0; opacity: 0; transition: max-height 0.25s, opacity 0.2s, padding 0.2s; }
  footer.site .columns > div:not(:first-child).ft-open > a { max-height: 60px; opacity: 1; padding: 6px 0; }
  footer.site .columns > div:not(:first-child).ft-open > a:last-child { padding-bottom: 18px; }
}

/* Tablet visual sizing — smaller hero visual on tablet landscape & portrait */
@media (max-width: 1180px) and (min-width: 769px) {
  .hero .visual { max-width: 480px !important; aspect-ratio: 4/3 !important; margin-inline-start: auto; }
}
@media (max-width: 768px) {
  .hero .visual { max-width: 380px !important; margin-inline: auto; }
}


.gospel-checks {
  list-style: none; padding: 0; margin: 0 auto 28px;
  display: inline-flex; flex-direction: column; gap: 10px;
  text-align: start;
}
.gospel-checks li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14.5px; color: var(--ink-2); line-height: 1.45;
}
.gospel-checks li svg { flex-shrink: 0; }

