@font-face {
  font-family: "Tenion Sans";
  src: url("/fonts/DejaVuSans.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Tenion Sans";
  src: url("/fonts/DejaVuSans-Bold.woff") format("woff");
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
}

:root {
  --bg: #f4f5f7;
  --surface: #ffffff;
  --surface-soft: #eceef2;
  --text: #15171b;
  --muted: #666b75;
  --dim: #9096a1;
  --line: rgba(21, 23, 27, 0.12);
  --line-strong: rgba(21, 23, 27, 0.22);
  --dark: #15171b;
  --dark-soft: #202329;
  --accent: #d92b52;
  --accent-warm: #ef603b;
  --success: #2c8b69;
  --font: "Tenion Sans", Arial, sans-serif;
  --container: 1240px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --section-space: 132px;
  --shadow: 0 30px 80px rgba(24, 30, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  background: var(--bg);
}

body {
  margin: 0;
  background:
    linear-gradient(135deg, transparent 0 49%, rgba(22, 25, 31, 0.014) 49% 50%, transparent 50% 100%),
    var(--bg);
  background-size: 720px 720px;
  color: var(--text);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
input,
textarea {
  font: inherit;
}

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

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

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

h1,
h2,
h3 {
  letter-spacing: -0.045em;
}

h1 {
  max-width: 880px;
  margin-bottom: 28px;
  font-size: clamp(48px, 6.2vw, 92px);
  font-weight: 500;
  line-height: 0.99;
}

h1 em {
  display: block;
  background: linear-gradient(100deg, var(--accent) 0%, var(--accent-warm) 75%);
  background-clip: text;
  color: transparent;
  font-style: normal;
}

h1 > span {
  display: block;
}

.product-term {
  color: var(--text);
  font-weight: 800;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 500;
  line-height: 1.04;
}

h3 {
  font-size: clamp(27px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.08;
}

p {
  line-height: 1.68;
}

.container {
  width: min(var(--container), calc(100% - 56px));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
  border-top: 1px solid var(--line);
}

.section-label {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-label-light {
  color: #ef9aaa;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  padding-block: 18px;
  transition: padding 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  padding-block: 10px;
  border-bottom: 1px solid rgba(21, 23, 27, 0.08);
  background: rgba(244, 245, 247, 0.86);
  box-shadow: 0 12px 32px rgba(25, 28, 34, 0.05);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.brand-mark {
  position: relative;
  display: inline-flex;
  width: 27px;
  height: 24px;
  align-items: flex-start;
  gap: 3px;
}

.brand-mark i {
  display: block;
  width: 7px;
  border-radius: 2px;
  background: var(--text);
  transform: skewX(-16deg);
}

.brand-mark i:nth-child(1) { height: 24px; }
.brand-mark i:nth-child(2) { height: 17px; }
.brand-mark i:nth-child(3) { height: 10px; background: var(--accent); }

.brand-name {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.brand-product {
  padding-left: 10px;
  border-left: 1px solid var(--line-strong);
  color: var(--muted);
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  margin-left: auto;
  gap: 26px;
  color: var(--muted);
  font-size: 13px;
}

.desktop-nav a,
.header-action {
  transition: color 160ms ease;
}

.desktop-nav a:hover {
  color: var(--accent);
}

.header-action {
  display: inline-flex;
  min-height: 42px;
  padding: 0 16px;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  background: var(--dark);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.header-action:hover {
  background: var(--accent);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 174px 0 112px;
  overflow: hidden;
}

.hero h1 {
  font-size: clamp(44px, 4.7vw, 68px);
}

.hero::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 28%, rgba(218, 43, 82, 0.09), transparent 30%);
  content: "";
  pointer-events: none;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(217, 43, 82, 0.13);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  top: 2%;
  right: -15%;
  width: 54vw;
  height: 54vw;
}

.orbit-two {
  top: 18%;
  right: -4%;
  width: 30vw;
  height: 30vw;
  border-color: rgba(239, 96, 59, 0.16);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(410px, 0.76fr);
  gap: 70px;
  align-items: center;
}

.kicker {
  display: flex;
  margin-bottom: 28px;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.kicker span,
.access-note span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(217, 43, 82, 0.1);
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 19px;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-primary {
  background: var(--dark);
  color: #fff;
  box-shadow: 0 12px 34px rgba(21, 23, 27, 0.16);
}

.button-primary:hover {
  background: var(--accent);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.54);
}

.button-secondary:hover {
  border-color: var(--text);
  background: var(--surface);
}

.access-note {
  display: flex;
  margin: 24px 0 0;
  align-items: center;
  gap: 10px;
  color: var(--dim);
  font-size: 12px;
}

.access-note span {
  width: 6px;
  height: 6px;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(44, 139, 105, 0.1);
}

.hero-platforms {
  display: flex;
  margin-top: 34px;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-platforms span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 510px;
  place-items: center;
}

.hero-logo {
  display: block;
  width: min(100%, 460px);
  height: auto;
  filter: drop-shadow(0 34px 44px rgba(22, 28, 39, 0.14));
}

.visual-window,
.video-shell {
  overflow: hidden;
  border: 1px solid rgba(17, 19, 24, 0.13);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.visual-window {
  transform: perspective(1300px) rotateY(-5deg) rotateX(2deg);
}

.window-bar,
.video-topbar {
  display: flex;
  height: 42px;
  padding: 0 16px;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid var(--line);
  background: #fafbfc;
}

.window-bar span,
.video-topbar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c9cdd4;
}

.window-bar span:nth-child(1),
.video-topbar span:nth-child(1) { background: #e36f7e; }
.window-bar span:nth-child(2),
.video-topbar span:nth-child(2) { background: #e4b35f; }
.window-bar span:nth-child(3),
.video-topbar span:nth-child(3) { background: #69b58e; }

.window-bar b,
.video-topbar b {
  margin-left: auto;
  color: var(--dim);
  font-size: 10px;
  font-weight: 600;
}

.pipeline {
  display: grid;
  min-height: 420px;
  padding: 38px;
  grid-template-columns: 1fr 46px 0.82fr;
  align-items: center;
  background:
    linear-gradient(rgba(21, 23, 27, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 23, 27, 0.035) 1px, transparent 1px),
    #f7f8fa;
  background-size: 20px 20px;
}

.pipeline-source {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
}

.pipeline-source small {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.pipeline-source strong {
  font-size: 12px;
  line-height: 1.45;
}

.data-grid {
  display: grid;
  margin-top: 22px;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}

.data-grid i {
  height: 22px;
  border: 1px solid rgba(21, 23, 27, 0.07);
  border-radius: 3px;
  background: #eceff3;
}

.data-grid i.active {
  border-color: rgba(217, 43, 82, 0.24);
  background: rgba(217, 43, 82, 0.12);
}

.pipeline-arrow {
  position: relative;
  height: 1px;
  background: var(--accent);
}

.pipeline-arrow::after {
  position: absolute;
  top: -4px;
  right: -1px;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--accent);
  border-right: 1px solid var(--accent);
  content: "";
  transform: rotate(45deg);
}

.pipeline-output {
  display: grid;
  gap: 10px;
}

.pipeline-output div {
  display: flex;
  padding: 15px;
  align-items: center;
  gap: 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
}

.pipeline-output i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--dark);
  color: #fff;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
}

.pipeline-output div:nth-child(2) i { background: var(--accent); }
.pipeline-output div:nth-child(3) i { background: var(--success); }
.pipeline-output span { font-size: 12px; font-weight: 700; }

.window-status {
  display: flex;
  min-height: 54px;
  padding: 0 18px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  font-size: 10px;
}

.window-status span { display: flex; align-items: center; gap: 8px; color: var(--muted); }
.window-status i { width: 6px; height: 6px; border-radius: 50%; background: var(--success); }
.window-status b { padding: 9px 11px; border-radius: 7px; background: var(--dark); color: #fff; }

.visual-caption {
  margin: 18px 0 0;
  color: var(--dim);
  font-size: 11px;
  text-align: center;
}

.visual-caption span { color: var(--accent); }

.case-study {
  background: var(--surface);
}

.case-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 80px;
  align-items: end;
}

.case-head h2 {
  max-width: 900px;
  margin-bottom: 0;
}

.case-time {
  display: grid;
  width: 270px;
  aspect-ratio: 1;
  padding: 32px;
  align-content: space-between;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 86% 12%, rgba(217, 43, 82, 0.28), transparent 40%),
    var(--dark);
  color: #fff;
  box-shadow: var(--shadow);
}

.case-time strong {
  font-size: clamp(62px, 7vw, 92px);
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.case-time span {
  max-width: 150px;
  color: #b7bbc2;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
}

.case-grid {
  display: grid;
  margin-top: 92px;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 88px;
  align-items: start;
}

.case-summary > p:first-child {
  color: var(--text);
  font-size: 20px;
  line-height: 1.55;
}

.case-note {
  margin-top: 36px;
  padding: 22px 0 0 22px;
  border-top: 1px solid var(--line);
  border-left: 2px solid var(--accent);
  color: var(--muted);
  font-size: 13px;
}

.deliverables {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.deliverable {
  min-height: 300px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}

.deliverable:last-child { border-right: 0; }

.deliverable > span,
.benefit-card > span {
  display: block;
  margin-bottom: 72px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
}

.deliverable h3 {
  margin-bottom: 16px;
  font-size: 25px;
}

.deliverable p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.business-value {
  background: #eef0f3;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.benefit-card {
  min-height: 360px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
}

.benefit-card h3 {
  margin-bottom: 18px;
  font-size: 25px;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.comparison {
  background: var(--surface);
}

.comparison-heading {
  max-width: 980px;
  margin-bottom: 76px;
}

.comparison-table {
  border-top: 1px solid var(--line-strong);
}

.comparison-row {
  display: grid;
  min-height: 82px;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}

.comparison-row > * {
  display: flex;
  margin: 0;
  padding: 24px 30px;
  align-items: center;
  font-size: 14px;
  line-height: 1.45;
}

.comparison-row > *:first-child {
  border-right: 1px solid var(--line);
  color: var(--muted);
}

.comparison-row strong {
  color: var(--text);
  font-weight: 700;
}

.comparison-header {
  min-height: 58px;
  background: #f5f6f8;
}

.comparison-header span {
  color: var(--dim);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.comparison-header span:last-child { color: var(--accent); }

.comparison-result {
  max-width: 850px;
  margin: 48px 0 0 auto;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.proof {
  padding-block: 108px;
  background:
    radial-gradient(circle at 86% 10%, rgba(217, 43, 82, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.025) 25%, transparent 25%) 0 0 / 22px 22px,
    var(--dark);
  color: #fff;
}

.proof-intro {
  display: grid;
  grid-template-columns: 0.7fr 2fr 1fr;
  gap: 38px;
  align-items: start;
}

.proof-intro h2 {
  margin: 0;
  font-size: clamp(38px, 4.7vw, 64px);
}

.proof-intro h2 span { color: #ef9aaa; }

.proof-intro > p:last-child {
  margin: 4px 0 0;
  color: #aeb3bd;
  font-size: 15px;
}

.metrics {
  display: grid;
  margin-top: 74px;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.metric {
  min-height: 190px;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.metric:last-child { border-right: 0; }

.metric strong {
  display: block;
  margin-bottom: 24px;
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 500;
  letter-spacing: -0.06em;
}

.metric span {
  display: block;
  max-width: 190px;
  color: #aeb3bd;
  font-size: 13px;
  line-height: 1.55;
}

.section-heading {
  display: grid;
  margin-bottom: 86px;
  grid-template-columns: 0.62fr 1.58fr 0.8fr;
  gap: 36px;
  align-items: start;
}

.section-heading h2 { margin: 0; }

.section-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.workflow-list {
  display: grid;
  gap: 0;
}

.workflow-item {
  display: grid;
  min-height: max(100svh, 960px);
  padding-block: clamp(92px, 12vh, 150px);
  grid-template-columns: minmax(0, 1fr);
  gap: 42px;
  align-content: center;
  border-bottom: 1px solid var(--line);
}

.workflow-item:first-child {
  padding-top: 24px;
}

.workflow-item:last-child {
  border-bottom: 0;
}

.workflow-copy {
  width: min(100%, 960px);
}

.workflow-meta {
  display: flex;
  margin-bottom: 28px;
  align-items: center;
  gap: 18px;
}

.workflow-meta span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
}

.workflow-meta p {
  margin: 0;
  color: var(--dim);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.workflow-copy h3 { margin-bottom: 24px; }

.workflow-copy > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
}

.workflow-result {
  display: block;
  width: min(100%, 960px);
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-size: 15px;
  line-height: 1.55;
}

.video-shell {
  width: 100%;
  border-radius: 18px;
}

.video-shell video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #edf0f4;
  object-fit: cover;
}

.standard {
  background:
    radial-gradient(circle at 12% 10%, rgba(217, 43, 82, 0.16), transparent 30%),
    var(--dark);
  color: #fff;
}

.standard-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 100px;
}

.standard-copy {
  position: sticky;
  top: 120px;
  align-self: start;
}

.standard-copy h2 {
  font-size: clamp(40px, 5vw, 64px);
}

.standard-copy > p:last-child {
  max-width: 570px;
  color: #adb2bc;
  font-size: 16px;
}

.standard-points {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.standard-points article {
  display: grid;
  min-height: 220px;
  padding: 36px 0;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.standard-points article > span {
  color: #ef9aaa;
  font-size: 10px;
  font-weight: 800;
}

.standard-points h3 {
  margin-bottom: 20px;
  font-size: 29px;
}

.standard-points p {
  margin: 0;
  color: #adb2bc;
  font-size: 14px;
}

.platform {
  background: #eef0f3;
}

.module-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.module-card {
  min-height: 310px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}

.module-card:last-child { border-right: 0; }

.module-card > span {
  display: block;
  margin-bottom: 76px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
}

.module-card h3 {
  margin-bottom: 18px;
  font-size: 25px;
}

.module-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.support-grid {
  display: grid;
  margin-top: 76px;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.support-card {
  min-height: 390px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.support-card-dark {
  background:
    radial-gradient(circle at 90% 10%, rgba(217, 43, 82, 0.26), transparent 37%),
    var(--dark);
  color: #fff;
}

.support-card h3 {
  max-width: 500px;
  margin-bottom: 76px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge-row span {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.support-card-dark .badge-row span {
  border-color: rgba(255, 255, 255, 0.2);
  color: #d6d9de;
}

.faq {
  background: var(--surface);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 110px;
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 120px;
}

.faq-heading h2 {
  font-size: clamp(40px, 4.7vw, 62px);
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 28px 54px 28px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 24px;
  right: 0;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent);
  content: "+";
  font-size: 20px;
  font-weight: 400;
}

.faq-list details[open] summary::after { content: "−"; }

.faq-list details p {
  max-width: 720px;
  margin: -5px 54px 28px 0;
  color: var(--muted);
  font-size: 14px;
}

.access {
  background: #eef0f3;
}

.access-panel {
  display: grid;
  padding: clamp(42px, 6vw, 76px);
  grid-template-columns: 1.28fr 0.72fr;
  gap: 80px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.access-panel h2 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(38px, 4.4vw, 60px);
}

.access-copy > p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.registration-form {
  display: grid;
  padding: 32px;
  gap: 18px;
  border-radius: 20px;
  background: var(--dark);
  color: #fff;
}

.registration-form-head > span {
  display: block;
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.registration-form-head p {
  margin: 0;
  color: #aeb3bd;
  font-size: 12px;
  line-height: 1.55;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field > span {
  color: #d8dbe0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  outline: none;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.form-field textarea {
  min-height: 132px;
  padding-block: 14px;
  resize: vertical;
  font: inherit;
  line-height: 1.5;
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: #747a85; }

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(239, 96, 59, 0.8);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 4px rgba(217, 43, 82, 0.14);
}

.form-field small,
.registration-note {
  color: #818792;
  font-size: 9px;
  line-height: 1.55;
}

.form-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: #aeb3bd;
  cursor: pointer;
  font-size: 10px;
  line-height: 1.55;
}

.form-consent input {
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  accent-color: var(--accent);
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.registration-submit {
  width: 100%;
  background: #fff;
  color: var(--dark);
  box-shadow: none;
}

.registration-submit:hover:not(:disabled) { background: #f4f5f7; }
.registration-submit:disabled { cursor: wait; opacity: 0.72; }

.registration-submit.is-success:disabled {
  cursor: default;
  opacity: 1;
  background: #d9eee7;
  color: #153c31;
}

.registration-submit.is-loading span {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(21, 23, 27, 0.24);
  border-top-color: var(--dark);
  border-radius: 50%;
  font-size: 0;
  animation: registration-spin 700ms linear infinite;
}

.registration-status {
  display: none;
  margin: 0;
  padding: 13px 15px;
  border-radius: 10px;
  font-size: 11px;
  line-height: 1.55;
}

.registration-status.is-error,
.registration-status.is-success { display: block; }
.registration-status.is-error { background: rgba(217, 43, 82, 0.18); color: #ffc6d2; }
.registration-status.is-success { background: rgba(44, 139, 105, 0.2); color: #bcebdc; }

.registration-links {
  display: grid;
  gap: 9px;
}

.registration-links a {
  width: fit-content;
  color: #d8dbe0;
  font-size: 11px;
  font-weight: 700;
}

.registration-links a:hover { color: #fff; }

.button-dark-link {
  color: #d8dbe0;
}

.button-dark-link:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
}

@keyframes registration-spin { to { transform: rotate(360deg); } }

body.has-contact-modal { overflow: hidden; }

.contact-modal[hidden] { display: none; }

.contact-modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 11, 14, 0.76);
  backdrop-filter: blur(8px);
}

.contact-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: var(--dark);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.contact-form { padding: 38px; }

.contact-form .registration-form-head { padding-right: 42px; }

.contact-close {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #c9cdd3;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.contact-close:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.final-cta {
  padding-block: 110px;
  background:
    radial-gradient(circle at 74% 12%, rgba(217, 43, 82, 0.22), transparent 32%),
    var(--dark);
  color: #fff;
}

.final-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

.final-inner h2 {
  margin: 0;
  font-size: clamp(38px, 4.5vw, 60px);
}

.final-inner h2 span {
  display: block;
  white-space: nowrap;
}

.final-actions {
  margin-top: 18px;
  justify-content: flex-start;
}

.button-light {
  background: #fff;
  color: var(--dark);
}

.button-dark {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: #9ea3ac;
  cursor: default;
}

.button-dark-link { cursor: pointer; }

.button-dark small {
  color: #737984;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

footer {
  padding-block: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--dark);
  color: #fff;
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 30px;
}

.footer-brand .brand-mark i { background: #fff; }
.footer-brand .brand-mark i:nth-child(3) { background: var(--accent); }

.footer-inner p {
  margin: 0 auto 0 0;
  color: #858a94;
  font-size: 11px;
}

.footer-inner > a {
  color: #b7bbc2;
  font-size: 11px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (max-width: 1050px) {
  :root { --section-space: 108px; }
  .desktop-nav { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 860px; }
  .hero-visual { min-height: 390px; }
  .hero-logo { width: min(64vw, 420px); }
  .case-head { gap: 48px; }
  .case-grid { grid-template-columns: 1fr; gap: 54px; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-intro,
  .section-heading { grid-template-columns: 0.45fr 1.55fr; }
  .proof-intro > p:last-child,
  .section-heading > p:last-child { grid-column: 2; }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .metric:nth-child(2) { border-right: 0; }
  .metric:nth-child(-n + 2) { border-bottom: 1px solid rgba(255, 255, 255, 0.15); }
  .module-track { grid-template-columns: repeat(6, 1fr); }
  .module-card { grid-column: span 2; border-bottom: 1px solid var(--line); }
  .module-card:nth-child(3) { border-right: 0; }
  .module-card:nth-child(4) { grid-column: 2 / span 2; border-bottom: 0; }
  .module-card:nth-child(5) { border-bottom: 0; }
  .standard-grid,
  .faq-grid { gap: 64px; }
  .access-panel { grid-template-columns: 1fr; gap: 42px; }
  .final-inner { grid-template-columns: 1fr; }
  .final-actions { grid-column: auto; justify-content: flex-start; }
}

@media (max-width: 820px) {
  .container { width: min(100% - 36px, var(--container)); }
  .header-action { padding-inline: 13px; font-size: 0; }
  .header-action span { font-size: 15px; }
  .hero { min-height: auto; padding: 138px 0 86px; }
  .hero-grid { gap: 62px; }
  .case-head { grid-template-columns: 1fr; }
  .case-time { width: min(100%, 270px); }
  .deliverables { grid-template-columns: 1fr; }
  .deliverable { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .deliverable:last-child { border-bottom: 0; }
  .deliverable > span { margin-bottom: 38px; }
  .visual-window { transform: none; }
  .pipeline { min-height: 340px; padding: 24px; }
  .proof-intro,
  .section-heading { display: block; }
  .proof-intro h2,
  .section-heading h2 { margin-bottom: 26px; }
  .proof-intro > p:last-child,
  .section-heading > p:last-child { max-width: 620px; }
  .workflow-list { gap: 0; }
  .workflow-item,
  .workflow-item-reverse { min-height: auto; padding-block: 96px; grid-template-columns: 1fr; gap: 36px; }
  .workflow-item:first-child { padding-top: 0; }
  .workflow-copy { max-width: 660px; }
  .standard-grid,
  .faq-grid { grid-template-columns: 1fr; }
  .standard-copy,
  .faq-heading { position: static; }
  .support-grid { grid-template-columns: 1fr; }
  .final-inner { display: block; }
  .final-inner h2 { margin-bottom: 36px; }
}

@media (max-width: 600px) {
  :root { --section-space: 82px; }
  .container { width: min(100% - 28px, var(--container)); }
  .site-header { padding-block: 12px; }
  .header-inner { min-height: 46px; }
  .brand-product { display: none; }
  .hero { padding-top: 116px; }
  .hero-grid { gap: 36px; }
  .hero-visual { min-height: 280px; }
  .hero-logo { width: min(72vw, 300px); }
  h1,
  .hero h1 { font-size: clamp(36px, 10.8vw, 44px); }
  h2 { font-size: clamp(36px, 11vw, 50px); }
  .hero-lead { font-size: 16px; }
  .hero-actions .button { width: 100%; }
  .hero-platforms { margin-top: 28px; }
  .case-grid { margin-top: 62px; }
  .case-time { aspect-ratio: auto; min-height: 220px; }
  .case-summary > p:first-child { font-size: 17px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: auto; }
  .benefit-card > span { margin-bottom: 42px; }
  .comparison-heading { margin-bottom: 52px; }
  .comparison-row { grid-template-columns: 1fr; }
  .comparison-row > * { padding: 20px 16px; }
  .comparison-row > *:first-child { border-right: 0; border-bottom: 1px dashed var(--line); }
  .comparison-header { display: none; }
  .comparison-result { margin-top: 38px; }
  .pipeline { min-height: 290px; padding: 14px; grid-template-columns: 1fr 24px 0.85fr; }
  .pipeline-source { padding: 14px; }
  .pipeline-source strong { font-size: 10px; }
  .pipeline-output div { padding: 9px; gap: 8px; }
  .pipeline-output i { width: 27px; height: 27px; font-size: 7px; }
  .pipeline-output span { font-size: 9px; }
  .window-status { display: none; }
  .proof { padding-block: 76px; }
  .metrics { margin-top: 52px; }
  .metric { min-height: 164px; padding: 22px 16px; }
  .metric strong { margin-bottom: 18px; font-size: 43px; }
  .metric span { font-size: 11px; }
  .section-heading { margin-bottom: 58px; }
  .workflow-item,
  .workflow-item-reverse { padding-block: 78px; gap: 28px; }
  .workflow-meta { margin-bottom: 22px; }
  .workflow-copy h3 { margin-bottom: 18px; }
  .workflow-result { padding-top: 20px; font-size: 13px; }
  .video-topbar { height: 34px; }
  .module-track { grid-template-columns: 1fr; }
  .module-card,
  .module-card:nth-child(4),
  .module-card:nth-child(5) { min-height: auto; padding: 25px 0; grid-column: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .module-card:last-child { border-bottom: 0; }
  .module-card > span { margin-bottom: 30px; }
  .support-grid { margin-top: 54px; }
  .support-card { min-height: 330px; padding: 28px; }
  .support-card h3 { margin-bottom: 58px; }
  .standard-points article { min-height: auto; grid-template-columns: 42px 1fr; }
  .faq-list summary { padding-right: 46px; font-size: 15px; }
  .access-panel { padding: 32px 22px; border-radius: 20px; }
  .registration-form { padding: 26px 20px; }
  .contact-modal { padding: 10px; }
  .contact-dialog { max-height: calc(100vh - 20px); }
  .contact-form { padding: 30px 20px 24px; }
  .final-cta { padding-block: 78px; }
  .final-actions .button { width: 100%; }
  .final-inner h2 span { white-space: normal; }
  .footer-inner { flex-wrap: wrap; }
  .footer-inner p { width: 100%; order: 3; }
}

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

/* Tenion product narrative v2 */

#workflow,
#foundation,
#evidence,
#paths,
#engineer,
#team,
#implementation {
  scroll-margin-top: 78px;
}

.hero-thesis {
  max-width: 680px;
  margin: -12px 0 34px;
  color: var(--text);
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.35;
}

.hero-thesis span {
  display: block;
}

.entry {
  background: var(--surface);
}

.entry-head,
.paths-head {
  display: grid;
  margin-bottom: 72px;
  grid-template-columns: 0.55fr 1.45fr 0.8fr;
  gap: 38px;
  align-items: start;
}

.entry-head h2,
.paths-head h2 {
  margin: 0;
}

.entry-head > p:last-child,
.paths-head > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.entry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.entry-card {
  position: relative;
  display: flex;
  min-height: 410px;
  padding: 30px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #f7f8fa;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.entry-card::after {
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(217, 43, 82, 0.14);
  border-radius: 50%;
  content: "";
}

.entry-card:hover {
  z-index: 1;
  border-color: var(--line-strong);
  box-shadow: 0 26px 54px rgba(24, 30, 42, 0.11);
  transform: translateY(-5px);
}

.entry-card-accent {
  background:
    radial-gradient(circle at 90% 8%, rgba(217, 43, 82, 0.12), transparent 34%),
    var(--surface);
}

.entry-card-dark {
  border-color: transparent;
  background:
    radial-gradient(circle at 90% 10%, rgba(217, 43, 82, 0.28), transparent 38%),
    var(--dark);
  color: #fff;
}

.entry-number {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 54px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
}

.entry-card-dark .entry-number {
  border-color: rgba(255, 255, 255, 0.24);
  color: #ef9aaa;
}

.entry-audience {
  margin-bottom: 15px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.entry-card-dark .entry-audience {
  color: #ef9aaa;
}

.entry-card h3 {
  margin-bottom: 18px;
  font-size: clamp(27px, 2.7vw, 37px);
}

.entry-card > p:not(.entry-audience) {
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 14px;
}

.entry-card-dark > p:not(.entry-audience) {
  color: #aeb3bd;
}

.entry-card > strong {
  position: relative;
  z-index: 1;
  display: flex;
  margin-top: auto;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}

.entry-card > strong i {
  color: var(--accent);
  font-size: 20px;
  font-style: normal;
}

.trust {
  padding-block: 82px;
  background:
    radial-gradient(circle at 87% 8%, rgba(217, 43, 82, 0.2), transparent 32%),
    var(--dark);
  color: #fff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-item {
  min-height: 170px;
  padding: 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  display: block;
  margin-bottom: 20px;
  font-size: clamp(43px, 5vw, 66px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 1;
}

.trust-item span {
  display: block;
  max-width: 205px;
  color: #b5bac3;
  font-size: 12px;
  line-height: 1.5;
}

.trust-note {
  display: flex;
  margin-top: 28px;
  align-items: baseline;
  justify-content: space-between;
  gap: 32px;
  color: #8f95a0;
  font-size: 12px;
  line-height: 1.6;
}

.trust-note p {
  max-width: 820px;
  margin: 0;
}

.trust-note a {
  flex: 0 0 auto;
  color: #fff;
  font-weight: 800;
}

.trust .product-term,
.foundation .product-term,
.path-card-dark .product-term,
.final-cta .product-term {
  color: #fff;
}

.foundation {
  background:
    radial-gradient(circle at 10% 2%, rgba(217, 43, 82, 0.17), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.018) 25%, transparent 25%) 0 0 / 24px 24px,
    var(--dark);
  color: #fff;
}

.foundation-head {
  display: grid;
  grid-template-columns: 0.55fr 1.55fr 0.8fr;
  gap: 38px;
  align-items: start;
}

.foundation-head h2 {
  margin: 0;
}

.foundation-head > p:last-child {
  margin: 0;
  color: #adb2bc;
  font-size: 15px;
}

.foundation-layers {
  display: grid;
  margin-top: 86px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.foundation-card {
  display: flex;
  min-height: 410px;
  padding: 32px;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.foundation-card:last-child {
  border-right: 0;
}

.foundation-card > span {
  margin-bottom: 70px;
  color: #ef9aaa;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.foundation-card h3 {
  margin-bottom: 22px;
  font-size: clamp(32px, 3vw, 44px);
}

.foundation-card p {
  margin-bottom: 30px;
  color: #aeb3bd;
  font-size: 14px;
}

.foundation-card strong {
  margin-top: auto;
  color: #fff;
  font-size: 11px;
  line-height: 1.5;
}

.industries {
  display: grid;
  margin-top: 62px;
  grid-template-columns: 0.55fr 2.35fr;
  gap: 40px;
}

.industries > p {
  margin: 8px 0 0;
  color: #7f8590;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-transform: uppercase;
}

.industries > div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.industries span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  color: #c1c5cc;
  font-size: 11px;
  font-weight: 700;
}

.evidence {
  background: var(--surface);
}

.heading-line {
  display: block;
  white-space: nowrap;
}

.evidence .section-heading,
#workflow .section-heading {
  grid-template-columns: 0.45fr 1.8fr 0.75fr;
}

.evidence .section-heading h2 {
  font-size: clamp(38px, 3.8vw, 52px);
}

.evidence-intro {
  position: relative;
  margin-bottom: 0;
  padding: clamp(34px, 5vw, 64px);
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  background:
    radial-gradient(circle at 88% 0%, rgba(217, 43, 82, 0.24), transparent 34%),
    var(--dark);
  color: #fff;
}

.evidence-intro::after {
  position: absolute;
  right: clamp(28px, 5vw, 68px);
  bottom: -76px;
  width: 172px;
  height: 172px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.evidence-intro .section-label {
  color: #ef9aaa;
}

.evidence-intro > p:last-child {
  position: relative;
  z-index: 1;
  color: #b5bac3;
}

#workflow .section-heading h2 {
  font-size: clamp(38px, 3.4vw, 48px);
}

.case-stack {
  border-top: 0;
}

.project-case {
  padding-block: clamp(94px, 12vw, 156px);
  border-bottom: 1px solid var(--line-strong);
}

.project-case:first-child {
  padding-top: 24px;
}

.project-case-intro {
  display: grid;
  margin-bottom: 58px;
  grid-template-columns: 0.42fr 1.42fr 0.86fr;
  gap: 42px;
  align-items: start;
}

.project-case-index {
  display: flex;
  align-items: center;
  gap: 14px;
}

.project-case-index > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
}

.project-case-index p {
  margin: 0;
  color: var(--dim);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-case-kicker {
  margin-bottom: 17px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.55;
  text-transform: uppercase;
}

.project-case-intro h3 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(36px, 4.8vw, 64px);
}

.project-case-intro > p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.project-case-media {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: clamp(16px, 2vw, 26px);
  background: #e7e9ed;
  box-shadow: 0 34px 76px rgba(24, 30, 42, 0.14);
}

.project-case-media img,
.project-case-media iframe {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
}

.project-case-media img {
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

a.project-case-media:hover img {
  transform: scale(1.008);
}

.project-case-video {
  aspect-ratio: 16 / 9;
  background: #101722;
}

.project-case-video iframe {
  height: 100%;
}

.youtube-cover {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #101722;
  color: #fff;
  cursor: pointer;
}

.youtube-cover::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 13, 22, 0.02), rgba(8, 13, 22, 0.28));
  content: "";
  transition: background 180ms ease;
}

.youtube-cover:hover::after {
  background: linear-gradient(180deg, rgba(8, 13, 22, 0), rgba(8, 13, 22, 0.18));
}

.youtube-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.youtube-play {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  display: grid;
  width: clamp(72px, 8vw, 104px);
  height: clamp(72px, 8vw, 104px);
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(17, 24, 36, 0.84);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
  transform: translate(-50%, -50%);
  transition: background 180ms ease, transform 180ms ease;
}

.youtube-cover:hover .youtube-play {
  background: var(--accent);
  transform: translate(-50%, -50%) scale(1.04);
}

.youtube-play i {
  width: 0;
  height: 0;
  margin-left: 7px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid #fff;
}

.youtube-duration {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 22px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(17, 24, 36, 0.82);
  font-size: 11px;
  font-weight: 800;
}

.project-case-media-dark {
  padding: clamp(8px, 1vw, 14px);
  border-color: #232c39;
  background: #111827;
}

.project-case-media-dark img {
  border-radius: calc(clamp(16px, 2vw, 26px) - 8px);
}

.case-metric-grid {
  display: grid;
  margin-top: 46px;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line);
}

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

.case-metric-grid > div {
  min-height: 164px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.case-metric-grid strong,
.case-fact strong {
  display: block;
  margin-bottom: 18px;
  font-size: clamp(36px, 4.3vw, 58px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1;
}

.case-metric-grid span,
.case-fact span {
  display: block;
  max-width: 210px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.case-metric-grid .case-metric-accent {
  background: var(--dark);
  color: #fff;
}

.case-metric-accent strong {
  color: #ef9aaa;
}

.case-metric-accent span {
  color: #b5bac3;
}

.project-case-footer {
  display: grid;
  margin-top: 34px;
  padding-top: 28px;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 34px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.project-case-footer > p,
.project-case-footer > .case-result {
  display: flex;
  min-height: 44px;
  margin: 0;
  align-items: center;
  font-size: 12px;
  line-height: 1.7;
}

.project-case-footer > p {
  color: var(--muted);
}

.case-result {
  font-weight: 800;
}

.project-case-karelsky .case-result {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.project-case-eldabaa .project-case-footer {
  grid-template-columns: 1fr auto;
}

.project-case-footer > a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.project-case-valday .project-case-footer {
  grid-template-columns: 1fr auto;
}

.project-case-footer > .case-fact {
  min-width: 0;
}

.case-fact strong {
  font-size: clamp(30px, 3.3vw, 46px);
}

.project-case-footer > p:not(:first-child) {
  margin-top: 5px;
}

.more-cases {
  display: flex;
  padding-top: 38px;
  justify-content: flex-end;
}

.paths {
  background: #eef0f3;
}

.paths-head {
  grid-template-columns: 0.45fr 1.8fr 0.75fr;
}

.paths-head h2 {
  font-size: clamp(38px, 3.3vw, 46px);
}

.path-list {
  display: grid;
  gap: 16px;
}

.path-card {
  display: grid;
  min-height: 360px;
  padding: 42px;
  grid-template-columns: 0.55fr 1.45fr 0.75fr;
  gap: 44px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.path-index {
  display: flex;
  align-items: center;
  gap: 16px;
}

.path-index span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
}

.path-index p {
  margin: 0;
  color: var(--dim);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.path-copy h3 {
  margin-bottom: 22px;
  font-size: clamp(29px, 3vw, 42px);
}

.path-copy > p {
  color: var(--muted);
  font-size: 14px;
}

.path-copy ul {
  margin: 30px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
  list-style: none;
}

.path-copy li::before {
  margin-right: 10px;
  color: var(--accent);
  content: "—";
}

.path-action {
  display: grid;
  gap: 18px;
  align-self: end;
  justify-items: start;
}

.path-action small {
  color: var(--dim);
  font-size: 10px;
  line-height: 1.55;
}

.button-outline {
  border-color: var(--line-strong);
  background: transparent;
}

.button-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.path-card-dark {
  border-color: transparent;
  background:
    radial-gradient(circle at 92% 4%, rgba(217, 43, 82, 0.26), transparent 31%),
    var(--dark);
  color: #fff;
}

.path-card-dark .path-index span {
  border-color: rgba(255, 255, 255, 0.22);
  color: #ef9aaa;
}

.path-card-dark .path-index p,
.path-card-dark .path-copy > p,
.path-card-dark .path-copy ul,
.path-card-dark .path-action small {
  color: #adb2bc;
}

.service-bridge {
  display: flex;
  margin-top: 52px;
  padding: 38px 0 0;
  align-items: flex-end;
  justify-content: space-between;
  gap: 46px;
  border-top: 1px solid var(--line-strong);
}

.service-bridge h3 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
}

.text-link {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 1050px) {
  .entry-head,
  .paths-head,
  .foundation-head {
    grid-template-columns: 0.45fr 1.55fr;
  }

  .entry-head > p:last-child,
  .paths-head > p:last-child,
  .foundation-head > p:last-child {
    grid-column: 2;
  }

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

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

  .entry-number {
    margin-bottom: 36px;
  }

  .foundation-layers {
    grid-template-columns: 1fr;
  }

  .foundation-card {
    min-height: 290px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .foundation-card:last-child {
    border-bottom: 0;
  }

  .foundation-card > span {
    margin-bottom: 36px;
  }

  .path-card {
    grid-template-columns: 0.55fr 1.45fr;
  }

  .project-case-intro {
    grid-template-columns: 0.42fr 1.58fr;
  }

  .project-case-intro > p {
    grid-column: 2;
    max-width: 720px;
  }

  .project-case-footer,
  .project-case-valday .project-case-footer {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-case-karelsky .project-case-footer > a {
    grid-column: 1 / -1;
  }

  .project-case-footer > a {
    justify-self: start;
  }

  .path-action {
    grid-column: 2;
  }

  .evidence-confidence {
    grid-template-columns: 0.55fr 1.45fr;
  }

  .evidence-confidence > p,
  .evidence-confidence ul,
  .evidence-confidence > a {
    grid-column: 2;
  }

  .evidence-confidence > a {
    margin-top: 0;
  }
}

@media (max-width: 820px) {
  .entry-head,
  .paths-head,
  .foundation-head {
    display: block;
  }

  .entry-head h2,
  .paths-head h2,
  .foundation-head h2 {
    margin-bottom: 24px;
  }

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

  .trust-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

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

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

  .heading-line {
    white-space: normal;
  }

  .project-case-intro {
    display: block;
  }

  .project-case-index {
    margin-bottom: 40px;
  }

  .project-case-intro h3 {
    margin-bottom: 26px;
  }

  .project-case-intro > p {
    max-width: 680px;
  }

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

  .evidence-confidence {
    display: block;
    grid-column: auto;
  }

  .evidence-confidence .evidence-top {
    margin-bottom: 48px;
  }

  .evidence-confidence h3,
  .evidence-confidence > p,
  .evidence-confidence ul {
    margin-bottom: 28px;
  }

  .path-card {
    grid-template-columns: 1fr;
  }

  .path-action {
    grid-column: auto;
  }

  .service-bridge {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .hero-thesis {
    font-size: 18px;
  }

  .entry-head,
  .paths-head {
    margin-bottom: 48px;
  }

  .entry-card {
    min-height: 360px;
    padding: 25px;
  }

  .trust {
    padding-block: 64px;
  }

  .trust-item {
    min-height: 150px;
    padding: 20px 14px;
  }

  .trust-item strong {
    font-size: 40px;
  }

  .trust-item span {
    font-size: 10px;
  }

  .foundation-layers {
    margin-top: 58px;
  }

  .foundation-card {
    min-height: 330px;
    padding: 28px 0;
  }

  .industries {
    margin-top: 48px;
  }

  .evidence-card {
    padding: 28px 22px;
  }

  .project-case {
    padding-block: 82px;
  }

  .project-case:first-child {
    padding-top: 0;
  }

  .project-case-intro {
    margin-bottom: 34px;
  }

  .project-case-index {
    margin-bottom: 30px;
  }

  .project-case-kicker {
    font-size: 10px;
  }

  .project-case-intro h3 {
    font-size: clamp(32px, 10.5vw, 46px);
  }

  .evidence .section-heading h2 {
    font-size: clamp(29px, 8vw, 32px);
  }

  .project-case-intro > p {
    font-size: 14px;
  }

  .project-case-media,
  .project-case-media-dark {
    border-radius: 14px;
  }

  .project-case-media-dark {
    padding: 5px;
  }

  .youtube-duration {
    right: 12px;
    bottom: 12px;
    padding: 7px 10px;
    font-size: 9px;
  }

  .case-metric-grid {
    margin-top: 28px;
  }

  .case-metric-grid > div {
    min-height: 136px;
    padding: 20px 16px;
  }

  .case-metric-grid strong {
    font-size: clamp(30px, 10vw, 42px);
  }

  .project-case-footer,
  .project-case-valday .project-case-footer {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .project-case-karelsky .case-result {
    padding-left: 0;
    border-left: 0;
  }

  .project-case-valday .project-case-footer {
    padding-top: 28px;
  }

  .project-case-footer > a {
    margin-top: 4px;
  }

  .more-cases {
    align-items: stretch;
    flex-direction: column;
  }

  .more-cases .button {
    width: 100%;
  }

  .evidence-top {
    margin-bottom: 42px;
  }

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

  .case-metrics > div {
    min-height: 104px;
    padding: 16px;
  }

  .evidence-disclaimer {
    text-align: left;
  }

  .path-card {
    min-height: auto;
    padding: 28px 22px;
    gap: 34px;
  }

  .path-action .button,
  .service-bridge .button {
    width: 100%;
  }

  .service-bridge {
    margin-top: 42px;
  }
}
