:root {
  color-scheme: dark;
  --bg: #0d1321;
  --bg-soft: #111827;
  --panel: rgba(31, 42, 64, 0.56);
  --panel-strong: rgba(34, 45, 67, 0.82);
  --line: rgba(34, 211, 238, 0.22);
  --line-soft: rgba(255, 255, 255, 0.08);
  --text: #f7f8ff;
  --muted: #a8b3cf;
  --dim: #75829b;
  --accent: #22d3ee;
  --accent-strong: #06b6d4;
  --hot: #ff3d71;
  --cyan: #67e8f9;
  --green: #34d399;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --radius: 12px;
  font-family: Inter, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-padding-top: 0;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  overscroll-behavior-y: none;
  background:
    radial-gradient(circle at 50% 12%, rgba(34, 211, 238, 0.15), transparent 28rem),
    radial-gradient(circle at 82% 36%, rgba(255, 61, 113, 0.1), transparent 24rem),
    radial-gradient(circle at 18% 68%, rgba(52, 211, 153, 0.07), transparent 22rem),
    linear-gradient(180deg, #070b14 0%, #0b1220 44%, #101827 100%);
  color: var(--text);
}

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

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 0;
  width: 22rem;
  height: 22rem;
  pointer-events: none;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(34, 211, 238, 0.16), rgba(255, 61, 113, 0.08) 42%, transparent 70%);
  filter: blur(18px);
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 0.24s ease;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: visible;
}

body::-webkit-scrollbar {
  width: 0;
}

.ambient {
  position: fixed;
  z-index: 0;
  width: 32rem;
  height: 32rem;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.22;
}

.ambient-one {
  top: 15%;
  left: 48%;
  background: #22d3ee;
}

.ambient-two {
  right: -12rem;
  top: 42%;
  background: #ff3d71;
}

.stars {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.75) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(34, 211, 238, 0.72) 0 1px, transparent 1.5px);
  background-position: 2rem 4rem, 8rem 11rem;
  background-size: 18rem 18rem, 29rem 29rem;
}

.nav,
main {
  position: relative;
  z-index: 1;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  min-height: 80px;
  padding: 0 7vw;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(10, 15, 28, 0.72);
  backdrop-filter: blur(18px);
}

.brand,
.nav-actions,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.25rem;
  transition: transform 0.2s ease;
}

.brand:hover {
  transform: translateY(-1px);
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #22d3ee, #ff3d71);
  color: #07101f;
  box-shadow:
    0 0 28px rgba(34, 211, 238, 0.25),
    0 0 34px rgba(255, 61, 113, 0.16);
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.brand:hover .brand-mark {
  transform: rotate(-3deg) scale(1.04);
  box-shadow:
    0 0 34px rgba(34, 211, 238, 0.36),
    0 0 42px rgba(255, 61, 113, 0.24);
}

.nav-links {
  gap: 2rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-links a {
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -0.55rem;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--accent), var(--hot), transparent);
  opacity: 0;
  transform: scaleX(0.35);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-actions {
  justify-content: flex-end;
  gap: 0.75rem;
}

.lang {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 0.42rem 0.7rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
}

.button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 0.66rem 1.05rem;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, #22d3ee, #ff3d71);
  color: #09111f;
  box-shadow:
    0 12px 34px rgba(34, 211, 238, 0.14),
    0 10px 32px rgba(255, 61, 113, 0.12);
}

.button-primary:hover {
  box-shadow:
    0 18px 42px rgba(34, 211, 238, 0.22),
    0 14px 40px rgba(255, 61, 113, 0.2);
}

.button-ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.button-ghost:hover {
  border-color: rgba(34, 211, 238, 0.45);
  background: rgba(34, 211, 238, 0.07);
}

.section {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: stretch;
  width: calc(100% - 48px);
  max-width: 1160px;
  margin: 0 auto;
  height: 100svh;
  overflow: hidden;
  padding: clamp(5rem, 7vh, 6rem) 0 clamp(1.8rem, 4vh, 3rem);
}

.page-inner {
  width: 100%;
  transform: scale(var(--page-scale, 1));
  transform-origin: center center;
  transition: transform 0.24s ease;
}

.hero {
  place-items: center;
  text-align: center;
}

.hero-inner {
  width: min(760px, 100%);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(34, 211, 238, 0.06);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.eyebrow {
  padding: 0.45rem 0.9rem;
}

.eyebrow span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow:
    0 0 14px var(--accent),
    0 0 22px rgba(255, 61, 113, 0.28);
}

.hero h1 {
  margin: 1.55rem 0 0;
  font-size: clamp(5.1rem, 12.5vw, 9.4rem);
  line-height: 0.9;
  letter-spacing: 0;
  background: linear-gradient(92deg, #ffffff 10%, #c9fbff 46%, #22d3ee 68%, #ff6b91 94%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow:
    0 0 54px rgba(34, 211, 238, 0.18),
    0 0 42px rgba(255, 61, 113, 0.12);
}

.hero h2 {
  margin: 1rem auto 0;
  color: var(--accent);
  font-size: clamp(1.65rem, 4vw, 2.4rem);
  line-height: 1.2;
  text-wrap: balance;
}

.hero-copy {
  width: min(680px, 100%);
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.72;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.hero-tags span,
.tool-meta span,
.case-metrics span {
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  padding: 0.43rem 0.72rem;
  font-size: 0.86rem;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease,
    color 0.18s ease;
}

.hero-tags span:hover,
.tool-meta span:hover,
.case-metrics span:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 211, 238, 0.44);
  background: rgba(34, 211, 238, 0.08);
  color: var(--text);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: min(560px, 100%);
  margin: 1.75rem auto 0;
}

.metrics article {
  padding: 0.7rem 0.8rem;
}

.metrics strong {
  display: block;
  color: var(--accent);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 0 26px rgba(34, 211, 238, 0.22);
}

.metrics article:nth-child(2) strong {
  color: var(--hot);
  text-shadow: 0 0 26px rgba(255, 61, 113, 0.22);
}

.metrics article:nth-child(3) strong {
  color: var(--green);
  text-shadow: 0 0 26px rgba(52, 211, 153, 0.2);
}

.metrics span {
  display: block;
  margin-top: 0.45rem;
  color: var(--dim);
  font-size: 0.92rem;
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.6rem;
}

.glass-link,
.capability-card,
.workflow-panel,
.tool-card,
.case-card,
.contact-card,
.timeline article {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.026)),
    var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease,
    box-shadow 0.24s ease;
}

.glass-link::before,
.capability-card::before,
.workflow-panel::before,
.tool-card::before,
.case-card::before,
.contact-card::before,
.timeline article::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(
      280px circle at var(--mx, 50%) var(--my, 0%),
      rgba(34, 211, 238, 0.18),
      rgba(255, 61, 113, 0.09) 38%,
      transparent 70%
    ),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 34%);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.glass-link::after,
.capability-card::after,
.workflow-panel::after,
.tool-card::after,
.case-card::after,
.contact-card::after,
.timeline article::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(315deg, rgba(34, 211, 238, 0.12), transparent 36%);
  opacity: 0.42;
  pointer-events: none;
}

.glass-link > *,
.capability-card > *,
.workflow-panel > *,
.tool-card > *,
.case-card > *,
.contact-card > *,
.timeline article > * {
  position: relative;
  z-index: 1;
}

.glass-link:hover,
.capability-card:hover,
.workflow-panel:hover,
.tool-card:hover,
.case-card:hover,
.contact-card:hover,
.timeline article:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.5);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.34),
    0 0 34px rgba(34, 211, 238, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.glass-link:hover::before,
.capability-card:hover::before,
.workflow-panel:hover::before,
.tool-card:hover::before,
.case-card:hover::before,
.contact-card:hover::before,
.timeline article:hover::before {
  opacity: 1;
}

.glass-link {
  display: block;
  padding: 1.25rem;
  text-align: left;
}

.glass-link:hover {
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.11), rgba(255, 61, 113, 0.06)),
    var(--panel);
}

.card-kicker {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 800;
}

.glass-link strong {
  display: block;
  margin-top: 0.45rem;
  font-size: 1.05rem;
}

.glass-link small {
  display: block;
  margin-top: 0.65rem;
  color: var(--dim);
  line-height: 1.7;
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 1.6rem;
}

.section-heading.narrow {
  width: min(640px, 100%);
}

.section-kicker {
  padding: 0.38rem 0.76rem;
  margin-bottom: 0.85rem;
}

.section-heading h2,
.contact-card h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4.2vw, 3.1rem);
  line-height: 1.16;
  letter-spacing: 0;
}

.section-heading p,
.contact-card p {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.68;
}

.section-heading,
.capability-card,
.workflow-panel,
.tool-card,
.case-card,
.timeline article,
.contact-card {
  opacity: 0;
  transform: translateY(22px);
}

.section-heading.is-visible,
.capability-card.is-visible,
.workflow-panel.is-visible,
.tool-card.is-visible,
.case-card.is-visible,
.timeline article.is-visible,
.contact-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease,
    border-color 0.24s ease,
    background 0.24s ease,
    box-shadow 0.24s ease;
}

.intro-section {
  padding-top: clamp(5rem, 7vh, 6rem);
}

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

.capability-card {
  min-height: 190px;
  padding: 1.05rem;
}

.capability-card span {
  color: var(--accent);
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
}

.capability-card h3,
.tool-card h3,
.case-card h3,
.timeline h3 {
  margin: 0.72rem 0 0;
  font-size: 1.16rem;
}

.capability-card p,
.tool-card p,
.case-card p,
.timeline p {
  color: var(--muted);
  line-height: 1.62;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: center;
}

.workflow-panel {
  padding: 1.05rem;
}

.workflow {
  display: grid;
  gap: 0.58rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: workflow;
}

.workflow li {
  position: relative;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 0.82rem 0.9rem;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.workflow li:hover {
  transform: translateX(5px);
  border-color: rgba(34, 211, 238, 0.42);
  background: rgba(34, 211, 238, 0.055);
}

.workflow span {
  color: var(--text);
  font-weight: 800;
}

.workflow p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.tool-card {
  padding: 0.9rem;
}

.tool-preview {
  position: relative;
  overflow: hidden;
  min-height: 132px;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  padding: 0.92rem;
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 61, 113, 0.16), transparent 8rem),
    radial-gradient(circle at 18% 82%, rgba(34, 211, 238, 0.16), transparent 8rem),
    linear-gradient(145deg, rgba(34, 211, 238, 0.12), rgba(255, 255, 255, 0.04));
}

.tool-preview::after {
  position: absolute;
  right: -20%;
  bottom: -35%;
  width: 13rem;
  height: 13rem;
  content: "";
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 61, 113, 0.24), rgba(34, 211, 238, 0.12) 44%, transparent 68%);
  filter: blur(16px);
  opacity: 0.5;
  transition:
    opacity 0.24s ease,
    transform 0.24s ease;
}

.tool-card:hover .tool-preview::after {
  opacity: 0.8;
  transform: translate(-10px, -8px) scale(1.08);
}

.tool-preview span,
.case-company {
  color: var(--accent);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.82rem;
  font-weight: 700;
}

.tool-preview strong {
  display: block;
  margin-top: 2.25rem;
  font-size: 1.42rem;
}

.tool-preview small {
  display: block;
  margin-top: 0.55rem;
  color: var(--muted);
}

.tool-meta,
.case-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.78rem;
}

.case-list,
.timeline {
  display: grid;
  gap: 0.72rem;
}

.case-card {
  padding: 1rem 1.08rem;
}

.case-card h3 {
  margin-top: 0.24rem;
  font-size: 1.2rem;
}

.experience-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 2rem;
  align-items: center;
}

.timeline article {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 1.5rem;
  padding: 1rem;
}

.timeline time {
  color: var(--accent);
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
}

.timeline h3 {
  margin-top: 0;
}

.timeline p {
  margin-bottom: 0;
}

.contact-section {
  padding-bottom: clamp(3rem, 6vh, 5rem);
}

.page-dots {
  position: fixed;
  top: 50%;
  right: 1.8rem;
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 0.62rem;
  transform: translateY(-50%);
}

.page-dot {
  position: relative;
  display: grid;
  grid-template-columns: 1.75rem 1.35rem;
  column-gap: 0.45rem;
  align-items: center;
  width: 4rem;
  height: 1.35rem;
  padding: 0;
  border: 0;
  color: rgba(168, 179, 207, 0.48);
  background: transparent;
  cursor: pointer;
  transition:
    color 0.22s ease,
    transform 0.22s ease;
}

.page-dot::before {
  display: none;
}

.dot-number {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  font-weight: 700;
  text-align: right;
}

.dot-line {
  width: 0.72rem;
  height: 1px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.62;
  transform-origin: right center;
  transition:
    width 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease,
    opacity 0.22s ease;
}

.dot-label {
  position: absolute;
  top: 50%;
  right: 4.25rem;
  color: rgba(247, 248, 255, 0.86);
  font-size: 0.76rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translate(0.35rem, -50%);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.page-dot:hover,
.page-dot.is-active {
  color: var(--text);
  transform: translateX(-0.35rem);
}

.page-dot:hover .dot-line,
.page-dot.is-active .dot-line {
  width: 1.35rem;
  background: linear-gradient(90deg, var(--accent), var(--hot));
  box-shadow:
    0 0 14px rgba(34, 211, 238, 0.32),
    0 0 18px rgba(255, 61, 113, 0.2);
  opacity: 1;
}

.page-dot:hover .dot-label,
.page-dot.is-active .dot-label {
  opacity: 1;
  transform: translate(0, -50%);
}

.contact-card {
  width: min(860px, 100%);
  margin: 0 auto;
  padding: clamp(1.6rem, 4vw, 3rem);
  text-align: center;
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

@media (max-width: 960px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero-copy,
  .hero-tags,
  .hero-cards {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cards {
    grid-template-columns: 1fr;
  }

  .capability-grid,
  .tool-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-section,
  .experience-section {
    grid-template-columns: 1fr;
  }

  .section {
    height: 100svh;
  }

  .page-dots {
    right: 1rem;
  }
}

@media (max-height: 900px) and (min-width: 681px) {
  .section {
    padding-top: 5rem;
    padding-bottom: 1.4rem;
  }

  .hero h1 {
    font-size: clamp(4.6rem, 10.5vw, 7.6rem);
  }

  .hero h2 {
    font-size: clamp(1.45rem, 3vw, 1.95rem);
  }

  .hero-copy,
  .section-heading p,
  .contact-card p {
    font-size: 0.95rem;
    line-height: 1.58;
  }

  .metrics {
    margin-top: 1.25rem;
  }

  .metrics strong {
    font-size: clamp(1.8rem, 3vw, 2.35rem);
  }

  .hero-cards,
  .section-heading {
    margin-top: 1.1rem;
    margin-bottom: 1.15rem;
  }

  .glass-link {
    padding: 1rem;
  }

  .capability-card {
    min-height: 165px;
  }

  .tool-preview {
    min-height: 108px;
  }

  .tool-preview strong {
    margin-top: 1.55rem;
    font-size: 1.25rem;
  }

  .tool-card p,
  .case-card p,
  .capability-card p,
  .workflow p {
    font-size: 0.93rem;
    line-height: 1.5;
  }

  .case-card {
    padding: 0.82rem 0.95rem;
  }
}

@media (max-width: 680px) {
  .nav {
    display: flex;
    justify-content: space-between;
    min-height: 68px;
    padding: 0 1rem;
  }

  .brand {
    font-size: 1rem;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .lang {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  .button {
    min-height: 38px;
    padding: 0.56rem 0.72rem;
    font-size: 0.9rem;
  }

  .section {
    width: calc(100% - 32px);
    max-width: 1160px;
    height: 100svh;
    padding: 5rem 0 2.2rem;
  }

  .hero {
    padding-top: 5.5rem;
  }

  .hero-inner {
    width: 100%;
    max-width: 330px;
    margin: 0 auto;
  }

  .eyebrow {
    max-width: 100%;
    font-size: 0.68rem;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 21vw, 5.5rem);
  }

  .hero h2 {
    max-width: 330px;
    font-size: clamp(1.35rem, 6.2vw, 1.65rem);
    line-height: 1.25;
  }

  .hero-copy {
    font-size: 0.94rem;
    line-height: 1.62;
    max-width: 300px;
  }

  .hero-tags,
  .hero-cards,
  .metrics {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .metrics,
  .capability-grid,
  .tool-grid {
    grid-template-columns: 1fr;
  }

  .hero-cards {
    display: none;
  }

  .metrics {
    gap: 0.4rem;
  }

  .metrics strong {
    font-size: clamp(1.95rem, 11vw, 2.45rem);
  }

  .section-heading {
    margin-bottom: 1.1rem;
  }

  .section-heading h2,
  .contact-card h2 {
    font-size: clamp(1.65rem, 8vw, 2.15rem);
  }

  .section-heading p,
  .contact-card p {
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .tool-preview {
    min-height: 96px;
  }

  .tool-card,
  .case-card,
  .capability-card,
  .timeline article {
    padding: 0.82rem;
  }

  .capability-card {
    min-height: auto;
  }

  .workflow li,
  .timeline article {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .contact-actions {
    flex-direction: column;
  }

  .page-dots {
    right: 0.55rem;
    gap: 0.45rem;
  }

  .page-dot {
    grid-template-columns: 1fr;
    width: 1.2rem;
    height: 1rem;
  }

  .dot-number,
  .dot-label {
    display: none;
  }

  .dot-line {
    width: 0.42rem;
  }

  .page-dot:hover .dot-line,
  .page-dot.is-active .dot-line {
    width: 0.95rem;
  }
}

@media (hover: none) {
  .cursor-glow {
    display: none;
  }

  .glass-link:hover,
  .capability-card:hover,
  .workflow-panel:hover,
  .tool-card:hover,
  .case-card:hover,
  .contact-card:hover,
  .timeline article:hover,
  .workflow li:hover,
  .hero-tags span:hover,
  .tool-meta span:hover,
  .case-metrics span:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}
