:root {
  --cr-bg: #03060a;
  --cr-bg-2: #050912;
  --cr-bg-3: #08101a;
  --cr-surface: rgba(8, 13, 22, 0.72);
  --cr-surface-soft: rgba(255, 255, 255, 0.035);
  --cr-text: #f5f7fa;
  --cr-text-soft: #c8d0dc;
  --cr-text-muted: #8b95a5;
  --cr-text-dim: #5f6978;
  --cr-blue: #4aa3ff;
  --cr-blue-2: #1f7dff;
  --cr-blue-soft: rgba(74, 163, 255, 0.18);
  --cr-blue-line: rgba(74, 163, 255, 0.66);
  --cr-line: rgba(255, 255, 255, 0.12);
  --cr-line-soft: rgba(255, 255, 255, 0.07);
  --gutter: 20px;
  --max-width: 1760px;
  --nav-height: 104px;
  --anchor-offset: 28px;
  --focus: 0 0 0 4px rgba(74, 163, 255, 0.22);
}

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

html {
  background: var(--cr-bg);
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--cr-text);
  background:
    radial-gradient(circle at 72% 8%, rgba(74, 163, 255, 0.08), transparent 34rem),
    linear-gradient(180deg, var(--cr-bg), var(--cr-bg-2) 42%, var(--cr-bg));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, black, transparent 72%);
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--cr-blue);
  outline-offset: 4px;
  box-shadow: var(--focus);
}

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

h1,
h2,
h3 {
  font-family: "Helvetica Neue", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--cr-text);
  letter-spacing: -0.055em;
}

h1 {
  max-width: 9.8ch;
  margin-block-end: 34px;
  font-size: clamp(60px, 17vw, 94px);
  font-weight: 300;
  line-height: 1.1;
}

h1 span {
  display: block;
}

h1 span:last-child {
  color: rgba(245, 247, 250, 0.52);
}

h2 {
  max-width: 12ch;
  margin-block-end: 24px;
  font-size: clamp(40px, 10vw, 58px);
  font-weight: 400;
  line-height: 1;
}

h3 {
  margin-block-end: 10px;
  font-size: 18px;
  font-weight: 520;
  line-height: 1.2;
}

p {
  margin-block-end: 0;
}

.skip-link {
  position: fixed;
  inset-block-start: 16px;
  inset-inline-start: 16px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--cr-bg);
  background: var(--cr-text);
  transform: translateY(-180%);
}

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

.container {
  width: min(100% - (var(--gutter) * 2), var(--max-width));
  margin-inline: auto;
}

.section {
  position: relative;
  overflow: clip;
  scroll-margin-top: var(--anchor-offset);
  padding-block: 88px;
  border-top: 1px solid var(--cr-line-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--nav-height);
  background: rgba(3, 6, 10, 0.56);
  border-bottom: 1px solid var(--cr-line);
  backdrop-filter: blur(14px);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(100% - (var(--gutter) * 2), var(--max-width));
  min-height: var(--nav-height);
  margin-inline: auto;
}

.wordmark {
  min-height: 44px;
  color: var(--cr-text);
  font-size: 23px;
  font-weight: 420;
  letter-spacing: 0.46em;
  text-decoration: none;
}

.site-nav__links {
  display: none;
}

.site-nav__links a,
.footer-links a,
.text-link {
  min-height: 44px;
  color: var(--cr-text-soft);
  font-size: 18px;
  font-weight: 360;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--cr-blue);
  font-size: 17px;
  font-weight: 420;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  opacity: 0.72;
}

.site-nav__links a:hover,
.footer-links a:hover,
.text-link:hover {
  color: var(--cr-text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  max-width: 100%;
  padding: 22px 52px;
  color: var(--cr-text);
  background: rgba(3, 6, 10, 0.16);
  border: 1px solid rgba(74, 163, 255, 0.5);
  font-size: 16px;
  font-weight: 520;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  color: var(--cr-text);
  background: rgba(74, 163, 255, 0.11);
  border-color: rgba(74, 163, 255, 0.82);
  box-shadow: 0 0 32px rgba(74, 163, 255, 0.1);
}

.button:active {
  transform: translateY(1px);
}

.button--nav {
  position: relative;
  min-height: 44px;
  padding: 6px 0;
  color: var(--cr-blue);
  background: transparent;
  border: 0;
  font-size: 17px;
  font-weight: 360;
  letter-spacing: -0.04em;
  text-transform: none;
  box-shadow: none;
}

.button--nav::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--cr-blue-line);
}

.button--nav:hover {
  color: var(--cr-text);
  background: transparent;
  border-color: transparent;
}

.button--light {
  color: var(--cr-text);
  background: rgba(3, 6, 10, 0.32);
  border-color: rgba(74, 163, 255, 0.62);
}

.button--light:hover {
  color: var(--cr-text);
  background: rgba(74, 163, 255, 0.18);
  border-color: var(--cr-blue);
}

.hero {
  min-height: calc(100svh - var(--nav-height));
  padding-block: clamp(86px, 12svh, 140px) 84px;
  border-top: 0;
  background:
    radial-gradient(circle at 76% 46%, rgba(74, 163, 255, 0.13), transparent 30rem),
    radial-gradient(circle at 24% 22%, rgba(255, 255, 255, 0.035), transparent 31rem),
    var(--cr-bg);
}

.hero__grid {
  position: relative;
  display: grid;
  gap: 24px;
  align-items: center;
  min-height: min(820px, calc(100svh - var(--nav-height) - 60px));
}

.hero__copy {
  position: relative;
  z-index: 3;
  max-width: 760px;
}

.hero__lead {
  position: relative;
  max-width: 610px;
  padding-block-start: 34px;
  color: var(--cr-text-soft);
  font-size: clamp(21px, 1.42vw, 27px);
  font-weight: 330;
  line-height: 1.45;
  letter-spacing: -0.018em;
}

.hero__lead::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 76px;
  height: 1px;
  content: "";
  background: var(--cr-blue-line);
}

.hero__philosophy {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.hero__actions,
.final-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-items: center;
  margin-block-start: 58px;
}

.eyebrow,
.section-kicker {
  margin-block-end: 18px;
  color: var(--cr-blue);
  font-size: 16px;
  font-weight: 680;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-visual {
  position: absolute;
  top: 44%;
  right: -19vw;
  z-index: 1;
  width: min(76vw, 1240px);
  margin-inline: 0;
  opacity: 0.92;
  filter: saturate(1.08) contrast(1.12) brightness(0.92);
  transform: translateY(-48%);
}

.hero-visual::before {
  position: absolute;
  inset: -14% -8%;
  z-index: 2;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle at 58% 50%, transparent 0 42%, rgba(3, 6, 10, 0.42) 78%, var(--cr-bg) 100%);
}

.hero-visual img {
  width: 100%;
  min-height: 540px;
  max-height: none;
  object-fit: contain;
  mask-image: radial-gradient(circle at 54% 50%, black 42%, rgba(0, 0, 0, 0.82) 62%, transparent 88%);
}

.section-heading {
  max-width: 780px;
}

.section-heading--wide {
  max-width: 980px;
}

.section-heading > p:not(.section-kicker) {
  color: var(--cr-text-soft);
  font-size: clamp(18px, 1.35vw, 23px);
  line-height: 1.55;
  letter-spacing: -0.025em;
}

.operating-grid,
.helps-grid,
.fix-grid,
.why-grid {
  display: grid;
  gap: 48px;
}

.operating-copy {
  display: grid;
  gap: 26px;
  color: var(--cr-text-soft);
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.55;
  letter-spacing: -0.025em;
}

.operating-section::after {
  position: absolute;
  top: 16%;
  right: max(20px, 5vw);
  width: min(34vw, 520px);
  height: 62%;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, transparent 0 22%, rgba(74, 163, 255, 0.18) 22% calc(22% + 1px), transparent calc(22% + 1px)),
    linear-gradient(90deg, transparent 0 58%, rgba(255, 255, 255, 0.09) 58% calc(58% + 1px), transparent calc(58% + 1px)),
    linear-gradient(0deg, transparent 0 24%, rgba(74, 163, 255, 0.16) 24% calc(24% + 1px), transparent calc(24% + 1px)),
    linear-gradient(0deg, transparent 0 68%, rgba(255, 255, 255, 0.08) 68% calc(68% + 1px), transparent calc(68% + 1px));
  border: 1px solid var(--cr-line-soft);
  opacity: 0.38;
  mask-image: linear-gradient(90deg, transparent, black 28%, black 78%, transparent);
}

.layer-map {
  display: grid;
  margin-block-start: 18px;
  border-block: 1px solid var(--cr-line);
}

.layer-map span,
.numbered-row,
.fix-row,
.path-step {
  display: grid;
  gap: 16px;
  padding-block: 24px;
  border-bottom: 1px solid var(--cr-line-soft);
}

.layer-map span:last-child,
.numbered-row:last-child,
.fix-row:last-child {
  border-bottom: 0;
}

.layer-map b,
.numbered-row > span,
.fix-row__problem,
.path-step__number {
  color: var(--cr-blue);
  font-size: 13px;
  font-weight: 680;
  letter-spacing: 0.18em;
}

.helps-section {
  background:
    radial-gradient(circle at 82% 45%, rgba(74, 163, 255, 0.12), transparent 28rem),
    var(--cr-bg-2);
}

.helps-grid {
  position: relative;
}

.helps-rows {
  position: relative;
  z-index: 2;
}

.helps-rows .numbered-row {
  display: block;
  padding-block: 52px;
}

.helps-rows .numbered-row:first-child {
  padding-block-start: 0;
}

.helps-rows .numbered-row > span {
  display: inline-block;
  position: relative;
  margin-block-end: 28px;
  color: var(--cr-blue);
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.12em;
}

.helps-rows .numbered-row > span::after {
  display: block;
  width: 28px;
  height: 1px;
  margin-block-start: 12px;
  content: "";
  background: var(--cr-blue-line);
}

.helps-rows .numbered-row h3 {
  max-width: 680px;
  margin-block-end: 20px;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 360;
  line-height: 1;
  letter-spacing: -0.06em;
}

.helps-rows .numbered-row p {
  max-width: 600px;
  color: var(--cr-text-soft);
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.32;
  letter-spacing: -0.045em;
}

.helps-visual {
  width: min(78vw, 640px);
  opacity: 0.11;
  justify-self: center;
  mask-image: radial-gradient(circle at center, black 40%, transparent 78%);
}

.numbered-row h3,
.path-step h3 {
  letter-spacing: -0.03em;
}

.numbered-row p,
.path-step p,
.work-card p {
  color: var(--cr-text-muted);
}

.online-fix-section {
  background:
    linear-gradient(180deg, var(--cr-bg-2), var(--cr-bg-3));
}

.fix-grid {
  position: relative;
}

.fix-panel {
  position: relative;
  min-height: 420px;
}

.fix-table {
  position: relative;
  z-index: 2;
  padding-inline: 4px;
  background: rgba(3, 6, 10, 0.68);
  border-block: 1px solid var(--cr-line);
}

.fix-row {
  grid-template-columns: 64px 1fr;
  align-items: baseline;
}

.fix-row__fix {
  color: var(--cr-text);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.fix-visual {
  position: absolute;
  right: -18%;
  bottom: -18%;
  z-index: 1;
  width: min(92vw, 720px);
  opacity: 0.54;
  mask-image: radial-gradient(circle at center, black 38%, transparent 78%);
}

.path-grid {
  position: relative;
  display: grid;
  gap: 0;
  margin-block-start: 56px;
  border-top: 1px solid var(--cr-line);
  word-break: normal;
  overflow-wrap: normal;
}

.path-step {
  position: relative;
  min-width: 0;
  word-break: normal;
  overflow-wrap: normal;
}

.path-step__number {
  display: block;
}

.path-step p {
  max-width: 320px;
  word-break: normal;
  overflow-wrap: normal;
}

.section--work {
  background:
    radial-gradient(circle at 72% 28%, rgba(74, 163, 255, 0.1), transparent 28rem),
    linear-gradient(180deg, var(--cr-bg), var(--cr-bg-2));
}

.work-grid {
  display: grid;
  gap: 24px;
  margin-block-start: 56px;
}

.work-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  background:
    linear-gradient(135deg, rgba(74, 163, 255, 0.07), transparent 42%),
    var(--cr-surface);
  border: 1px solid var(--cr-line);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.work-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.32;
  mask-image: linear-gradient(135deg, black, transparent 70%);
}

.work-card:hover,
.work-card:focus-within {
  border-color: rgba(74, 163, 255, 0.66);
  box-shadow: 0 0 0 1px rgba(74, 163, 255, 0.12), 0 24px 80px rgba(31, 125, 255, 0.1);
  transform: translateY(-2px);
}

.work-card__link {
  display: block;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}

.work-card__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
  min-height: 420px;
  padding: 36px;
}

.work-card__chip {
  width: fit-content;
  color: var(--cr-blue);
  font-size: 12px;
  font-weight: 680;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.work-card__title {
  margin: 0;
  color: var(--cr-text);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.work-card__proof {
  max-width: 620px;
  padding-block-start: 18px;
  border-top: 1px solid var(--cr-line-soft);
}

.work-card__description {
  max-width: 560px;
  color: var(--cr-text-soft);
  font-size: 18px;
}

.work-card__action {
  width: fit-content;
  min-height: 44px;
  padding-block: 9px;
  color: var(--cr-blue);
  font-weight: 640;
  text-decoration: none;
}

.work-card__action:hover {
  color: var(--cr-text);
}

.work-bridge {
  max-width: 920px;
  margin-block-start: 32px;
  color: var(--cr-text-muted);
  font-size: 18px;
}

#why-cronsu {
  background:
    radial-gradient(circle at 28% 38%, rgba(74, 163, 255, 0.12), transparent 24rem),
    var(--cr-bg-2);
}

.trust-grid {
  display: grid;
  gap: 0;
  border-block: 1px solid var(--cr-line);
}

.trust-row {
  grid-template-columns: 56px 1fr;
}

.final-panel-section {
  background: var(--cr-bg);
  padding-block-end: 72px;
}

.final-panel {
  position: relative;
  display: grid;
  gap: 40px;
  overflow: hidden;
  min-height: 520px;
  padding: 36px;
  background:
    radial-gradient(circle at 78% 48%, rgba(74, 163, 255, 0.16), transparent 28rem),
    var(--cr-bg-3);
  border: 1px solid var(--cr-line);
}

.final-panel__copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.final-panel p {
  max-width: 720px;
  color: var(--cr-text-soft);
  font-size: 18px;
}

.final-panel__visual {
  position: absolute;
  right: -24%;
  bottom: -18%;
  z-index: 1;
  width: min(110vw, 900px);
  opacity: 0.52;
  mask-image: radial-gradient(circle at center, black 38%, transparent 76%);
}

.reassurance {
  margin-block-start: 22px;
  color: var(--cr-blue);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.text-link--light {
  color: var(--cr-text);
}

.site-footer {
  padding-block: 56px 36px;
  color: var(--cr-text-muted);
  background: var(--cr-bg);
  border-top: 1px solid var(--cr-line);
}

.footer-grid {
  display: grid;
  gap: 34px;
}

.wordmark--footer {
  display: inline-block;
  margin-block-end: 18px;
}

.footer-tagline {
  margin-block-start: 16px;
  color: var(--cr-blue);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 12px;
}

.copyright {
  padding-block-start: 28px;
  border-top: 1px solid var(--cr-line-soft);
  font-size: 14px;
}

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

@media (min-width: 48rem) {
  :root {
    --gutter: 32px;
  }

  .section {
    padding-block: 112px;
  }

  .site-nav__links {
    display: flex;
    align-items: center;
    gap: 28px;
  }

  .hero {
    padding-block: clamp(92px, 12svh, 142px) 92px;
  }

  .hero__grid {
    display: block;
  }

  .hero-visual img {
    min-height: 640px;
    object-fit: contain;
  }

  .operating-grid,
  .helps-grid,
  .fix-grid,
  .why-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    align-items: start;
  }

  .layer-map span,
  .numbered-row,
  .path-step {
    grid-template-columns: 72px 1fr;
  }

  .helps-rows .numbered-row {
    display: block;
    padding-block: 64px;
  }

  .helps-rows .numbered-row:first-child {
    padding-block-start: 0;
  }

  .helps-visual {
    position: absolute;
    right: -10%;
    bottom: -16%;
    width: min(44vw, 700px);
  }

  .path-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .path-step {
    display: block;
    min-height: 260px;
    padding-inline: 24px;
    border-right: 1px solid var(--cr-line-soft);
    border-bottom: 0;
  }

  .path-step__number,
  .path-step h3 {
    margin-block-end: 18px;
  }

  .path-step p {
    max-width: 300px;
  }

  .path-step:last-child {
    border-right: 0;
  }

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

  .final-panel {
    min-height: 640px;
    padding: 64px;
  }

  .final-panel-section {
    padding-block: 112px 48px;
  }

  .final-panel__visual {
    right: -12%;
    bottom: -20%;
    width: min(62vw, 900px);
    opacity: 0.5;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, auto);
  }

  .copyright {
    grid-column: 1 / -1;
  }
}

@media (min-width: 64rem) {
  :root {
    --gutter: 48px;
  }

  h1 {
    max-width: 760px;
    font-size: clamp(76px, 5.2vw, 98px);
    font-weight: 300;
    line-height: 1.12;
  }

  h2 {
    font-size: clamp(46px, 4.85vw, 78px);
  }

  .section {
    padding-block: 128px;
  }

  .hero {
    padding-block: clamp(96px, 12svh, 152px) 88px;
  }

  .final-panel-section {
    padding-block: 128px 56px;
  }

  .hero__grid {
    min-height: min(850px, calc(100svh - var(--nav-height) - 44px));
  }

  .hero__copy {
    margin-left: clamp(24px, 1.9vw, 36px);
  }

  .hero-visual {
    top: 47%;
    right: -19vw;
    width: min(76vw, 1320px);
  }

  .hero-visual img {
    max-height: none;
    min-height: 760px;
  }
}

/* Targeted reference-alignment pass */
.operating-section {
  background:
    radial-gradient(circle at 78% 34%, rgba(74, 163, 255, 0.1), transparent 28rem),
    linear-gradient(180deg, var(--cr-bg), var(--cr-bg-2));
}

.operating-grid {
  position: relative;
  padding-block: 18px;
}

.operating-grid::before {
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--cr-blue-line), var(--cr-line-soft), transparent);
}

.operating-copy {
  position: relative;
  padding: 28px;
  background: rgba(8, 13, 22, 0.36);
  border: 1px solid var(--cr-line-soft);
}

.operating-copy::after {
  position: absolute;
  inset: 22px;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(74, 163, 255, 0.18) 18% calc(18% + 1px), transparent calc(18% + 1px)),
    linear-gradient(0deg, transparent 0 52%, rgba(255, 255, 255, 0.08) 52% calc(52% + 1px), transparent calc(52% + 1px));
  opacity: 0.6;
  mask-image: linear-gradient(135deg, transparent, black 24%, transparent 84%);
}

.layer-map {
  position: relative;
  z-index: 1;
  background: rgba(3, 6, 10, 0.42);
}

.layer-map span {
  align-items: center;
  min-height: 78px;
  font-size: clamp(24px, 2.7vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.layer-map b {
  display: inline-block;
  min-width: 64px;
  font-size: 13px;
  letter-spacing: 0.18em;
}

.online-fix-section .section-heading h2 {
  max-width: 10ch;
}

.fix-panel {
  overflow: hidden;
  min-height: 520px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(74, 163, 255, 0.08), transparent 52%),
    rgba(8, 13, 22, 0.38);
  border: 1px solid var(--cr-line-soft);
}

.fix-table {
  max-width: 680px;
  background: rgba(3, 6, 10, 0.78);
}

.fix-row {
  min-height: 76px;
}

.fix-visual {
  right: -8%;
  bottom: -10%;
  width: min(86vw, 760px);
  opacity: 0.62;
}

.build-path-section {
  background:
    radial-gradient(circle at 50% 42%, rgba(74, 163, 255, 0.08), transparent 30rem),
    var(--cr-bg);
}

.path-grid {
  border-top-color: rgba(74, 163, 255, 0.24);
}

.path-grid::after {
  position: absolute;
  top: -1px;
  left: 0;
  width: 34%;
  height: 1px;
  content: "";
  background: var(--cr-blue-line);
  box-shadow: 0 0 18px rgba(74, 163, 255, 0.42);
}

.path-step::before {
  display: block;
  width: 8px;
  height: 8px;
  margin-block: -5px 28px;
  content: "";
  background: var(--cr-blue);
  box-shadow: 0 0 20px rgba(74, 163, 255, 0.74);
}

.path-step h3 {
  max-width: 300px;
  font-size: clamp(25px, 2.35vw, 36px);
  font-weight: 360;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.section--work .section-heading {
  max-width: 1120px;
}

.section--work .section-heading h2 {
  max-width: 11ch;
}

.work-card {
  background:
    radial-gradient(circle at 90% 12%, rgba(74, 163, 255, 0.12), transparent 18rem),
    linear-gradient(135deg, rgba(74, 163, 255, 0.08), transparent 40%),
    rgba(8, 13, 22, 0.76);
}

.work-card__content {
  min-height: 500px;
  padding: clamp(34px, 4vw, 60px);
}

.work-card__title {
  font-size: clamp(42px, 4.4vw, 66px);
}

.work-card__description,
.work-card__proof {
  font-size: clamp(18px, 1.3vw, 22px);
  line-height: 1.55;
}

#why-cronsu {
  background:
    linear-gradient(90deg, rgba(74, 163, 255, 0.07), transparent 38%),
    var(--cr-bg-2);
}

.trust-grid {
  background: rgba(3, 6, 10, 0.28);
}

.trust-row {
  padding-block: 34px;
}

.trust-row > span {
  position: relative;
  align-self: start;
  padding-block-start: 6px;
}

.trust-row > span::after {
  display: block;
  width: 26px;
  height: 1px;
  margin-block-start: 12px;
  content: "";
  background: var(--cr-blue-line);
}

.trust-row h3 {
  max-width: 760px;
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 360;
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.trust-row p {
  max-width: 720px;
  color: var(--cr-text-soft);
  font-size: clamp(17px, 1.25vw, 21px);
}

.final-panel {
  align-items: center;
  background:
    radial-gradient(circle at 75% 50%, rgba(74, 163, 255, 0.18), transparent 28rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 48%),
    var(--cr-bg-3);
}

.final-panel__visual {
  right: -10%;
  bottom: -12%;
  opacity: 0.58;
}

.site-footer {
  background:
    linear-gradient(180deg, var(--cr-bg), #020408);
}

@media (min-width: 48rem) {
  .operating-copy {
    padding: 42px;
  }

  .fix-panel {
    min-height: 600px;
    padding: 40px;
  }

  .final-panel {
    grid-template-columns: minmax(0, 0.58fr) minmax(0, 0.42fr);
  }
}

/* Reference section system pass */
h2 span {
  display: block;
}

h2 span:last-child {
  color: rgba(245, 247, 250, 0.52);
}

.section-kicker {
  margin-block-end: 30px;
  color: var(--cr-blue);
  font-size: clamp(13px, 0.95vw, 16px);
  font-weight: 480;
  letter-spacing: 0.32em;
}

.section-heading > p:not(.section-kicker),
.final-panel p,
.footer-brand p {
  color: rgba(245, 247, 250, 0.72);
  font-size: clamp(20px, 1.35vw, 26px);
  font-weight: 330;
  line-height: 1.5;
  letter-spacing: -0.025em;
}

.section-heading > h2,
.final-panel h2 {
  max-width: 760px;
  font-size: clamp(62px, 6.4vw, 116px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.055em;
}

.section-heading > p:not(.section-kicker)::before,
.final-panel__copy > p:not(.section-kicker)::before,
.footer-tagline::before {
  display: block;
  width: 64px;
  height: 1px;
  margin-block: 0 30px;
  content: "";
  background: var(--cr-blue-line);
}

.helps-section {
  background:
    radial-gradient(circle at 86% 48%, rgba(74, 163, 255, 0.14), transparent 28rem),
    var(--cr-bg);
}

.helps-grid {
  min-height: 820px;
}

.helps-section .section-heading h2 {
  max-width: 620px;
}

.helps-section .section-heading p:not(.section-kicker) {
  max-width: 620px;
}

.helps-rows {
  border-block: 1px solid var(--cr-line);
}

.helps-rows .numbered-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 24px;
  padding-block: 46px;
}

.helps-rows .numbered-row > span {
  margin-block-end: 0;
  font-size: 18px;
  font-weight: 420;
}

.helps-rows .numbered-row h3 {
  max-width: 620px;
  font-size: clamp(42px, 3.3vw, 58px);
  font-weight: 300;
  letter-spacing: -0.055em;
}

.helps-rows .numbered-row p {
  max-width: 440px;
  color: rgba(245, 247, 250, 0.72);
  font-size: clamp(20px, 1.35vw, 24px);
  font-weight: 330;
  line-height: 1.38;
}

.helps-visual {
  opacity: 0.34;
  filter: saturate(1.2) contrast(1.12);
  mix-blend-mode: screen;
  mask-image: radial-gradient(circle at center, black 38%, transparent 76%);
}

.online-fix-section {
  position: relative;
  overflow: hidden;
  min-height: 940px;
  scroll-margin-top: -12px;
  padding-block: 92px 82px;
  background:
    radial-gradient(circle at 70% 38%, rgba(74, 163, 255, 0.13), transparent 35rem),
    linear-gradient(90deg, #03060a 0%, #03060a 36%, #050b13 58%, #020408 100%),
    var(--cr-bg);
}

.online-fix-section::before {
  position: absolute;
  top: -7%;
  right: -9vw;
  bottom: -8%;
  z-index: 0;
  width: min(72vw, 1360px);
  pointer-events: none;
  content: "";
  background: url("/assets/images/cronsu/online-fix-report-visual.webp") center / contain no-repeat;
  opacity: 0.82;
  filter: saturate(1.1) contrast(1.1) brightness(1.02);
  mix-blend-mode: screen;
  mask-image: radial-gradient(ellipse at 62% 44%, black 0 39%, rgba(0, 0, 0, 0.72) 58%, rgba(0, 0, 0, 0.24) 76%, transparent 94%);
}

.online-fix-section::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, var(--cr-bg) 0 39%, rgba(3, 6, 10, 0.78) 47%, rgba(3, 6, 10, 0.18) 62%, rgba(3, 6, 10, 0.58) 100%),
    linear-gradient(180deg, var(--cr-bg) 0 2%, transparent 18%, transparent 76%, var(--cr-bg) 100%);
}

.fix-grid {
  position: relative;
  z-index: 2;
}

.online-fix-section .section-heading {
  position: relative;
  z-index: 3;
  max-width: 690px;
}

.online-fix-section .section-heading h2 {
  max-width: 690px;
  font-size: clamp(62px, 5.35vw, 92px);
  line-height: 1.08;
}

.online-fix-section .section-heading p:not(.section-kicker) {
  max-width: 610px;
  font-size: clamp(20px, 1.28vw, 24px);
  line-height: 1.45;
}

.online-fix-mobile-visual {
  display: none;
}

.online-fix-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 60px;
  align-items: center;
  margin-block-start: 18px;
}

.online-fix-actions .button {
  min-width: min(100%, 348px);
  min-height: 64px;
  padding: 19px 34px;
  font-size: 15px;
  letter-spacing: 0.16em;
}

.fix-panel {
  display: none;
  isolation: isolate;
  min-height: 0;
  padding: 0;
  background: transparent;
  border: 0;
}

.fix-panel::after {
  display: none;
}

.fix-table {
  position: relative;
  max-width: 690px;
  margin-block-start: 46px;
  padding: 0;
  background: transparent;
  border-block: 1px solid var(--cr-line);
}

.fix-table__label {
  margin-block: 0;
  padding-block: 0 18px;
  color: var(--cr-blue);
  border-bottom: 1px solid var(--cr-line);
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 480;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.fix-row {
  min-height: 52px;
  grid-template-columns: 56px minmax(0, 1fr) 48px;
  gap: 18px;
  align-items: center;
  padding-block: 10px;
  border-color: var(--cr-line);
}

.fix-row::after {
  width: 48px;
  height: 1px;
  content: "";
  background: rgba(245, 247, 250, 0.22);
}

.fix-row__problem {
  font-size: 18px;
  font-weight: 420;
  letter-spacing: 0.14em;
}

.fix-row__fix {
  font-size: clamp(16px, 1.1vw, 20px);
  font-weight: 520;
  line-height: 1.25;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.fix-visual {
  position: absolute;
  z-index: 1;
  max-width: none;
  opacity: 0.86;
  filter: saturate(1.08) contrast(1.08) brightness(0.96);
  mask-image: radial-gradient(ellipse at 60% 42%, black 0 38%, rgba(0, 0, 0, 0.82) 55%, rgba(0, 0, 0, 0.28) 75%, transparent 92%);
}

.path-heading {
  display: grid;
  gap: 34px;
  align-items: end;
}

.path-heading h2 {
  max-width: 1180px;
}

.path-heading h2 span {
  display: inline;
}

.path-heading h2 span:last-child {
  margin-inline-start: 0.12em;
}

.path-heading > p {
  max-width: 520px;
  color: rgba(245, 247, 250, 0.72);
  font-size: clamp(20px, 1.28vw, 24px);
  font-weight: 330;
  line-height: 1.45;
  letter-spacing: -0.025em;
}

.path-grid {
  margin-block-start: 86px;
  border-top-color: rgba(245, 247, 250, 0.42);
}

.path-grid::before {
  position: absolute;
  top: -5px;
  right: 0;
  left: 0;
  height: 9px;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle, var(--cr-blue) 0 4px, transparent 5px) 5% 0 / 25% 9px repeat-x;
  filter: drop-shadow(0 0 12px rgba(74, 163, 255, 0.9));
}

.path-grid::after {
  width: 92%;
  background: linear-gradient(90deg, rgba(245, 247, 250, 0.42), rgba(245, 247, 250, 0.42) 88%, transparent);
  box-shadow: none;
}

.path-step {
  min-height: 450px;
  padding: 56px clamp(24px, 3vw, 70px) 0;
  border-right: 1px solid var(--cr-line);
}

.path-step::before {
  display: none;
}

.path-step__number {
  width: fit-content;
  margin-block-end: 26px;
  color: var(--cr-blue);
  font-size: 18px;
  font-weight: 420;
}

.path-step__number::after {
  display: block;
  width: 28px;
  height: 1px;
  margin-block-start: 10px;
  content: "";
  background: var(--cr-blue-line);
}

.path-step h3 {
  font-size: clamp(34px, 2.35vw, 44px);
  font-weight: 300;
  line-height: 1.08;
}

.path-step p {
  max-width: 340px;
  color: rgba(245, 247, 250, 0.68);
  font-size: clamp(17px, 1.03vw, 20px);
  font-weight: 330;
  line-height: 1.5;
}

.path-step__meta {
  margin-block-start: 42px;
  padding-block-start: 24px;
  border-top: 1px solid var(--cr-line-soft);
}

.path-step__meta span {
  display: block;
  margin-block: 18px 6px;
  color: var(--cr-blue);
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.path-step__meta p {
  font-size: 17px;
}

#why-cronsu {
  background:
    radial-gradient(circle at 8% 42%, rgba(74, 163, 255, 0.1), transparent 24rem),
    var(--cr-bg);
}

#why-cronsu .section-heading h2 {
  max-width: 620px;
}

.trust-grid {
  background: transparent;
  border-block: 1px solid var(--cr-line);
}

.trust-row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 22px;
  padding-block: 38px;
  border-bottom: 1px solid var(--cr-line);
}

.trust-row:last-child {
  border-bottom: 0;
}

.trust-row > div {
  display: grid;
  gap: 42px;
}

.trust-row h3 {
  max-width: 390px;
  font-size: clamp(34px, 2.35vw, 46px);
  font-weight: 300;
  line-height: 1.12;
}

.trust-row p {
  max-width: 360px;
  color: rgba(245, 247, 250, 0.68);
  font-size: clamp(16px, 0.96vw, 19px);
  font-weight: 330;
  line-height: 1.5;
}

.final-panel-section {
  overflow: hidden;
  min-height: 920px;
  padding-block: 110px 70px;
  background: var(--cr-bg);
}

.final-panel {
  position: relative;
  display: block;
  min-height: 740px;
  padding: 0;
  background: transparent;
  border: 0;
}

.final-panel__copy {
  max-width: 720px;
  padding-block-start: 40px;
}

.final-panel h2 {
  max-width: 780px;
}

.final-panel__visual {
  top: 0;
  right: -12vw;
  bottom: auto;
  width: min(78vw, 1180px);
  opacity: 0.72;
  filter: saturate(1.08) contrast(1.12);
  mask-image: radial-gradient(circle at 52% 50%, black 36%, rgba(0, 0, 0, 0.72) 62%, transparent 86%);
}

.final-panel__brand {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  gap: 34px;
  align-items: center;
  color: rgba(245, 247, 250, 0.76);
}

.final-panel__brand span:first-child {
  padding-inline-end: 34px;
  border-right: 1px solid var(--cr-line);
  color: var(--cr-text);
  font-size: 26px;
  letter-spacing: 0.42em;
}

.site-footer {
  padding-block: 104px 54px;
  color: rgba(245, 247, 250, 0.66);
  background:
    radial-gradient(circle at 16% 36%, rgba(74, 163, 255, 0.08), transparent 25rem),
    #020408;
}

.footer-inner {
  border-top: 1px solid var(--cr-line);
}

.footer-main {
  display: grid;
  gap: 44px;
  padding-block: 70px;
  border-bottom: 1px solid var(--cr-line);
}

.footer-brand {
  max-width: 420px;
}

.footer-brand p {
  font-size: clamp(19px, 1.2vw, 23px);
}

.wordmark--footer {
  margin-block-end: 34px;
  font-size: 31px;
  font-weight: 360;
  letter-spacing: 0.44em;
}

.footer-tagline {
  display: inline-block;
  margin-block-start: 42px;
  color: var(--cr-blue);
  font-size: 15px;
  font-weight: 420;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 18px;
}

.footer-column h2 {
  margin: 0 0 16px;
  color: var(--cr-blue);
  font-size: 14px;
  font-weight: 480;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  min-height: 0;
  margin: 0;
  color: rgba(245, 247, 250, 0.68);
  font-size: clamp(18px, 1.15vw, 22px);
  font-weight: 330;
  line-height: 1.35;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--cr-text);
}

.footer-bottom {
  display: grid;
  gap: 24px;
  padding-block-start: 54px;
  color: rgba(245, 247, 250, 0.72);
  font-size: 16px;
  letter-spacing: 0.08em;
}

@media (min-width: 48rem) {
  .helps-grid {
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
    gap: 76px;
  }

  .helps-visual {
    right: -6vw;
    bottom: -8%;
    width: min(52vw, 900px);
  }

  .fix-grid {
    grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
    align-items: start;
    min-height: 720px;
    gap: clamp(42px, 5vw, 96px);
  }

  .fix-panel {
    display: none;
  }

  .fix-visual {
    top: -1%;
    right: -12vw;
    bottom: auto;
    width: min(58vw, 1040px);
  }

  .path-heading {
    grid-template-columns: minmax(0, 0.68fr) minmax(360px, 0.32fr);
  }

  .why-grid {
    grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.62fr);
    gap: 90px;
  }

  .trust-row > div {
    grid-template-columns: minmax(260px, 390px) minmax(300px, 360px);
    column-gap: clamp(64px, 5vw, 96px);
    align-items: start;
    justify-content: start;
  }

  .footer-main {
    grid-template-columns: 1.8fr 1fr 1fr 0.9fr 1fr;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (max-width: 47.999rem) {
  .online-fix-section {
    scroll-margin-top: var(--anchor-offset);
    padding-block: 76px 68px;
  }

  .online-fix-section::before,
  .online-fix-section::after {
    display: none;
  }

  .section-heading > h2,
  .final-panel h2 {
    font-size: clamp(50px, 13vw, 68px);
  }

  .helps-rows .numbered-row,
  .trust-row {
    grid-template-columns: 1fr;
  }

  .online-fix-mobile-visual {
    display: block;
    margin-block: 32px;
    opacity: 0.74;
  }

  .fix-visual {
    display: none;
  }

  .path-heading h2 span {
    display: block;
  }

  .path-grid::before,
  .path-grid::after {
    display: none;
  }

  .path-step {
    min-height: 0;
    padding: 34px 0;
    border-right: 0;
  }

  .final-panel__visual {
    position: relative;
    right: auto;
    width: 125%;
    margin-block-start: 34px;
    margin-inline-start: -10%;
  }

  .final-panel__brand {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    margin-block-start: 34px;
  }

  .final-panel__brand span:first-child {
    border-right: 0;
  }
}

/* Conversion and proof polish */
.mobile-nav {
  display: none;
}

.work-card__link--with-media {
  display: grid;
  grid-template-rows: auto 1fr;
}

.work-card__media {
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  aspect-ratio: 8 / 5;
  background: var(--cr-bg-3);
  border-bottom: 1px solid var(--cr-line);
}

.work-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.work-card:hover .work-card__media img,
.work-card:focus-within .work-card__media img {
  filter: contrast(1.03);
  transform: scale(1.012);
}

.work-card__link--with-media .work-card__content {
  min-height: 390px;
}

.path-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 36px;
  align-items: center;
  margin-block-start: 64px;
}

.path-step p {
  word-break: normal;
  overflow-wrap: normal;
}

@media (min-width: 48rem) {
  .helps-rows {
    background: linear-gradient(90deg, rgba(3, 6, 10, 0.96) 0 60%, rgba(3, 6, 10, 0.78) 82%, transparent);
  }

  .work-card__link--with-media .work-card__content {
    padding: clamp(30px, 3.2vw, 48px);
  }
}

@media (max-width: 47.999rem) {
  :root {
    --nav-height: 122px;
  }

  .site-nav {
    display: grid;
    grid-template-areas:
      "brand cta"
      "menu menu";
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0 12px;
    align-content: center;
    padding-block-start: 8px;
  }

  .site-nav .wordmark {
    grid-area: brand;
    font-size: 20px;
  }

  .site-nav .button--nav {
    grid-area: cta;
    max-width: 164px;
    font-size: 13px;
    line-height: 1.15;
  }

  .mobile-nav {
    position: relative;
    display: block;
    grid-area: menu;
    border-top: 1px solid var(--cr-line-soft);
  }

  .site-header:has(.mobile-nav[open]) {
    position: relative;
  }

  .mobile-nav summary {
    display: flex;
    align-items: center;
    min-height: 34px;
    color: var(--cr-text-muted);
    cursor: pointer;
    font-size: 12px;
    letter-spacing: 0.2em;
    list-style: none;
    text-transform: uppercase;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav summary::marker {
    content: "";
  }

  .mobile-nav__panel {
    position: static;
    z-index: 60;
    display: grid;
    padding: 10px 0;
    background: rgba(3, 6, 10, 0.98);
    border-block: 1px solid var(--cr-line);
  }

  .mobile-nav__panel a {
    display: flex;
    align-items: center;
    min-height: 44px;
    color: var(--cr-text-soft);
    font-size: 16px;
    text-decoration: none;
  }

  .hero {
    padding-block: 56px 72px;
  }

  .hero__grid {
    min-height: auto;
  }

  .hero__copy {
    display: flex;
    flex-direction: column;
  }

  .hero__copy .eyebrow {
    order: 0;
  }

  .hero__copy h1 {
    order: 1;
    margin-block-end: 0;
  }

  .hero__actions {
    order: 2;
    margin-block-start: 30px;
  }

  .hero__lead {
    order: 3;
    margin-block-start: 42px;
    padding-block-start: 24px;
    font-size: 19px;
  }

  .hero__actions .button {
    width: 100%;
    min-height: 62px;
    padding: 18px 20px;
    font-size: 14px;
  }

  .hero-visual {
    top: 42%;
    right: -28vw;
    width: 90vw;
    opacity: 0.5;
  }

  .work-card__link--with-media .work-card__content {
    min-height: 360px;
    padding: 30px;
  }

  .path-actions,
  .final-panel__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .path-actions .button,
  .final-panel__actions .button {
    width: 100%;
  }
}
