/**
 * GT Business homepage — light futuristic theme.
 * Scoped under .gt-home-future / .gt-home-future-page
 */

.gt-home-future-page .gt-public__mesh {
  display: none;
}

.gt-home-future-page .gt-main {
  background: #f7f8fc;
}

.gt-home-future {
  --f-bg: #f7f8fc;
  --f-bg-2: #eef1f8;
  --f-surface: #ffffff;
  --f-border: rgba(14, 116, 144, 0.18);
  --f-border-soft: rgba(15, 23, 42, 0.08);
  --f-cyan: #0e7490;
  --f-cyan-bright: #06b6d4;
  --f-violet: #7c3aed;
  --f-magenta: #db2777;
  --f-amber: #d97706;
  --f-ink: #0f172a;
  --f-text: #0f172a;
  --f-muted: #64748b;
  --f-font-display: 'Space Grotesk', 'Plus Jakarta Sans', system-ui, sans-serif;
  --f-font-body: 'DM Sans', 'Plus Jakarta Sans', system-ui, sans-serif;
  --f-font-mono: 'IBM Plex Mono', ui-monospace, monospace;
  color: var(--f-text);
  font-family: var(--f-font-body);
  overflow-x: clip;
}

/* —— Hero —— */

.gt-future-hero {
  position: relative;
  min-height: min(88vh, 880px);
  padding: clamp(3rem, 7vw, 5rem) 0 2.75rem;
  background:
    radial-gradient(ellipse 70% 55% at 85% 10%, rgba(124, 58, 237, 0.09) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 5% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
}

.gt-future-hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.gt-future-hero__grid {
  position: absolute;
  inset: -10%;
  background-image:
    linear-gradient(rgba(14, 116, 144, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 116, 144, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 75% 65% at 40% 35%, #000 10%, transparent 72%);
  animation: gt-future-grid-soft 36s ease-in-out infinite alternate;
}

@keyframes gt-future-grid-soft {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.7;
  }
  100% {
    transform: translate3d(-18px, 12px, 0) scale(1.03);
    opacity: 1;
  }
}

.gt-future-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.7;
  animation: gt-future-orb-breathe 10s ease-in-out infinite alternate;
}

.gt-future-hero__orb--a {
  width: 320px;
  height: 320px;
  top: -6%;
  right: 6%;
  background: rgba(124, 58, 237, 0.22);
}

.gt-future-hero__orb--b {
  width: 260px;
  height: 260px;
  bottom: 8%;
  left: -4%;
  background: rgba(6, 182, 212, 0.2);
  animation-delay: -3s;
  animation-duration: 14s;
}

.gt-future-hero__orb--c {
  width: 180px;
  height: 180px;
  top: 42%;
  left: 38%;
  background: rgba(219, 39, 119, 0.12);
  animation-delay: -6s;
}

@keyframes gt-future-orb-breathe {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.55;
  }
  100% {
    transform: translate3d(16px, -12px, 0) scale(1.12);
    opacity: 0.85;
  }
}

/* Soft horizontal shimmer instead of harsh scan */
.gt-future-hero__scan {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 28%;
  height: 120px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(6, 182, 212, 0.06) 40%,
    rgba(124, 58, 237, 0.07) 60%,
    transparent 100%
  );
  filter: blur(24px);
  animation: gt-future-sheen 9s ease-in-out infinite;
}

@keyframes gt-future-sheen {
  0%,
  100% {
    transform: translateY(-20px);
    opacity: 0.35;
  }
  50% {
    transform: translateY(40px);
    opacity: 0.8;
  }
}

.gt-future-hero__inner {
  z-index: 1;
}

.gt-future-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.9rem 0.4rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(14, 116, 144, 0.2);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 8px 24px -18px rgba(15, 23, 42, 0.25);
  margin-bottom: 1.35rem;
}

.gt-future-chip__text {
  font-family: var(--f-font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--f-cyan);
}

.gt-future-chip__pulse {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--f-cyan-bright);
  box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.45);
  animation: gt-future-pulse 2.4s ease-out infinite;
}

@keyframes gt-future-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.45);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(6, 182, 212, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(6, 182, 212, 0);
  }
}

.gt-future-hero__title {
  font-family: var(--f-font-display);
  font-size: clamp(2.25rem, 4.8vw, 3.35rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.04em;
  max-width: 16ch;
  margin-bottom: 1.25rem;
  color: var(--f-ink);
}

.gt-future-hero__title .gt-future-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.55em);
  filter: blur(6px);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.55s ease;
  transition-delay: calc(var(--wi, 0) * 70ms + var(--d, 0ms));
}

.gt-future-reveal.is-visible .gt-future-word,
.gt-future-hero__title.gt-future-reveal.is-visible .gt-future-word {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.gt-future-gradient-text {
  background: linear-gradient(
    115deg,
    #0891b2 0%,
    #06b6d4 28%,
    #8b5cf6 72%,
    #a78bfa 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gt-future-grad-shift 7s ease-in-out infinite;
}

@keyframes gt-future-grad-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.gt-future-hero__lede {
  font-family: var(--f-font-body);
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--f-muted);
  max-width: 34rem;
  margin-bottom: 1.75rem;
  font-weight: 400;
}

.gt-future-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  margin: 2rem 0 0;
  padding: 0;
}

.gt-future-metrics dt {
  font-family: var(--f-font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 0.2rem;
}

.gt-future-metrics dd {
  font-family: var(--f-font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0;
  color: var(--f-ink);
  letter-spacing: -0.03em;
}

/* Product panel */

.gt-future-holo {
  position: relative;
  padding: 1.1rem;
}

.gt-future-holo__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(14, 116, 144, 0.18);
  pointer-events: none;
}

.gt-future-holo__ring--outer {
  inset: 0;
  animation: gt-future-spin 32s linear infinite;
}

.gt-future-holo__ring--inner {
  inset: 11%;
  border-color: rgba(124, 58, 237, 0.16);
  animation: gt-future-spin 22s linear infinite reverse;
}

@keyframes gt-future-spin {
  to {
    transform: rotate(360deg);
  }
}

.gt-future-holo__panel {
  position: relative;
  border-radius: 1.25rem;
  border: 1px solid var(--f-border-soft);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 1.25rem;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 28px 56px -36px rgba(15, 23, 42, 0.28);
}

.gt-future-holo__panel::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.05) 0%, transparent 42%, rgba(124, 58, 237, 0.05) 100%);
  pointer-events: none;
}

.gt-future-holo__head {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-family: var(--f-font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--f-muted);
}

.gt-future-holo__status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--f-cyan);
}

.gt-future-holo__status-dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #10b981;
  animation: gt-future-blink 2.6s ease-in-out infinite;
}

@keyframes gt-future-blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.gt-future-holo__grid-stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.gt-future-stat {
  padding: 0.65rem 0.75rem;
  border-radius: 0.65rem;
  border: 1px solid var(--f-border-soft);
  background: #f8fafc;
}

.gt-future-stat--alert {
  border-color: rgba(217, 119, 6, 0.35);
  background: #fffbeb;
}

.gt-future-stat__label {
  display: block;
  font-family: var(--f-font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--f-muted);
  margin-bottom: 0.25rem;
}

.gt-future-stat__value {
  font-family: var(--f-font-display);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  color: var(--f-ink);
  letter-spacing: -0.03em;
}

.gt-future-holo__chart {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
  height: 4.5rem;
  margin-bottom: 1rem;
  padding: 0 0.15rem;
}

.gt-future-holo__chart span {
  flex: 1;
  height: var(--h, 50%);
  min-height: 8%;
  border-radius: 0.25rem 0.25rem 0.08rem 0.08rem;
  background: linear-gradient(180deg, #22d3ee 0%, #0e7490 100%);
  transform-origin: bottom;
  animation: gt-future-bar-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  animation-delay: calc(var(--i, 0) * 0.06s);
}

.gt-future-holo__chart span:nth-child(1) { --i: 1; }
.gt-future-holo__chart span:nth-child(2) { --i: 2; }
.gt-future-holo__chart span:nth-child(3) { --i: 3; }
.gt-future-holo__chart span:nth-child(4) { --i: 4; }
.gt-future-holo__chart span:nth-child(5) { --i: 5; }
.gt-future-holo__chart span:nth-child(6) { --i: 6; }
.gt-future-holo__chart span:nth-child(7) { --i: 7; }
.gt-future-holo__chart span:nth-child(8) { --i: 8; }
.gt-future-holo__chart span:nth-child(9) { --i: 9; }
.gt-future-holo__chart span:nth-child(10) { --i: 10; }

@keyframes gt-future-bar-rise {
  from {
    transform: scaleY(0.15);
    opacity: 0;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

.gt-future-holo__feed {
  position: relative;
  font-size: 0.72rem;
  color: var(--f-muted);
}

.gt-future-holo__feed li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.45rem 0;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.gt-future-feed-tag {
  font-family: var(--f-font-mono);
  font-size: 0.55rem;
  font-weight: 600;
  padding: 0.15rem 0.35rem;
  border-radius: 0.25rem;
  flex-shrink: 0;
}

.gt-future-feed-tag--task {
  color: #6d28d9;
  background: #f3e8ff;
}

.gt-future-feed-tag--sync {
  color: #0e7490;
  background: #ecfeff;
}

.gt-future-feed-tag--crm {
  color: #b45309;
  background: #fffbeb;
}

/* Buttons */

.gt-future-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-family: var(--f-font-body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  border: 1px solid transparent;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.gt-future-btn--lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.gt-future-btn--primary {
  color: #fff !important;
  background: var(--f-ink);
  border-color: var(--f-ink);
  box-shadow: 0 12px 28px -16px rgba(15, 23, 42, 0.45);
}

.gt-future-btn--primary:hover {
  color: #fff !important;
  background: #1e293b;
  border-color: #1e293b;
  transform: translateY(-1px);
}

.gt-future-btn--ghost {
  color: var(--f-ink) !important;
  background: #fff;
  border-color: var(--f-border-soft);
}

.gt-future-btn--ghost:hover {
  color: var(--f-ink) !important;
  border-color: rgba(14, 116, 144, 0.35);
  background: #f8fafc;
}

.gt-future-btn--outline {
  color: var(--f-cyan) !important;
  background: #fff;
  border-color: rgba(14, 116, 144, 0.28);
}

.gt-future-btn--outline:hover {
  background: #ecfeff;
}

/* Marquee */

.gt-future-marquee {
  border-block: 1px solid var(--f-border-soft);
  background: #fff;
  overflow: hidden;
  padding: 0.9rem 0;
}

.gt-future-marquee__track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: gt-future-marquee 42s linear infinite;
}

.gt-future-marquee__track span {
  font-family: var(--f-font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94a3b8;
  white-space: nowrap;
}

.gt-future-marquee__track span::before {
  content: '◆';
  margin-right: 0.75rem;
  color: var(--f-violet);
  font-size: 0.5rem;
}

@keyframes gt-future-marquee {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

/* Sections */

.gt-future-section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  background: var(--f-bg);
}

.gt-future-section--dark {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(124, 58, 237, 0.06) 0%, transparent 55%),
    var(--f-bg-2);
  border-block: 1px solid var(--f-border-soft);
}

.gt-future-section--dark .gt-future-section__title,
.gt-future-section--dark .gt-future-glass h3 {
  color: var(--f-ink) !important;
}

.gt-future-section--hub {
  padding-bottom: 1.5rem;
}

.gt-future-section--cta {
  padding-top: 1.25rem;
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.gt-future-section__head {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.gt-future-section__title {
  font-family: var(--f-font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.45rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--f-ink);
  margin-bottom: 0.65rem;
}

.gt-future-section__sub {
  color: var(--f-muted);
  margin: 0;
  line-height: 1.55;
}

.gt-future-kicker {
  font-family: var(--f-font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--f-violet);
  margin-bottom: 0.65rem;
}

.gt-future-kicker--cyan {
  color: var(--f-cyan);
}

.gt-future-kicker--light {
  color: var(--f-cyan);
}

.gt-future-muted {
  color: var(--f-muted) !important;
}

.gt-future-link {
  color: var(--f-cyan);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}

.gt-future-link:hover {
  color: #155e75;
}

/* Bento */

.gt-future-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

@media (max-width: 991.98px) {
  .gt-future-bento {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .gt-future-bento {
    grid-template-columns: 1fr;
  }
}

.gt-future-bento__cell {
  position: relative;
  padding: 1.15rem;
  border-radius: 1rem;
  border: 1px solid var(--f-border-soft);
  background: #fff;
  overflow: hidden;
  min-height: 100%;
  box-shadow: 0 14px 32px -28px rgba(15, 23, 42, 0.2);
  transition:
    border-color 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.gt-future-bento__cell:hover {
  border-color: rgba(14, 116, 144, 0.28);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -28px rgba(14, 116, 144, 0.25);
}

.gt-future-bento__glow {
  position: absolute;
  width: 120px;
  height: 120px;
  top: -40px;
  right: -40px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.16) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.gt-future-bento__cell:hover .gt-future-bento__glow {
  opacity: 1;
}

.gt-future-bento__icon {
  font-size: 1.25rem;
  color: var(--f-cyan);
  margin-bottom: 0.65rem;
  display: block;
}

.gt-future-bento__title {
  font-family: var(--f-font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--f-ink);
  letter-spacing: -0.02em;
}

.gt-future-bento__desc {
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--f-muted);
  margin: 0;
}

/* Flow */

.gt-future-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0;
}

.gt-future-flow__node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 0.85rem;
  border-radius: 0.75rem;
  border: 1px solid var(--f-border-soft);
  background: #fff;
  min-width: 5.5rem;
  box-shadow: 0 10px 24px -20px rgba(15, 23, 42, 0.2);
}

.gt-future-flow__index {
  font-family: var(--f-font-mono);
  font-size: 0.62rem;
  color: var(--f-violet);
}

.gt-future-flow__label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--f-ink);
  text-align: center;
}

.gt-future-flow__beam {
  width: clamp(1.5rem, 4vw, 2.75rem);
  height: 2px;
  background: rgba(15, 23, 42, 0.08);
  position: relative;
  overflow: hidden;
}

.gt-future-flow__beam span {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--f-cyan-bright), transparent);
  animation: gt-future-beam 2.4s ease-in-out infinite;
}

.gt-future-flow__beam:nth-child(4) span { animation-delay: 0.2s; }
.gt-future-flow__beam:nth-child(6) span { animation-delay: 0.4s; }
.gt-future-flow__beam:nth-child(8) span { animation-delay: 0.6s; }
.gt-future-flow__beam:nth-child(10) span { animation-delay: 0.8s; }

@keyframes gt-future-beam {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.gt-future-glass {
  padding: 1.15rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid var(--f-border-soft);
  background: #fff;
  height: 100%;
  box-shadow: 0 14px 32px -28px rgba(15, 23, 42, 0.18);
}

/* Hub */

.gt-future-hub {
  position: relative;
  display: block;
  height: 100%;
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px solid var(--f-border-soft);
  background: #fff;
  color: var(--f-ink);
  box-shadow: 0 14px 32px -28px rgba(15, 23, 42, 0.18);
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.gt-future-hub:hover {
  border-color: rgba(14, 116, 144, 0.3);
  transform: translateY(-4px);
  color: var(--f-ink);
  box-shadow: 0 22px 40px -28px rgba(14, 116, 144, 0.28);
}

.gt-future-hub i:first-child {
  font-size: 1.35rem;
  color: var(--f-cyan);
  margin-bottom: 0.75rem;
}

.gt-future-hub__title {
  font-family: var(--f-font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.gt-future-hub__desc {
  font-size: 0.8rem;
  color: var(--f-muted);
  margin: 0;
  line-height: 1.45;
}

.gt-future-hub__arrow {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: #94a3b8;
  transition: color 0.2s ease, transform 0.2s ease;
}

.gt-future-hub:hover .gt-future-hub__arrow {
  color: var(--f-cyan);
  transform: translate(2px, -2px);
}

/* CTA */

.gt-future-cta {
  position: relative;
  border-radius: 1.25rem;
  border: 1px solid var(--f-border-soft);
  overflow: hidden;
  isolation: isolate;
  padding: clamp(1.75rem, 3.5vw, 2.5rem) 1.5rem;
  background: #fff;
  box-shadow: 0 20px 40px -32px rgba(15, 23, 42, 0.22);
}

.gt-future-cta__aurora {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 90% at 15% 100%, rgba(6, 182, 212, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 70% 90% at 90% 0%, rgba(124, 58, 237, 0.12) 0%, transparent 55%);
  animation: gt-future-aurora-soft 8s ease-in-out infinite alternate;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

@keyframes gt-future-aurora-soft {
  0% {
    opacity: 0.75;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.04);
  }
}

.gt-future-cta__content {
  position: relative;
  z-index: 1;
}

.gt-future-cta__title {
  font-family: var(--f-font-display);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--f-ink);
  margin-bottom: 0.65rem;
}

.gt-future-cta__sub {
  color: var(--f-muted);
  max-width: 32rem;
  margin: 0 auto 1.15rem;
  line-height: 1.55;
}

/* Scroll reveal */

.gt-future-reveal {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(4px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.7s ease;
  transition-delay: var(--d, 0ms);
}

.gt-future-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .gt-future-hero__grid,
  .gt-future-hero__orb,
  .gt-future-hero__scan,
  .gt-future-chip__pulse,
  .gt-future-holo__ring,
  .gt-future-holo__status-dot,
  .gt-future-holo__chart span,
  .gt-future-marquee__track,
  .gt-future-flow__beam span,
  .gt-future-cta__aurora,
  .gt-future-gradient-text {
    animation: none !important;
  }

  .gt-future-reveal,
  .gt-future-hero__title .gt-future-word {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }

  .gt-future-bento__cell:hover,
  .gt-future-hub:hover,
  .gt-future-btn--primary:hover {
    transform: none;
  }
}
