:root {
  --black: #000;
  --ink: #050505;
  --panel: #0b0b0c;
  --panel-2: #111113;
  --white: #fff;
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.58);
  --quiet: rgba(255, 255, 255, 0.34);
  --line: rgba(255, 255, 255, 0.12);
  --line-soft: rgba(255, 255, 255, 0.07);
  --accent: #f5f5f5;
  --heat-red: #ff2f1f;
  --heat-orange: #ff8a1f;
  --heat-light: #fff3e7;
  --heat-gradient: linear-gradient(135deg, var(--heat-red) 0%, var(--heat-orange) 54%, var(--heat-light) 100%);
  --ease-out: cubic-bezier(0.075, 0.82, 0.165, 1);
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --page-gutter: 32px;
  --page-gutter-mobile: 22px;
  --page-max: 1320px;
  --nav-max: 1320px;
  --footer-max: 1620px;
}

@font-face {
  font-family: "Oswald";
  src: url("./fonts/Oswald-VF.ttf") format("truetype");
  font-weight: 200 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Tilda Sans";
  src: url("./fonts/TildaSans-VF.woff2") format("woff2-variations"),
    url("./fonts/TildaSans-VF.woff2") format("woff2");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--black);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--text);
  font-family: "Tilda Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.overlay-open {
  overflow: hidden;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
  font: inherit;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  padding: 14px clamp(12px, 2.8vw, 48px) 11px;
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(22px) saturate(1.12);
  -webkit-backdrop-filter: blur(22px) saturate(1.12);
}

.navbar {
  display: grid;
  grid-template-columns: minmax(92px, 1fr) auto minmax(126px, 1fr);
  align-items: center;
  width: 100%;
  max-width: var(--nav-max);
  height: 50px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  justify-self: start;
  width: clamp(92px, 7vw, 118px);
  min-width: 92px;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.nav-center {
  display: flex;
  align-items: center;
  justify-self: center;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
  height: 30px;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 4px 2px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 220ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-current,
.nav-link[aria-current="page"] {
  color: var(--white);
}

.project-button:focus-visible,
.brand:focus-visible,
.nav-link:focus-visible,
.primary-action:focus-visible,
.secondary-action:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.72);
  outline-offset: 5px;
}

.project-button,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  white-space: nowrap;
}

.project-button {
  justify-self: end;
  min-width: 148px;
  height: 39px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 15px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    #0b0b0b;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition:
    background 260ms ease,
    border-color 260ms ease,
    color 260ms ease,
    box-shadow 260ms ease;
}

.project-button:hover,
.project-button:focus-visible {
  border-color: rgba(255, 255, 255, 0.86);
  background: #f4f4f4;
  color: #050505;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.16),
    0 12px 34px rgba(255, 255, 255, 0.08);
}

.mobile-links {
  display: none;
}

main {
  background: var(--black);
}

[id] {
  scroll-margin-top: 104px;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(390px, 0.78fr);
  gap: clamp(54px, 7.2vw, 118px);
  align-items: center;
  width: min(100% - var(--page-gutter), var(--page-max));
  height: 100svh;
  margin: 0 auto;
  padding: clamp(100px, 11vh, 124px) 0 clamp(54px, 8vh, 74px);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  max-width: 720px;
  transform: translateY(clamp(8px, 1.6vh, 20px));
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--quiet);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.eyebrow {
  font-family: "Oswald", "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
}

h1 {
  max-width: 620px;
  margin-bottom: clamp(56px, 7vh, 78px);
  color: var(--white);
  font-size: clamp(44px, 5.4vw, 82px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.9;
}

.hero-lead {
  max-width: 590px;
  margin-bottom: clamp(46px, 5.8vh, 68px);
  color: var(--muted);
  font-size: clamp(18px, 1.65vw, 24px);
  font-weight: 350;
  line-height: 1.28;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.hero-actions {
  gap: 14px;
}

.primary-action,
.secondary-action {
  height: 46px;
  padding: 0 24px;
  border-radius: 16px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  transition:
    background 240ms ease,
    border-color 240ms ease,
    color 240ms ease,
    transform 240ms ease;
}

.primary-action {
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: var(--accent);
  color: #050505;
}

.primary-action:hover,
.primary-action:focus-visible {
  transform: translateY(-1px);
  background: var(--white);
}

.hero-actions .primary-action {
  border-color: rgba(255, 60, 18, 0.96);
  background: #ff3b12;
  color: var(--white);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 0 0 8px rgba(255, 255, 255, 0.025);
}

.hero-actions .primary-action:hover,
.hero-actions .primary-action:focus-visible {
  transform: none;
  border-color: var(--white);
  background: var(--white);
  color: #050505;
}

.primary-action.light {
  background: var(--white);
  color: #050505;
}

.secondary-action {
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
}

.secondary-action:hover,
.secondary-action:focus-visible {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.hero-visual {
  position: relative;
  display: grid;
  align-self: center;
  place-items: center;
  height: 100%;
  min-height: 0;
}

.signal-core {
  position: relative;
  z-index: 1;
  justify-self: center;
  width: clamp(450px, 44vw, 720px);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  background: #000;
  transition: transform 260ms var(--ease-out);
}

.signal-core:hover,
.signal-core:focus-within {
  transform: scale(1.055);
}

.signal-core img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.14);
  transform-origin: center;
}

.intro-band,
.info-strip,
.section-block,
.feature-band,
.method-section,
.insights-section,
.blog-page,
.products-page,
.portfolio-page,
.faq-section,
.cta-section {
  width: min(100% - var(--page-gutter), var(--page-max));
  margin: 0 auto;
}

.intro-band {
  position: relative;
  display: grid;
  gap: 0;
  padding: clamp(44px, 6vw, 72px) clamp(28px, 5vw, 68px) clamp(28px, 4vw, 44px);
  margin-top: 64px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 138, 31, 0.12), transparent 22%),
    radial-gradient(circle at 15% 44%, rgba(255, 47, 31, 0.08), transparent 24%),
    radial-gradient(circle at 84% 50%, rgba(255, 243, 231, 0.06), transparent 25%),
    radial-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    #080809;
  background-size: auto, auto, auto, 16px 16px, auto;
}

.decision-head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.42fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
  max-width: none;
  margin: 0;
  text-align: left;
}

.decision-head .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 16px;
}

.decision-head h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(54px, 6vw, 88px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.95;
}

.decision-head p:not(.eyebrow) {
  max-width: 430px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 19px;
  font-weight: 350;
  line-height: 1.34;
}

.decision-cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  margin-top: clamp(38px, 5vw, 58px);
}

.decision-card {
  position: relative;
  min-height: 390px;
  padding: clamp(30px, 4vw, 46px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(12, 12, 13, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition:
    border-color 260ms ease,
    background 260ms ease,
    transform 320ms var(--ease-smooth);
}

.decision-card::after {
  content: "";
  position: absolute;
  right: -86px;
  bottom: -104px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 122, 31, 0.13);
  border-radius: 50%;
}

.decision-card:hover,
.decision-card:focus-within {
  border-color: rgba(255, 122, 31, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 122, 31, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(12, 12, 13, 0.9);
  transform: translateY(-3px);
}

.decision-number {
  position: absolute;
  top: 28px;
  right: 30px;
  color: rgba(255, 255, 255, 0.24);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.decision-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 42px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.decision-icon {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 47, 31, 0.22), rgba(255, 138, 31, 0.08)),
    rgba(255, 255, 255, 0.04);
}

.decision-icon::before,
.decision-icon::after {
  content: "";
  position: absolute;
}

.decision-icon::before {
  inset: 12px;
  border: 1px solid rgba(255, 243, 231, 0.85);
  border-radius: 50%;
}

.decision-icon::after {
  right: 10px;
  bottom: 10px;
  width: 8px;
  height: 1px;
  background: rgba(255, 243, 231, 0.85);
  transform: rotate(-45deg);
}

.decision-card:nth-child(2) .decision-icon::before {
  inset: 11px 12px 12px;
  border-radius: 50% 50% 45% 45%;
}

.decision-card:nth-child(2) .decision-icon::after {
  right: 11px;
  bottom: 10px;
  width: 16px;
  height: 8px;
  border: 1px solid rgba(255, 243, 231, 0.85);
  border-top: 0;
  border-radius: 0 0 9px 9px;
  background: transparent;
  transform: none;
}

.decision-card h3 {
  max-width: 610px;
  margin: 0 0 22px;
  color: var(--white);
  font-size: clamp(34px, 3.9vw, 56px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
}

.decision-card p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 350;
  line-height: 1.44;
}

.decision-result {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: #ffb16a;
  font-size: 14px;
  font-weight: 550;
  letter-spacing: 0.02em;
}

.decision-conclusion {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: fit-content;
  max-width: 100%;
  margin: 18px auto 0;
  padding: 12px 18px 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  text-align: center;
}

.decision-conclusion span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--heat-gradient);
  color: #050505;
  font-size: 24px;
  font-weight: 650;
  box-shadow: 0 0 34px rgba(255, 122, 31, 0.32);
}

.decision-conclusion p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 350;
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 64px);
  margin-top: clamp(86px, 10vw, 128px);
}

.info-strip article {
  min-width: 0;
}

.info-strip h2 {
  margin: 0 0 28px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-family: "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.08;
}

.info-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: clamp(19px, 1.8vw, 23px);
  font-weight: 350;
  line-height: 1.32;
}

.info-strip strong {
  color: var(--white);
  font-weight: 650;
}

.intro-item span,
.timeline span {
  display: block;
  margin-bottom: 24px;
  color: var(--quiet);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.product-index {
  display: block;
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.intro-item h2,
.section-heading h2,
.feature-copy h2,
.method-section h2,
.cta-copy h2 {
  color: var(--white);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
}

.intro-item h2 {
  max-width: 430px;
  margin-bottom: 18px;
}

.intro-item p,
.product-card p,
.feature-copy p,
.case-stack p,
.timeline p,
.section-heading p,
.cta-copy p,
.site-footer p {
  color: var(--muted);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.42;
}

.section-block,
.method-section,
.insights-section {
  padding: clamp(92px, 12vw, 150px) 0 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.42fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
  margin-bottom: 34px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading p {
  margin-bottom: 6px;
}

.section-heading.narrow {
  display: block;
  max-width: 760px;
}

.section-heading.narrow h2 {
  margin-bottom: 20px;
}

.product-section {
  position: relative;
}

.product-heading {
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.42fr);
  align-items: end;
  margin-bottom: 38px;
}

.heat-text {
  background: var(--heat-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.product-note {
  display: grid;
  gap: 24px;
  justify-items: start;
  margin-bottom: 6px;
}

.product-note p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.42;
}

.product-signal {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.7fr 1.2fr;
  gap: 6px;
  width: 190px;
  height: 54px;
  padding: 7px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 47, 31, 0.09), rgba(255, 138, 31, 0.04)),
    #050505;
}

.product-signal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 122, 31, 0.18), transparent);
  transform: translateX(-55%);
}

.product-signal span {
  position: relative;
  border-radius: 5px;
  background: var(--heat-gradient);
  clip-path: polygon(18% 0, 100% 0, 82% 100%, 0 100%);
}

.product-signal span:nth-child(2) {
  opacity: 0.62;
  transform: translateY(9px);
}

.product-signal span:nth-child(3) {
  opacity: 0.34;
  transform: translateY(18px);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.product-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 330px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    var(--panel);
  transition:
    border-color 240ms ease,
    background 240ms ease,
    transform 240ms var(--ease-out);
}

.product-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -1px;
  right: -1px;
  left: -1px;
  height: 3px;
  background: var(--heat-gradient);
  opacity: 0;
  transition: opacity 240ms ease;
}

.product-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -42px;
  bottom: -52px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(255, 122, 31, 0.16);
  transform: rotate(18deg);
}

.product-card:hover,
.product-card:focus-within {
  border-color: rgba(255, 122, 31, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 122, 31, 0.075), rgba(255, 255, 255, 0.015)),
    var(--panel);
  transform: translateY(-4px);
}

.product-card:hover::before,
.product-card:focus-within::before {
  opacity: 1;
}

.product-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 46px;
}

.product-icon {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: var(--heat-gradient);
}

.product-icon::before,
.product-icon::after {
  content: "";
  position: absolute;
}

.product-icon::before {
  inset: 8px;
  border: 1px solid rgba(0, 0, 0, 0.55);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.5);
}

.product-icon::after {
  inset: 14px 7px;
  background: rgba(255, 255, 255, 0.88);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.product-card:nth-child(2) .product-icon::after {
  inset: 10px;
  border: 2px solid rgba(255, 255, 255, 0.88);
  background: transparent;
  border-radius: 50%;
  clip-path: none;
}

.product-card:nth-child(3) .product-icon::after {
  inset: 11px 9px;
  background: rgba(255, 255, 255, 0.88);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.product-card:nth-child(4) .product-icon::after {
  inset: 11px;
  background: rgba(255, 255, 255, 0.9);
  clip-path: polygon(0 0, 100% 0, 100% 34%, 38% 34%, 38% 100%, 0 100%);
}

.product-card h3,
.case-stack h3,
.timeline h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}

.product-card p {
  font-size: 16px;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(390px, 0.74fr) minmax(540px, 0.76fr);
  gap: clamp(28px, 3.6vw, 58px);
  align-items: center;
  min-height: 720px;
  padding-top: clamp(92px, 12vw, 150px);
}

.feature-copy h2 {
  max-width: 760px;
  margin-bottom: 22px;
}

.feature-copy p {
  max-width: 680px;
  font-size: 21px;
}

.case-browser {
  display: grid;
  gap: 18px;
  align-self: center;
}

.case-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.case-tab {
  min-width: 0;
  height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-family: "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 550;
  line-height: 1;
  transition:
    background 220ms ease,
    color 220ms ease,
    transform 220ms var(--ease-out);
}

.case-tab:hover,
.case-tab:focus-visible {
  color: var(--white);
}

.case-tab:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.72);
  outline-offset: 3px;
}

.case-tab.is-active {
  background: #f4f4f4;
  color: #050505;
  transform: translateY(-1px);
}

.case-pages {
  position: relative;
  min-height: 340px;
}

.case-panel {
  position: relative;
  isolation: isolate;
  min-height: 340px;
  padding: clamp(26px, 4vw, 38px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 122, 31, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.014)),
    var(--panel);
}

.case-panel::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: -70px;
  bottom: -86px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(255, 122, 31, 0.18);
  border-radius: 50%;
}

.case-panel::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--heat-gradient);
  opacity: 0.86;
}

.case-panel[hidden] {
  display: none;
}

.case-panel.is-active {
  animation: caseReveal 260ms var(--ease-out);
}

.case-panel span {
  display: block;
  margin-bottom: 22px;
  color: var(--quiet);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-panel h3 {
  max-width: 410px;
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 500;
  line-height: 0.98;
}

.case-panel p {
  max-width: 440px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.42;
}

.case-metrics {
  display: inline-grid;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.case-metrics strong {
  color: var(--white);
  font-size: 24px;
  font-weight: 550;
  line-height: 1;
}

.case-metrics small {
  color: var(--quiet);
  font-size: 13px;
  font-weight: 350;
  line-height: 1;
}

@keyframes caseReveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.case-stack {
  display: grid;
  gap: 12px;
}

.case-stack article {
  min-height: 170px;
  padding: 24px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--panel);
}

.case-stack span {
  display: block;
  margin-bottom: 20px;
  color: var(--quiet);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-stack p {
  margin-bottom: 0;
  font-size: 16px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 1px;
  margin: 40px 0 0;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--line-soft);
  list-style: none;
}

.timeline li {
  min-height: 280px;
  padding: 28px;
  border-radius: 7px;
  background: var(--panel);
}

.timeline p {
  margin-bottom: 0;
  font-size: 16px;
}

.process-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.76fr);
  gap: 18px;
  min-height: 560px;
  padding: 20px;
  margin-top: 42px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 122, 31, 0.12), transparent 28%),
    radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    #0a0a0b;
  background-size: auto, 14px 14px, auto;
}

.process-list {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 12px;
}

.process-card {
  position: relative;
  min-height: 120px;
  padding: 22px 24px 22px 28px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 22px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  text-align: left;
  transition:
    background 420ms ease,
    border-color 420ms ease,
    color 320ms ease,
    transform 420ms var(--ease-smooth),
    box-shadow 420ms ease;
}

.process-card::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 4px;
  border-radius: 999px;
  background: var(--heat-gradient);
  opacity: 0;
  transition: opacity 360ms ease;
}

.process-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--quiet);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.process-card strong {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 24px;
  font-weight: 650;
  line-height: 1;
}

.process-card small {
  display: block;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 16px;
  font-weight: 350;
  line-height: 1.35;
}

.process-card:hover,
.process-card:focus-visible,
.process-card.is-active {
  border-color: rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.055);
  color: var(--white);
  transform: translateX(4px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.015);
}

.process-card:hover::before,
.process-card:focus-visible::before,
.process-card.is-active::before {
  opacity: 1;
}

.process-card.is-active strong {
  color: var(--white);
}

.process-card.is-active small {
  color: rgba(255, 255, 255, 0.62);
}

.process-card:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.5);
  outline-offset: 3px;
}

.process-stage {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 520px;
}

.process-panel {
  grid-area: 1 / 1;
  z-index: 0;
  display: grid;
  grid-template-rows: minmax(280px, 1fr) auto;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.018)),
    var(--panel);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.985);
  visibility: hidden;
  will-change: opacity, transform;
  transition:
    opacity 520ms ease,
    transform 560ms var(--ease-smooth),
    visibility 0s linear 520ms;
}

.process-panel.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  visibility: visible;
  transition-delay: 0s;
}

.process-visual {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    #0d0d0e;
  background-size: auto, 12px 12px, auto;
}

.process-line {
  position: absolute;
  top: 58px;
  right: 36px;
  left: 36px;
  height: 126px;
  clip-path: polygon(0 56%, 10% 36%, 18% 48%, 27% 32%, 36% 62%, 48% 52%, 58% 72%, 68% 42%, 80% 58%, 90% 26%, 100% 36%, 100% 42%, 90% 32%, 80% 64%, 68% 48%, 58% 78%, 48% 58%, 36% 68%, 27% 38%, 18% 54%, 10% 42%, 0 62%);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), var(--white));
}

.process-bars {
  position: absolute;
  right: 36px;
  bottom: 44px;
  left: 36px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 8px;
  height: 90px;
}

.process-bars span {
  display: block;
  height: var(--bar-h, 42%);
  border-radius: 10px 10px 0 0;
  background: rgba(255, 255, 255, 0.16);
}

.process-bars span:nth-child(1) { --bar-h: 38%; }
.process-bars span:nth-child(2) { --bar-h: 58%; }
.process-bars span:nth-child(3) { --bar-h: 44%; }
.process-bars span:nth-child(4) { --bar-h: 76%; background: linear-gradient(180deg, var(--heat-orange), rgba(255, 122, 31, 0.18)); }
.process-bars span:nth-child(5) { --bar-h: 62%; }
.process-bars span:nth-child(6) { --bar-h: 86%; background: linear-gradient(180deg, var(--heat-light), rgba(255, 255, 255, 0.16)); }

.process-mini-card {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: grid;
  gap: 7px;
  min-width: 164px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(12, 12, 13, 0.84);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.process-mini-card span,
.process-copy span {
  color: var(--quiet);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-mini-card strong {
  color: var(--white);
  font-size: 26px;
  font-weight: 650;
  line-height: 1;
}

.process-chip {
  position: absolute;
  top: 42px;
  left: 38px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--heat-gradient);
  color: #050505;
  font-size: 14px;
  font-weight: 650;
}

.process-grid-dots {
  position: absolute;
  top: 104px;
  left: 42px;
  display: grid;
  grid-template-columns: repeat(4, 42px);
  gap: 16px;
}

.process-grid-dots span {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
}

.process-grid-dots span:nth-child(3n) {
  background: linear-gradient(135deg, rgba(255, 47, 31, 0.82), rgba(255, 138, 31, 0.38));
}

.process-screen {
  position: absolute;
  inset: 42px 36px 94px;
  display: grid;
  grid-template-columns: 1.1fr 0.8fr;
  gap: 12px;
}

.process-screen span {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.process-screen span:first-child {
  grid-row: span 2;
  background:
    linear-gradient(135deg, rgba(255, 47, 31, 0.22), transparent 55%),
    rgba(255, 255, 255, 0.045);
}

.process-screen span:nth-child(2) {
  background: linear-gradient(135deg, rgba(255, 138, 31, 0.32), rgba(255, 255, 255, 0.05));
}

.process-nodes {
  position: absolute;
  inset: 56px 42px 86px;
}

.process-nodes::before,
.process-nodes::after {
  content: "";
  position: absolute;
  inset: 32px 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 122, 31, 0.26);
  transform: skewY(-8deg);
}

.process-nodes span {
  position: absolute;
  width: 70px;
  height: 70px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.82), rgba(255, 138, 31, 0.45) 22%, rgba(255, 47, 31, 0.12) 58%, rgba(255, 255, 255, 0.04));
}

.process-nodes span:nth-child(1) { top: 0; left: 2%; }
.process-nodes span:nth-child(2) { top: 34%; left: 34%; }
.process-nodes span:nth-child(3) { top: 6%; right: 18%; }
.process-nodes span:nth-child(4) { right: 2%; bottom: 0; }

.process-copy {
  padding: 30px 34px 34px;
}

.process-copy h3 {
  max-width: 560px;
  margin: 16px 0 14px;
  color: var(--white);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 500;
  line-height: 0.98;
}

.process-copy p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 350;
  line-height: 1.42;
}

.insight-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 1px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--line-soft);
}

.insight-row a {
  display: flex;
  align-items: flex-end;
  min-height: 230px;
  padding: 28px;
  border-radius: 7px;
  background: var(--panel);
  color: var(--white);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.08;
  text-decoration: none;
  transition:
    background 220ms ease,
    color 220ms ease;
}

.insight-row a:hover,
.insight-row a:focus-visible {
  background: #f4f4f4;
  color: #050505;
}

.blog-main {
  min-height: 100vh;
}

.blog-page {
  display: grid;
  gap: 34px;
  padding-top: clamp(104px, 9vw, 132px);
}

.blog-section {
  display: grid;
  gap: 34px;
}

.blog-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
}

.blog-head .eyebrow {
  margin-bottom: 16px;
}

.blog-head h1,
.blog-head h2 {
  margin: 0;
  color: var(--white);
  font-family: "Oswald", "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(44px, 5.4vw, 82px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.9;
}

.blog-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding-bottom: 10px;
}

.blog-control-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.blog-control-row .blog-tools {
  flex: 0 0 auto;
  padding-bottom: 0;
}

.blog-search {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(100vw - 48px, 310px);
  height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line-soft);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  transition:
    border-color 220ms ease,
    background 220ms ease;
}

.blog-search:focus-within {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.065);
}

.search-icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
  cursor: pointer;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.search-icon-button svg {
  display: block;
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.search-icon-button:hover,
.search-icon-button:focus-visible {
  color: var(--white);
  transform: scale(1.04);
}

.blog-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  font-size: 16px;
  font-weight: 350;
}

.blog-search input::placeholder {
  color: var(--muted);
  opacity: 1;
}

.blog-subscribe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 22px;
  border: 1px solid var(--line-soft);
  border-radius: 15px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02)),
    #101011;
  color: var(--white);
  font-size: 16px;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
  transition:
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease;
}

.blog-subscribe:hover,
.blog-subscribe:focus-visible {
  border-color: rgba(255, 255, 255, 0.8);
  background: #f4f4f4;
  color: #050505;
}

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  flex: 1 1 auto;
  gap: 10px;
}

.blog-filters a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 39px;
  padding: 0 18px;
  border: 1px solid var(--line-soft);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition:
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease;
}

.blog-filters a:hover,
.blog-filters a:focus-visible,
.blog-filters a.is-active {
  border-color: rgba(255, 255, 255, 0.82);
  background: #f4f4f4;
  color: #050505;
}

.blog-featured {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.68fr);
  gap: 26px;
  align-items: stretch;
}

.news-card-link,
.news-rail-link,
.blog-more-card {
  color: inherit;
  text-decoration: none;
}

.news-card-link {
  display: grid;
  gap: 18px;
  height: 100%;
}

.news-rail {
  display: grid;
  gap: 16px;
}

.news-rail-link {
  display: grid;
  grid-template-columns: minmax(148px, 0.44fr) minmax(0, 0.56fr);
  gap: 16px;
  align-items: stretch;
  height: 100%;
}

.news-main-preview {
  min-height: clamp(390px, 35vw, 560px);
}

.news-main-preview strong {
  font-size: clamp(78px, 9vw, 138px);
}

.news-rail-preview {
  min-height: 146px;
  padding: 18px;
}

.news-rail-preview strong {
  font-size: clamp(36px, 3.8vw, 56px);
}

.news-card-body {
  display: grid;
  align-content: start;
  gap: 10px;
}

.news-card-body p {
  margin: 0;
  color: var(--quiet);
  font-size: 13px;
  font-weight: 650;
  line-height: 1;
  text-transform: uppercase;
}

.news-card-body h3 {
  margin: 0;
  color: var(--white);
  font-family: "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.05;
}

.news-rail-card .news-card-body h3 {
  font-size: clamp(19px, 1.45vw, 24px);
  line-height: 1.08;
}

.news-card-body span {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 350;
  line-height: 1.38;
}

.news-card-link:hover .blog-mini-preview,
.news-card-link:focus-visible .blog-mini-preview,
.news-rail-link:hover .blog-mini-preview,
.news-rail-link:focus-visible .blog-mini-preview,
.news-rail-card.is-active .blog-mini-preview {
  border-color: rgba(255, 255, 255, 0.32);
  filter: saturate(1.08) brightness(1.04);
}

.news-card-link:hover h3,
.news-card-link:focus-visible h3,
.news-rail-link:hover h3,
.news-rail-link:focus-visible h3 {
  color: var(--heat-light);
}

.blog-section-label,
.blog-latest-title {
  margin: 0;
  color: var(--white);
  font-size: 20px;
  font-weight: 650;
}

.blog-featured-block,
.blog-latest-block {
  display: grid;
  gap: 18px;
}

.blog-card-link {
  display: grid;
  gap: 18px;
  color: inherit;
  text-decoration: none;
}

.blog-poster {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: #101010;
  transition:
    border-color 260ms ease,
    filter 260ms ease,
    transform 260ms var(--ease-smooth);
}

.blog-card-link:hover .blog-poster,
.blog-card-link:focus-visible .blog-poster {
  border-color: rgba(255, 255, 255, 0.34);
  filter: saturate(1.08) brightness(1.04);
}

.blog-poster::before,
.blog-poster::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.blog-poster::before {
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.22) 1px, transparent 1px);
  background-size: 22px 22px;
}

.blog-poster::after {
  right: 0;
  bottom: 0;
  left: 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.32));
}

.blog-post-card-blue .blog-poster {
  background:
    linear-gradient(135deg, #075dff 0%, #0047da 58%, #00277c 100%);
}

.blog-post-card-lime .blog-poster {
  background:
    linear-gradient(135deg, #00c747 0%, #00a63d 48%, #034419 100%);
}

.blog-post-card-coral .blog-poster {
  background:
    linear-gradient(135deg, #ff3b12 0%, #ff8a1f 48%, #240904 100%);
}

.blog-post-card-dark .blog-poster {
  background:
    radial-gradient(circle at 76% 24%, rgba(255, 138, 31, 0.5), transparent 26%),
    linear-gradient(135deg, #171719 0%, #050505 58%, #1b0b07 100%);
}

.poster-label,
.poster-stamp,
.poster-word {
  position: absolute;
  z-index: 1;
  text-transform: uppercase;
}

.poster-label {
  top: 28px;
  left: 32px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.poster-stamp {
  right: 28px;
  bottom: 24px;
  color: rgba(0, 0, 0, 0.68);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.poster-word {
  top: 30%;
  left: 9%;
  max-width: 82%;
  color: #ff4a12;
  font-family: "Oswald", "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(68px, 8vw, 112px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.78;
  text-shadow: 10px 12px 0 rgba(45, 0, 78, 0.72);
  transform: skewX(-9deg) rotate(-4deg);
}

.blog-post-card-lime .poster-word {
  color: #ff5a12;
  text-shadow: 10px 12px 0 rgba(45, 14, 96, 0.76);
}

.blog-post-card-coral .poster-word {
  color: #f4f4f4;
  text-shadow: 10px 12px 0 rgba(75, 0, 0, 0.5);
}

.blog-post-card-dark .poster-word {
  color: var(--heat-orange);
  text-shadow: 10px 12px 0 rgba(255, 47, 31, 0.22);
}

.blog-card-body {
  display: grid;
  gap: 8px;
}

.blog-card-body p {
  margin: 0;
  color: var(--quiet);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.blog-card-body h3 {
  max-width: 650px;
  margin: 0;
  color: var(--white);
  font-family: "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.08;
  transition: color 220ms ease;
}

.blog-card-link:hover .blog-card-body h3,
.blog-card-link:focus-visible .blog-card-body h3 {
  color: var(--heat-light);
}

.blog-latest {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 18px;
}

.blog-latest-block .blog-latest {
  margin-top: 0;
}

.blog-list-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 16px;
  color: inherit;
  text-decoration: none;
  transition:
    color 220ms ease,
    transform 260ms var(--ease-smooth);
}

.blog-mini-preview {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 190px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: #111;
  transition:
    border-color 240ms ease,
    filter 240ms ease;
}

.blog-mini-preview::before,
.blog-mini-preview::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.blog-mini-preview::before {
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18) 1px, transparent 1px);
  background-size: 18px 18px;
}

.blog-mini-preview::after {
  right: -48px;
  bottom: -62px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.blog-mini-preview span,
.blog-mini-preview strong {
  position: relative;
  z-index: 1;
}

.blog-mini-preview span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.blog-mini-preview strong {
  align-self: end;
  color: var(--white);
  font-family: "Oswald", "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(44px, 4.4vw, 72px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.8;
  text-transform: uppercase;
}

.blog-mini-card-blue .blog-mini-preview {
  background: linear-gradient(135deg, #075dff 0%, #0047da 56%, #002462 100%);
}

.blog-mini-card-coral .blog-mini-preview {
  background: linear-gradient(135deg, #ff3b12 0%, #ff8a1f 54%, #2a0802 100%);
}

.blog-mini-card-dark .blog-mini-preview {
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 138, 31, 0.42), transparent 26%),
    linear-gradient(135deg, #19191b 0%, #050505 60%, #160806 100%);
}

.blog-mini-card-lime .blog-mini-preview {
  background: linear-gradient(135deg, #00bd46 0%, #008f35 54%, #033916 100%);
}

.blog-mini-card-violet .blog-mini-preview {
  background: linear-gradient(135deg, #3722ff 0%, #27147a 55%, #080611 100%);
}

.blog-mini-card-amber .blog-mini-preview {
  background: linear-gradient(135deg, #ffb21f 0%, #ff5a12 56%, #220800 100%);
}

.blog-mini-body {
  display: grid;
  gap: 10px;
}

.blog-mini-body small {
  color: var(--quiet);
  font-size: 13px;
  font-weight: 650;
  line-height: 1;
  text-transform: uppercase;
}

.blog-mini-body strong {
  display: block;
  color: var(--text);
  font-size: clamp(20px, 1.55vw, 26px);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.1;
}

.blog-list-card:hover .blog-mini-preview,
.blog-list-card:focus-visible .blog-mini-preview {
  border-color: rgba(255, 255, 255, 0.32);
  filter: saturate(1.08) brightness(1.04);
}

.blog-list-card:hover .blog-mini-body strong,
.blog-list-card:focus-visible .blog-mini-body strong {
  color: var(--white);
}

.blog-mini-body p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 350;
  line-height: 1.36;
}

.blog-more-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.blog-more-card {
  display: grid;
  grid-template-columns: minmax(210px, 320px) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  transition:
    border-color 220ms ease,
    color 220ms ease;
}

.blog-more-card:last-child {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-soft);
}

.blog-more-preview {
  min-height: 150px;
}

.blog-more-preview strong {
  font-size: clamp(38px, 4vw, 64px);
}

.blog-more-card:hover,
.blog-more-card:focus-visible {
  border-color: rgba(255, 255, 255, 0.22);
}

.blog-more-card:hover .blog-mini-preview,
.blog-more-card:focus-visible .blog-mini-preview {
  border-color: rgba(255, 255, 255, 0.32);
  filter: saturate(1.08) brightness(1.04);
}

.blog-more-card:hover .blog-mini-body strong,
.blog-more-card:focus-visible .blog-mini-body strong {
  color: var(--white);
}

.products-main {
  min-height: 100vh;
}

.products-page {
  display: grid;
  gap: clamp(44px, 6vw, 72px);
  padding-top: clamp(86px, 7vw, 108px);
}

.products-head {
  display: grid;
  gap: 18px;
  max-width: 820px;
}

.products-head .eyebrow {
  margin: 0;
}

.products-head h1 {
  max-width: none;
  margin: 0;
  color: var(--white);
  font-size: clamp(54px, 7vw, 96px);
  font-weight: 600;
  line-height: 0.92;
}

.products-head p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 350;
  line-height: 1.38;
}

.products-layout {
  display: grid;
  grid-template-columns: minmax(180px, 230px) minmax(0, 1fr);
  gap: clamp(30px, 4vw, 58px);
  align-items: start;
}

.product-filter-panel {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 18px;
  align-self: start;
}

.product-filter-panel h2 {
  margin: 0;
  color: var(--white);
  font-family: "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 650;
  line-height: 1;
}

.product-filter-list {
  display: grid;
  gap: 8px;
}

.product-filter-list button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid var(--line-soft);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  cursor: pointer;
  font-family: "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 650;
  line-height: 1;
  transition:
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease;
}

.product-filter-list button::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.32;
}

.product-filter-list button:hover,
.product-filter-list button:focus-visible,
.product-filter-list button.is-active {
  border-color: rgba(255, 255, 255, 0.82);
  background: #f4f4f4;
  color: #050505;
}

.product-folder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.folder-card {
  min-width: 0;
}

.folder-card a {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 420px;
  color: inherit;
  text-decoration: none;
}

.folder-cover {
  position: relative;
  display: grid;
  align-content: start;
  gap: 42px;
  min-height: 176px;
  padding: 20px 22px 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: #111;
}

.folder-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.16) 1px, transparent 1px);
  background-size: 18px 18px;
}

.folder-cover::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -58px;
  width: 138px;
  height: 138px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.folder-cover span,
.folder-cover strong {
  position: relative;
  z-index: 1;
}

.folder-cover span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.folder-cover strong {
  align-self: start;
  color: var(--white);
  font-family: "Oswald", "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(42px, 3.6vw, 62px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.82;
  text-transform: uppercase;
}

.folder-body {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: space-between;
  gap: 28px;
  min-height: 286px;
  margin-top: -42px;
  padding: 30px 24px 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 0 8px 8px 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    #151516;
  transition:
    border-color 240ms ease,
    background 240ms ease,
    transform 260ms var(--ease-smooth);
}

.folder-body::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 46%;
  height: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 0 8px 0 0;
  background: #151516;
  transform: translateY(-100%);
}

.folder-index {
  display: block;
  margin-bottom: 18px;
  color: var(--quiet);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.folder-body h2 {
  max-width: 340px;
  margin: 0 0 14px;
  color: var(--white);
  font-family: "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.05;
}

.folder-body p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 350;
  line-height: 1.38;
}

.folder-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.folder-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.folder-card a:hover .folder-body,
.folder-card a:focus-visible .folder-body,
.folder-card a:hover .folder-cover,
.folder-card a:focus-visible .folder-cover {
  border-color: rgba(255, 255, 255, 0.28);
}

.folder-card a:hover .folder-body,
.folder-card a:focus-visible .folder-body {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.026)),
    #181819;
}

.folder-card-blue .folder-cover {
  background: linear-gradient(135deg, #075dff 0%, #0047da 56%, #002462 100%);
}

.folder-card-green .folder-cover {
  background: linear-gradient(135deg, #00bd46 0%, #008f35 54%, #033916 100%);
}

.folder-card-violet .folder-cover {
  background: linear-gradient(135deg, #3722ff 0%, #27147a 55%, #080611 100%);
}

.folder-card-orange .folder-cover {
  background: linear-gradient(135deg, #ff3b12 0%, #ff8a1f 54%, #2a0802 100%);
}

.folder-card-dark .folder-cover {
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 138, 31, 0.42), transparent 26%),
    linear-gradient(135deg, #19191b 0%, #050505 60%, #160806 100%);
}

.portfolio-page {
  display: grid;
  grid-template-columns: minmax(190px, 240px) minmax(0, 1fr);
  gap: clamp(32px, 4.4vw, 64px);
  align-items: start;
  padding-top: clamp(86px, 7vw, 108px);
}

.case-filter-panel {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 12px;
  align-self: start;
}

.case-filter-panel h1 {
  margin: 0 0 10px;
  color: var(--white);
  font-family: "Oswald", "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.88;
}

.case-filter-panel p {
  max-width: 230px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 350;
  line-height: 1.34;
}

.case-filter-list {
  display: grid;
  gap: 8px;
}

.product-search {
  width: 100%;
  margin-bottom: 4px;
}

.case-filter-list button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid var(--line-soft);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  cursor: pointer;
  font-family: "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 650;
  line-height: 1;
  transition:
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease;
}

.case-filter-list button::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.32;
}

.case-filter-list button:hover,
.case-filter-list button:focus-visible,
.case-filter-list button.is-active {
  border-color: rgba(255, 255, 255, 0.82);
  background: #f4f4f4;
  color: #050505;
}

.case-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.portfolio-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  min-height: 430px;
}

.portfolio-card[data-detail-url] {
  cursor: pointer;
}

.portfolio-card[data-detail-url]:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.72);
  outline-offset: 4px;
}

.portfolio-card[hidden] {
  display: none;
}

.case-cover {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 164px;
  padding: 20px 22px 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: #111;
  transition:
    border-color 240ms ease,
    filter 260ms ease;
}

.case-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.23;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18) 1px, transparent 1px);
  background-size: 18px 18px;
}

.case-cover::after {
  content: "";
  position: absolute;
  right: -52px;
  bottom: -66px;
  width: 152px;
  height: 152px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.case-cover span,
.case-cover strong {
  position: relative;
  z-index: 1;
}

.case-cover span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.case-cover strong {
  color: var(--white);
  font-family: "Oswald", "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(42px, 3.5vw, 62px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.82;
  text-transform: uppercase;
}

.case-body {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 266px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 0 0 8px 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    #151516;
  transition:
    border-color 240ms ease,
    background 240ms ease;
}

.case-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

.case-index {
  color: var(--quiet);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.case-status {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 650;
  line-height: 1;
  white-space: nowrap;
}

.case-body h2 {
  margin: 0;
  color: var(--white);
  font-family: "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(21px, 1.55vw, 26px);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.04;
}

.case-body p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 350;
  line-height: 1.38;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
}

.case-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  line-height: 1;
  text-transform: uppercase;
}

.case-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 36px;
  margin-top: 2px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition:
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease;
}

.case-link:hover,
.case-link:focus-visible {
  border-color: rgba(255, 255, 255, 0.82);
  background: #f4f4f4;
  color: #050505;
}

.portfolio-card:hover .case-cover,
.portfolio-card:focus-within .case-cover,
.portfolio-card:hover .case-body,
.portfolio-card:focus-within .case-body {
  border-color: rgba(255, 255, 255, 0.26);
}

.portfolio-card:hover .case-body,
.portfolio-card:focus-within .case-body {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.026)),
    #181819;
}

.portfolio-card:hover .case-cover,
.portfolio-card:focus-within .case-cover {
  filter: saturate(1.06) brightness(1.04);
}

.case-card-coral .case-cover {
  background: linear-gradient(135deg, #ff2f1f 0%, #ff7a1a 54%, #311009 100%);
}

.case-card-blue .case-cover {
  background: linear-gradient(135deg, #075dff 0%, #0047da 56%, #001a54 100%);
}

.case-card-amber .case-cover {
  background: linear-gradient(135deg, #ffb21f 0%, #ff6b12 56%, #241006 100%);
}

.case-card-slate .case-cover {
  background:
    radial-gradient(circle at 74% 18%, rgba(255, 138, 31, 0.34), transparent 27%),
    linear-gradient(135deg, #222326 0%, #0a0a0b 62%, #150604 100%);
}

.case-card-green .case-cover {
  background: linear-gradient(135deg, #00bd46 0%, #008b35 54%, #032b12 100%);
}

.case-card-violet .case-cover {
  background: linear-gradient(135deg, #4d31ff 0%, #27147a 56%, #090512 100%);
}

.product-detail-main {
  min-height: 100vh;
}

.product-detail-hero,
.detail-facts,
.detail-section,
.detail-workflow,
.security-band,
.detail-cta {
  width: min(100% - var(--page-gutter), var(--page-max));
  margin: 0 auto;
}

.product-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.82fr);
  gap: clamp(44px, 7vw, 110px);
  align-items: center;
  min-height: min(820px, 100vh);
  padding-top: clamp(98px, 8vw, 124px);
}

.detail-hero-copy {
  display: grid;
  align-content: center;
  justify-items: start;
}

.detail-back {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: clamp(22px, 3vw, 34px);
  padding: 0 13px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition:
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease;
}

.detail-back:hover,
.detail-back:focus-visible {
  border-color: rgba(255, 255, 255, 0.72);
  background: #f4f4f4;
  color: #050505;
}

.detail-kicker {
  margin: 0 0 16px;
  color: var(--quiet);
  font-family: "Oswald", "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.detail-hero-copy h1 {
  max-width: 780px;
  margin: 0;
  color: var(--white);
  font-family: "Oswald", "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(56px, 6.2vw, 100px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.86;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.detail-lead {
  max-width: 680px;
  margin: clamp(26px, 4vw, 44px) 0 0;
  color: var(--muted);
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 350;
  line-height: 1.32;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(34px, 4.8vw, 56px);
}

.detail-hero-visual {
  position: relative;
  display: grid;
  gap: 18px;
  min-height: clamp(480px, 48vw, 660px);
  padding: clamp(22px, 3vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 24%, rgba(255, 138, 31, 0.34), transparent 24%),
    linear-gradient(135deg, rgba(255, 47, 31, 0.96) 0%, rgba(255, 138, 31, 0.8) 42%, rgba(13, 13, 14, 0.96) 100%);
  box-shadow: 0 28px 90px rgba(255, 58, 18, 0.08);
}

.detail-hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.22) 1px, transparent 1px);
  background-size: 20px 20px;
}

.detail-hero-visual::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -120px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.doc-visual-header,
.doc-visual-grid {
  position: relative;
  z-index: 1;
}

.doc-visual-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.doc-visual-header span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.doc-visual-header strong {
  color: var(--white);
  font-family: "Oswald", "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(58px, 5.6vw, 92px);
  font-weight: 700;
  line-height: 0.86;
}

.doc-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-self: end;
}

.doc-panel {
  min-height: 170px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.022)),
    rgba(12, 12, 13, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.doc-panel-main {
  grid-column: 1 / -1;
  min-height: 220px;
}

.doc-panel span {
  display: block;
  margin-bottom: 18px;
  color: var(--quiet);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.doc-panel strong {
  display: block;
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 650;
  line-height: 1.05;
}

.doc-panel p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 350;
  line-height: 1.38;
}

.detail-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--line-soft);
}

.detail-facts article {
  min-height: 170px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    #0b0b0c;
}

.detail-facts span,
.workflow-steps span {
  display: block;
  margin-bottom: 22px;
  color: var(--quiet);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.detail-facts strong {
  display: block;
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 650;
  line-height: 1;
}

.detail-facts p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 350;
  line-height: 1.34;
}

.detail-section,
.detail-workflow,
.security-band,
.detail-cta {
  padding-top: clamp(96px, 12vw, 152px);
}

.detail-section-head {
  display: grid;
  gap: 20px;
  max-width: 920px;
  margin-bottom: clamp(34px, 5vw, 62px);
}

.detail-section-head h2,
.workflow-copy h2,
.security-band h2,
.detail-cta h2 {
  margin: 0;
  color: var(--white);
  font-family: "Oswald", "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(46px, 6.8vw, 92px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.94;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--line-soft);
}

.capability-grid article {
  min-height: 300px;
  padding: clamp(24px, 3vw, 36px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.014)),
    #0d0d0e;
}

.capability-grid span {
  display: block;
  margin-bottom: clamp(60px, 8vw, 110px);
  color: var(--quiet);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.capability-grid h3,
.security-list h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: clamp(23px, 2vw, 30px);
  font-weight: 650;
  line-height: 1.05;
}

.capability-grid p,
.security-list p,
.workflow-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 350;
  line-height: 1.42;
}

.detail-workflow {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 0.86fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: stretch;
}

.workflow-visual {
  min-height: 560px;
}

.workflow-gradient-card {
  position: sticky;
  top: 112px;
  display: grid;
  align-content: space-between;
  min-height: 560px;
  padding: clamp(24px, 3vw, 36px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    radial-gradient(circle at 74% 20%, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(135deg, #ff2f1f 0%, #ff8a1f 52%, #190604 100%);
}

.workflow-gradient-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.2) 1px, transparent 1px);
  background-size: 20px 20px;
}

.workflow-gradient-card span,
.workflow-gradient-card strong {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.workflow-gradient-card span {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.workflow-gradient-card strong {
  font-family: "Oswald", "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(72px, 9vw, 132px);
  font-weight: 700;
  line-height: 0.82;
}

.workflow-copy {
  display: grid;
  align-content: center;
}

.workflow-steps {
  display: grid;
  gap: 1px;
  margin-top: clamp(34px, 5vw, 58px);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--line-soft);
}

.workflow-steps article {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 20px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.014)),
    #0d0d0e;
}

.interface-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(0, 0.78fr);
  gap: 22px;
}

.interface-card {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 300px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    radial-gradient(circle at 84% 28%, rgba(255, 138, 31, 0.34), transparent 28%),
    linear-gradient(135deg, #161618 0%, #070707 58%, #260a03 100%);
}

.interface-card-wide {
  grid-row: span 2;
  min-height: 622px;
  background:
    radial-gradient(circle at 74% 26%, rgba(255, 255, 255, 0.16), transparent 26%),
    linear-gradient(135deg, #ff2f1f 0%, #ff8a1f 50%, #150604 100%);
}

.interface-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.22) 1px, transparent 1px);
  background-size: 18px 18px;
}

.interface-card span,
.interface-card strong {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.interface-card span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.interface-card strong {
  align-self: end;
  font-family: "Oswald", "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(44px, 5vw, 78px);
  font-weight: 700;
  line-height: 0.84;
  text-transform: uppercase;
}

.security-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 0.78fr);
  gap: clamp(34px, 6vw, 86px);
}

.security-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--line-soft);
}

.security-list article {
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.014)),
    #0d0d0e;
}

.detail-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  padding-bottom: clamp(90px, 11vw, 150px);
}

.detail-cta h2 {
  max-width: 880px;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.72fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
  padding-top: clamp(92px, 12vw, 150px);
}

.faq-copy {
  position: sticky;
  top: 120px;
}

.faq-copy h2 {
  max-width: 420px;
  margin: 0 0 28px;
  color: var(--white);
  font-family: "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(54px, 6.6vw, 86px);
  font-weight: 350;
  letter-spacing: 0;
  line-height: 0.95;
}

.faq-copy p {
  max-width: 320px;
  margin: 0;
  color: var(--muted);
  font-size: 22px;
  font-weight: 350;
  line-height: 1.28;
}

.faq-copy a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  transition:
    border-color 220ms ease,
    color 220ms ease;
}

.faq-copy a:hover,
.faq-copy a:focus-visible {
  color: var(--white);
  border-color: var(--white);
}

.faq-list {
  display: grid;
}

.faq-item {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 92px;
  padding: 26px 54px 26px 0;
  color: var(--white);
  cursor: pointer;
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 550;
  line-height: 1.1;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  width: 12px;
  height: 12px;
  border-right: 2px solid rgba(255, 255, 255, 0.78);
  border-bottom: 2px solid rgba(255, 255, 255, 0.78);
  transform: translateY(-65%) rotate(45deg);
  transition:
    border-color 220ms ease,
    transform 220ms ease;
}

.faq-item[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
}

.faq-item summary:hover::after,
.faq-item summary:focus-visible::after {
  border-color: var(--white);
}

.faq-item summary:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.5);
  outline-offset: -4px;
}

.faq-item p {
  max-width: 720px;
  margin: -8px 0 28px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 350;
  line-height: 1.44;
}

.cta-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) auto;
  gap: 32px;
  align-items: end;
  overflow: hidden;
  margin-top: clamp(92px, 12vw, 150px);
  padding: clamp(36px, 6vw, 64px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f4f4f4;
  color: #050505;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--heat-gradient);
}

.cta-section .eyebrow,
.cta-section p {
  color: rgba(0, 0, 0, 0.56);
}

.cta-copy h2 {
  max-width: 780px;
  margin-bottom: 20px;
  color: #050505;
}

.cta-copy p {
  max-width: 620px;
  margin-bottom: 0;
  font-size: 20px;
}

.cta-section .secondary-action {
  border-color: rgba(0, 0, 0, 0.16);
  color: rgba(0, 0, 0, 0.68);
}

.cta-section .secondary-action:hover,
.cta-section .secondary-action:focus-visible {
  border-color: rgba(0, 0, 0, 0.42);
  color: #050505;
}

.site-footer {
  width: 100%;
  margin-top: clamp(110px, 14vw, 180px);
  padding: 0 0 clamp(34px, 5vw, 58px);
  overflow: hidden;
  background: var(--black);
}

.footer-mark {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: min(100% - var(--page-gutter), var(--footer-max));
  height: clamp(210px, 27vw, 390px);
  margin: 0 auto;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-mark::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), var(--black));
  pointer-events: none;
}

.footer-mark img {
  display: block;
  width: min(92vw, 1540px);
  max-width: none;
  height: auto;
  opacity: 0.075;
  transform: translateY(21%) translateX(-1.5%);
}

.footer-grid,
.footer-bottom {
  width: min(100% - var(--page-gutter), var(--footer-max));
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(230px, 1.35fr) repeat(3, minmax(130px, 1fr));
  gap: clamp(34px, 6vw, 92px);
  padding-top: clamp(54px, 8vw, 86px);
}

.footer-contact p,
.footer-contact a,
.footer-column a,
.footer-bottom p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 16px;
  font-weight: 350;
  line-height: 1.35;
  text-decoration: none;
}

.footer-contact p {
  max-width: 220px;
  margin: 0 0 12px;
}

.footer-contact > a {
  display: inline-flex;
  margin-bottom: 34px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.62);
  transition:
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease;
}

.footer-socials svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-socials svg path:first-child {
  fill: currentColor;
  fill-opacity: 0.06;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 18px;
}

.footer-column h2 {
  margin: 0 0 18px;
  color: var(--white);
  font-family: "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 17px;
  font-weight: 550;
  line-height: 1;
}

.footer-column a,
.footer-contact a {
  transition: color 220ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible,
.footer-socials a:hover,
.footer-socials a:focus-visible {
  color: var(--white);
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.06);
}

.footer-bottom {
  padding-top: clamp(42px, 7vw, 74px);
}

.footer-bottom p {
  margin: 0;
  color: var(--quiet);
  font-size: 14px;
}

@media (max-width: 1020px) {
  .hero-section,
  .feature-band,
  .faq-section,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .hero-section {
    height: auto;
    min-height: 100svh;
    padding-top: 126px;
    padding-bottom: 70px;
  }

  .hero-copy {
    transform: none;
  }

  .hero-visual {
    height: auto;
    min-height: 380px;
  }

  .signal-core {
    width: clamp(330px, 60vw, 500px);
  }

  .product-grid,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-showcase {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-stage,
  .process-panel {
    min-height: 500px;
  }

  .section-heading {
    display: block;
  }

  .section-heading h2 {
    margin-bottom: 18px;
  }

  .cta-actions {
    align-self: start;
  }

  .case-browser {
    max-width: 680px;
  }

  .news-layout {
    grid-template-columns: 1fr;
  }

  .news-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .news-rail-link {
    grid-template-columns: 1fr;
  }

  .faq-section {
    gap: 44px;
  }

  .products-layout {
    grid-template-columns: 1fr;
  }

  .portfolio-page {
    grid-template-columns: 1fr;
  }

  .product-filter-panel {
    position: static;
  }

  .case-filter-panel {
    position: static;
  }

  .product-filter-list {
    display: flex;
    flex-wrap: wrap;
  }

  .case-filter-list {
    display: flex;
    flex-wrap: wrap;
  }

  .product-folder-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-detail-hero,
  .detail-workflow,
  .security-band,
  .detail-cta {
    grid-template-columns: 1fr;
  }

  .detail-facts,
  .capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workflow-gradient-card {
    position: relative;
    top: auto;
    min-height: 420px;
  }

  .faq-copy {
    position: static;
  }

  .faq-copy h2 {
    max-width: 640px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .site-header {
    padding: 12px clamp(14px, 4vw, 28px) 10px;
  }

  .navbar {
    grid-template-columns: minmax(78px, 1fr) 52px minmax(120px, 1fr);
    height: 48px;
  }

  .brand {
    width: 82px;
    min-width: 82px;
  }

  .nav-center {
    display: none;
  }

  .project-button {
    min-width: 128px;
    height: 36px;
    padding: 0 16px;
    font-size: 12px;
  }

  .mobile-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 4vw, 28px);
    width: min(100%, 520px);
    margin: 10px auto 0;
    padding: 0 4px;
  }

  .hero-section,
  .intro-band,
  .info-strip,
  .section-block,
  .feature-band,
  .method-section,
  .insights-section,
  .blog-page,
  .products-page,
  .portfolio-page,
  .product-detail-hero,
  .detail-facts,
  .detail-section,
  .detail-workflow,
  .security-band,
  .detail-cta,
  .faq-section,
  .cta-section {
    width: min(100% - var(--page-gutter-mobile), var(--page-max));
  }

  .footer-mark,
  .footer-grid,
  .footer-bottom {
    width: min(100% - var(--page-gutter-mobile), var(--footer-max));
  }

  .intro-band,
  .info-strip,
  .insight-row {
    grid-template-columns: 1fr;
  }

  .blog-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .blog-tools {
    justify-content: flex-start;
    padding-bottom: 0;
  }

  .blog-control-row {
    flex-direction: column;
    align-items: stretch;
  }

  .blog-featured {
    grid-template-columns: 1fr;
  }

  .product-detail-hero {
    min-height: auto;
    padding-top: 126px;
  }

  .detail-hero-visual {
    min-height: 430px;
  }

  .doc-visual-grid,
  .interface-grid {
    grid-template-columns: 1fr;
  }

  .interface-card-wide {
    grid-row: auto;
    min-height: 390px;
  }

  .news-rail {
    grid-template-columns: 1fr;
  }

  .news-rail-link {
    grid-template-columns: minmax(150px, 0.42fr) minmax(0, 0.58fr);
  }

  .blog-poster {
    min-height: clamp(260px, 54vw, 390px);
  }

  .blog-latest {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-page {
    padding-top: 118px;
  }

  .info-strip {
    gap: 38px;
  }

  .decision-section {
    min-height: auto;
    padding: 42px 24px 34px;
  }

  .decision-head {
    display: block;
    max-width: none;
    margin: 0;
    text-align: left;
  }

  .decision-head p:not(.eyebrow) {
    margin-right: 0;
    margin-left: 0;
  }

  .decision-cards {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 38px;
  }

  .decision-card {
    min-height: auto;
  }

  .decision-conclusion {
    justify-content: flex-start;
    width: 100%;
    text-align: left;
  }

}

@media (max-width: 560px) {
  .navbar {
    grid-template-columns: minmax(68px, 1fr) 48px minmax(112px, 1fr);
  }

  .brand {
    width: 70px;
    min-width: 70px;
  }

  .project-button {
    min-width: 112px;
    padding: 0 12px;
    font-size: 13px;
  }

  .mobile-links {
    justify-content: space-between;
    gap: 0;
  }

  .mobile-links .nav-link {
    font-size: 12px;
  }

  h1 {
    font-size: clamp(40px, 11.5vw, 56px);
  }

  .hero-lead,
  .feature-copy p,
  .cta-copy p {
    font-size: 18px;
  }

  .hero-visual {
    display: grid;
    min-height: 310px;
    padding: 10px 0 0;
  }

  .signal-core {
    justify-self: center;
    width: min(82vw, 320px);
  }

  .product-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .process-showcase {
    gap: 12px;
    padding: 10px;
    margin-top: 30px;
  }

  .process-list {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .process-list::-webkit-scrollbar {
    display: none;
  }

  .process-card {
    flex: 0 0 250px;
    min-height: 148px;
    padding: 20px 22px 20px 24px;
  }

  .process-card:hover,
  .process-card:focus-visible,
  .process-card.is-active {
    transform: none;
  }

  .process-card strong {
    font-size: 22px;
  }

  .process-card small {
    font-size: 15px;
  }

  .process-stage,
  .process-panel {
    min-height: auto;
  }

  .process-panel {
    grid-template-rows: minmax(270px, auto) auto;
  }

  .process-visual {
    min-height: 270px;
  }

  .process-mini-card {
    right: 16px;
    bottom: 16px;
    min-width: 132px;
    padding: 14px;
  }

  .process-mini-card strong {
    font-size: 22px;
  }

  .process-grid-dots {
    left: 28px;
    grid-template-columns: repeat(3, 38px);
    gap: 12px;
  }

  .process-screen {
    inset: 34px 20px 84px;
  }

  .process-nodes {
    inset: 46px 24px 82px;
  }

  .process-nodes span {
    width: 54px;
    height: 54px;
  }

  .process-copy {
    padding: 24px 22px 26px;
  }

  .process-copy h3 {
    font-size: clamp(30px, 10vw, 38px);
  }

  .process-copy p {
    font-size: 16px;
  }

  .product-card,
  .timeline li,
  .intro-item {
    min-height: auto;
  }

  .info-strip {
    margin-top: 70px;
  }

  .info-strip h2 {
    margin-bottom: 18px;
    padding-bottom: 18px;
    font-size: 22px;
  }

  .info-strip p {
    font-size: 18px;
  }

  .decision-section {
    padding: 34px 18px 28px;
    border-radius: 24px;
  }

  .decision-head h2 {
    font-size: clamp(44px, 13vw, 56px);
  }

  .decision-head p:not(.eyebrow) {
    font-size: 17px;
  }

  .decision-card {
    padding: 24px 22px;
    border-radius: 20px;
  }

  .decision-number {
    top: 22px;
    right: 22px;
  }

  .decision-kicker {
    margin-bottom: 26px;
  }

  .decision-card h3 {
    font-size: clamp(30px, 10vw, 40px);
  }

  .decision-card p,
  .decision-conclusion p {
    font-size: 16px;
  }

  .intro-item h2,
  .section-heading h2,
  .feature-copy h2,
  .method-section h2,
  .cta-copy h2 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .case-stack article,
  .product-card,
  .timeline li,
  .intro-item,
  .insight-row a {
    padding: 22px;
  }

  .blog-section {
    gap: 26px;
  }

  .blog-head h1,
  .blog-head h2 {
    font-size: clamp(70px, 24vw, 104px);
  }

  .blog-tools,
  .blog-search,
  .blog-subscribe {
    width: 100%;
  }

  .blog-tools {
    flex-wrap: wrap;
  }

  .blog-search {
    max-width: none;
  }

  .blog-filters {
    gap: 8px;
  }

  .blog-filters a {
    min-height: 36px;
    padding: 0 14px;
    font-size: 14px;
  }

  .blog-poster {
    min-height: 230px;
  }

  .poster-label {
    top: 22px;
    left: 20px;
    font-size: 11px;
  }

  .poster-word {
    top: 34%;
    left: 8%;
    font-size: clamp(54px, 18vw, 74px);
  }

  .poster-stamp {
    right: 20px;
    bottom: 20px;
  }

  .blog-card-body h3 {
    font-size: 24px;
  }

  .blog-latest {
    grid-template-columns: 1fr;
  }

  .blog-mini-preview {
    min-height: 210px;
  }

  .products-page {
    padding-top: 104px;
  }

  .portfolio-page {
    padding-top: 104px;
  }

  .products-head h1 {
    font-size: clamp(48px, 15vw, 68px);
  }

  .product-folder-grid {
    grid-template-columns: 1fr;
  }

  .case-card-grid {
    grid-template-columns: 1fr;
  }

  .detail-facts,
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .detail-actions {
    width: 100%;
  }

  .detail-actions .primary-action,
  .detail-actions .secondary-action {
    flex: 1 1 100%;
  }

  .doc-panel {
    min-height: 142px;
  }

  .workflow-visual,
  .workflow-gradient-card {
    min-height: 330px;
  }

  .workflow-steps article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .folder-card a {
    min-height: auto;
  }

  .folder-cover {
    min-height: 128px;
  }

  .folder-body {
    min-height: 250px;
    padding: 26px 22px 22px;
  }

  .news-main-preview {
    min-height: 300px;
  }

  .news-rail-link,
  .blog-more-card {
    grid-template-columns: 1fr;
  }

  .news-rail-preview,
  .blog-more-preview {
    min-height: 190px;
  }

  .cta-section {
    padding: 28px 22px;
  }

  .faq-section {
    padding-top: 82px;
  }

  .faq-copy h2 {
    margin-bottom: 20px;
    font-size: clamp(46px, 13vw, 58px);
  }

  .faq-copy p {
    font-size: 18px;
  }

  .faq-item summary {
    min-height: 76px;
    padding: 22px 38px 22px 0;
    font-size: 22px;
  }

  .faq-item summary::after {
    right: 4px;
    width: 10px;
    height: 10px;
  }

  .faq-item p {
    margin-bottom: 24px;
    font-size: 16px;
  }

  .case-tabs {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .case-tabs::-webkit-scrollbar {
    display: none;
  }

  .case-tab {
    flex: 0 0 auto;
    min-width: 96px;
    height: 40px;
    padding: 0 16px;
    font-size: 15px;
  }

  .case-pages,
  .case-panel {
    min-height: 390px;
  }

  .case-panel {
    padding: 26px 22px;
  }

  .footer-mark {
    height: 180px;
  }

  .footer-mark img {
    width: 126vw;
    transform: translateY(18%) translateX(-3%);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 38px;
  }

  .footer-contact > a {
    margin-bottom: 24px;
  }

  .footer-column {
    gap: 14px;
  }

  .footer-column h2 {
    margin-bottom: 8px;
  }

  .footer-bottom {
    padding-top: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
}
