:root {
  --ink: #080a09;
  --ink-2: #101310;
  --ink-3: #171b18;
  --line: #303632;
  --line-light: #b5bab3;
  --paper: #e9eae5;
  --paper-2: #f4f5f1;
  --white: #f4f6f2;
  --muted: #8e9993;
  --muted-dark: #5f6862;
  --lime: #d7ff3f;
  --cyan: #55d9ff;
  --coral: #ff6d72;
  --content: 1180px;
  --header-h: 80px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--white);
  background: var(--ink);
  font-family: Arial, "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
svg,
canvas {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--lime);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-h);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 10, 9, 0.82);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, height 180ms ease;
}

.site-header.is-scrolled {
  height: 70px;
  background: rgba(8, 10, 9, 0.96);
}

.header-inner {
  width: min(var(--content), calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 42px;
}

.brand {
  width: 238px;
  margin-right: auto;
}

.brand img {
  width: 100%;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  position: relative;
  padding: 27px 0;
  color: #b7bfba;
  font-size: 15px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  inset: auto 100% 0 0;
  height: 2px;
  background: var(--lime);
  transition: right 180ms ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--white);
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  right: 0;
}

.header-cta,
.button-primary,
.button-light,
.button-line {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 18px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.header-cta,
.button-light {
  color: var(--ink);
  background: var(--white);
}

.header-cta:hover,
.button-light:hover,
.button-primary:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--ink);
  background: var(--lime);
}

.button-line {
  color: var(--white);
  border-color: #66706a;
  background: transparent;
}

.button-line:hover {
  color: var(--ink);
  border-color: var(--white);
  background: var(--white);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.market-tape {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 44px;
  margin: var(--header-h) 0 0;
  border-bottom: 1px solid var(--line);
  background: #111411;
}

.market-tape-inner {
  width: min(var(--content), calc(100% - 48px));
  height: 100%;
  display: flex;
  align-items: center;
  margin: 0 auto;

  overflow: hidden;
}

.tape-status {
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  margin-left: 0;
  border-inline: 1px solid #343a36;
  color: var(--lime);
  background: #111411;
  white-space: nowrap;
  font-size: 13px;
}

.market-updated {
  margin-left: 2px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 400;
}

.tape-status i {
  width: 7px;
  height: 7px;
  background: var(--lime);
  box-shadow: 0 0 12px var(--lime);
  animation: blink 1.2s ease-in-out infinite;
}

.tape-track {
  display: flex;
  gap: 34px;
  min-width: max-content;
  padding: 0 26px;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
}

.tape-track span {
  color: #b6bdb9;
}

.tape-track b {
  margin-left: 6px;
  color: var(--white);
}

.up {
  color: var(--lime);
  font-style: normal;
}

.down {
  color: var(--coral);
  font-style: normal;
}

.tape-time {
  z-index: 2;
  margin-left: auto;
  padding: 0 22px 0 22px;
  color: var(--muted);
  background: #111411;
  white-space: nowrap;
  font-size: 13px;
}

.home-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  isolation: isolate;
}

.hero-world,
.ambient-canvas {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
}

.home-hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 10, 9, 0.95) 0%, rgba(8, 10, 9, 0.74) 40%, rgba(8, 10, 9, 0.12) 74%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 64px);
}

.noise {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.16;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.2'/%3E%3C/svg%3E");
}

.hero-inner {
  width: min(var(--content), calc(100% - 48px));
  min-height: 720px;
  margin: 0 auto;
  padding: 106px 0 124px;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-copy {
  width: 58%;
  max-width: 690px;
  position: relative;
  z-index: 3;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: #9aa49f;
  font-size: 13px;
  text-transform: uppercase;
}

.eyebrow strong {
  padding: 5px 9px;
  color: var(--ink);
  background: var(--lime);
  font-weight: 600;
}

.hero-copy h1,
.page-hero h1 {
  margin-bottom: 26px;
  color: var(--white);
  font-size: 70px;
  line-height: 1.05;
  font-weight: 600;
}

.hero-copy h1 span {
  color: var(--lime);
}

.hero-copy > p {
  max-width: 590px;
  margin-bottom: 34px;
  color: #b2bbb6;
  font-size: 19px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-signal {
  position: absolute;
  z-index: 3;
  min-width: 190px;
  padding: 14px 16px;
  border-left: 2px solid var(--lime);
  background: rgba(10, 13, 11, 0.84);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  transition: transform 180ms ease;
}

.hero-signal:hover {
  transform: translateY(-5px);
}

.hero-signal small {
  color: #7d8882;
}

.hero-signal div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin: 6px 0 2px;
}

.hero-signal b {
  font-size: 18px;
}

.hero-signal span {
  color: #8c9691;
  font-size: 13px;
}

.signal-one {
  top: 14%;
  right: 4%;
}

.signal-two {
  top: 43%;
  right: 1%;
  border-color: var(--cyan);
}

.signal-two .up {
  color: var(--cyan);
}

.signal-three {
  top: 27%;
  right: 24%;
  border-color: var(--coral);
}

.signal-three .up {
  color: var(--coral);
}

.hero-metrics {
  position: absolute;
  inset: auto 0 0;
  z-index: 4;
  height: 92px;
  border-top: 1px solid var(--line);
  background: rgba(8, 10, 9, 0.74);
  backdrop-filter: blur(12px);
}

.hero-metrics-inner {
  width: min(var(--content), calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 38px;
}

.hero-metrics span {
  color: #87918c;
}

.hero-metrics b {
  margin-right: 7px;
  color: var(--white);
  font-size: 20px;
}

.hero-metrics a {
  margin-left: auto;
  color: var(--lime);
  font-size: 13px;
}

.section {
  padding: 94px 0;
}

.section-dark {
  background: var(--ink-2);
}

.section-paper {
  color: #111410;
  background: var(--paper);
}

.container {
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 8%;
  align-items: end;
  margin-bottom: 48px;
}

.section-index {
  color: var(--lime);
  font-size: 13px;
}

.section-paper .section-index {
  color: #b42d3d;
}

.section-heading h2 {
  margin: 9px 0 0;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 600;
}

.section-heading p {
  max-width: 500px;
  margin-bottom: 4px;
  color: var(--muted);
}

.section-paper .section-heading p {
  color: var(--muted-dark);
}

.market-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  border-block: 1px solid var(--line);
}

.market-chart-panel {
  padding: 30px 30px 24px 0;
  border-right: 1px solid var(--line);
}

.market-chart-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.market-chart-head small {
  color: var(--muted);
}

.market-chart-head h3 {
  margin: 5px 0 0;
  font-size: 31px;
  font-weight: 600;
}

.market-chart-head em {
  color: var(--lime);
  font-style: normal;
}

.market-svg {
  width: 100%;
  margin-top: 18px;
}

.market-svg .grid path {
  stroke: #2d332f;
  stroke-width: 1;
}

.market-svg .area {
  fill: var(--lime);
  fill-opacity: 0.07;
}

.market-svg .line {
  fill: none;
  stroke: var(--lime);
  stroke-width: 3;
  stroke-linecap: round;
  filter: drop-shadow(0 0 6px rgba(215, 255, 63, 0.25));
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: draw-line 2.1s ease forwards 300ms;
}

.market-svg .guide {
  stroke: var(--coral);
  stroke-dasharray: 4 5;
  opacity: 0.55;
}

.market-svg .point {
  fill: var(--lime);
  filter: drop-shadow(0 0 8px var(--lime));
  animation: point-pulse 1.6s ease-in-out infinite;
}

.market-svg text {
  fill: #748078;
  font-size: 12px;
}

.market-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid #2d332f;
}

.market-facts span {
  display: grid;
  gap: 3px;
  color: #7e8983;
  font-size: 13px;
}

.market-facts b {
  color: var(--white);
  font-size: 15px;
}

.movers {
  padding: 30px 0 20px 24px;
}

.movers > header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.movers > header small {
  color: var(--muted);
}

.mover {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  align-items: center;
  width: 100%;
  padding: 15px 5px;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--white);
  background: transparent;
  text-align: left;
}

.mover span {
  display: grid;
  gap: 2px;
}

.mover small {
  color: var(--muted);
}

.mover em {
  color: var(--lime);
  font-style: normal;
}

.movers > a {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
  color: var(--lime);
}

.service-preview {
  border-top: 2px solid #171a17;
}

.service-preview a {
  display: grid;
  grid-template-columns: 78px 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 124px;
  border-bottom: 1px solid var(--line-light);
  transition: padding 180ms ease, background 180ms ease;
}

.service-preview a:hover {
  padding: 0 20px;
  background: var(--lime);
}

.service-preview > a > span {
  color: #b42d3d;
  font-weight: 600;
}

.service-preview h3 {
  margin: 0 0 6px;
  font-size: 27px;
  font-weight: 600;
}

.service-preview p {
  margin: 0;
  color: var(--muted-dark);
}

.service-preview .arrow {
  font-size: 22px;
}

.image-story {
  position: relative;
  min-height: 610px;
  display: flex;
  align-items: end;
  overflow: hidden;
  background: #202521;
}

.image-story img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.1);
  transition: transform 1.2s ease;
}

.image-story:hover img {
  transform: scale(1.025);
}

.image-story::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 10, 9, 0.94), rgba(8, 10, 9, 0.3) 70%), linear-gradient(0deg, rgba(8, 10, 9, 0.88), transparent 66%);
}

.image-story-content {
  position: relative;
  z-index: 2;
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
  padding: 80px 0;
}

.image-story-content h2 {
  max-width: 650px;
  margin: 8px 0 22px;
  font-size: 44px;
  line-height: 1.15;
}

.image-story-content p {
  max-width: 560px;
  color: #c0c7c3;
}

.insight-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.insight-card {
  min-height: 300px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  background: var(--ink-2);
  transition: background 180ms ease, transform 180ms ease;
}

.insight-card:hover {
  background: #1a1f1b;
  transform: translateY(-4px);
}

.insight-card.featured {
  min-height: 380px;
  background: var(--lime);
  color: var(--ink);
}

.insight-card small {
  color: var(--muted);
}

.insight-card.featured small {
  color: #4c561a;
}

.insight-card h3 {
  margin: 42px 0 16px;
  font-size: 25px;
  line-height: 1.35;
  font-weight: 600;
}

.insight-card.featured h3 {
  font-size: 33px;
}

.insight-card p {
  color: var(--muted);
}

.insight-card.featured p {
  color: #343912;
}

.insight-card .card-link {
  margin-top: auto;
  font-weight: 600;
}

.team-card .team-avatar {
  position: relative;
  width: 92px;
  height: 92px;
  margin-bottom: 22px;
  overflow: hidden;
  border: 1px solid rgba(215, 255, 63, 0.42);
  border-radius: 50%;
  background: #111713;
  box-shadow: 0 0 0 7px rgba(215, 255, 63, 0.05), 0 0 22px rgba(215, 255, 63, 0.1);
}

.team-card .team-avatar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(215, 255, 63, 0.16), transparent 46%, rgba(77, 213, 221, 0.12));
  pointer-events: none;
}

.team-card .team-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(0.38) saturate(0.72) contrast(1.08) brightness(0.82);
  transition: transform 260ms ease, filter 260ms ease;
}

.team-card:hover .team-avatar img {
  transform: scale(1.06);
  filter: grayscale(0.12) saturate(0.94) contrast(1.08) brightness(0.94);
}

.team-avatar-fallback {
  display: grid;
  place-items: center;
  color: var(--lime);
  background: radial-gradient(circle at 50% 28%, rgba(215, 255, 63, 0.24), transparent 24%), linear-gradient(145deg, #273329, #101410 70%);
  font-family: var(--mono);
  font-size: 30px;
  font-weight: 600;
}

.team-card h3 {
  margin-top: 0;
}

.risk-note {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.page-hero {
  position: relative;
  min-height: 590px;
  display: flex;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.page-hero.has-photo img {
  position: absolute;
  inset: 0;
  z-index: -4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.08);
}

.page-hero::before {
  background: linear-gradient(90deg, rgba(8, 10, 9, 0.96), rgba(8, 10, 9, 0.38) 72%), linear-gradient(0deg, rgba(8, 10, 9, 0.9), transparent 70%);
}

.page-hero-content {
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
  padding: 110px 0 76px;
}

.page-hero h1 {
  max-width: 820px;
  margin: 14px 0 22px;
  font-size: 64px;
}

.page-hero p {
  max-width: 620px;
  margin-bottom: 0;
  color: #b6bfba;
  font-size: 18px;
}

.page-count {
  position: absolute;
  right: max(24px, calc((100% - var(--content)) / 2));
  bottom: 58px;
  color: var(--lime);
  font-size: 13px;
}

.statement-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 10%;
}

.statement-label {
  color: var(--lime);
  font-size: 13px;
}

.statement-copy h2 {
  font-size: 42px;
  line-height: 1.25;
  font-weight: 600;
}

.statement-copy p {
  color: var(--muted);
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 60px;
  background: var(--line);
  border: 1px solid var(--line);
}

.principle {
  min-height: 280px;
  padding: 28px;
  background: var(--ink-2);
}

.principle span {
  color: var(--lime);
}

.principle h3 {
  margin: 64px 0 13px;
  font-size: 25px;
}

.principle p {
  color: var(--muted);
}

.timeline {
  position: relative;
  border-top: 1px solid var(--line-light);
}

.timeline::before {
  content: "";
  position: absolute;
  left: 134px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line-light);
}

.timeline-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 48px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line-light);
}

.timeline-year {
  color: #b42d3d;
  font-size: 20px;
  font-weight: 600;
}

.timeline-row h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.timeline-row p {
  max-width: 660px;
  margin: 0;
  color: var(--muted-dark);
}

.editorial-media {
  position: relative;
  min-height: 360px;
  margin: 0 0 54px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  background: #111411;
}

.section-dark .editorial-media {
  border-color: var(--line);
}

.editorial-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.08) brightness(0.68);
  transition: transform 700ms ease, filter 700ms ease;
}

.editorial-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 10, 9, 0.9), rgba(8, 10, 9, 0.12) 68%),
    linear-gradient(0deg, rgba(8, 10, 9, 0.8), transparent 58%);
}

.editorial-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.35;
  background-image: linear-gradient(rgba(215, 255, 63, 0.16) 1px, transparent 1px), linear-gradient(90deg, rgba(215, 255, 63, 0.16) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent 30%, #000);
}

.editorial-media:hover img {
  transform: scale(1.035);
  filter: saturate(0.82) contrast(1.08) brightness(0.74);
}

.editorial-media-content {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding: 30px;
  color: var(--white);
}

.editorial-media-content span {
  display: block;
  margin-bottom: 8px;
  color: var(--lime);
  font-size: 12px;
  letter-spacing: 0;
}

.editorial-media-content strong {
  display: block;
  max-width: 520px;
  font-size: 28px;
  line-height: 1.25;
}

.editorial-media-stats {
  display: flex;
  gap: 28px;
  flex: 0 0 auto;
}

.editorial-media-stats b,
.editorial-media-stats small {
  display: block;
}

.editorial-media-stats b {
  color: var(--lime);
  font-size: 22px;
}

.editorial-media-stats small {
  color: #c4cbc6;
}

.editorial-media-team img {
  object-position: center 38%;
}

.capability-tabs {
  display: grid;
  grid-template-columns: 320px 1fr;
  border-block: 1px solid var(--line);
}

.capability-tablist {
  padding: 22px 24px 22px 0;
  border-right: 1px solid var(--line);
}

.capability-tab {
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.capability-tab[aria-selected="true"] {
  color: var(--ink);
  background: var(--lime);
}

.capability-panel {
  min-height: 500px;
  padding: 50px 0 50px 54px;
}

.capability-panel[hidden] {
  display: none;
}

.capability-number {
  color: var(--lime);
}

.capability-panel h2 {
  max-width: 670px;
  margin: 34px 0 18px;
  font-size: 42px;
  line-height: 1.2;
}

.capability-panel > p {
  max-width: 700px;
  color: var(--muted);
}

.capability-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 48px;
  border-block: 1px solid var(--line);
  background: var(--line);
}

.capability-points div {
  padding: 22px;
  background: var(--ink-2);
}

.capability-points small {
  color: var(--muted);
}

.capability-points b {
  display: block;
  margin-top: 4px;
  font-size: 18px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid #171a17;
}

.process-step {
  min-height: 250px;
  padding: 26px;
  border-right: 1px solid var(--line-light);
}

.process-step:last-child {
  border-right: 0;
}

.process-step span {
  color: #b42d3d;
}

.process-step h3 {
  margin: 58px 0 10px;
  font-size: 22px;
}

.process-step p {
  color: var(--muted-dark);
}

.insights-hero-visual {
  position: absolute;
  right: 0;
  bottom: 70px;
  width: 56%;
  height: 360px;
  opacity: 0.84;
  transform: translate3d(0, 0, 0);
  transition: transform 180ms ease-out;
}

.insights-hero-visual svg {
  width: 100%;
  height: 100%;
}

.insights-hero-visual .gridline {
  stroke: #29302c;
  stroke-dasharray: 3 10;
  animation: insights-grid-drift 14s linear infinite;
}

.insights-hero-visual .trend {
  fill: none;
  stroke: var(--lime);
  stroke-width: 3;
  filter: drop-shadow(0 0 8px rgba(215, 255, 63, 0.4));
  stroke-dasharray: 120 860;
  animation: insights-trend-draw 5.5s ease-in-out infinite;
}

.insights-hero-visual .bar-up {
  fill: var(--lime);
  filter: drop-shadow(0 0 7px rgba(215, 255, 63, 0.35));
  transform-origin: 50% 100%;
  animation: insights-bars-breathe 3.8s ease-in-out infinite;
}

.insights-hero-visual .bar-down {
  fill: var(--coral);
  filter: drop-shadow(0 0 7px rgba(255, 93, 109, 0.3));
}

.insights-hero-visual .bar-up rect:nth-child(2n) {
  animation-delay: -1.1s;
}

.insights-hero-visual .bar-up rect:nth-child(3n) {
  animation-delay: -2.2s;
}

.insights-hero-visual .bar-down rect {
  animation: insights-bars-breathe 4.6s ease-in-out infinite reverse;
}

.insights-hero-visual .trend-point {
  fill: var(--lime);
  stroke: #0a0d0a;
  stroke-width: 3;
  filter: drop-shadow(0 0 7px rgba(215, 255, 63, 0.72));
  animation: insights-point-pulse 2.2s ease-in-out infinite;
}

.insights-hero-visual .scanline {
  fill: url(#insights-scan-gradient);
  opacity: 0.78;
  animation: insights-scan 6s ease-in-out infinite;
}

.hero-data-hud {
  position: absolute;
  right: max(24px, calc((100% - var(--content)) / 2));
  top: 112px;
  z-index: 2;
  width: 168px;
  padding: 13px 14px;
  border: 1px solid rgba(215, 255, 63, 0.34);
  background: rgba(8, 10, 9, 0.64);
  box-shadow: 0 0 22px rgba(215, 255, 63, 0.08);
  backdrop-filter: blur(8px);
  color: var(--white);
}

.hero-data-hud::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 0;
  width: 28px;
  height: 2px;
  background: var(--lime);
  box-shadow: 0 0 14px var(--lime);
}

.hero-data-hud small,
.hero-data-hud span,
.hero-data-hud b,
.hero-data-hud em {
  display: block;
}

.hero-data-hud small {
  margin-bottom: 12px;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.13em;
}

.hero-data-hud span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
}

.hero-data-hud b {
  margin-top: 3px;
  font-size: 19px;
  font-weight: 500;
}

.hero-data-hud em {
  margin-top: 3px;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 10px;
  font-style: normal;
}
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
}

.filter-button {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}

.filter-button[aria-pressed="true"] {
  color: var(--ink);
  border-color: var(--lime);
  background: var(--lime);
}

.report-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.report-card {
  min-height: 315px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  background: var(--ink-2);
  transition: background 180ms ease;
}

.report-card[hidden] {
  display: none;
}

.report-card:hover {
  background: #1a1f1b;
}

.report-meta {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
}

.report-card h3 {
  margin: 46px 0 16px;
  font-size: 23px;
  line-height: 1.4;
}

.report-card p {
  color: var(--muted);
}

.report-card .card-link {
  margin-top: auto;
  color: var(--lime);
}

.data-method {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.data-terminal {
  position: relative;
  min-height: 410px;
  padding: 25px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 16px 16px 0 #c9cbc5;
}

.terminal-head {
  display: flex;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.terminal-bars {
  height: 260px;
  display: flex;
  align-items: end;
  gap: 8px;
  padding-top: 40px;
  border-bottom: 1px solid var(--line);
}

.terminal-bars i {
  flex: 1;
  display: block;
  height: var(--bar);
  background: var(--lime);
  transition: height 500ms ease;
}

.terminal-bars i:nth-child(4n) {
  background: var(--coral);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}

.contact-details {
  display: grid;
  gap: 0;
  align-self: start;
  border-top: 1px solid var(--line);
}

.contact-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.contact-item small {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
}

.contact-item a,
.contact-item address {
  font-size: 18px;
  font-style: normal;
}

.contact-form {
  padding: 34px;
  color: var(--ink);
  background: var(--paper);
}

.contact-form h2 {
  margin-bottom: 30px;
  font-size: 34px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: #555d57;
  font-size: 13px;
}

.field input,
.field textarea {
  width: 100%;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid #949b95;
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  outline: none;
}

.field input:focus,
.field textarea:focus {
  border-color: #171a17;
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.contact-form button {
  width: 100%;
  min-height: 50px;
  margin-top: 24px;
  border: 0;
  color: var(--ink);
  background: var(--lime);
  font-weight: 600;
  cursor: pointer;
}

.contact-form button:disabled {
  opacity: 0.62;
  cursor: wait;
}

.form-status {
  min-height: 22px;
  margin: 14px 0 0;
  color: #59615b;
  font-size: 13px;
  line-height: 1.5;
}

.form-status.is-success {
  color: #3b6511;
}

.form-status.is-error {
  color: #8b1d2b;
}

.modal-open {
  overflow: hidden;
}

.account-modal[hidden] {
  display: none;
}

.account-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 24px;
}

.account-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 7, 5, 0.8);
  backdrop-filter: blur(8px);
}

.account-dialog {
  position: relative;
  width: min(620px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  padding: 42px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 18px 18px 0 rgba(215, 255, 63, 0.75);
  animation: modal-rise 0.28s ease both;
}

.account-dialog h2 {
  max-width: 470px;
  margin: 14px 0 12px;
  font-size: 38px;
  line-height: 1.2;
}

.account-dialog-intro {
  max-width: 480px;
  margin: 0 0 28px;
  color: #59615b;
}

.account-dialog-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 36px;
  height: 36px;
  border: 1px solid #a6ada7;
  color: var(--ink);
  background: transparent;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.account-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.account-form select {
  width: 100%;
  min-height: 43px;
  border: 0;
  border-bottom: 1px solid #949b95;
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  outline: none;
}

.account-form select:focus {
  border-color: #171a17;
}

.account-submit,
.account-success-close {
  width: 100%;
  min-height: 52px;
  margin-top: 28px;
  border: 0;
  color: var(--ink);
  background: var(--lime);
  font-weight: 600;
  cursor: pointer;
}

.account-privacy {
  display: block;
  margin-top: 16px;
  color: #707870;
  line-height: 1.5;
}

.account-success {
  padding: 22px 0 4px;
}

.account-success-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  font-size: 27px;
  font-weight: 700;
}

.account-success h3 {
  margin: 22px 0 8px;
  font-size: 30px;
}

.account-success p {
  margin: 0;
  color: #59615b;
}

@keyframes modal-rise {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.contact-map {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  background: #0f1310;
}

.contact-map > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(0.65) contrast(1.12) brightness(0.5);
  transform: scale(1.03);
}

.legal-hero {
  background: radial-gradient(circle at 75% 35%, rgba(215, 255, 63, 0.14), transparent 34%), var(--ink-2);
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
}

.legal-index {
  align-self: start;
  position: sticky;
  top: 110px;
  display: grid;
  gap: 12px;
}

.legal-index a {
  color: var(--muted-dark);
}

.legal-index a:hover,
.legal-index a:focus-visible {
  color: var(--ink);
}

.legal-copy {
  max-width: 760px;
}

.legal-copy section {
  padding: 0 0 54px;
  margin: 0 0 54px;
  border-bottom: 1px solid var(--line-light);
  scroll-margin-top: 110px;
}

.legal-copy h2 {
  margin: 12px 0 18px;
  font-size: 34px;
}

.legal-copy p {
  color: var(--muted-dark);
}

.legal-callout {
  margin-top: 24px;
  padding: 20px 22px;
  border-left: 3px solid var(--coral);
  background: #e2e3de;
}

.legal-callout strong {
  color: #8b1d2b;
}

.legal-callout p {
  margin: 8px 0 0;
}

.legal-updated {
  color: var(--muted-dark);
  font-size: 13px;
}

.download-hero {
  min-height: 560px;
  background:
    linear-gradient(110deg, rgba(8, 10, 9, 0.98) 8%, rgba(8, 10, 9, 0.78) 58%, rgba(8, 10, 9, 0.48)),
    radial-gradient(circle at 82% 30%, rgba(215, 255, 63, 0.2), transparent 24%),
    radial-gradient(circle at 68% 78%, rgba(77, 213, 221, 0.12), transparent 28%),
    var(--ink-2);
}

.download-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.28;
  background-image: linear-gradient(rgba(215, 255, 63, 0.18) 1px, transparent 1px), linear-gradient(90deg, rgba(215, 255, 63, 0.18) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent 4%, #000 55%, transparent 100%);
}

.download-hero .page-hero-content {
  padding-bottom: 84px;
}

.download-hero .page-hero-content::after {
  content: "IOS  ·  WINDOWS  ·  ANDROID";
  display: block;
  margin-top: 36px;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}

.download-card {
  position: relative;
  min-height: 330px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #f0f2ed;
  transition: transform 220ms ease, background 220ms ease;
}

.download-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(215, 255, 63, 0.2), transparent 38%);
  pointer-events: none;
}

.download-card:hover {
  z-index: 1;
  transform: translateY(-5px);
  background: #f8faf5;
}

.download-card-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid #c2c9be;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.download-card h2 {
  position: relative;
  margin: 38px 0 10px;
  color: var(--ink);
  font-size: 29px;
}

.download-card p {
  position: relative;
  max-width: 300px;
  margin-bottom: 24px;
  color: #58615a;
}

.download-card-footer {
  position: relative;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.download-card-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #59635b;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.download-card-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #aeb7ad;
  box-shadow: 0 0 0 4px rgba(174, 183, 173, 0.2);
}

.download-card button {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid #bdc6ba;
  color: #6e776f;
  background: transparent;
  font-size: 13px;
  cursor: not-allowed;
}

.download-note {
  margin-top: 26px;
  padding: 16px 18px;
  border-left: 3px solid var(--lime);
  background: #e2e6de;
  color: #536057;
  font-size: 13px;
}

.download-note strong {
  color: var(--ink);
}

.contact-map::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: linear-gradient(rgba(215, 255, 63, 0.15) 1px, transparent 1px), linear-gradient(90deg, rgba(215, 255, 63, 0.15) 1px, transparent 1px), linear-gradient(90deg, rgba(8, 10, 9, 0.28), rgba(8, 10, 9, 0.74));
  background-size: 44px 44px;
}

.map-ring {
  position: absolute;
  left: 56%;
  top: 48%;
  width: 22px;
  height: 22px;
  border: 2px solid var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 15px rgba(215, 255, 63, 0.08), 0 0 30px var(--lime);
  animation: map-pulse 2s ease-in-out infinite;
  z-index: 2;
}

.map-label {
  position: absolute;
  left: calc(56% + 38px);
  top: calc(48% - 15px);
  padding: 11px 13px;
  border-left: 2px solid var(--lime);
  background: rgba(8, 10, 9, 0.86);
  z-index: 2;
}

.map-label b,
.map-label small {
  display: block;
}

.map-label small {
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #090b09;
}

.footer-main {
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
  padding: 66px 0 46px;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 7%;
}

.footer-brand img {
  width: 250px;
  margin-bottom: 20px;
}

.footer-brand p {
  max-width: 440px;
  color: var(--muted);
}

.footer-col h2 {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.footer-col a,
.footer-col span {
  display: block;
  margin-bottom: 9px;
}

.footer-bottom {
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
  padding: 18px 0 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: #6f7973;
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@keyframes blink {
  50% { opacity: 0.28; }
}

@keyframes ticker {
  to { transform: translateX(-46%); }
}

@keyframes draw-line {
  to { stroke-dashoffset: 0; }
}

@keyframes point-pulse {
  50% { r: 11; opacity: 0.35; }
}

@keyframes map-pulse {
  50% { transform: scale(1.25); opacity: 0.55; }
}

@keyframes insights-grid-drift {
  to { stroke-dashoffset: -140; }
}

@keyframes insights-trend-draw {
  0%, 100% { stroke-dashoffset: 980; opacity: 0.42; }
  45%, 70% { stroke-dashoffset: 0; opacity: 1; }
}

@keyframes insights-bars-breathe {
  0%, 100% { transform: scaleY(0.92); opacity: 0.7; }
  50% { transform: scaleY(1.05); opacity: 1; }
}

@keyframes insights-point-pulse {
  0%, 100% { r: 4; opacity: 0.65; }
  50% { r: 8; opacity: 1; }
}

@keyframes insights-scan {
  0%, 12% { transform: translateX(-40px); opacity: 0; }
  26%, 72% { opacity: 0.82; }
  88%, 100% { transform: translateX(920px); opacity: 0; }
}

@media (max-width: 980px) {
  .main-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .main-nav.is-open {
    position: fixed;
    inset: var(--header-h) 0 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 34px 24px;
    background: rgba(8, 10, 9, 0.98);
  }

  .main-nav.is-open a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: 20px;
  }

  .hero-copy {
    width: 66%;
  }

  .signal-three {
    display: none;
  }

  .market-stage {
    grid-template-columns: minmax(0, 1fr) 290px;
  }

  .insight-grid,
  .report-grid {
    grid-template-columns: 1fr 1fr;
  }

  .download-grid {
    grid-template-columns: 1fr 1fr;
  }

  .insight-card.featured {
    grid-column: 1 / -1;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-step:nth-child(2) {
    border-right: 0;
  }

  .process-step:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-light);
  }
}

@media (max-width: 720px) {
  :root {
    --header-h: 70px;
  }

  .header-inner,
  .container,
  .hero-inner,
  .hero-metrics-inner,
  .image-story-content,
  .page-hero-content,
  .footer-main,
  .footer-bottom {
    width: min(100% - 32px, var(--content));
  }

  .site-header,
  .site-header.is-scrolled {
    height: 70px;
  }

  .market-tape {
    margin-top: var(--header-h);
  }

  .market-tape-inner {
    width: calc(100% - 32px);
  }

  .brand {
    width: 194px;
  }

  .brand img {
    height: 50px;
  }

  .tape-status {
    margin-left: 0;
  }

  .tape-time {
    display: none;
  }

  .home-hero,
  .hero-inner {
    min-height: 760px;
  }

  .home-hero::before {
    background: linear-gradient(0deg, rgba(8, 10, 9, 0.96), rgba(8, 10, 9, 0.3));
  }

  .hero-inner {
    align-items: flex-start;
    padding: 80px 0 270px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: 44px;
  }

  .hero-copy > p {
    font-size: 17px;
  }

  .hero-signal {
    display: none;
  }

  .hero-metrics {
    height: 150px;
  }

  .hero-metrics-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
    padding: 16px 0;
  }

  .hero-metrics a {
    margin-left: 0;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading,
  .statement-grid,
  .data-method,
  .contact-grid,
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .legal-index {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line-light);
  }

  .legal-index .section-index {
    width: 100%;
  }

  .section-heading h2,
  .statement-copy h2,
  .capability-panel h2,
  .image-story-content h2 {
    font-size: 34px;
  }

  .market-stage,
  .capability-tabs {
    grid-template-columns: 1fr;
  }

  .market-chart-panel {
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .market-facts {
    grid-template-columns: 1fr 1fr;
  }

  .movers {
    padding-left: 0;
  }

  .service-preview a {
    grid-template-columns: 42px 1fr auto;
    gap: 14px;
    min-height: 116px;
  }

  .service-preview h3 {
    font-size: 23px;
  }

  .service-preview p {
    display: none;
  }

  .image-story {
    min-height: 560px;
  }

  .insight-grid,
  .report-grid,
  .principles,
  .download-grid {
    grid-template-columns: 1fr;
  }

  .insight-card.featured {
    grid-column: auto;
  }

  .download-card {
    min-height: 280px;
    padding: 24px;
  }

  .download-card h2 {
    margin-top: 28px;
    font-size: 26px;
  }

  .page-hero {
    min-height: 510px;
  }

  .page-hero-content {
    padding-bottom: 60px;
  }

  .page-count {
    display: none;
  }

  .timeline::before {
    left: 69px;
  }

  .timeline-row {
    grid-template-columns: 52px 1fr;
    gap: 35px;
  }

  .editorial-media {
    min-height: 430px;
    margin-bottom: 38px;
  }

  .editorial-media-content {
    display: block;
    padding: 24px;
  }

  .editorial-media-content strong {
    font-size: 23px;
  }

  .editorial-media-stats {
    margin-top: 24px;
  }

  .capability-tablist {
    display: flex;
    padding: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    overflow-x: auto;
  }

  .capability-tab {
    min-width: 150px;
    flex: 0 0 auto;
  }

  .capability-panel {
    min-height: 0;
    padding: 42px 0;
  }

  .capability-points,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .insights-hero-visual {
    left: 15%;
    right: -35%;
    bottom: 50px;
    width: 120%;
    opacity: 0.35;
  }

  .hero-data-hud {
    display: none;
  }

  .data-terminal {
    box-shadow: 8px 8px 0 #c9cbc5;
  }

  .contact-form {
    padding: 26px 20px;
  }

  .account-modal {
    padding: 16px;
  }

  .account-dialog {
    max-height: calc(100vh - 32px);
    padding: 34px 22px 24px;
    box-shadow: 8px 8px 0 rgba(215, 255, 63, 0.75);
  }

  .account-dialog h2 {
    font-size: 30px;
  }

  .account-form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-map {
    min-height: 380px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

