:root {
  color-scheme: light;
  --bg: #fbf8f6;
  --surface: #fffdfb;
  --surface-soft: #f4eeeb;
  --surface-wash: rgba(255, 255, 255, 0.72);
  --on-accent: #fffaf6;
  --ink: #161311;
  --muted: #746863;
  --line: #e7ded9;
  --line-strong: #d8c9c2;
  --accent: #ca4136;
  --accent-dark: #9f352c;
  --shadow: 0 24px 70px rgba(52, 36, 28, 0.1);
  --shadow-soft: 0 14px 44px rgba(52, 36, 28, 0.08);
  --radius: 8px;
  --max: 1180px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(202, 65, 54, 0.026) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(202, 65, 54, 0.026) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.26) 34rem, transparent 58rem),
    var(--bg);
  background-size: 72px 72px;
  color: var(--ink);
  font-family:
    "Avenir Next", "Inter Tight", "Helvetica Neue", Arial, ui-sans-serif,
    system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 82px;
  padding: 16px clamp(24px, 4vw, 52px);
  background: rgba(251, 248, 246, 0.82);
  border-bottom: 1px solid rgba(228, 217, 212, 0.8);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
  transition: background-color 420ms var(--ease-out), border-color 420ms var(--ease-out), box-shadow 420ms var(--ease-out);
}

.site-header.is-scrolled {
  background: rgba(251, 248, 246, 0.94);
  border-bottom-color: rgba(216, 201, 194, 0.92);
  box-shadow: 0 10px 34px rgba(52, 36, 28, 0.07);
}

.brand,
.site-nav,
.hero-actions,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  width: max-content;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.02em;
}

.brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  transition: transform 420ms var(--ease-out);
}

.brand:hover .brand-icon {
  transform: rotate(-4deg) scale(1.04);
}

.site-nav {
  justify-content: center;
  gap: 30px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav a {
  position: relative;
  padding: 11px 0;
  border-radius: 0;
}

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

.site-nav a:hover,
.site-nav a.is-active {
  background: transparent;
  color: var(--accent-dark);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.site-nav a,
.secondary-cta,
.site-footer a {
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.secondary-cta:hover,
.site-footer a:hover {
  color: var(--accent);
}

.nav-cta,
.primary-cta,
.secondary-cta {
  --magnetic-x: 0px;
  --magnetic-y: 0px;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 760;
  line-height: 1;
  white-space: nowrap;
  transform: translate3d(var(--magnetic-x), var(--magnetic-y), 0);
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease, box-shadow 420ms var(--ease-out), transform 420ms var(--ease-out);
}

.nav-cta::before,
.primary-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 28%, rgba(255, 255, 255, 0.24) 48%, transparent 68%);
  transform: translate3d(-120%, 0, 0);
  transition: transform 720ms var(--ease-out);
}

.nav-cta:hover::before,
.primary-cta:hover::before {
  transform: translate3d(120%, 0, 0);
}

.nav-cta::after,
.primary-cta::after,
.secondary-cta::after {
  display: inline-block;
  margin-left: 10px;
  font-size: 15px;
  font-weight: 500;
  transition: transform 320ms var(--ease-out);
}

.nav-cta::after,
.primary-cta::after {
  content: "↗";
}

.secondary-cta::after {
  content: "→";
}

.nav-cta:hover::after,
.primary-cta:hover::after {
  transform: translate3d(2px, -2px, 0);
}

.secondary-cta:hover::after {
  transform: translate3d(3px, 0, 0);
}

.nav-cta {
  justify-self: end;
  min-height: 42px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--on-accent);
  font-size: 13px;
  box-shadow: 0 12px 30px rgba(22, 19, 17, 0.12);
}

.primary-cta {
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: 0 15px 34px rgba(202, 65, 54, 0.22);
}

.primary-cta:hover,
.nav-cta:hover {
  box-shadow: 0 18px 42px rgba(202, 65, 54, 0.25);
}

.primary-cta.light {
  background: var(--on-accent);
  color: var(--accent-dark);
  box-shadow: none;
}

.secondary-cta {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
}

.nav-cta:active,
.primary-cta:active,
.secondary-cta:active {
  transform: translate3d(var(--magnetic-x), calc(var(--magnetic-y) + 1px), 0) scale(0.985);
}

.section-pad {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(70px, 9vw, 128px) 0;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
  gap: clamp(38px, 5vw, 66px);
  align-items: center;
  min-height: auto;
  padding-top: clamp(84px, 7vw, 108px);
  padding-bottom: clamp(88px, 7vw, 112px);
}

.hero-copy {
  position: relative;
  max-width: 690px;
}

.hero-copy::before {
  content: "";
  position: absolute;
  top: 1px;
  left: -30px;
  width: 3px;
  height: 82px;
  background: var(--accent);
}

.quiet-label {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0;
}

.hero-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 590px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-strong);
}

.hero-kicker small {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 9px;
  font-weight: 820;
}

h1 {
  max-width: 710px;
  font-size: clamp(50px, 5.1vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

h1 span {
  display: block;
  color: var(--accent);
}

h2 {
  max-width: 760px;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1;
  letter-spacing: -0.025em;
}

h3 {
  font-size: 19px;
  line-height: 1.13;
  letter-spacing: -0.01em;
}

.hero-lede,
.section-heading p,
.proof-band p,
.final-cta p {
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.55;
}

.hero-lede {
  max-width: 590px;
  margin-top: 24px;
}

.hero-metrics {
  counter-reset: hero-metric;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 650px;
  margin-top: 34px;
  padding-top: 17px;
  border-top: 1px solid var(--line-strong);
}

.hero-metrics div {
  counter-increment: hero-metric;
  position: relative;
  min-width: 0;
  padding-right: 20px;
  border-right: 1px solid var(--line);
}

.hero-metrics div + div {
  padding-left: 22px;
}

.hero-metrics div:last-child {
  padding-right: 0;
  border-right: 0;
}

.hero-metrics div::before {
  content: "0" counter(hero-metric);
  display: block;
  margin-bottom: 11px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 820;
}

.hero-metrics strong {
  display: block;
  color: var(--accent);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-metrics span {
  display: block;
  margin-top: 9px;
  color: var(--ink);
  font-size: 12.5px;
  font-weight: 650;
  line-height: 1.25;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.hero-proof {
  position: relative;
  perspective: 1100px;
  min-width: 0;
  transform: translateY(18px);
}

.hero-proof::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 18px -18px -18px 18px;
  border: 1px solid rgba(202, 65, 54, 0.2);
}

.proof-feature {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --pointer-x: 50%;
  --pointer-y: 50%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(22, 19, 17, 0.18);
  border-top: 3px solid var(--accent);
  border-radius: 6px;
  background: var(--ink);
  box-shadow: 0 34px 80px rgba(22, 19, 17, 0.18);
}

.proof-feature-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  font-weight: 820;
  text-transform: uppercase;
}

.proof-feature-status strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: inherit;
}

.proof-feature-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff756a;
  box-shadow: 0 0 0 5px rgba(255, 117, 106, 0.1);
  animation: statusPulse 2.8s var(--ease-out) infinite;
}

.proof-feature::after,
.channel-card.large::after,
.case-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(360px circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(255, 255, 255, 0.26), transparent 58%);
  opacity: 0;
  transition: opacity 360ms var(--ease-out);
}

.proof-feature:hover::after,
.channel-card.large:hover::after,
.case-card:hover::after {
  opacity: 1;
}

.proof-feature-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 24px 22px;
}

.proof-feature-head span,
.proof-feature-result span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 750;
}

.proof-feature-head h2 {
  margin-top: 7px;
  font-size: clamp(22px, 2vw, 26px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--on-accent);
}

.proof-feature-scope {
  flex: 0 0 auto;
  max-width: 170px;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  text-align: right;
}

.proof-feature-scope strong {
  display: block;
  margin-top: 6px;
  color: var(--on-accent);
  font-size: 14px;
  line-height: 1.2;
}

.proof-feature-media {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 15px;
  min-height: 0;
  padding: 18px 20px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(90deg, rgba(202, 65, 54, 0.032) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(202, 65, 54, 0.032) 0 1px, transparent 1px 100%),
    #fbf8f6;
  background-size: 46px 46px;
}

.proof-feature-media::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1px;
  width: 1px;
  background: rgba(202, 65, 54, 0.66);
  box-shadow: 16px 0 44px rgba(202, 65, 54, 0.18);
  transform: translate3d(0, 0, 0);
  animation: systemScan 5.6s var(--ease-out) infinite;
}

.proof-wall-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.proof-wall-heading span {
  color: var(--ink);
  font-size: 11px;
  font-weight: 820;
  text-transform: uppercase;
}

.proof-wall-heading small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
}

.client-logo-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(216, 201, 194, 0.72);
  border-left: 1px solid rgba(216, 201, 194, 0.72);
}

.client-logo-wall div {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 58px;
  padding: 9px 12px;
  overflow: hidden;
  border: 0;
  border-right: 1px solid rgba(216, 201, 194, 0.72);
  border-bottom: 1px solid rgba(216, 201, 194, 0.72);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.9);
  transition: border-color 260ms ease, box-shadow 320ms var(--ease-out), transform 320ms var(--ease-out);
}

.client-logo-wall img {
  width: auto;
  max-width: 92%;
  height: auto;
  max-height: 27px;
  object-fit: contain;
  filter: grayscale(1) saturate(0.2);
  opacity: 0.82;
  transition: filter 320ms var(--ease-out), opacity 320ms ease, transform 320ms var(--ease-out);
}

.client-logo-wall div:hover {
  transform: none;
  border-color: rgba(202, 65, 54, 0.3);
  box-shadow: inset 0 -2px 0 rgba(202, 65, 54, 0.68);
}

.client-logo-wall div:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.03);
}

.proof-feature-foot {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 22px 24px 24px;
}

.proof-feature-foot p {
  max-width: 380px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
  line-height: 1.5;
}

.proof-feature-result {
  min-width: 116px;
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.proof-feature-result strong {
  display: block;
  color: #ff756a;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.proof-feature-result span {
  margin-top: 7px;
}

@keyframes statusPulse {
  0%, 100% { opacity: 0.62; transform: scale(0.86); }
  45% { opacity: 1; transform: scale(1); }
}

@keyframes systemScan {
  0%, 12% { opacity: 0; transform: translate3d(0, 0, 0); }
  24% { opacity: 1; }
  72% { opacity: 0.72; }
  84%, 100% { opacity: 0; transform: translate3d(520px, 0, 0); }
}

.metrics-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(202, 65, 54, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 42%),
    var(--accent);
  color: var(--on-accent);
  box-shadow: 0 18px 52px rgba(202, 65, 54, 0.15);
}

.metrics-strip::after,
.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 32%, rgba(255, 255, 255, 0.16) 48%, transparent 64%);
  transform: translate3d(-110%, 0, 0);
}

.metrics-strip div {
  padding: 28px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.metrics-strip div:last-child {
  border-right: 0;
}

.metrics-strip strong {
  display: block;
  color: var(--on-accent);
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1;
  letter-spacing: -0.025em;
}

.metrics-strip span {
  display: block;
  margin-top: 9px;
  color: var(--on-accent);
  font-size: 14px;
  line-height: 1.35;
}

.metrics-strip .metrics-copy strong {
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.08;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading.compact {
  max-width: 690px;
}

.section-heading h2 + p,
.proof-band h2 + p,
.final-cta h2 + p {
  margin-top: 20px;
}

.method {
  width: 100%;
  background: var(--ink);
  color: var(--on-accent);
}

.method-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(82px, 9vw, 124px) 0;
}

.method .section-heading {
  max-width: 860px;
  margin-bottom: 48px;
}

.method .quiet-label {
  color: #ff9b91;
}

.method .section-heading h2 {
  color: var(--on-accent);
}

.method .section-heading p {
  color: rgba(255, 255, 255, 0.62);
}

.method-grid {
  counter-reset: stage;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.channel-stack article,
.package-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-wash);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.72) inset;
}

.method-grid article {
  counter-increment: stage;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 28px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: background-color 420ms var(--ease-out), transform 420ms var(--ease-out);
}

.method-grid article:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.method-grid article:hover {
  transform: translateY(-4px);
  background: rgba(202, 65, 54, 0.11);
}

.method-grid article::after {
  content: "0" counter(stage);
  position: absolute;
  top: 18px;
  right: 20px;
  color: rgba(255, 255, 255, 0.055);
  font-size: 76px;
  font-weight: 850;
  line-height: 1;
  pointer-events: none;
}

.method-grid article::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 46px;
  height: 3px;
  background: var(--accent);
  opacity: 0.9;
  transition: width 480ms var(--ease-out);
}

.method-grid article:hover::before {
  width: 100%;
}

.method-grid article > span {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  width: auto;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--on-accent);
  font-size: 15px;
  font-weight: 820;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: none;
}

.method-grid article > span::before {
  content: "0" counter(stage);
  display: inline-block;
  padding-right: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  color: #ff9b91;
  font-size: 11px;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
}

.method-grid h3 {
  position: relative;
  z-index: 1;
  margin-top: 58px;
  color: var(--on-accent);
  font-size: 22px;
  line-height: 1.12;
}

.method-grid p {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.55;
}

.method-scenario {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.method-scenario small {
  display: block;
  color: #ff9b91;
  font-size: 9px;
  font-weight: 820;
  text-transform: uppercase;
}

.method-scenario strong {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 680;
  line-height: 1.45;
}

.method-grid article > span,
.method-grid h3,
.method-grid p,
.method-scenario {
  transition: transform 420ms var(--ease-out);
}

.method-grid article:hover > span,
.method-grid article:hover h3,
.method-grid article:hover p,
.method-grid article:hover .method-scenario {
  transform: translateY(-2px);
}

.channel-stack article::before,
.package-grid article::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  opacity: 0.42;
  transform: scaleX(0.2);
  transform-origin: left center;
  transition: opacity 420ms var(--ease-out), transform 520ms var(--ease-out);
}

.channel-stack article:hover::before,
.package-grid article:hover::before {
  opacity: 0.9;
  transform: scaleX(1);
}

.package-grid span {
  display: inline-block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 820;
}

.channel-card h3,
.channel-stack h3,
.case-card h3,
.package-grid h3 {
  margin-top: 20px;
}

.channel-card p,
.channel-stack p,
.case-card p,
.package-grid p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.channel-system-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.channel-system-grid article {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  grid-column: span 3;
  min-height: 250px;
  padding: 24px;
  border: 1px solid rgba(216, 201, 194, 0.86);
  border-radius: var(--radius);
  background: var(--surface-wash);
  box-shadow: var(--shadow-soft);
  transition: transform 420ms var(--ease-out), border-color 280ms ease, box-shadow 420ms var(--ease-out);
}

.channel-system-grid article:nth-child(n + 5) {
  grid-column: span 4;
}

.channel-system-grid article::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 54px;
  height: 2px;
  background: var(--accent);
  opacity: 0.52;
  transition: width 420ms var(--ease-out), opacity 280ms ease;
}

.channel-system-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(202, 65, 54, 0.25);
  box-shadow: 0 24px 60px rgba(52, 36, 28, 0.1);
}

.channel-system-grid article:hover::before {
  width: 100%;
  opacity: 0.9;
}

.channel-system-grid header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
}

.channel-system-grid header span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
}

.channel-system-grid header small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.channel-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.channel-symbol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 44px;
  height: 34px;
  padding-right: 14px;
  border-right: 1px solid var(--line-strong);
  color: rgba(22, 19, 17, 0.72);
  transition: color 260ms ease, transform 320ms var(--ease-out);
}

.channel-symbol svg {
  width: 24px;
  height: 24px;
  overflow: visible;
  fill: currentColor;
}

.channel-symbol-stroke svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.channel-symbol-dual {
  gap: 6px;
  width: 60px;
}

.channel-symbol-dual svg {
  width: 19px;
  height: 19px;
}

.channel-system-grid article:hover .channel-symbol {
  color: var(--accent);
  transform: translateY(-1px);
}

.channel-system-grid h3 {
  margin: 0;
  font-size: 24px;
}

.channel-system-grid p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.channel-system-grid strong {
  margin-top: auto;
  padding-top: 22px;
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 820;
  line-height: 1.3;
  text-transform: uppercase;
}

.proof-band {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(440px, 1fr);
  gap: 36px;
  align-items: center;
}

.proof-band-media {
  position: relative;
}

.proof-band img,
.case-card img {
  border: 1px solid rgba(216, 201, 194, 0.86);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.proof-band-media > span {
  position: absolute;
  top: 26.1%;
  left: 4%;
  width: 19.5%;
  height: 8.2%;
  border: 0;
  border-radius: 0;
  background: #fdf9f8;
  box-shadow: none;
}

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

.case-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --pointer-x: 50%;
  --pointer-y: 50%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(216, 201, 194, 0.86);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.case-card img {
  width: 100%;
  height: 218px;
  object-fit: cover;
  object-position: 50% 45%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transition: transform 720ms var(--ease-out), filter 420ms var(--ease-out);
}

.channel-card.large:hover img,
.case-card:hover img {
  transform: scale(1.035);
}

.case-card div {
  padding: 22px 22px 24px;
}

.case-card strong,
.package-grid strong {
  display: block;
  margin-top: 18px;
  color: var(--accent-dark);
  font-size: 14px;
  line-height: 1.35;
}

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

.package-grid article {
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 280px;
  padding: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.package-grid strong {
  margin-top: auto;
  padding-top: 22px;
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.package-grid article:first-child {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--on-accent);
}

.package-grid article:first-child p,
.package-grid article:first-child strong {
  color: var(--on-accent);
}

.package-grid article:first-child span {
  color: #ffb2aa;
}

.final-cta {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: min(var(--max), calc(100% - 40px));
  margin-bottom: 48px;
  padding: clamp(46px, 6vw, 74px);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), transparent 42%),
    var(--accent);
  color: var(--on-accent);
  box-shadow: 0 24px 70px rgba(202, 65, 54, 0.16);
}

.final-cta p {
  max-width: 640px;
  color: var(--on-accent);
}

.site-footer {
  justify-content: space-between;
  gap: 32px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 48px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-brand,
.footer-meta {
  display: flex;
}

.footer-brand {
  align-items: center;
  gap: 11px;
}

.footer-brand img {
  width: 32px;
  height: 32px;
  border-radius: 7px;
}

.footer-brand > div {
  display: grid;
  gap: 3px;
}

.footer-brand strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1;
}

.footer-brand span,
.footer-meta span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 560;
  line-height: 1.3;
}

.footer-meta {
  align-items: flex-end;
  flex-direction: column;
  gap: 6px;
  text-align: right;
}

.footer-meta a {
  color: var(--ink);
  font-size: 13px;
  font-weight: 720;
}

.proof-feature,
.channel-card.large,
.channel-stack article,
.case-card,
.package-grid article {
  transition: transform 520ms var(--ease-out), box-shadow 520ms var(--ease-out), border-color 320ms ease;
}

.proof-feature:hover,
.channel-card.large:hover,
.channel-stack article:hover,
.case-card:hover,
.package-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(202, 65, 54, 0.24);
  box-shadow: 0 26px 76px rgba(52, 36, 28, 0.12);
}

[data-tilt] {
  transform: perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(0);
  transform-style: preserve-3d;
}

[data-tilt]:hover {
  transform: perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-5px);
}

html.motion-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 24px, 0) scale(0.992);
  transition: opacity 720ms var(--ease-out), transform 820ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

html.motion-ready [data-reveal="hero"] {
  transform: translate3d(0, 18px, 0);
}

html.motion-ready [data-reveal="media"] {
  transform: translate3d(0, 18px, 0) scale(0.97);
}

html.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

html.motion-ready [data-reveal].is-visible[data-tilt] {
  transform: perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(0);
}

html.motion-ready [data-reveal].is-visible[data-tilt]:hover {
  transform: perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-5px);
}

html.motion-ready .metrics-strip.is-visible::after,
html.motion-ready .final-cta.is-visible::after {
  animation: signalSweep 1100ms 320ms var(--ease-out) both;
}

@keyframes signalSweep {
  to {
    transform: translate3d(110%, 0, 0);
  }
}

a:focus-visible {
  outline: 3px solid rgba(202, 65, 54, 0.34);
  outline-offset: 4px;
}

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

  html.motion-ready [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (hover: none) {
  .client-logo-wall img {
    filter: none;
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero,
  .proof-band {
    grid-template-columns: 1fr;
  }

  .channel-system-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .channel-system-grid article,
  .channel-system-grid article:nth-child(n + 5) {
    grid-column: auto;
  }

  .channel-system-grid article:last-child {
    grid-column: 1 / -1;
  }

  .hero {
    min-height: auto;
  }

  .metrics-strip,
  .method-grid,
  .case-grid,
  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .method-grid article {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .method-grid article:nth-child(odd) {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
  }

  .method-grid article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 660px) {
  .site-header {
    min-height: 66px;
    padding: 12px 18px;
  }

  .brand {
    gap: 9px;
  }

  .brand-icon {
    width: 34px;
    height: 34px;
    border-radius: 7px;
  }

  .brand span {
    font-size: 18px;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }

  .section-pad,
  .method-inner,
  .metrics-strip,
  .final-cta,
  .site-footer {
    width: min(100% - 28px, var(--max));
  }

  .hero {
    gap: 34px;
    padding-top: 42px;
    padding-bottom: 52px;
  }

  .hero-copy::before {
    left: -10px;
    width: 2px;
    height: 62px;
  }

  .hero-kicker {
    gap: 12px;
  }

  .hero-kicker small {
    display: none;
  }

  h1 {
    font-size: clamp(38px, 11vw, 46px);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 30px;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
  }

  .hero-metrics div {
    padding-right: 8px;
  }

  .hero-metrics div + div {
    padding-left: 10px;
  }

  .hero-metrics div::before {
    margin-bottom: 8px;
  }

  .hero-metrics span {
    font-size: 10px;
  }

  .metrics-strip,
  .method-grid,
  .case-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .method-grid article,
  .method-grid article:nth-child(odd) {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .method-grid article:last-child {
    border-bottom: 0;
  }

  .proof-feature-head,
  .proof-feature-foot {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .proof-feature-head {
    flex-direction: column;
  }

  .hero-proof {
    transform: none;
  }

  .hero-proof::before {
    inset: 10px -6px -10px 6px;
  }

  .proof-feature-status {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .proof-feature-scope {
    max-width: none;
    margin-top: 2px;
    padding-top: 14px;
    padding-left: 0;
    border-top: 1px solid var(--line-strong);
    border-left: 0;
    text-align: left;
  }

  .channel-system-grid {
    grid-template-columns: 1fr;
  }

  .channel-system-grid article:last-child {
    grid-column: auto;
  }

  .proof-feature-media {
    min-height: 0;
    padding: 16px;
  }

  .client-logo-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-feature-result {
    width: 100%;
    padding-top: 18px;
    padding-left: 0;
    border-top: 1px solid var(--line-strong);
    border-left: 0;
  }

  .metrics-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metrics-strip div:last-child {
    border-bottom: 0;
  }

  .method-grid article,
  .package-grid article {
    min-height: auto;
  }

  .case-card img {
    height: 190px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .footer-meta {
    align-items: flex-start;
    text-align: left;
  }
}
