:root {
  --background: #f4f6fb;
  --background-deep: #e9edf6;
  --surface: rgba(255, 255, 255, 0.74);
  --surface-solid: #ffffff;
  --surface-strong: #e6eaf3;
  --foreground: #0b1020;
  --foreground-soft: #4f586b;
  --foreground-faint: #778096;
  --line: rgba(15, 23, 42, 0.12);
  --line-strong: rgba(15, 23, 42, 0.22);
  --accent: #4565ff;
  --accent-bright: #6b7cff;
  --accent-soft: rgba(69, 101, 255, 0.12);
  --violet: #8f62ff;
  --cyan: #35bff7;
  --glow: rgba(73, 98, 255, 0.23);
  --header: rgba(244, 246, 251, 0.78);
  --shadow: 0 24px 70px rgba(26, 36, 68, 0.11);
  --shadow-soft: 0 14px 42px rgba(26, 36, 68, 0.08);
  --radius-large: 32px;
  --radius-medium: 22px;
  --radius-small: 14px;
}

:root[data-theme="dark"] {
  --background: #07090e;
  --background-deep: #0d111b;
  --surface: rgba(18, 23, 35, 0.7);
  --surface-solid: #111724;
  --surface-strong: #171f2e;
  --foreground: #f5f7fc;
  --foreground-soft: #abb5c8;
  --foreground-faint: #7d889d;
  --line: rgba(226, 232, 240, 0.12);
  --line-strong: rgba(226, 232, 240, 0.23);
  --accent: #6f83ff;
  --accent-bright: #91a0ff;
  --accent-soft: rgba(111, 131, 255, 0.16);
  --violet: #a578ff;
  --cyan: #53c9f8;
  --glow: rgba(100, 121, 255, 0.28);
  --header: rgba(7, 9, 14, 0.78);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.24);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --background: #07090e;
    --background-deep: #0d111b;
    --surface: rgba(18, 23, 35, 0.7);
    --surface-solid: #111724;
    --surface-strong: #171f2e;
    --foreground: #f5f7fc;
    --foreground-soft: #abb5c8;
    --foreground-faint: #7d889d;
    --line: rgba(226, 232, 240, 0.12);
    --line-strong: rgba(226, 232, 240, 0.23);
    --accent: #6f83ff;
    --accent-bright: #91a0ff;
    --accent-soft: rgba(111, 131, 255, 0.16);
    --violet: #a578ff;
    --cyan: #53c9f8;
    --glow: rgba(100, 121, 255, 0.28);
    --header: rgba(7, 9, 14, 0.78);
    --shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
    --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.24);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  background: var(--background);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% -5%, var(--accent-soft), transparent 32rem),
    radial-gradient(circle at 90% 22%, rgba(143, 98, 255, 0.08), transparent 34rem),
    var(--background);
  color: var(--foreground);
  font-family:
    ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.28), transparent 46%);
  content: "";
  pointer-events: none;
}

::selection {
  background: var(--accent);
  color: #ffffff;
}

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

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

button {
  font: inherit;
}

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

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

h1,
h2,
h3 {
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--foreground);
  color: var(--background);
  font-size: 0.88rem;
  font-weight: 750;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--accent-bright);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: var(--header);
  backdrop-filter: blur(22px) saturate(140%);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 820;
  letter-spacing: -0.035em;
}

.brand-name {
  font-size: 1.18rem;
}

.pixel-mark {
  display: grid;
  width: 28px;
  height: 28px;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  padding: 2px;
  border-radius: 5px;
  background: var(--foreground);
  box-shadow: 0 8px 24px var(--glow);
}

.pixel-mark span {
  border-radius: 1.5px;
  background: var(--background);
  opacity: 0.25;
}

.pixel-mark span:nth-child(1),
.pixel-mark span:nth-child(2),
.pixel-mark span:nth-child(4),
.pixel-mark span:nth-child(5),
.pixel-mark span:nth-child(7),
.pixel-mark span:nth-child(8),
.pixel-mark span:nth-child(9) {
    background: var(--background);
  opacity: 1;
}

.pixel-mark span:nth-child(3),
.pixel-mark span:nth-child(6) {
  background: var(--accent-bright);
  opacity: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
}

.site-nav a {
  position: relative;
  color: var(--foreground-soft);
  font-size: 0.9rem;
  font-weight: 680;
  transition: color 160ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover {
  color: var(--foreground);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.theme-toggle {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--foreground);
  cursor: pointer;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.no-js .theme-toggle {
  display: none;
}

.theme-toggle:hover {
  border-color: var(--line-strong);
  background: var(--surface-solid);
  transform: translateY(-1px);
}

.theme-icon {
  position: absolute;
  display: grid;
  place-items: center;
  font-size: 1.18rem;
  line-height: 1;
  transition:
    opacity 180ms ease,
    transform 220ms ease;
}

.theme-icon-moon,
:root[data-theme="dark"] .theme-icon-sun {
  opacity: 0;
  transform: rotate(-45deg) scale(0.6);
}

:root[data-theme="dark"] .theme-icon-moon {
  opacity: 1;
  transform: rotate(0) scale(1);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 760;
  transition:
    transform 170ms ease,
    box-shadow 170ms ease,
    border-color 170ms ease,
    background 170ms ease;
}

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

.button-solid {
  background: var(--foreground);
  box-shadow: 0 12px 28px rgba(38, 48, 82, 0.16);
  color: var(--background);
}

.button-solid:hover {
  box-shadow: 0 16px 34px var(--glow);
}

.button-ghost {
  border-color: var(--line);
  background: var(--surface);
}

.button-ghost:hover {
  border-color: var(--line-strong);
  background: var(--surface-solid);
}

.button-small {
  min-height: 42px;
  padding-inline: 17px;
  font-size: 0.84rem;
}

.link-arrow {
  display: inline-block;
  margin-left: 4px;
  transition: transform 160ms ease;
}

a:hover .link-arrow {
  transform: translate(2px, -2px);
}

.hero {
  display: grid;
  min-height: calc(100svh - 78px);
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: center;
  gap: 74px;
  padding-block: 86px 100px;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 830;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 30px;
  font-size: clamp(3.5rem, 6.7vw, 6.7rem);
  font-weight: 800;
  letter-spacing: -0.075em;
}

.hero h1 em {
  display: block;
  background: linear-gradient(110deg, var(--accent), var(--violet) 54%, var(--cyan));
  background-clip: text;
  color: transparent;
  font-style: normal;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: var(--foreground-soft);
  font-size: clamp(1.08rem, 1.65vw, 1.28rem);
  line-height: 1.65;
}

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

.hero-stage {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background:
    radial-gradient(circle at 50% 42%, var(--accent-soft), transparent 36%),
    linear-gradient(145deg, var(--surface-solid), var(--background-deep));
  box-shadow: var(--shadow);
  isolation: isolate;
}

.stage-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle, black 5%, transparent 76%);
}

.stage-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.stage-orbit-one {
  width: 330px;
  height: 330px;
  animation: orbit-spin 26s linear infinite;
}

.stage-orbit-two {
  width: 455px;
  height: 455px;
  border-style: dashed;
  animation: orbit-spin-reverse 38s linear infinite;
}

.stage-orbit::before,
.stage-orbit::after {
  position: absolute;
  width: 9px;
  height: 9px;
  border: 4px solid var(--background-deep);
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 22px var(--accent);
  content: "";
}

.stage-orbit::before {
  top: 7%;
  left: 20%;
}

.stage-orbit::after {
  right: 11%;
  bottom: 14%;
  background: var(--violet);
}

.stage-core {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: flex;
  width: 245px;
  min-height: 245px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 26px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--surface);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 26px 70px var(--glow);
  text-align: center;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(24px);
}

.stage-core .pixel-mark {
  width: 42px;
  height: 42px;
  margin-bottom: 17px;
}

.stage-label {
  margin-bottom: 5px;
  color: var(--foreground-faint);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.stage-core strong {
  max-width: 160px;
  font-size: 1.38rem;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.stage-core p {
  margin: 10px 0 0;
  color: var(--foreground-soft);
  font-size: 0.68rem;
  font-weight: 720;
  letter-spacing: 0.08em;
}

.stage-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  min-width: 104px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  font-size: 0.72rem;
  backdrop-filter: blur(18px);
}

.stage-chip span {
  color: var(--foreground-faint);
}

.stage-chip strong {
  letter-spacing: 0.08em;
}

.stage-chip-one {
  top: 13%;
  left: 8%;
}

.stage-chip-two {
  top: 21%;
  right: 6%;
}

.stage-chip-three {
  right: 13%;
  bottom: 10%;
}

@keyframes orbit-spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes orbit-spin-reverse {
  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

.section {
  position: relative;
  padding-block: 120px;
}

.services-section {
  border-block: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, var(--surface), transparent);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: end;
  gap: 56px;
  margin-bottom: 52px;
}

.section-heading h2,
.product-intro h2,
.company-copy h2,
.contact-panel h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2.65rem, 5vw, 5rem);
  font-weight: 780;
  letter-spacing: -0.065em;
}

.section-heading > p {
  margin-bottom: 2px;
  color: var(--foreground-soft);
  font-size: 1.04rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.service-card:hover {
  border-color: var(--line-strong);
  background: var(--surface-solid);
  transform: translateY(-6px);
}

.service-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 80px;
  color: var(--foreground-faint);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.74rem;
}

.service-dot {
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--accent);
  box-shadow: 0 0 17px var(--accent);
}

.service-card:nth-child(2) .service-dot {
  background: var(--violet);
  box-shadow: 0 0 17px var(--violet);
}

.service-card:nth-child(3) .service-dot {
  background: var(--cyan);
  box-shadow: 0 0 17px var(--cyan);
}

.service-card h3 {
  margin-bottom: 18px;
  font-size: clamp(1.65rem, 2.3vw, 2.15rem);
}

.service-card p {
  margin-bottom: 28px;
  color: var(--foreground-soft);
}

.service-card small {
  margin-top: auto;
  color: var(--foreground-faint);
  font-size: 0.72rem;
  font-weight: 720;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-section {
  overflow: hidden;
}

.product-section::before {
  position: absolute;
  z-index: -1;
  top: 8%;
  right: -18%;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow), transparent 68%);
  content: "";
  filter: blur(8px);
}

.product-shell {
  display: grid;
  grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: 72px;
}

.product-intro {
  position: sticky;
  top: 126px;
}

.product-intro h2 {
  margin-bottom: 28px;
}

.product-lead {
  margin-bottom: 26px;
  color: var(--foreground-soft);
  font-size: 1.08rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 760;
}

.product-grid {
  display: grid;
  gap: 18px;
}

.product-card {
  position: relative;
  display: grid;
  min-height: 260px;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 28px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.product-card::before {
  position: absolute;
  top: -100px;
  right: -90px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--card-glow), transparent 70%);
  content: "";
}

.product-card-blue {
  --card-glow: rgba(69, 101, 255, 0.24);
}

.product-card-violet {
  --card-glow: rgba(143, 98, 255, 0.22);
}

.product-card-cyan {
  --card-glow: rgba(53, 191, 247, 0.22);
}

.product-card-head {
  position: relative;
  z-index: 1;
}

.product-icon {
  width: 112px;
  height: 112px;
  border-radius: 25px;
  object-fit: cover;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

.status {
  display: inline-flex;
  margin-top: 18px;
  padding: 7px 10px;
  border: 1px solid rgba(53, 191, 247, 0.26);
  border-radius: 999px;
  background: rgba(53, 191, 247, 0.11);
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.status-muted {
  border-color: var(--line);
  background: var(--surface-strong);
  color: var(--foreground-faint);
}

.product-card-copy {
  position: relative;
  z-index: 1;
}

.product-card-copy h3 {
  margin-bottom: 15px;
  font-size: clamp(2rem, 3vw, 2.75rem);
}

.product-card-copy p {
  max-width: 510px;
  margin-bottom: 28px;
  color: var(--foreground-soft);
}

.product-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.product-links a {
  color: var(--foreground);
  font-size: 0.85rem;
  font-weight: 760;
}

.company-section {
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.company-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 90px;
}

.company-copy h2 {
  margin-bottom: 32px;
}

.company-copy > p:not(.eyebrow) {
  max-width: 690px;
  color: var(--foreground-soft);
  font-size: 1.08rem;
}

.company-copy > p:last-child {
  margin-bottom: 0;
}

.principles {
  display: grid;
  border-top: 1px solid var(--line);
}

.principles article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 22px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}

.principles article > span {
  padding-top: 3px;
  color: var(--accent);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.75rem;
}

.principles h3 {
  margin-bottom: 8px;
  font-size: 1.36rem;
}

.principles p {
  margin-bottom: 0;
  color: var(--foreground-soft);
}

.contact-section {
  padding-block: 120px 140px;
}

.contact-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 7vw, 84px);
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background:
    radial-gradient(circle at 90% 18%, rgba(143, 98, 255, 0.2), transparent 28%),
    radial-gradient(circle at 74% 92%, rgba(53, 191, 247, 0.15), transparent 30%),
    linear-gradient(135deg, var(--surface-solid), var(--background-deep));
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  max-width: 800px;
  margin-bottom: 25px;
  font-size: clamp(3rem, 6vw, 6.2rem);
}

.contact-panel > p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 34px;
  color: var(--foreground-soft);
  font-size: 1.12rem;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid var(--accent);
  color: var(--foreground);
  font-size: clamp(1.35rem, 2.5vw, 2.15rem);
  font-weight: 760;
  letter-spacing: -0.035em;
}

.contact-pixels {
  position: absolute;
  top: 36px;
  right: 42px;
  display: grid;
  grid-template-columns: repeat(3, 22px);
  gap: 5px;
  opacity: 0.65;
  transform: rotate(9deg);
}

.contact-pixels span {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background: var(--accent);
}

.contact-pixels span:nth-child(2) {
  background: var(--violet);
}

.contact-pixels span:nth-child(3) {
  grid-column: 2;
  background: var(--cyan);
}

.contact-pixels span:nth-child(5) {
  background: var(--violet);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding-block: 46px;
}

.footer-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-inner p {
  margin-bottom: 0;
  color: var(--foreground-faint);
  font-size: 0.82rem;
}

.footer-meta {
  text-align: right;
}

.footer-meta a {
  display: inline-block;
  margin-bottom: 8px;
  font-weight: 740;
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 850px;
  }

  .hero-stage {
    min-height: 500px;
  }

  .product-shell,
  .company-layout {
    grid-template-columns: 1fr;
  }

  .product-intro {
    position: static;
    max-width: 780px;
  }

  .company-layout {
    gap: 58px;
  }
}

@media (max-width: 820px) {
  .shell {
    width: min(100% - 32px, 1180px);
  }

  .site-nav {
    display: none;
  }

  .header-inner {
    min-height: 70px;
  }

  .hero {
    min-height: auto;
    padding-block: 76px 88px;
  }

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

  .section {
    padding-block: 92px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .service-card {
    min-height: 330px;
  }

  .service-topline {
    margin-bottom: 56px;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 24px, 1180px);
  }

  .brand-name {
    font-size: 1.02rem;
  }

  .header-actions .button {
    display: none;
  }

  .hero {
    gap: 52px;
    padding-block: 62px 76px;
  }

  .hero h1 {
    margin-bottom: 24px;
    font-size: clamp(2.85rem, 14vw, 4.6rem);
  }

  .hero-stage {
    min-height: 420px;
  }

  .stage-orbit-one {
    width: 270px;
    height: 270px;
  }

  .stage-orbit-two {
    width: 365px;
    height: 365px;
  }

  .stage-core {
    width: 205px;
    min-height: 205px;
  }

  .stage-core strong {
    font-size: 1.14rem;
  }

  .stage-chip {
    min-width: 88px;
    gap: 10px;
    padding: 9px 10px;
    font-size: 0.62rem;
  }

  .stage-chip-one {
    top: 8%;
    left: 5%;
  }

  .stage-chip-two {
    top: 18%;
    right: 3%;
  }

  .stage-chip-three {
    right: 8%;
    bottom: 7%;
  }

  .section {
    padding-block: 76px;
  }

  .section-heading h2,
  .product-intro h2,
  .company-copy h2 {
    font-size: clamp(2.4rem, 11vw, 3.7rem);
  }

  .service-card {
    min-height: 310px;
    padding: 24px;
  }

  .product-shell {
    gap: 45px;
  }

  .product-card {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 18px;
    padding: 21px;
  }

  .product-icon {
    width: 78px;
    height: 78px;
    border-radius: 19px;
  }

  .status {
    margin-top: 12px;
    padding: 5px 7px;
    font-size: 0.56rem;
  }

  .product-card-copy h3 {
    font-size: 1.8rem;
  }

  .product-links {
    flex-direction: column;
    gap: 10px;
  }

  .company-layout {
    gap: 42px;
  }

  .contact-section {
    padding-block: 76px 88px;
  }

  .contact-panel {
    padding: 38px 25px;
  }

  .contact-panel h2 {
    font-size: clamp(2.75rem, 13vw, 4.3rem);
  }

  .contact-pixels {
    top: 20px;
    right: 20px;
    transform: scale(0.7) rotate(9deg);
    transform-origin: top right;
  }

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

  .footer-meta {
    text-align: left;
  }
}

@media (max-width: 420px) {
  .product-card {
    grid-template-columns: 1fr;
  }

  .product-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
  }

  .status {
    margin-top: 0;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
