:root {
  --ink: #1f2630;
  --muted: #697382;
  --paper: #fbfcff;
  --mint: #bdeee0;
  --aqua: #bfe9ff;
  --peach: #ffd7c8;
  --lilac: #d9ceff;
  --rose: #f6aac4;
  --lemon: #fff1a8;
  --sea: #6fd3c0;
  --blue: #74b7e8;
  --plum: #8f7ad8;
  --line: rgba(31, 38, 48, 0.12);
  --shadow: 0 24px 70px rgba(31, 38, 48, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 10% 12%, rgba(189, 238, 224, 0.62), transparent 26rem),
    radial-gradient(circle at 90% 8%, rgba(217, 206, 255, 0.48), transparent 24rem),
    radial-gradient(circle at 72% 80%, rgba(255, 215, 200, 0.44), transparent 28rem),
    var(--paper);
  overflow-x: hidden;
}

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

.noise {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.38;
  background-image: linear-gradient(rgba(31, 38, 48, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(31, 38, 48, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.3;
  background: radial-gradient(circle, rgba(111, 211, 192, 0.46), rgba(116, 183, 232, 0.16) 42%, transparent 70%);
  filter: blur(10px);
  transform: translate3d(-50%, -50%, 0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 48px rgba(31, 38, 48, 0.08);
  backdrop-filter: blur(18px);
  transition: box-shadow 220ms ease, background 220ms ease, transform 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 22px 58px rgba(31, 38, 48, 0.13);
}

.brand,
.nav-links,
.hero-actions,
.project-links,
.contact-row,
footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.7rem;
  font-weight: 800;
}

.brand span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--aqua) 52%, var(--lilac));
  color: #23303a;
}

.nav-links {
  gap: 0.35rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: #44505f;
}

.nav-links a,
.secondary-button,
.project-links a {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.7rem 0.95rem;
  transition: 180ms ease;
}

.nav-links a.is-active {
  border-color: rgba(31, 38, 48, 0.14);
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
}

.nav-links a:hover,
.secondary-button:hover,
.project-links a:hover {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
  transform: translateY(-1px);
}

.icon-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
}

.icon-button svg,
.primary-button svg {
  width: 20px;
  fill: currentColor;
}

.icon-button svg {
  fill: #fff;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  padding: clamp(4rem, 8vw, 7rem) 0 2.2rem;
  overflow: hidden;
}

.hero-content,
.hero-metrics,
.section,
footer {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 710px;
  margin-left: max(16px, calc((100vw - 1180px) / 2));
  margin-inline-end: auto;
  padding-top: min(8vh, 5rem);
}

.eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  color: #5d6775;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 840px;
  margin-bottom: 1.15rem;
  font-size: clamp(3.2rem, 9vw, 8.3rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  max-width: 780px;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.45rem;
  font-size: 1.08rem;
}

.hero-copy,
.intro p,
.project-copy p,
.contact h2 {
  max-width: 720px;
  color: #4f5b6a;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.primary-button,
.secondary-button {
  min-height: 50px;
  font-weight: 800;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  border-radius: 999px;
  padding: 0.92rem 1.2rem 0.92rem 1.35rem;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 16px 34px rgba(31, 38, 48, 0.2);
  transition: 180ms ease;
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(31, 38, 48, 0.24);
}

.secondary-button {
  background: rgba(255, 255, 255, 0.58);
}

.hero-tags,
.tool-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero-tags {
  max-width: 690px;
  margin-top: 1.4rem;
}

.hero-tags span,
.tool-cloud span {
  border: 1px solid rgba(31, 38, 48, 0.1);
  border-radius: 999px;
  padding: 0.58rem 0.78rem;
  background: rgba(255, 255, 255, 0.64);
  color: #3d4856;
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(31, 38, 48, 0.06);
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.grid-floor {
  position: absolute;
  right: -8vw;
  bottom: -8vh;
  width: min(850px, 80vw);
  aspect-ratio: 1.25;
  border-radius: 42%;
  background: linear-gradient(rgba(31, 38, 48, 0.11) 1px, transparent 1px), linear-gradient(90deg, rgba(31, 38, 48, 0.11) 1px, transparent 1px);
  background-size: 34px 34px;
  transform: perspective(720px) rotateX(62deg) rotateZ(-12deg);
  opacity: 0.42;
}

.node {
  position: absolute;
  display: grid;
  width: clamp(74px, 8vw, 104px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  animation: float 6s ease-in-out infinite;
  backdrop-filter: blur(14px);
}

.node span {
  font-size: 0.77rem;
  font-weight: 800;
}

.hub {
  right: 19vw;
  top: 30vh;
  background: linear-gradient(135deg, var(--lemon), #fff);
}

.supplier {
  right: 33vw;
  top: 19vh;
  background: linear-gradient(135deg, var(--mint), #fff);
  animation-delay: -1s;
}

.warehouse {
  right: 9vw;
  top: 47vh;
  background: linear-gradient(135deg, var(--aqua), #fff);
  animation-delay: -2.2s;
}

.dispatch {
  right: 32vw;
  top: 57vh;
  background: linear-gradient(135deg, var(--peach), #fff);
  animation-delay: -3.1s;
}

.insight {
  right: 7vw;
  top: 18vh;
  background: linear-gradient(135deg, var(--lilac), #fff);
  animation-delay: -4s;
}

.route {
  position: absolute;
  height: 2px;
  border-radius: 20px;
  background: linear-gradient(90deg, transparent, rgba(31, 38, 48, 0.34), transparent);
  transform-origin: left center;
  animation: routePulse 3.8s ease-in-out infinite;
}

.route-one {
  right: 19vw;
  top: 31vh;
  width: 270px;
  transform: rotate(23deg);
}

.route-two {
  right: 18vw;
  top: 48vh;
  width: 235px;
  transform: rotate(141deg);
  animation-delay: -1.1s;
}

.route-three {
  right: 9vw;
  top: 28vh;
  width: 260px;
  transform: rotate(118deg);
  animation-delay: -2.2s;
}

.floating-panel {
  position: absolute;
  display: grid;
  gap: 0.35rem;
  min-width: 172px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
  animation: float 7s ease-in-out infinite;
  backdrop-filter: blur(14px);
}

.floating-panel span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.floating-panel strong {
  font-size: 1.8rem;
}

.panel-a {
  right: 11vw;
  bottom: 11vh;
}

.panel-b {
  right: 41vw;
  bottom: 20vh;
  animation-delay: -2s;
}

.portrait-card {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 34px;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 30px 90px rgba(31, 38, 48, 0.18);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.portrait-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(189, 238, 224, 0.9), rgba(191, 233, 255, 0.72), rgba(255, 215, 200, 0.82));
}

.portrait-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 25px;
  object-fit: cover;
  object-position: 50% 23%;
  filter: saturate(1.02) contrast(1.02);
}

.portrait-card figcaption {
  display: grid;
  gap: 0.22rem;
  padding: 0.8rem 0.55rem 0.35rem;
}

.portrait-card span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portrait-card strong {
  font-size: 1rem;
}

.hero-metrics {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: clamp(4rem, 10vh, 8rem);
}

.hero-metrics article,
.timeline-item,
.skill-groups article,
.credential-grid article,
.dashboard {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 22px 64px rgba(31, 38, 48, 0.09);
  backdrop-filter: blur(18px);
}

.hero-metrics article,
.timeline-item,
.skill-groups article,
.credential-grid article,
.dashboard,
.impact-strip article,
.case-flow article,
.portrait-card {
  transform-style: preserve-3d;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.hero-metrics article:hover,
.timeline-item:hover,
.skill-groups article:hover,
.credential-grid article:hover,
.impact-strip article:hover,
.case-flow article:hover,
.portrait-card:hover {
  border-color: rgba(31, 38, 48, 0.18);
  box-shadow: 0 28px 74px rgba(31, 38, 48, 0.14);
  transform: translateY(-4px);
}

.hero-metrics article {
  padding: 1.2rem;
}

.hero-metrics strong {
  display: block;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1;
}

.hero-metrics span {
  display: block;
  margin-top: 0.5rem;
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.intro {
  border-top: 1px solid var(--line);
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(240px, 340px) 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.impact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.impact-strip article {
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 22px;
  padding: 1.15rem;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 20px 56px rgba(31, 38, 48, 0.08);
  backdrop-filter: blur(16px);
}

.impact-strip span,
.case-flow span,
.dashboard-caption span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.impact-strip strong {
  display: block;
  margin-top: 0.35rem;
  font-size: clamp(1.15rem, 2vw, 1.65rem);
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.muted {
  color: var(--muted);
  line-height: 1.6;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.1rem;
}

.timeline-item > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  font-weight: 800;
}

.timeline-item p,
.skill-groups p,
.credential-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.project-band {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.project-links {
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.case-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.case-flow article {
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 18px;
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 16px 42px rgba(31, 38, 48, 0.08);
}

.case-flow strong {
  display: block;
  margin-top: 0.42rem;
}

.case-flow small {
  display: block;
  margin-top: 0.3rem;
  color: var(--muted);
  line-height: 1.5;
}

.project-links a {
  background: rgba(255, 255, 255, 0.68);
  font-weight: 800;
}

.dashboard {
  padding: 1rem;
  overflow: hidden;
  position: relative;
}

.dashboard::before {
  content: "";
  position: absolute;
  inset: -80px auto auto -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(111, 211, 192, 0.24);
  filter: blur(18px);
}

.dashboard-top {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.dashboard-top span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--rose);
}

.dashboard-top span:nth-child(2) {
  background: var(--lemon);
}

.dashboard-top span:nth-child(3) {
  background: var(--mint);
}

.dash-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.map-card,
.chart-card,
.score-card {
  min-height: 158px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
}

.map-card {
  position: relative;
  background:
    radial-gradient(circle at 32% 40%, rgba(189, 238, 224, 0.9), transparent 5rem),
    radial-gradient(circle at 72% 48%, rgba(191, 233, 255, 0.9), transparent 5rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(217, 206, 255, 0.34));
}

.map-card i {
  position: absolute;
  width: 13px;
  height: 13px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 8px rgba(31, 38, 48, 0.08);
  animation: ping 2.8s ease-in-out infinite;
}

.map-card i:nth-child(1) { left: 25%; top: 34%; }
.map-card i:nth-child(2) { left: 58%; top: 48%; animation-delay: -0.7s; }
.map-card i:nth-child(3) { left: 75%; top: 30%; animation-delay: -1.4s; }
.map-card i:nth-child(4) { left: 42%; top: 68%; animation-delay: -2.1s; }

.bars {
  display: flex;
  align-items: end;
  gap: 0.65rem;
  padding: 1rem;
}

.bars span {
  flex: 1;
  height: var(--h);
  min-height: 32px;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, var(--lilac), var(--aqua));
  animation: barRise 2.8s ease-in-out infinite alternate;
}

.bars span:nth-child(even) {
  background: linear-gradient(180deg, var(--peach), var(--mint));
  animation-delay: -1s;
}

.line {
  display: grid;
  place-items: center;
  padding: 1rem;
}

.line svg {
  width: 100%;
  height: 100%;
}

.line path {
  fill: none;
  stroke: #2d3642;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  animation: drawLine 3.8s ease-in-out infinite;
}

.score-card {
  display: grid;
  align-content: center;
  gap: 0.3rem;
  padding: 1.2rem;
}

.score-card span,
.score-card small {
  color: var(--muted);
  font-weight: 800;
}

.score-card strong {
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  line-height: 1;
}

.dashboard-caption {
  position: relative;
  z-index: 1;
  margin-top: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.7);
}

.dashboard-caption p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.skill-groups,
.credential-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.skill-groups article,
.credential-grid article {
  padding: 1.25rem;
}

.skill-groups article:nth-child(1) {
  background: linear-gradient(135deg, rgba(189, 238, 224, 0.72), rgba(255, 255, 255, 0.68));
}

.skill-groups article:nth-child(2) {
  background: linear-gradient(135deg, rgba(191, 233, 255, 0.72), rgba(255, 255, 255, 0.68));
}

.skill-groups article:nth-child(3) {
  background: linear-gradient(135deg, rgba(255, 215, 200, 0.74), rgba(255, 255, 255, 0.68));
}

.tool-cloud {
  margin-top: 1rem;
}

.tool-cloud span:nth-child(3n + 1) {
  background: rgba(189, 238, 224, 0.64);
}

.tool-cloud span:nth-child(3n + 2) {
  background: rgba(191, 233, 255, 0.64);
}

.tool-cloud span:nth-child(3n) {
  background: rgba(255, 215, 200, 0.64);
}

.credential-grid span {
  display: inline-flex;
  margin-bottom: 1rem;
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  background: var(--ink);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

.contact {
  padding-bottom: clamp(4rem, 8vw, 8rem);
}

.contact h2 {
  color: var(--ink);
}

.contact-row {
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2rem;
}

.contact-row a,
.contact-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.78rem 1rem;
  background: rgba(255, 255, 255, 0.72);
  color: #3c4654;
  font-weight: 800;
}

footer {
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding: 1.5rem 0 2rem;
  color: var(--muted);
  font-weight: 800;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.timeline-item.is-tilting,
.skill-groups article.is-tilting,
.credential-grid article.is-tilting,
.dashboard.is-tilting,
.hero-metrics article.is-tilting,
.portrait-card.is-tilting {
  box-shadow: 0 34px 86px rgba(31, 38, 48, 0.16);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes routePulse {
  0%, 100% { opacity: 0.24; filter: blur(0); }
  50% { opacity: 0.92; filter: blur(1px); }
}

@keyframes ping {
  0%, 100% { transform: scale(0.92); box-shadow: 0 0 0 6px rgba(31, 38, 48, 0.08); }
  50% { transform: scale(1.1); box-shadow: 0 0 0 14px rgba(31, 38, 48, 0.02); }
}

@keyframes barRise {
  from { transform: scaleY(0.72); }
  to { transform: scaleY(1); }
}

@keyframes drawLine {
  0% { stroke-dashoffset: 420; }
  46%, 78% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -420; }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 3rem;
  }

  .hero-content {
    padding-top: 2rem;
  }

  .hero-visual {
    position: relative;
    min-height: 380px;
    margin-top: 1.4rem;
  }

  .hub { right: 42%; top: 38%; }
  .supplier { right: 67%; top: 18%; }
  .warehouse { right: 12%; top: 55%; }
  .dispatch { right: 64%; top: 64%; }
  .insight { right: 12%; top: 16%; }
  .panel-a { right: 7%; bottom: 5%; }
  .panel-b { left: 5%; right: auto; bottom: 18%; }
  .route-one { right: 38%; top: 42%; width: 200px; }
  .route-two { right: 31%; top: 57%; width: 190px; }
  .route-three { right: 19%; top: 28%; width: 190px; }

  .hero-metrics,
  .split,
  .project-band,
  .skill-groups,
  .credential-grid,
  .impact-strip,
  .profile-layout {
    grid-template-columns: 1fr;
  }

  .portrait-card {
    width: min(360px, 100%);
    margin-inline: auto;
  }

  .case-flow {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
  }

  .brand strong {
    display: none;
  }

  .hero-content,
  .hero-metrics,
  .section,
  footer {
    width: calc(100% - 24px);
  }

  h1 {
    font-size: clamp(3rem, 18vw, 5rem);
  }

  .hero-actions,
  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .primary-button,
  .secondary-button {
    justify-content: center;
  }

  .hero-metrics {
    gap: 0.75rem;
  }

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

  .floating-panel {
    min-width: 142px;
  }

  .hero-tags span,
  .tool-cloud span {
    font-size: 0.8rem;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

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