/* =====================================================================
   TENAS — HOME PAGE, REBUILT FROM SCRATCH
   Self-contained design system scoped to .tx-page so it is immune to the
   legacy cascade. Immersive hero, animated marquee, bento grids, a
   date-badge timeline, split screens and a closing CTA. Fully responsive,
   dark + light. Loaded LAST so it decisively wins.
   ===================================================================== */

.tx-page {
  --tx-bg: #060a14;
  --tx-bg2: #0a1122;
  --tx-surface: rgba(120, 160, 220, 0.06);
  --tx-surface-2: rgba(120, 160, 220, 0.03);
  --tx-solid: #0e1730;
  --tx-text: #eef2f8;
  --tx-muted: #97a3ba;
  --tx-accent: #e8bd4f;
  --tx-accent-2: #ffb43c;
  --tx-line: rgba(130, 165, 220, 0.14);
  --tx-line-2: rgba(140, 175, 230, 0.24);
  --tx-ink: #0a0f1c;
  --tx-radius: 18px;
  --tx-radius-lg: 28px;
  --tx-shadow: 0 34px 80px -46px rgba(0, 0, 0, 0.9);
  --tx-shadow-sm: 0 18px 40px -30px rgba(0, 0, 0, 0.8);
  --tx-glow: 0 0 40px -6px rgba(232, 189, 79, 0.5);
  --tx-display: "Space Grotesk", "Manrope", system-ui, sans-serif;
  --tx-body: "Space Grotesk", "Manrope", system-ui, sans-serif;
  --tx-pad: clamp(20px, 6vw, 120px);
  --tx-ease: cubic-bezier(0.22, 1, 0.36, 1);

  background: var(--tx-bg);
  color: var(--tx-text);
  font-family: var(--tx-body);
  overflow-x: hidden;
}

html[data-theme="light"] .tx-page {
  --tx-bg: #eaf0f8;
  --tx-bg2: #e0e9f4;
  --tx-surface: rgba(15, 27, 46, 0.03);
  --tx-surface-2: rgba(15, 27, 46, 0.015);
  --tx-solid: #ffffff;
  --tx-text: #0f1b2e;
  --tx-muted: #55627a;
  --tx-accent: #b8860b;
  --tx-accent-2: #c47f00;
  --tx-line: rgba(15, 27, 46, 0.10);
  --tx-line-2: rgba(15, 27, 46, 0.16);
  --tx-ink: #1a1305;
  --tx-shadow: 0 34px 80px -50px rgba(30, 40, 20, 0.35);
  --tx-shadow-sm: 0 18px 40px -34px rgba(30, 40, 20, 0.3);
  --tx-glow: 0 0 40px -8px rgba(184, 134, 11, 0.4);
}

.tx-page ::selection { background: var(--tx-accent); color: var(--tx-ink); }

/* Shared primitives ------------------------------------------------- */
.tx-section {
  position: relative;
  padding: clamp(30px, 3.4vw, 48px) var(--tx-pad);
  max-width: 1600px;
  margin: 0 auto;
}

.tx-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--tx-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--tx-accent);
}
/* Leading dash removed per request — eyebrow labels now read as plain text. */
.tx-eyebrow::before { content: none; display: none; }
.tx-eyebrow--ondark { color: #f4d98a; }

.tx-h2 {
  font-family: var(--tx-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 3.3rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-transform: none;
  margin: 18px 0 0;
  color: var(--tx-text);
  text-wrap: balance;
}

.tx-lead {
  color: var(--tx-muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.7;
  margin: 16px 0 0;
  max-width: 56ch;
}

.tx-head { max-width: 820px; margin-bottom: clamp(22px, 3vw, 38px); }

.tx-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--tx-accent);
  box-shadow: var(--tx-glow);
}

/* Buttons ----------------------------------------------------------- */
.tx-btn {
  --_bg: var(--tx-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 13px;
  font-family: var(--tx-display);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.28s var(--tx-ease), box-shadow 0.28s var(--tx-ease),
    background-color 0.2s, color 0.2s, border-color 0.2s;
  will-change: transform;
}
.tx-btn--primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fbe396 0%, #e8bd4f 44%, #caa034 100%);
  color: #241a02;
  box-shadow: 0 18px 36px -16px rgba(232, 189, 79, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
/* moving sheen */
.tx-btn--primary::after {
  content: "";
  position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-18deg);
  transition: left 0.6s var(--tx-ease);
}
.tx-btn--primary:hover::after { left: 130%; }
.tx-btn--primary:hover {
  transform: translateY(-3px);
  filter: brightness(1.05);
  box-shadow: 0 26px 54px -18px rgba(232, 189, 79, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}
.tx-btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
}
.tx-btn--ghost:hover { transform: translateY(-3px); border-color: #fff; background: rgba(255, 255, 255, 0.14); }
.tx-btn--soft {
  background: var(--tx-surface);
  color: var(--tx-text);
  border-color: var(--tx-line-2);
  backdrop-filter: blur(8px);
}
.tx-btn--soft:hover { transform: translateY(-3px); border-color: var(--tx-accent); color: var(--tx-accent); }

.tx-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--tx-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
}
.tx-chip--accent { background: var(--tx-accent); color: var(--tx-ink); border: none; }

/* ============================ HERO ============================ */
.tx-hero {
  position: relative;
  min-height: min(100vh, 860px);
  display: flex;
  align-items: flex-end;
  padding: clamp(40px, 8vw, 96px) var(--tx-pad) clamp(56px, 8vw, 104px);
  overflow: hidden;
  isolation: isolate;
}
/* The site nav is position:fixed, so the hero has to reserve room for it. On a
   short screen the hero content is taller than the hero box, which makes
   align-items:flex-end pin the content to the top padding instead — putting the
   headline behind the nav. boot.js keeps --final-fixed-nav-height equal to the
   nav's measured height, so this always clears it. */
.tx-hero {
  padding-top: calc(var(--final-fixed-nav-height, 96px) + clamp(20px, 4vw, 48px));
}
.tx-hero__media { position: absolute; inset: 0; z-index: -2; }
.tx-hero__img { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; object-fit: cover; object-position: center 35%; transform: scale(1.06); animation: tx-kenburns 22s ease-in-out infinite alternate; }
@keyframes tx-kenburns { from { transform: scale(1.06); } to { transform: scale(1.16) translateY(-2%); } }
.tx-hero__scrim {
  position: absolute; inset: 0; z-index: 2;
  background:
    /* Fully-opaque dark text panel on the left so the busy wall lettering
       is completely hidden behind the headline; fades to reveal the machines */
    linear-gradient(90deg, rgba(4, 7, 14, 1) 0%, rgba(4, 7, 14, 1) 42%, rgba(4, 7, 14, 0.82) 55%, rgba(4, 7, 14, 0.4) 74%, rgba(4, 7, 14, 0.1) 92%, transparent 100%),
    /* Lighter top-to-bottom darkening (keeps machines visible) + solid navy at the very bottom */
    linear-gradient(180deg, rgba(4, 7, 14, 0.22) 0%, rgba(4, 7, 14, 0.3) 45%, rgba(4, 7, 14, 0.95) 94%, rgba(4, 7, 14, 1) 100%);
}
.tx-hero__grain {
  position: absolute; inset: 0; z-index: 3; opacity: 0.5; mix-blend-mode: overlay;
  background-image: radial-gradient(circle at center, rgba(255, 255, 255, 0.06) 0.5px, transparent 0.5px);
  background-size: 3px 3px;
}
.tx-hero__inner { position: relative; max-width: 900px; }
.tx-hero__title {
  font-family: var(--tx-display);
  font-weight: 700;
  font-size: clamp(2.7rem, 8.4vw, 6.6rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 20px 0 0;
  background: linear-gradient(180deg, #ffffff 56%, #f4d98a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #fff;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.8)) drop-shadow(0 6px 40px rgba(0, 0, 0, 0.6));
}
.tx-hero__title em {
  font-style: normal;
  -webkit-text-fill-color: var(--tx-accent);
  color: var(--tx-accent);
}
.tx-hero__lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.02rem, 1.6vw, 1.28rem);
  line-height: 1.65;
  max-width: 54ch;
  margin: 24px 0 0;
}
.tx-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.tx-hero__signals {
  list-style: none; margin: 34px 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 12px 26px;
}
.tx-hero__signals li {
  display: inline-flex; align-items: center; gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem; font-weight: 500;
}
.tx-hero__scroll {
  position: absolute; right: var(--tx-pad); bottom: clamp(40px, 8vw, 90px);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--tx-display); font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase;
  writing-mode: vertical-rl;
}
.tx-hero__scroll-line { width: 1px; height: 54px; background: linear-gradient(var(--tx-accent), transparent); animation: tx-drop 1.8s var(--tx-ease) infinite; }
@keyframes tx-drop { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 100% { transform: scaleY(0); transform-origin: bottom; } }
@media (max-width: 700px) { .tx-hero__scroll { display: none; } }
@media (max-width: 480px) {
  .tx-hero { min-height: min(94vh, 720px); }
  .tx-hero__title { font-size: clamp(2.1rem, 9.4vw, 3rem); letter-spacing: -0.03em; }
  .tx-hero__lead { font-size: 1rem; }
}

/* ============================ MARQUEE ============================ */
.tx-marquee {
  border-block: 1px solid var(--tx-line);
  background: var(--tx-bg2);
  overflow: hidden;
  padding: 18px 0;
}
.tx-marquee__track { display: inline-flex; white-space: nowrap; animation: tx-scroll 26s linear infinite; }
.tx-marquee__item {
  font-family: var(--tx-display);
  font-weight: 600;
  font-size: clamp(1.1rem, 2.4vw, 1.7rem);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--tx-text);
  display: inline-flex; align-items: center;
}
.tx-marquee__sep { color: var(--tx-accent); margin: 0 clamp(20px, 3vw, 46px); font-size: 0.8em; }
@keyframes tx-scroll { to { transform: translateX(-50%); } }

/* ============================ BENTO ============================ */
.tx-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.6vw, 22px);
}
.tx-card {
  background: linear-gradient(180deg, var(--tx-surface), var(--tx-surface-2));
  border: 1px solid var(--tx-line);
  border-radius: var(--tx-radius);
  backdrop-filter: blur(14px);
  box-shadow: var(--tx-shadow-sm);
}
.tx-bento__cell {
  padding: clamp(22px, 2.4vw, 32px);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: transform 0.4s var(--tx-ease), border-color 0.4s var(--tx-ease), box-shadow 0.4s var(--tx-ease);
}
.tx-bento__cell::after {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--tx-accent), var(--tx-accent-2));
  transform: scaleX(0); transform-origin: left; transition: transform 0.45s var(--tx-ease);
}
.tx-bento__cell:hover { transform: translateY(-8px); border-color: var(--tx-line-2); box-shadow: var(--tx-shadow); }
.tx-bento__cell:hover::after { transform: scaleX(1); }
.tx-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.tx-ico { width: 44px; height: 44px; padding: 9px; border-radius: 12px; color: var(--tx-accent); background: rgba(232, 189, 79, 0.10); border: 1px solid var(--tx-line); }
html[data-theme="light"] .tx-ico { background: rgba(184, 134, 11, 0.1); }
.tx-card__num { font-family: var(--tx-display); font-size: 0.9rem; font-weight: 600; color: var(--tx-muted); letter-spacing: 0.1em; }
.tx-card__title { font-family: var(--tx-display); font-weight: 700; font-size: 1.28rem; letter-spacing: -0.01em; text-transform: none; color: var(--tx-text); }
.tx-card__desc { color: var(--tx-muted); font-size: 0.98rem; line-height: 1.6; margin-top: 10px; }

.tx-bento__media {
  grid-column: span 3;
  position: relative;
  border-radius: var(--tx-radius);
  overflow: hidden;
  min-height: 260px;
  border: 1px solid var(--tx-line);
}
.tx-bento__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--tx-ease); }
.tx-bento__media:hover img { transform: scale(1.05); }
.tx-bento__media-overlay {
  position: absolute; inset: auto 0 0 0; padding: 28px;
  display: flex; flex-direction: column; gap: 10px; align-items: flex-start;
  background: linear-gradient(transparent, rgba(5, 9, 18, 0.85));
}
.tx-bento__media-overlay p { font-family: var(--tx-display); font-weight: 600; font-size: clamp(1.3rem, 2.4vw, 2rem); color: #fff; }

@media (max-width: 900px) {
  .tx-bento { grid-template-columns: 1fr 1fr; }
  .tx-bento__media { grid-column: span 2; }
}
@media (max-width: 560px) {
  .tx-bento { grid-template-columns: 1fr; }
  .tx-bento__media { grid-column: span 1; }
}

/* ============================ SPLIT ============================ */
.tx-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: clamp(30px, 5vw, 80px); align-items: center; }
.tx-split__copy { position: sticky; top: 100px; }
.tx-split__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.tx-split__list { display: flex; flex-direction: column; gap: 14px; }
.tx-row {
  display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: start;
  padding: clamp(22px, 2.4vw, 30px);
  background: linear-gradient(180deg, var(--tx-surface), var(--tx-surface-2));
  border: 1px solid var(--tx-line);
  border-radius: var(--tx-radius);
  backdrop-filter: blur(12px);
  transition: transform 0.35s var(--tx-ease), border-color 0.35s var(--tx-ease);
}
.tx-row:hover { transform: translateX(6px); border-color: var(--tx-accent); }
.tx-row__index { font-family: var(--tx-display); font-weight: 700; font-size: 1.5rem; color: var(--tx-accent); line-height: 1; }
.tx-row__title { font-family: var(--tx-display); font-weight: 700; font-size: 1.2rem; text-transform: none; color: var(--tx-text); }
.tx-row__desc { color: var(--tx-muted); font-size: 0.98rem; line-height: 1.6; margin-top: 6px; }
@media (max-width: 860px) { .tx-split { grid-template-columns: 1fr; } .tx-split__copy { position: static; } }

/* ======================= TIMELINE (dates) ======================= */
.tx-timeline-section { background:
    radial-gradient(80% 60% at 100% 0%, rgba(255, 180, 60, 0.06), transparent 60%),
    radial-gradient(70% 60% at 0% 100%, rgba(232, 189, 79, 0.06), transparent 60%);
  border-block: 1px solid var(--tx-line);
  max-width: none;
}
.tx-timeline-section > .tx-timeline { max-width: 1600px; margin-inline: auto; }
.tx-timeline { list-style: none; margin: 0; padding: 0; }
.tx-timeline__item { display: grid; grid-template-columns: 28px 1fr; gap: clamp(18px, 3vw, 40px); }
.tx-timeline__rail { position: relative; display: flex; justify-content: center; }
.tx-timeline__rail::before { content: ""; position: absolute; top: 0; bottom: 0; width: 2px; background: linear-gradient(var(--tx-line-2), var(--tx-line)); }
.tx-timeline__item:first-child .tx-timeline__rail::before { top: 22px; }
.tx-timeline__item:last-child .tx-timeline__rail::before { bottom: calc(100% - 22px); }
.tx-timeline__node {
  position: relative; z-index: 1; margin-top: 14px;
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--tx-accent); box-shadow: 0 0 0 5px color-mix(in srgb, var(--tx-accent) 20%, transparent), var(--tx-glow);
}
.tx-timeline__content { padding-bottom: clamp(26px, 4vw, 48px); min-width: 0; }
.tx-timeline__meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.tx-datebadge {
  font-family: var(--tx-display); font-weight: 700; font-size: 0.86rem; letter-spacing: 0.02em;
  color: var(--tx-text);
  padding: 7px 14px; border-radius: 10px;
  background: var(--tx-surface); border: 1px solid var(--tx-line-2);
  backdrop-filter: blur(8px);
}
.tx-timeline__card { overflow: hidden; display: grid; grid-template-columns: minmax(0, 240px) 1fr; }
.tx-timeline__card:not(:has(.tx-timeline__thumb)) { grid-template-columns: 1fr; }
.tx-timeline__thumb { position: relative; min-height: 180px; }
.tx-timeline__thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tx-timeline__body { padding: clamp(22px, 2.4vw, 30px); }
.tx-timeline__body .tx-card__desc { margin-top: 12px; }
.tx-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-family: var(--tx-display); font-weight: 600; color: var(--tx-accent); }
.tx-link span { transition: transform 0.25s var(--tx-ease); }
.tx-link:hover span { transform: translateX(4px); }
.tx-status { display: inline-block; margin-top: 18px; font-size: 0.86rem; color: var(--tx-muted); }
@media (max-width: 620px) {
  .tx-timeline__card { grid-template-columns: 1fr; }
  .tx-timeline__thumb { min-height: 200px; }
}

/* ======================= ARRIVAL BENTO ======================= */
.tx-arrival { display: grid; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 260px; gap: clamp(14px, 1.6vw, 22px); }
.tx-arrival__cell { position: relative; overflow: hidden; border-radius: var(--tx-radius); border: 1px solid var(--tx-line); }
.tx-arrival-feature { grid-row: span 2; }
.tx-arrival__cell img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--tx-ease); }
.tx-arrival__cell:hover img { transform: scale(1.06); }
.tx-arrival__scrim { position: absolute; inset: 0; background: linear-gradient(transparent 30%, rgba(5, 9, 18, 0.88)); }
.tx-arrival__caption { position: absolute; inset: auto 0 0 0; padding: 26px; display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.tx-arrival__caption h3 { font-family: var(--tx-display); font-weight: 700; font-size: 1.35rem; color: #fff; text-transform: none; }
.tx-arrival__caption p { color: rgba(255, 255, 255, 0.82); font-size: 0.94rem; line-height: 1.5; max-width: 42ch; opacity: 0; max-height: 0; transform: translateY(8px); transition: opacity 0.4s, max-height 0.4s var(--tx-ease), transform 0.4s var(--tx-ease); }
.tx-arrival__cell:hover .tx-arrival__caption p { opacity: 1; max-height: 120px; transform: translateY(0); }
@media (max-width: 720px) {
  .tx-arrival { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .tx-arrival-feature { grid-row: span 1; }
  .tx-arrival__caption p { opacity: 1; max-height: 120px; transform: none; }
}

/* ======================= LOCATION SPLIT ======================= */
.tx-location { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: clamp(24px, 3vw, 44px); align-items: stretch; }
.tx-location__panel {
  padding: clamp(28px, 3.4vw, 48px);
  background: linear-gradient(180deg, var(--tx-surface), var(--tx-surface-2));
  border: 1px solid var(--tx-line); border-radius: var(--tx-radius-lg);
  backdrop-filter: blur(14px);
  display: flex; flex-direction: column; justify-content: center;
}
.tx-location__facts { display: grid; gap: 2px; margin: 28px 0; border-radius: 14px; overflow: hidden; border: 1px solid var(--tx-line); }
.tx-fact { display: flex; justify-content: space-between; gap: 16px; padding: 16px 18px; background: var(--tx-surface-2); }
.tx-fact__k { font-family: var(--tx-display); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--tx-accent); }
.tx-fact__v { color: var(--tx-text); font-weight: 500; text-align: right; }
.tx-location__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.tx-location__map { border-radius: var(--tx-radius-lg); overflow: hidden; border: 1px solid var(--tx-line); min-height: 380px; box-shadow: var(--tx-shadow-sm); }
.tx-location__map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; filter: saturate(1.05); }
@media (max-width: 860px) { .tx-location { grid-template-columns: 1fr; } }

/* ======================= CLOSING CTA ======================= */
.tx-cta { padding: clamp(24px, 3.5vw, 52px) var(--tx-pad) clamp(44px, 6vw, 80px); max-width: 1600px; margin: 0 auto; }
.tx-cta__inner {
  position: relative; overflow: hidden;
  padding: clamp(40px, 6vw, 84px);
  border-radius: var(--tx-radius-lg);
  text-align: center;
  background:
    radial-gradient(120% 160% at 0% 0%, rgba(232, 189, 79, 0.22), transparent 55%),
    radial-gradient(120% 160% at 100% 100%, rgba(255, 180, 60, 0.16), transparent 55%),
    var(--tx-solid);
  border: 1px solid var(--tx-line-2);
  box-shadow: var(--tx-shadow);
}
.tx-cta__inner h2 { font-family: var(--tx-display); font-weight: 700; font-size: clamp(1.9rem, 4vw, 3.2rem); letter-spacing: -0.03em; text-transform: none; color: var(--tx-text); }
.tx-cta__inner p { color: var(--tx-muted); font-size: clamp(1rem, 1.4vw, 1.16rem); margin: 16px auto 0; max-width: 48ch; }
.tx-cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 32px; }

/* ======================= MOTION SAFETY ======================= */
@media (prefers-reduced-motion: reduce) {
  .tx-hero__img { animation: none; }
  .tx-marquee__track { animation: none; }
  .tx-hero__scroll-line { animation: none; }
  .tx-btn:hover, .tx-bento__cell:hover, .tx-row:hover, .tx-arrival__cell:hover img, .tx-bento__media:hover img { transform: none; }
}
