:root {
  --blue: #2f7fd1;
  --blue-deep: #1a5fa8;
  --ink: #1a2332;
  --ink-soft: #4a5568;
  --muted: #6b7280;
  --line: rgba(26, 35, 50, 0.1);
  --surface: #ffffff;
  --surface-alt: #f4f7fb;
  --accent-orange: #f5a623;
  --accent-pink: #e84a5f;
  --accent-cyan: #4fc3f7;
  --header-h: 100px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "Manrope", system-ui, sans-serif;
  --max: 1120px;
  --gradient-brand: linear-gradient(135deg, var(--accent-orange), var(--accent-pink) 55%, var(--accent-cyan));
  --gradient-blue: linear-gradient(135deg, var(--blue), var(--blue-deep));
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-sm: 0 2px 10px -4px rgba(26, 35, 50, 0.12);
  --shadow-md: 0 16px 40px -16px rgba(26, 35, 50, 0.18);
  --shadow-glow: 0 12px 28px -10px rgba(47, 127, 209, 0.45);
  --bg-dark-1: #060a14;
  --bg-dark-2: #0c1526;
  --bg-dark-3: #122036;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

h1,
h2,
h3 {
  line-height: 1.15;
  margin: 0 0 0.6em;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 1em;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* Header — floating glass pill navbar */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding-top: 14px;
}

.header-inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.5rem 0.75rem 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}

.site-header.is-scrolled .header-inner {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-md);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}


.brand-logo {
  height: 56px;
  width: auto;
  max-height: 56px;
}


.site-footer .brand-logo {
  height: 42px;
  max-height: 42px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.site-nav a {
  position: relative;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color 0.2s;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 2px;
  border-radius: 999px;
  background: var(--gradient-brand);
  transition: right 0.25s var(--ease);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--blue);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  right: 0;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 6px auto;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

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

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

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-h) + 2rem) 0 5rem;
  background: linear-gradient(160deg, var(--bg-dark-1) 0%, var(--bg-dark-2) 55%, var(--bg-dark-3) 100%);
  color: #fff;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse 70% 55% at 50% 32%, #000 40%, transparent 82%);
  mask-image: radial-gradient(ellipse 70% 55% at 50% 32%, #000 40%, transparent 82%);
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.4;
  pointer-events: none;
  animation: blob-float 12s ease-in-out infinite alternate;
}

.hero-blob-orange {
  top: 4%;
  left: 6%;
  width: 280px;
  height: 280px;
  background: var(--accent-orange);
}

.hero-blob-pink {
  top: 12%;
  right: 6%;
  width: 320px;
  height: 320px;
  background: var(--accent-pink);
  animation-delay: -4s;
}

.hero-blob-cyan {
  bottom: 2%;
  left: 32%;
  width: 300px;
  height: 300px;
  background: var(--accent-cyan);
  animation-delay: -8s;
}

@keyframes blob-float {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(-18px, 22px, 0) scale(1.08);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  max-width: 40rem;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-cyan);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% {
    box-shadow: 0 0 0 0 rgba(79, 195, 247, 0.55);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(79, 195, 247, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(79, 195, 247, 0);
  }
}

.text-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  max-width: 32rem;
  margin: 0 auto 2rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 500;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.7rem 1.75rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: background 0.25s var(--ease), color 0.25s, border-color 0.25s, transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

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

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--gradient-blue);
  color: #fff;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  box-shadow: 0 18px 34px -10px rgba(47, 127, 209, 0.55);
}

.btn-ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: var(--shadow-sm);
}

.btn-ghost-dark {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}

.btn-ghost-dark:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

/* Sections */
.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  position: relative;
}

.section-head {
  max-width: 36rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.9rem;
  margin-bottom: 0.9rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-deep);
  background: rgba(47, 127, 209, 0.08);
  border-radius: 999px;
}

.section-head h2,
.about-copy h2,
.contact-inner h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--blue);
}

.about-copy h2 {
  position: relative;
  padding-top: 1.15rem;
}

.about-copy h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 52px;
  height: 5px;
  border-radius: 999px;
  background: var(--gradient-brand);
}

.section-head p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin: 0;
}

.about {
  background:
    linear-gradient(180deg, #fff 0%, var(--surface-alt) 100%);
}

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

.about-copy .lead {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
}

.about-copy p {
  color: var(--ink-soft);
}

.about-copy .mission {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-weight: 500;
  color: var(--ink);
}

.about-stats {
  display: grid;
  gap: 1.5rem;
  padding: 2rem;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.about-stats::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -25%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--gradient-brand);
  opacity: 0.12;
  filter: blur(10px);
}

.stat {
  position: relative;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.stat:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.stat-value {
  display: block;
  font-size: clamp(2.1rem, 4vw, 2.85rem);
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 500;
}

/* Services */
.services {
  background: var(--surface-alt);
}

.service-list {
  display: grid;
  gap: 1.25rem;
}

.service-row {
  --accent: var(--blue);
  --accent-soft: rgba(47, 127, 209, 0.1);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.5rem 2rem;
  align-items: center;
  padding: 1.75rem 2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.service-row:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.service-row.accent-orange {
  --accent: var(--accent-orange);
  --accent-soft: rgba(245, 166, 35, 0.12);
}

.service-row.accent-pink {
  --accent: var(--accent-pink);
  --accent-soft: rgba(232, 74, 95, 0.1);
}

.service-row.accent-cyan {
  --accent: var(--accent-cyan);
  --accent-soft: rgba(79, 195, 247, 0.14);
}

.service-text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.service-text p {
  margin: 0;
  color: var(--ink-soft);
  max-width: 38rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}

.tag-row li {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--accent);
  padding: 0.35rem 0.75rem;
  background: var(--accent-soft);
  border-radius: 999px;
}

/* Industries — colorful card grid */
.industries {
  background:
    linear-gradient(180deg, var(--surface-alt) 0%, #fff 55%);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
}

.industry-item {
  --accent: var(--blue);
  --accent-soft: rgba(47, 127, 209, 0.1);
  padding: 1.75rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.industry-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.industry-item.accent-orange {
  --accent: var(--accent-orange);
  --accent-soft: rgba(245, 166, 35, 0.12);
}

.industry-item.accent-pink {
  --accent: var(--accent-pink);
  --accent-soft: rgba(232, 74, 95, 0.1);
}

.industry-item.accent-cyan {
  --accent: var(--accent-cyan);
  --accent-soft: rgba(79, 195, 247, 0.14);
}

.industry-icon {
  width: 52px;
  height: 52px;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 14px;
  margin-bottom: 1.1rem;
}

.industry-icon svg {
  width: 26px;
  height: 26px;
}

.industry-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.45rem;
}

.industry-item p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

/* Solutions */
.solutions {
  background: var(--surface-alt);
}

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

.solution-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.solution-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.solution-item:nth-child(3n+1) .sol-code { background: rgba(245, 166, 35, 0.14); color: #c17812; }
.solution-item:nth-child(3n+2) .sol-code { background: rgba(232, 74, 95, 0.12); color: var(--accent-pink); }
.solution-item:nth-child(3n) .sol-code { background: rgba(79, 195, 247, 0.16); color: #1583ac; }

.sol-code {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  min-width: 3.4rem;
  height: 2.4rem;
  padding: 0 0.6rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.sol-name {
  display: block;
  font-weight: 700;
  color: var(--ink);
  font-size: 0.98rem;
}

.sol-full {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Tech marquee */
.marquee {
  position: relative;
  background: var(--bg-dark-2);
  padding: 1.5rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee-scroll 26s linear infinite;
}

.marquee-item {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.marquee-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}

.marquee-fade-left {
  left: 0;
  background: linear-gradient(90deg, var(--bg-dark-2), transparent);
}

.marquee-fade-right {
  right: 0;
  background: linear-gradient(270deg, var(--bg-dark-2), transparent);
}

/* Process */
.process {
  background: #fff;
}

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

.process-item {
  padding: 1.85rem 1.6rem;
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.process-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.process-num {
  display: block;
  font-size: 2.1rem;
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 0.85rem;
}

.process-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.process-item p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

/* FAQ */
.faq {
  background: var(--surface-alt);
}

.faq-list {
  display: grid;
  gap: 1rem;
  max-width: 46rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s var(--ease);
}

.faq-item[open] {
  border-color: rgba(47, 127, 209, 0.35);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 700;
  color: var(--ink);
  font-size: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0.85rem 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* Contact */
.contact {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--bg-dark-1) 0%, var(--bg-dark-3) 100%);
  text-align: center;
  color: #fff;
}

.contact-blob-1 {
  top: -12%;
  left: -8%;
  right: auto;
}

.contact-blob-2 {
  bottom: -16%;
  right: -8%;
  left: auto;
  top: auto;
}

.contact-inner {
  position: relative;
  z-index: 1;
  max-width: 34rem;
}

.contact-inner h2 {
  color: #fff;
}

.contact p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1.5rem;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
  font-size: 0.98rem;
  font-weight: 600;
}

.contact-link {
  color: rgba(255, 255, 255, 0.9);
}

.contact-link:hover {
  color: var(--accent-cyan);
}

.contact-sep {
  color: rgba(255, 255, 255, 0.3);
}

.contact .btn-primary {
  background: var(--gradient-brand);
  color: #0b1220;
  box-shadow: 0 16px 34px -12px rgba(245, 166, 35, 0.4);
}

.contact .btn-primary:hover {
  filter: brightness(1.06);
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.5rem 0 2rem;
  background: var(--bg-dark-1);
  color: rgba(255, 255, 255, 0.7);
}

.brand-logo-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.9rem;
  background: #fff;
  border-radius: 12px;
}

.footer-inner {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  display: grid;
  gap: 1.5rem;
}

.footer-brand p {
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.92rem;
  max-width: 22rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.footer-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

.footer-links a:hover {
  color: var(--accent-cyan);
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.footer-contact a {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}

.footer-contact a:hover {
  color: var(--accent-orange);
}

.footer-copy {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Reveal motion */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: calc(var(--i, 0) * 0.06s);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

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

  .service-row {
    grid-template-columns: 1fr;
  }

  .tag-row {
    justify-content: flex-start;
  }

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

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

@media (max-width: 720px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: calc(var(--header-h) - 6px) 1rem auto;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1.25rem 1rem;
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.25s;
  }

  .site-nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav a::after {
    display: none;
  }

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

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

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

  .hero-blob {
    opacity: 0.28;
  }

  .hero-blob-orange {
    width: 180px;
    height: 180px;
  }

  .hero-blob-pink {
    width: 200px;
    height: 200px;
  }

  .hero-blob-cyan {
    width: 200px;
    height: 200px;
  }

  .hero-stats {
    gap: 1.25rem 1.75rem;
  }
}

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

  .hero-blob,
  .marquee-track,
  .reveal {
    animation: none;
    transition: none;
  }

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