:root {
  --ink: #071b3a;
  --muted: #536b91;
  --line: #d8e7fb;
  --line-strong: #c8dcf7;
  --paper: #f8fbff;
  --soft: #edf6ff;
  --blue: #2e82ff;
  --blue-dark: #0b4fb8;
  --blue-deep: #06265f;
  --cyan: #72c7ff;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(25, 105, 224, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f9ff 44%, #ffffff 100%),
    var(--paper);
  font-family: "Noto Sans JP", system-ui, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.menu-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.site-header {
  position: fixed;
  z-index: 70;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 112px;
  padding: 26px clamp(42px, 7vw, 132px);
  background: rgba(255, 255, 255, 0.98);
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: blur(12px);
}

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

.brand {
  margin-right: auto;
  flex: 0 0 auto;
  gap: 12px;
  font-weight: 900;
  font-size: clamp(26px, 2.2vw, 40px);
  line-height: 1;
  color: #064f9f;
}

.brand span:last-child {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.brand strong {
  font-size: clamp(26px, 2.2vw, 40px);
}

.brand-mark {
  display: inline-block;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  background: url("assets/codex-cloud-logo.svg") center / contain no-repeat;
  border-radius: 10px;
}

.brand-mark svg {
  display: none;
  width: 100%;
  height: 100%;
}

.brand-mark path:first-child {
  fill: #2f80ff;
}

.brand-mark path:last-child {
  fill: #69adff;
}

.nav {
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
  gap: clamp(16px, 1.55vw, 28px);
  color: #071b3a;
  font-size: clamp(15px, 1.2vw, 22px);
  font-weight: 900;
  white-space: nowrap;
}

.nav a:hover {
  color: var(--blue-dark);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 172px;
  min-height: 58px;
  padding: 0 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  word-break: keep-all;
}

.header-menu {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 76px;
  height: 76px;
  color: #2c2c2c;
  border: 0;
  border-radius: 0;
  font-weight: 900;
  cursor: pointer;
}

.header-menu span {
  width: 58px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transform-origin: center;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.menu-toggle:checked ~ .site-header .header-menu span:nth-child(1) {
  transform: translateY(12px) rotate(45deg);
}

.menu-toggle:checked ~ .site-header .header-menu span:nth-child(2) {
  opacity: 0;
}

.menu-toggle:checked ~ .site-header .header-menu span:nth-child(3) {
  transform: translateY(-12px) rotate(-45deg);
}

.site-header .theme-toggle {
  display: inline-grid;
}

.menu-scrim {
  position: fixed;
  z-index: 50;
  inset: 0;
  background: rgba(255, 255, 255, 0.66);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.side-menu {
  position: fixed;
  z-index: 60;
  top: 112px;
  right: 0;
  width: clamp(300px, 20vw, 420px);
  height: calc(100svh - 112px);
  padding: clamp(42px, 4.2vw, 68px) clamp(22px, 2vw, 34px) 48px;
  color: #ffffff;
  background: #303030;
  box-shadow: none;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.28s ease;
}

.menu-toggle:checked ~ .menu-scrim {
  opacity: 1;
  pointer-events: auto;
}

.menu-toggle:checked ~ .side-menu {
  transform: translateX(0);
}

.menu-head {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px 18px;
  border-bottom: 1px solid #e7edf7;
}

.menu-head p {
  margin: 0;
  color: #141414;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.28em;
}

.menu-close {
  position: relative;
  width: 38px;
  height: 38px;
  cursor: pointer;
}

.menu-close::before,
.menu-close::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 3px;
  width: 34px;
  height: 3px;
  background: #1f1f1f;
  border-radius: 999px;
}

.menu-close::before {
  transform: rotate(45deg);
}

.menu-close::after {
  transform: rotate(-45deg);
}

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

.menu-list a {
  position: relative;
  display: flex;
  gap: 0;
  align-items: center;
  min-height: 78px;
  padding: 0 38px 0 0;
  color: #ffffff;
  border-bottom: 0;
}

.menu-list a::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  font-weight: 300;
  transform: translateY(-50%);
}

.menu-list a.is-active {
  background: transparent;
}

.menu-icon {
  display: none;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #65758c;
}

.menu-initial {
  color: var(--blue-dark);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 900;
}

.menu-icon path,
.menu-icon rect,
.menu-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 3.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-list rect,
.icon-card circle,
.icon-news .news-block {
  fill: currentColor;
  stroke: none;
}

.clean-icon path,
.clean-icon rect,
.clean-icon circle {
  stroke-width: 2.2;
}

.clean-icon .icon-fill {
  fill: currentColor;
  stroke: none;
}

.icon-price-doc.clean-icon path,
.icon-price-doc.clean-icon rect {
  stroke-width: 2.9;
}

.icon-building-check.clean-icon path,
.icon-building-check.clean-icon rect:not(.icon-fill),
.icon-building-check.clean-icon circle {
  stroke-width: 3.1;
}

.icon-target path,
.icon-target circle {
  stroke: currentColor;
}

.icon-target circle {
  fill: currentColor;
}

.icon-target path:last-child {
  stroke: #ffffff;
  stroke-width: 3.2;
}

.menu-list a.is-active .icon-target {
  color: #2f7dff;
  filter: drop-shadow(0 7px 12px rgba(47, 125, 255, 0.22));
}

.menu-list a.is-active .icon-target path,
.menu-list a.is-active .icon-target circle {
  stroke: url("#target-blue");
}

.menu-list a.is-active .icon-target circle {
  fill: #2f7dff;
}

.menu-list strong,
.menu-list small {
  display: block;
}

.menu-list strong {
  color: #ffffff;
  font-size: clamp(18px, 1.12vw, 22px);
  line-height: 1.2;
  font-weight: 900;
}

.menu-list small {
  display: none;
}

.menu-actions {
  display: grid;
  gap: 18px;
  margin-top: clamp(28px, 3vw, 44px);
}

.menu-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 12px 18px;
  text-align: center;
  font-size: clamp(16px, 1.05vw, 20px);
  line-height: 1.2;
  font-weight: 900;
}

.menu-download {
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.86);
}

.menu-download span {
  font-size: 0.9em;
}

.menu-contact {
  position: relative;
  color: #303030;
  background: #ffffff;
}

.menu-contact::after {
  content: "";
  position: absolute;
  right: 24px;
  width: 16px;
  height: 16px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.side-menu.side-menu--mirror {
  left: 0;
  right: auto;
  width: 100vw;
  max-width: none;
  padding: 32px 20px 56px;
  color: #01294d;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(3px) opacity(80%);
  -webkit-backdrop-filter: blur(3px) opacity(80%);
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
}

.mirror-menu-page .brand {
  gap: 8px;
  font-family: Arial, "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
  color: #182f3d;
  letter-spacing: 0;
}

.mirror-menu-page .brand span:last-child {
  gap: 0;
  align-items: center;
  line-height: 1;
}

.mirror-menu-page .brand strong {
  font-size: 1em;
  font-weight: 700;
}

.mirror-menu-page .brand-mark {
  width: 40px;
  height: 40px;
  flex-basis: 40px;
}

.mirror-menu-page .header-menu {
  color: #3980cb;
}

@media (max-width: 980px) {
  .mirror-menu-page .site-header {
    min-height: 54px;
    padding: 10px 14px 10px 18px;
  }

  .mirror-menu-page .brand {
    font-size: 23px;
  }

  .mirror-menu-page .brand strong {
    font-size: 23px;
  }

  .mirror-menu-page .brand-mark {
    width: 31px;
    height: 31px;
    flex-basis: 31px;
    border-radius: 8px;
  }

  .mirror-menu-page .header-menu {
    width: 32px;
    height: 22px;
    gap: 8px;
  }

  .mirror-menu-page .header-menu span {
    width: 32px;
  }

  .mirror-menu-page .side-menu.side-menu--mirror {
    top: 54px;
    height: calc(100svh - 54px);
    padding: 32px 20px 56px;
  }
}

.menu-toggle:checked ~ .menu-scrim--mirror {
  opacity: 0;
  pointer-events: none;
}

.menu-toggle:checked ~ .side-menu--mirror {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.side-menu--mirror .menu-list {
  width: min(303px, calc(100vw - 40px));
  margin: 0 auto;
}

.side-menu--mirror .menu-list a {
  min-height: auto;
  padding: 20px 0;
  color: #01294d;
}

.side-menu--mirror .menu-icon,
.side-menu--mirror .menu-list small,
.side-menu--mirror .menu-download {
  display: none;
}

.side-menu--mirror .menu-list a::before {
  content: "";
  display: block;
  flex: 0 0 12px;
  width: 12px;
  height: 2px;
  margin-right: 10px;
  background: #3980cb;
}

.side-menu--mirror .menu-list a::after {
  content: none;
}

.side-menu--mirror .menu-list strong {
  color: #01294d;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
}

.side-menu--mirror .menu-actions {
  justify-items: center;
  margin-top: 36px;
}

.side-menu--mirror .menu-actions a {
  width: min(303px, calc(100vw - 40px));
  min-height: 54px;
  padding: 12px 18px;
  color: #fff;
  background: linear-gradient(to right, #2c83d0, #0065bd);
  border: 0;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
}

.side-menu--mirror .menu-contact::after {
  content: none;
}

.menu-bottom {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

.menu-bottom a {
  color: #01294d;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.2;
  text-decoration: underline;
}

.menu-learning {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  margin-top: 18px;
  color: #171717;
  background: #ffffff;
  border: 2px solid #cfd5df;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 900;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 0;
  padding: 0;
  color: #071b3a;
  background: #ffffff;
  isolation: isolate;
  --hero-accent: #2e82ff;
  --hero-accent-deep: #0759ff;
  --hero-accent-shadow: rgba(46, 130, 255, 0.34);
}

.hero::before {
  display: none;
}

.hero-billboard {
  position: relative;
  display: block;
  width: 100%;
  min-height: 0;
  padding-top: 112px;
  background: #ffffff;
}

.hero-main-panel {
  position: relative;
  overflow: hidden;
  min-height: clamp(390px, 36vw, 520px);
  background:
    linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.98) 45%, rgba(255, 255, 255, 0.72) 64%, rgba(255, 255, 255, 0.12) 100%),
    #ffffff;
}

.hero-image {
  position: relative;
  inset: auto;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
  filter: none;
  opacity: 1;
}

.hero--fv {
  background: #ffffff;
}

.hero-billboard--fv {
  padding-top: 112px;
}

.fv-visual {
  position: relative;
  min-height: clamp(390px, 41.6vw, 540px);
  overflow: hidden;
  background-image: url("mirror-assets/images/mv-background.jpg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

.fv-visual__text {
  position: relative;
  z-index: 1;
  display: block;
  width: clamp(300px, 22vw, 370px);
  height: auto;
  padding-top: clamp(38px, 3.6vw, 58px);
  margin-left: max(70px, calc((100vw - 1040px) / 2 + 208px));
}

.fv-visual__mobile {
  display: none;
}

#about {
  scroll-margin-top: 110px;
}

#implementation {
  scroll-margin-top: 110px;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  align-content: center;
  align-items: end;
  column-gap: clamp(20px, 2.5vw, 42px);
  width: min(100%, 1120px);
  min-height: clamp(390px, 36vw, 520px);
  padding: clamp(30px, 4vw, 58px) clamp(20px, 5.4vw, 86px) clamp(26px, 3.2vw, 44px);
  text-shadow: none;
}

.hero-kicker {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 0 0 clamp(14px, 2vw, 24px);
  color: #060b16;
  font-size: clamp(20px, 2.05vw, 34px);
  line-height: 1.18;
  font-weight: 900;
  white-space: nowrap;
}

.hero-kicker::before {
  content: "";
  align-self: flex-end;
  width: clamp(74px, 8vw, 140px);
  height: 14px;
  margin: 0 -4px 0 0;
  background: rgba(255, 232, 82, 0.82);
  transform: translateY(-0.18em);
}

.hero-kicker b {
  color: #9d2019;
}

.hero h1 {
  grid-column: 1 / -1;
  max-width: 900px;
  margin: 0;
  color: #05070d;
  font-size: clamp(58px, 7.7vw, 132px);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: 0;
}

.hero h1 span,
.hero h1 strong {
  display: block;
}

.hero h1 strong {
  width: fit-content;
  margin-top: 0.06em;
  padding: 0;
  color: #05070d;
  background: none;
  border-radius: 0;
}

.hero-ranking-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: clamp(8px, 1.2vw, 20px);
  margin-top: clamp(18px, 2.2vw, 32px);
  color: #05070d;
  line-height: 0.96;
  font-weight: 900;
}

.hero-ranking-line span {
  color: #c6a13a;
  font-size: clamp(38px, 5vw, 84px);
  line-height: 1.02;
}

.hero-ranking-line b {
  color: #05070d;
  font-size: clamp(36px, 4.8vw, 80px);
  letter-spacing: 0.04em;
}

.hero-ranking-line strong {
  color: #05070d;
  font-size: clamp(72px, 9vw, 148px);
  line-height: 0.78;
}

.hero-badges {
  grid-column: 2;
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(8px, 0.9vw, 14px);
  align-self: center;
  margin: clamp(18px, 2vw, 28px) 0 0;
  padding: 0;
  list-style: none;
}

.hero-badges li {
  display: grid;
  place-items: center;
  width: clamp(76px, 6.6vw, 104px);
  aspect-ratio: 1;
  color: #ffffff;
  background: #1156c8;
  border-radius: 50%;
  font-size: clamp(15px, 1.35vw, 22px);
  line-height: 1.18;
  font-weight: 900;
  text-align: center;
}

.hero-logo-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  padding: 18px clamp(16px, 4vw, 72px);
  background: #f2f2f2;
  border-top: 1px solid #e6e8ee;
  border-bottom: 1px solid #e1e4ea;
}

.hero-logo-strip span {
  display: grid;
  place-items: center;
  min-height: clamp(58px, 5.2vw, 76px);
  padding: 0 18px;
  color: #111827;
  background: #ffffff;
  border: 1px solid #e1e4ea;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(7, 27, 58, 0.08);
  font-size: clamp(17px, 1.5vw, 26px);
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}

.hero-blue-panel {
  display: grid;
  justify-items: center;
  padding: clamp(34px, 4.2vw, 58px) clamp(20px, 6vw, 96px) clamp(38px, 5vw, 70px);
  color: #ffffff;
  background: #1255c9;
  text-align: center;
}

.hero-blue-panel p {
  margin: 0 0 12px;
  color: #fff100;
  font-size: clamp(22px, 2.3vw, 38px);
  line-height: 1.25;
  font-weight: 900;
}

.hero-blue-panel h2 {
  max-width: 1420px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(24px, 2.5vw, 42px);
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-blue-panel h2 span,
.hero-blue-panel h2 strong {
  display: block;
}

.pixel-banner {
  padding: 0 0 clamp(36px, 5vw, 64px);
  background:
    linear-gradient(180deg, rgba(216, 235, 255, 0.56), rgba(248, 251, 255, 0)),
    transparent;
}

.pixel-banner img {
  display: block;
  width: min(100%, 1320px);
  margin: 0 auto;
  border: 1px solid rgba(46, 130, 255, 0.16);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(11, 79, 184, 0.16);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p,
.compare-list span,
.pricing-note {
  line-break: strict;
  text-wrap: pretty;
  word-break: auto-phrase;
}

h1 {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 1.04;
  font-weight: 900;
}

.hero-lead {
  max-width: 780px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(18px, 1.75vw, 28px);
  line-height: 1.55;
  font-weight: 900;
}

.hero-lead b {
  display: inline-block;
  padding: 0.02em 0.28em 0.08em;
  color: #ffffff;
  background: linear-gradient(135deg, var(--hero-accent) 0%, var(--hero-accent-deep) 100%);
  border-radius: 8px;
}

.hero-actions {
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: clamp(22px, 3vw, 36px) 0 0;
}

.hero .button {
  min-width: min(100%, 290px);
  min-height: 64px;
  padding: 0 clamp(24px, 2.6vw, 42px);
  border-radius: 999px;
  font-size: clamp(16px, 1.25vw, 22px);
  font-weight: 900;
}

.button.primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 32px rgba(46, 130, 255, 0.28);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
}

.hero .button.primary {
  color: #1255c9;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.hero .button.ghost {
  color: #ffffff;
  background: rgba(4, 23, 65, 0.28);
  border: 2px solid rgba(255, 255, 255, 0.68);
  box-shadow: none;
}

.button.secondary {
  background: var(--soft);
  border: 1px solid var(--line);
}

.hero-facts {
  flex-wrap: wrap;
  gap: 10px;
}

.hero-facts div {
  min-width: 150px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(216, 231, 251, 0.9);
  border-radius: 8px;
}

.hero-facts dt {
  font-size: 20px;
  font-weight: 900;
}

.hero-facts dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.section {
  padding: clamp(86px, 8vw, 132px) clamp(20px, 5vw, 72px);
}

.route-page {
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: 160px clamp(18px, 5vw, 72px) 72px;
  background: linear-gradient(180deg, #d9edff 0%, var(--paper) 55%);
}

.route-panel {
  width: min(100%, 840px);
  padding: clamp(28px, 5vw, 56px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.route-panel h1 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 64px);
}

.route-panel p {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
}

.route-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.page-hero {
  padding: 170px clamp(20px, 5vw, 72px) 76px;
  background:
    linear-gradient(180deg, rgba(217, 237, 255, 0.92), rgba(248, 251, 255, 0.98)),
    var(--paper);
}

.page-hero h1 {
  max-width: 980px;
}

.page-hero p:not(.eyebrow) {
  max-width: 820px;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.9;
  font-weight: 700;
}

.page-actions,
.route-actions,
.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-actions,
.home-actions {
  margin-top: 30px;
}

.comparison-page {
  overflow: hidden;
  background:
    linear-gradient(180deg, #f7fbff 0%, #ffffff 42%, #f3f8ff 100%),
    #ffffff;
}

.comparison-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(36px, 5vw, 76px);
  min-height: 720px;
  padding: 168px clamp(20px, 5vw, 72px) 66px;
  background:
    radial-gradient(circle at 86% 18%, rgba(92, 151, 255, 0.24), transparent 32%),
    linear-gradient(135deg, #f8fbff 0%, #eef6ff 58%, #e3efff 100%);
}

.comparison-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 690px;
}

.comparison-page .eyebrow {
  color: #2166d4;
}

.comparison-hero h1 {
  margin: 12px 0 24px;
  color: #061f49;
  font-size: clamp(48px, 6vw, 86px);
  line-height: 1.05;
}

.comparison-hero-copy p:not(.eyebrow) {
  max-width: 610px;
  margin: 0 0 14px;
  color: #294b7d;
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 800;
  line-height: 2;
}

.comparison-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #d7e8ff;
  border-radius: 8px;
  box-shadow: 0 20px 42px rgba(29, 95, 201, 0.12);
}

.comparison-principles article {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-height: 126px;
  padding: 20px 18px;
  text-align: center;
}

.comparison-principles article + article {
  border-left: 1px solid #e2edfb;
}

.comparison-page .lp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: #2a76ef;
  background: linear-gradient(180deg, #eff6ff 0%, #dbeaff 100%);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px #cfe0fb;
}

.comparison-page .lp-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.comparison-principles strong {
  color: #08295c;
  font-size: 15px;
  line-height: 1.55;
}

.comparison-visual {
  position: relative;
  min-height: 440px;
}

.visual-bubble {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  color: #ffffff;
  background: linear-gradient(180deg, #8fb8ff 0%, #5e8ee8 100%);
  border-radius: 12px;
  box-shadow: 0 18px 34px rgba(42, 103, 207, 0.2);
  opacity: 0.7;
}

.visual-bubble::after {
  content: "";
  position: absolute;
  left: 22px;
  bottom: -12px;
  border-top: 14px solid #6f9deb;
  border-right: 12px solid transparent;
}

.visual-bubble svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bubble-chat {
  top: 0;
  left: 14%;
}

.bubble-code {
  top: 26px;
  right: 22%;
}

.bubble-check {
  top: 128px;
  right: 2%;
}

.visual-laptop {
  position: absolute;
  right: 18%;
  bottom: 72px;
  width: min(78%, 430px);
  transform: rotate(12deg) skewY(-5deg);
  transform-origin: 50% 100%;
}

.visual-screen {
  position: relative;
  height: 260px;
  padding: 34px 42px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.22), transparent 18%),
    linear-gradient(135deg, #0a2d6a 0%, #082151 100%);
  border: 10px solid #96bbf6;
  border-radius: 16px;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.18),
    0 28px 48px rgba(14, 65, 145, 0.24);
}

.visual-screen i {
  display: block;
  height: 8px;
  margin-bottom: 16px;
  background: #6da7ff;
  border-radius: 999px;
  opacity: 0.9;
}

.visual-screen i:nth-child(1) {
  width: 34%;
}

.visual-screen i:nth-child(2) {
  width: 86%;
}

.visual-screen i:nth-child(3) {
  width: 76%;
}

.visual-screen i:nth-child(4) {
  width: 92%;
}

.visual-screen i:nth-child(5) {
  width: 64%;
}

.visual-screen i:nth-child(6) {
  width: 82%;
}

.visual-screen i:nth-child(7) {
  width: 54%;
}

.visual-keyboard {
  width: 108%;
  height: 72px;
  margin: -6px 0 0 -4%;
  background: linear-gradient(180deg, #a7c9ff 0%, #6fa3ee 100%);
  clip-path: polygon(8% 0, 92% 0, 100% 100%, 0 100%);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 18px 36px rgba(23, 91, 185, 0.2);
}

.visual-folder {
  position: absolute;
  right: 0;
  bottom: 34px;
  width: 180px;
  height: 188px;
  background: linear-gradient(135deg, #95bdff 0%, #2f67cf 100%);
  border-radius: 12px 12px 18px 18px;
  box-shadow: 0 28px 46px rgba(19, 83, 181, 0.24);
}

.visual-folder::before {
  content: "";
  position: absolute;
  left: 14px;
  top: -24px;
  width: 88px;
  height: 42px;
  background: #75a8fb;
  border-radius: 10px 10px 0 0;
}

.visual-folder span {
  position: absolute;
  bottom: 22px;
  width: 34px;
  height: 112px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 8px;
}

.visual-folder span:nth-child(1) {
  left: 30px;
  height: 126px;
}

.visual-folder span:nth-child(2) {
  left: 74px;
}

.visual-folder span:nth-child(3) {
  left: 118px;
  height: 140px;
}

.comparison-section {
  padding: clamp(70px, 7vw, 112px) clamp(20px, 5vw, 72px);
}

.comparison-title {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.comparison-title h2 {
  position: relative;
  margin: 0;
  color: #061f49;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.25;
}

.comparison-title h2::after {
  content: "";
  display: block;
  width: 58px;
  height: 4px;
  margin: 18px auto 0;
  background: #2d73ef;
  border-radius: 999px;
}

.comparison-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.comparison-card-grid article {
  display: grid;
  justify-items: center;
  gap: 16px;
  min-height: 338px;
  padding: 34px 24px 30px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
  border: 1px solid #dbe9fb;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 18px 36px rgba(29, 93, 198, 0.08);
}

.comparison-card-grid article.is-featured {
  color: #ffffff;
  background: linear-gradient(145deg, #072b69 0%, #021b44 100%);
  border-color: #123b82;
  box-shadow: 0 24px 50px rgba(5, 45, 115, 0.24);
}

.comparison-card-grid article.is-featured .lp-icon {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.32);
}

.comparison-card-grid h3 {
  margin: 0;
  color: #071f4d;
  font-size: clamp(21px, 1.8vw, 28px);
  line-height: 1.3;
}

.comparison-card-grid strong {
  color: #2268db;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.62;
}

.comparison-card-grid p {
  margin: 0;
  color: #3d5a86;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.72;
}

.comparison-card-grid article.is-featured h3,
.comparison-card-grid article.is-featured strong,
.comparison-card-grid article.is-featured p {
  color: #ffffff;
}

@media (max-width: 1180px) {
  .comparison-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.comparison-table-section {
  padding-top: 28px;
}

.comparison-table-wrap {
  overflow-x: auto;
  background: #ffffff;
  border: 1px solid #cfe0f7;
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(31, 87, 178, 0.1);
}

.comparison-table {
  width: 100%;
  min-width: 1120px;
  border-collapse: collapse;
  table-layout: fixed;
  color: #0a2a5f;
}

.comparison-table th,
.comparison-table td {
  padding: 20px 14px;
  border-right: 1px solid #dce8f8;
  border-bottom: 1px solid #dce8f8;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.7;
  text-align: center;
  vertical-align: middle;
}

.comparison-table th:last-child,
.comparison-table td:last-child {
  border-right: 0;
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.comparison-table thead th {
  color: #0a2a5f;
  background: #edf5ff;
  font-size: 16px;
}

.comparison-table thead th:last-child {
  color: #ffffff;
  background: linear-gradient(135deg, #2d75f2 0%, #1734d2 100%);
}

.comparison-table tbody th {
  text-align: left;
  background: #f5f9ff;
}

.table-featured {
  color: #123ebf;
  background: #f7fbff;
}

.table-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-right: 12px;
  color: #ffffff;
  background: #2d73ef;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.comparison-flow {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 26px;
  padding: 22px clamp(20px, 4vw, 42px);
  background: linear-gradient(90deg, #edf5ff 0%, #dbeaff 100%);
  border: 1px solid #cfe0f7;
  border-radius: 8px;
}

.comparison-flow p {
  margin: 0;
  color: #0a2a5f;
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 900;
  line-height: 1.8;
}

.comparison-flow strong {
  color: #1d65da;
}

.comparison-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: clamp(46px, 6vw, 74px) clamp(20px, 5vw, 72px);
  color: #ffffff;
  background:
    radial-gradient(circle at 8% 30%, rgba(255, 255, 255, 0.24), transparent 18%),
    linear-gradient(135deg, #1227d5 0%, #061e63 100%);
}

.comparison-cta .eyebrow,
.comparison-cta h2,
.comparison-cta p {
  color: #ffffff;
}

.comparison-cta h2 {
  margin: 8px 0 12px;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.35;
}

.comparison-cta p:not(.eyebrow) {
  margin: 0;
  font-size: clamp(16px, 1.6vw, 21px);
  font-weight: 700;
  line-height: 1.8;
}

.comparison-cta .button {
  color: #123ebf;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.lp-flow-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbff 56%, #ffffff 100%);
  border-top: 1px solid #d7e8ff;
  border-bottom: 1px solid #d7e8ff;
}

.lp-flow-section h2,
.lp-flow-section h3,
.lp-flow-section h4,
.lp-flow-section p {
  max-width: 100%;
  min-width: 0;
  line-break: auto;
  text-wrap: auto;
  word-break: normal;
  overflow-wrap: anywhere;
}

.lp-flow-section-head {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(64px, 7vw, 108px) clamp(24px, 5vw, 72px) clamp(34px, 4vw, 54px);
  background: #ffffff;
  text-align: center;
}

.lp-flow-section-head h2 {
  position: relative;
  width: fit-content;
  margin: 0 auto clamp(34px, 3.4vw, 52px);
  color: #061b42;
  font-size: clamp(52px, 6vw, 96px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.lp-flow-section-head h2::after {
  content: "";
  display: block;
  width: min(68vw, 380px);
  height: clamp(8px, 1vw, 14px);
  margin: clamp(22px, 2vw, 30px) auto 0;
  background: linear-gradient(90deg, #5fc5f1 0%, #2f73e6 58%, #173f91 100%);
  border-radius: 999px;
  box-shadow: 0 16px 30px rgba(47, 130, 255, 0.22);
}

.lp-flow-section-head p:not(.eyebrow) {
  max-width: 900px;
  margin: 0;
  color: #2d4771;
  font-size: clamp(18px, 1.8vw, 28px);
  line-height: 1.85;
  font-weight: 700;
}

.lp-flow-section-head .codex-lead {
  position: relative;
  display: grid;
  gap: 10px;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: clamp(18px, 2vw, 30px);
  color: #102a55;
  font-size: clamp(28px, 3.25vw, 54px);
  line-height: 1.44;
  font-weight: 900;
  text-align: left;
}

.lp-flow-section-head .codex-lead::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.16em;
  bottom: 0.2em;
  width: 8px;
  background: linear-gradient(180deg, #5fc5f1 0%, #2f73e6 100%);
  border-radius: 999px;
  box-shadow: 0 18px 34px rgba(47, 130, 255, 0.22);
}

.lp-flow-section-head .codex-lead span,
.lp-flow-section-head .codex-lead strong {
  display: block;
}

.lp-flow-section-head .codex-lead strong {
  color: #2f73e6;
  background: linear-gradient(90deg, #5fc5f1 0%, #2f73e6 58%, #173f91 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.codex-process-diagram {
  width: 100%;
  max-width: 1280px;
  margin: clamp(30px, 4vw, 56px) 0 0;
}

.codex-process-diagram img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(27, 92, 180, 0.12);
}

#about .lp-flow-section-head {
  padding-top: clamp(22px, 2.6vw, 36px);
  padding-bottom: clamp(10px, 1.3vw, 20px);
}

#about .lp-flow-section-head .eyebrow {
  margin-bottom: 8px;
}

#about .lp-flow-section-head h2 {
  margin-bottom: clamp(10px, 1.1vw, 18px);
  font-size: clamp(34px, 3.5vw, 54px);
  line-height: 1.02;
}

#about .lp-flow-section-head h2::after {
  width: min(46vw, 300px);
  height: clamp(5px, 0.55vw, 8px);
  margin-top: clamp(10px, 1vw, 16px);
}

#about .lp-flow-section-head .codex-lead {
  gap: 4px;
  font-size: clamp(19px, 1.8vw, 28px);
  line-height: 1.22;
}

#about .codex-compare-note {
  max-width: 1040px;
  margin: clamp(14px, 1.4vw, 22px) auto 0;
  color: #294b7d;
  font-size: clamp(15px, 1.12vw, 18px);
  line-height: 1.75;
  font-weight: 800;
  text-align: left;
}

#about .codex-process-diagram {
  max-width: 1080px;
  margin-top: clamp(10px, 1.2vw, 18px);
}

.worry-section {
  position: relative;
  padding: clamp(28px, 3vw, 44px) clamp(24px, 5vw, 72px) clamp(24px, 2.6vw, 38px);
  background:
    radial-gradient(circle at 7% 8%, rgba(7, 27, 58, 0.08), transparent 22%),
    radial-gradient(circle at 91% 0%, rgba(7, 27, 58, 0.07), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
  border-top: 1px solid #d7e8ff;
}

.worry-head {
  max-width: 960px;
  margin: 0 auto clamp(20px, 2.5vw, 34px);
  text-align: center;
}

.worry-head .eyebrow {
  color: #2d73d8;
}

.worry-head h3 {
  position: relative;
  margin: 0;
  color: #061b42;
  font-size: clamp(26px, 2.45vw, 36px);
  line-height: 1.15;
  font-weight: 900;
}

.worry-head h3::after {
  content: "";
  display: block;
  width: 54px;
  height: 4px;
  margin: 14px auto 0;
  background: #061b42;
  border-radius: 999px;
}

.worry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 30px);
  max-width: 1840px;
  margin: 0 auto;
}

.worry-grid article {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(98px, 7vw, 128px);
  padding: clamp(14px, 1.5vw, 24px);
  background: #ffffff;
  border: 3px solid #1e7ab8;
  border-radius: 8px;
  box-shadow:
    0 18px 42px rgba(27, 92, 180, 0.13),
    inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.worry-grid article::after {
  content: "";
  position: absolute;
  right: -11px;
  bottom: -15px;
  width: 46px;
  height: 46px;
  background:
    radial-gradient(ellipse at 48% 22%, transparent 32%, #111 34%, #111 38%, transparent 40%),
    radial-gradient(ellipse at 56% 43%, transparent 33%, #111 35%, #111 39%, transparent 41%),
    radial-gradient(ellipse at 48% 64%, transparent 33%, #111 35%, #111 39%, transparent 41%);
  transform: rotate(-18deg);
  opacity: 0.9;
}

.worry-grid p {
  margin: 0;
  color: #1d75b7;
  font-size: clamp(16px, 1.25vw, 21px);
  line-height: 1.24;
  font-weight: 900;
  text-align: center;
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-thickness: 4px;
  text-underline-offset: 6px;
  text-decoration-color: #1d75b7;
}

.solution-flow-bridge {
  display: grid;
  justify-items: center;
  gap: 12px;
  max-width: 1180px;
  margin: clamp(20px, 2.5vw, 34px) auto 0;
  color: #0a2a5f;
  text-align: center;
}

.solution-flow-bridge p {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  color: #2d73d8;
  font-size: clamp(18px, 1.7vw, 25px);
  font-weight: 900;
  line-height: 1;
}

.solution-flow-bridge p::before,
.solution-flow-bridge p::after {
  content: "";
  width: clamp(42px, 5vw, 78px);
  height: 3px;
  background: #2d73d8;
  border-radius: 999px;
}

.solution-flow-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px clamp(16px, 2vw, 26px);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #cfe1ff;
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(27, 92, 180, 0.1);
}

.solution-flow-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  color: #061b42;
  background: #edf5ff;
  border: 1px solid #d5e7ff;
  border-radius: 999px;
  font-size: clamp(14px, 1.15vw, 18px);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.solution-flow-steps i {
  position: relative;
  display: block;
  width: clamp(28px, 3vw, 48px);
  height: 3px;
  background: #2d73d8;
  border-radius: 999px;
}

.solution-flow-steps i::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 3px solid #2d73d8;
  border-right: 3px solid #2d73d8;
  transform: translateY(-50%) rotate(45deg);
}

.solution-flow-down {
  position: relative;
  display: block;
  width: 3px;
  height: clamp(28px, 3.2vw, 48px);
  background: linear-gradient(180deg, #2d73d8 0%, rgba(45, 115, 216, 0) 100%);
  border-radius: 999px;
}

.solution-flow-down::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 18px;
  height: 18px;
  border-right: 4px solid #2d73d8;
  border-bottom: 4px solid #2d73d8;
  transform: translateX(-50%) rotate(45deg);
}

@media (max-width: 980px) {
  .worry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-flow-steps {
    border-radius: 22px;
  }
}

@media (max-width: 640px) {
  .worry-section {
    padding: 40px 18px 34px;
  }

  .worry-head {
    margin-bottom: 24px;
  }

  .worry-head h3 {
    font-size: 25px;
    line-height: 1.35;
  }

  .worry-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .worry-grid article {
    min-height: 108px;
    padding: 20px 18px;
  }

  .worry-grid p {
    font-size: 20px;
    line-height: 1.42;
    text-decoration-thickness: 3px;
    text-underline-offset: 7px;
  }

  .solution-flow-bridge {
    gap: 12px;
    margin-top: 26px;
  }

  .solution-flow-bridge p {
    gap: 12px;
    font-size: 18px;
  }

  .solution-flow-bridge p::before,
  .solution-flow-bridge p::after {
    width: 32px;
  }

  .solution-flow-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: min(100%, 320px);
    padding: 16px;
    border-radius: 18px;
  }

  .solution-flow-steps i {
    width: 3px;
    height: 24px;
    margin: 0 auto;
  }

  .solution-flow-steps i::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -1px;
    transform: translateX(-50%) rotate(135deg);
  }
}

.codex-action-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  max-width: 1120px;
  margin-top: clamp(28px, 3vw, 44px);
  padding: 16px;
  background:
    linear-gradient(90deg, rgba(238, 247, 255, 0.96) 0%, rgba(255, 255, 255, 0.96) 100%);
  border: 1px solid #d4e7ff;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(47, 130, 255, 0.1);
}

.codex-mini-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px minmax(0, 1fr) 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.codex-mini-flow span {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 18px 20px;
  background: #ffffff;
  border: 1px solid #d8e9ff;
  border-radius: 8px;
}

.codex-mini-flow b {
  color: #6bb9ee;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
}

.codex-mini-flow strong {
  color: #102a55;
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.18;
  font-weight: 900;
}

.codex-mini-flow small {
  color: #536b91;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
}

.codex-mini-flow i {
  position: relative;
  display: block;
  height: 2px;
  background: #8bbdff;
  border-radius: 999px;
}

.codex-mini-flow i::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 9px;
  height: 9px;
  border-top: 2px solid #8bbdff;
  border-right: 2px solid #8bbdff;
  transform: translateY(-50%) rotate(45deg);
}

.codex-lead-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  padding: 0 28px;
  color: #ffffff;
  background: linear-gradient(135deg, #57a5ff 0%, #0759ff 100%);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(47, 130, 255, 0.25);
  font-size: 17px;
  line-height: 1.2;
  font-weight: 900;
  white-space: nowrap;
}

.codex-lead-action::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.lp-flow-hero {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px);
  max-width: 1840px;
  margin: 0 auto;
  padding: clamp(18px, 2vw, 30px) clamp(24px, 2.6vw, 44px) clamp(62px, 7vw, 104px);
  background: transparent;
}

.lp-flow-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  min-height: clamp(300px, 21vw, 370px);
  padding: clamp(38px, 3vw, 56px);
  background: #ffffff;
  border: 1px solid #c8dcf7;
  border-radius: 12px;
  box-shadow: 0 24px 70px rgba(24, 67, 132, 0.07);
}

.lp-step-number {
  position: relative;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin-bottom: 28px;
  color: #2f73e6;
  background: #eef6ff;
  border: 1px solid #d8e9ff;
  border-radius: 18px;
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
}

.lp-step-number::after {
  display: none;
}

.lp-flow-card .lp-step-number {
  display: block;
  width: auto;
  height: auto;
  margin: 0 0 16px;
  color: #2e82ff;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: clamp(24px, 1.8vw, 30px);
  line-height: 1;
}

.lp-flow-card h3 {
  margin: 0 0 24px;
  color: #061b42;
  font-size: clamp(28px, 2.3vw, 38px);
  line-height: 1.28;
  font-weight: 900;
}

.lp-flow-card p {
  margin: 0;
  color: #385b8a;
  font-size: clamp(17px, 1.45vw, 25px);
  line-height: 1.95;
  font-weight: 700;
  word-break: normal;
  overflow-wrap: anywhere;
}

.codebase-visual {
  position: relative;
  order: 1;
  min-height: 460px;
  isolation: isolate;
}

.codebase-visual::before {
  content: "";
  position: absolute;
  inset: 3% 0 0 6%;
  z-index: -1;
  background:
    radial-gradient(circle at 54% 78%, rgba(47, 130, 255, 0.16), transparent 20%),
    radial-gradient(circle at 75% 37%, rgba(47, 130, 255, 0.12), transparent 22%);
  filter: blur(2px);
}

.visual-laptop-clean {
  position: absolute;
  left: 10%;
  top: 32%;
  width: 45%;
  transform: rotate(7deg);
  transform-origin: center bottom;
}

.visual-laptop-screen {
  display: grid;
  gap: 8px;
  height: clamp(180px, 16vw, 245px);
  padding: 28px 26px;
  background:
    linear-gradient(145deg, #182d54 0%, #071b3a 100%);
  border: 10px solid #25426f;
  border-radius: 20px 20px 12px 12px;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.08),
    0 24px 44px rgba(15, 58, 123, 0.28);
}

.visual-laptop-screen i {
  display: block;
  height: 7px;
  border-radius: 999px;
  background: #86b7ff;
}

.visual-laptop-screen i:nth-child(2),
.visual-laptop-screen i:nth-child(5) {
  width: 66%;
  background: #ffb05b;
}

.visual-laptop-screen i:nth-child(3),
.visual-laptop-screen i:nth-child(6) {
  width: 78%;
  margin-left: 18%;
  background: #58d4ff;
}

.visual-laptop-screen i:nth-child(4) {
  width: 52%;
  margin-left: 9%;
}

.visual-laptop-base {
  width: 116%;
  height: 34px;
  margin: -3px 0 0 -8%;
  background: linear-gradient(180deg, #e7f1ff, #9fb9dc);
  border-radius: 0 0 26px 26px;
  box-shadow: 0 22px 34px rgba(20, 64, 126, 0.18);
}

.visual-file-stack {
  position: absolute;
  right: 2%;
  top: 29%;
  width: 34%;
  height: 310px;
}

.visual-file-stack span {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, #f8fbff 0%, #dbeaff 100%);
  border: 7px solid #233e6a;
  border-radius: 18px;
  box-shadow: 0 18px 28px rgba(13, 40, 84, 0.18);
}

.visual-file-stack span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 41%;
  width: 54%;
  height: 34%;
  background: #2e82ff;
  border-radius: 8px;
  transform: translateX(-50%);
  opacity: 0.9;
}

.visual-file-stack span:nth-child(1) {
  transform: translate(-54px, 28px);
}

.visual-file-stack span:nth-child(2) {
  transform: translate(-34px, 16px);
}

.visual-file-stack span:nth-child(3) {
  transform: translate(-16px, 8px);
}

.visual-file-stack span:nth-child(4) {
  background: linear-gradient(180deg, #f8fbff 0%, #d3e5ff 100%);
}

.visual-search {
  position: absolute;
  left: 48%;
  bottom: 8%;
  width: 150px;
  height: 150px;
  border: 16px solid #0f3267;
  border-radius: 50%;
  box-shadow: 0 16px 24px rgba(15, 50, 103, 0.2);
}

.visual-search::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -38px;
  width: 94px;
  height: 18px;
  background: #0f3267;
  border-radius: 999px;
  transform: rotate(-34deg);
}

.visual-paper-flow {
  position: absolute;
  right: 8%;
  bottom: 3%;
  width: 240px;
  height: 128px;
  background: rgba(255, 255, 255, 0.78);
  border: 3px solid #c9dcf7;
  border-radius: 14px;
  transform: rotate(10deg);
}

.visual-paper-flow i {
  position: absolute;
  display: block;
  width: 58px;
  height: 34px;
  border: 4px solid #c9dcf7;
  border-radius: 4px;
}

.visual-paper-flow i:nth-child(1) {
  left: 34px;
  top: 28px;
}

.visual-paper-flow i:nth-child(2) {
  left: 110px;
  top: 42px;
}

.visual-paper-flow i:nth-child(3) {
  left: 74px;
  top: 78px;
}

.visual-chip {
  position: absolute;
  display: grid;
  place-items: center;
  color: #7eb2ff;
  background: rgba(255, 255, 255, 0.56);
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(47, 130, 255, 0.1);
}

.chip-code {
  left: 26%;
  top: 13%;
  width: 86px;
  height: 64px;
  font-size: 28px;
  font-weight: 900;
}

.chip-lines {
  right: 10%;
  top: 7%;
  width: 180px;
  height: 96px;
}

.chip-lines::before,
.chip-lines::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  height: 4px;
  background: rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  box-shadow:
    0 24px 0 rgba(255, 255, 255, 0.6),
    0 48px 0 rgba(255, 255, 255, 0.42);
}

.chip-lines::before {
  top: 24px;
}

.chip-lines::after {
  top: 36px;
  width: 58px;
}

.chip-folder {
  right: 5%;
  top: 26%;
  width: 82px;
  height: 68px;
}

.chip-folder::before {
  content: "";
  width: 48px;
  height: 34px;
  background: #87baff;
  border-radius: 6px;
  box-shadow: inset 0 9px 0 rgba(255, 255, 255, 0.2);
}

.pain-panel {
  padding: clamp(70px, 7vw, 112px) clamp(24px, 4vw, 56px) clamp(76px, 8vw, 124px);
  background:
    radial-gradient(circle at 50% 8%, rgba(47, 130, 255, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border-top: 1px solid #d7e8ff;
}

.reason-image-panel {
  padding: clamp(14px, 1.8vw, 26px) clamp(16px, 3vw, 42px);
}

.reason-image-panel > :not(.reason-steps-image) {
  display: none;
}

.reason-steps-image {
  max-width: 980px;
  margin: 0 auto;
}

.reason-steps-image img {
  display: block;
  width: 100%;
  height: auto;
}

.section-kicker {
  margin: 0 0 12px;
  color: #2f73e6;
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.pain-panel h3 {
  position: relative;
  width: fit-content;
  margin: 0 auto clamp(58px, 5vw, 82px);
  color: #061b42;
  font-size: clamp(40px, 4vw, 68px);
  line-height: 1.08;
  font-weight: 900;
  text-align: center;
}

.pain-panel h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -32px;
  width: 86px;
  height: 6px;
  background: #3678f0;
  border-radius: 999px;
  transform: translateX(-50%);
}

.reason-steps-title {
  margin-bottom: 10px;
}

.reason-steps-title span {
  display: inline-block;
  color: #2f73e6;
  font-size: 1.25em;
  line-height: 0.85;
}

.reason-steps-lead {
  max-width: 900px;
  margin: 0 auto clamp(40px, 5vw, 70px);
  color: #385379;
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.7;
  font-weight: 900;
  text-align: center;
}

.reason-step-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px);
  max-width: 1520px;
  margin: 0 auto 26px;
  padding: 0 clamp(34px, 3vw, 52px);
}

.reason-step-track::before {
  content: "";
  position: absolute;
  left: clamp(72px, 5vw, 100px);
  right: clamp(72px, 5vw, 100px);
  top: 50%;
  height: 5px;
  background: linear-gradient(90deg, #2f73e6 0%, #7a4de2 34%, #ff8a26 66%, #34a853 100%);
  border-radius: 999px;
  opacity: 0.75;
  transform: translateY(-50%);
}

.reason-step-pin {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  justify-self: center;
  width: clamp(58px, 4.8vw, 74px);
  height: clamp(58px, 4.8vw, 74px);
  color: #ffffff;
  background: linear-gradient(135deg, var(--step-color) 0%, var(--step-color-deep) 100%);
  border-radius: 20px;
  box-shadow: 0 16px 34px rgba(47, 130, 255, 0.18);
  font-size: clamp(21px, 1.9vw, 29px);
  line-height: 1;
  font-weight: 900;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 34px);
  max-width: 1840px;
  margin: 0 auto;
}

.pain-grid article {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
  min-height: clamp(430px, 27vw, 540px);
  padding: clamp(28px, 2.8vw, 54px) clamp(24px, 2.4vw, 44px);
  text-align: left;
  background: #ffffff;
  border: 1px solid #cfe1ff;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(24, 67, 132, 0.07);
}

.reason-step-card {
  --step-color: #2f73e6;
  --step-color-deep: #1353d8;
  --step-soft: #eef5ff;
  --step-faint: rgba(47, 115, 230, 0.09);
  position: relative;
  overflow: hidden;
  align-items: center;
  min-height: clamp(520px, 36vw, 610px);
  padding: clamp(34px, 3vw, 50px) clamp(28px, 2.6vw, 44px) 0;
  text-align: center;
  border-color: rgba(47, 130, 255, 0.22);
  border-bottom: 5px solid var(--step-color);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(24, 67, 132, 0.1);
}

.step-blue {
  --step-color: #2f73e6;
  --step-color-deep: #1353d8;
  --step-soft: #eef5ff;
  --step-faint: rgba(47, 115, 230, 0.1);
}

.step-purple {
  --step-color: #7a4de2;
  --step-color-deep: #5b31c8;
  --step-soft: #f4efff;
  --step-faint: rgba(122, 77, 226, 0.1);
}

.step-orange {
  --step-color: #ff8a26;
  --step-color-deep: #ef6f12;
  --step-soft: #fff3e8;
  --step-faint: rgba(255, 138, 38, 0.11);
}

.step-green {
  --step-color: #34a853;
  --step-color-deep: #20873c;
  --step-soft: #edf9f1;
  --step-faint: rgba(52, 168, 83, 0.11);
}

.reason-card-bg {
  position: absolute;
  top: 14px;
  left: 18px;
  color: var(--step-faint);
  font-size: clamp(96px, 10vw, 160px);
  line-height: 0.8;
  font-weight: 900;
  pointer-events: none;
}

.reason-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 1.4vw, 22px);
  align-items: start;
  min-width: 0;
  margin-bottom: clamp(24px, 2.8vw, 42px);
}

.reason-number {
  display: inline-grid;
  place-items: center;
  width: clamp(72px, 5.2vw, 92px);
  height: clamp(56px, 4vw, 66px);
  margin: 0;
  color: #ffffff;
  background: #cc3f42;
  border-radius: 10px;
  font-size: clamp(26px, 2.3vw, 38px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.pain-grid .round-icon {
  width: 86px;
  height: 86px;
  margin: 0 auto clamp(26px, 3vw, 44px);
  color: #3d78ee;
  background: #e9f2ff;
  border: 2px solid #d5e5ff;
  box-shadow: inset 0 -8px 18px rgba(49, 115, 230, 0.07);
}

.pain-grid .round-icon svg {
  width: 34px;
  height: 34px;
}

.reason-visual {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 16 / 10;
  margin: 0 0 clamp(28px, 3vw, 44px);
  padding: clamp(14px, 1.5vw, 24px);
  background: #fbfdff;
  border: 1px solid #d9e7ff;
  border-radius: 10px;
}

.reason-step-card .reason-visual {
  width: min(100%, 212px);
  aspect-ratio: 1;
  margin: clamp(14px, 1.6vw, 24px) auto clamp(24px, 2.6vw, 38px);
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.reason-icon-tile {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 196px);
  aspect-ratio: 1;
  margin: 0 auto;
  background:
    radial-gradient(circle at 72% 28%, rgba(255, 255, 255, 0.68) 0 24%, transparent 25%),
    var(--step-soft);
  border: 1px solid var(--step-faint);
  border-radius: 34px;
  box-shadow: inset 0 -18px 34px rgba(255, 255, 255, 0.46);
}

.reason-icon-tile::before {
  content: "";
  position: absolute;
  inset: 16%;
  background: rgba(255, 255, 255, 0.48);
  border-radius: 24px;
}

.reason-step-card .reason-icon-tile svg {
  position: relative;
  z-index: 1;
  width: 60%;
  height: 60%;
}

.reason-icon-tile svg * {
  fill: none;
  stroke: var(--step-color);
  stroke-width: 4.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reason-icon-tile .reason-icon-accent {
  stroke: var(--step-color-deep);
  stroke-width: 5.6;
}

.reason-icon-tile .reason-icon-dot,
.reason-icon-tile .reason-icon-fill {
  fill: var(--step-color);
  stroke: none;
}

.reason-icon-tile .reason-icon-white {
  stroke: #ffffff;
  stroke-width: 5.2;
}

.reason-visual svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.reason-stroke,
.reason-check,
.reason-accent,
.reason-doc,
.reason-line,
.reason-badge,
.reason-badge-check,
.reason-gear-tooth,
.reason-gear-ring,
.reason-gear-core,
.reason-small-check,
.reason-badge-check-white,
.reason-person,
.reason-puzzle,
.reason-link,
.reason-laptop,
.reason-camera,
.reason-face,
.reason-person-line,
.reason-screen-line,
.reason-panel-accent,
.reason-window {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reason-stroke {
  stroke: #071d46;
  stroke-width: 6;
}

.reason-step-card .reason-stroke {
  stroke: var(--step-color);
  stroke-width: 5;
}

.reason-step-card .reason-doc,
.reason-step-card .reason-line,
.reason-step-card .reason-badge,
.reason-step-card .reason-gear-tooth,
.reason-step-card .reason-gear-ring,
.reason-step-card .reason-small-check,
.reason-step-card .reason-person,
.reason-step-card .reason-puzzle,
.reason-step-card .reason-link,
.reason-step-card .reason-laptop,
.reason-step-card .reason-face,
.reason-step-card .reason-person-line,
.reason-step-card .reason-screen-line,
.reason-step-card .reason-panel-accent,
.reason-step-card .reason-window {
  stroke: var(--step-color);
  stroke-width: 4.8;
}

.reason-step-card .reason-laptop {
  stroke-width: 4.2;
}

.reason-step-card .reason-screen-line,
.reason-step-card .reason-panel-accent {
  stroke-width: 4.4;
}

.reason-step-card .reason-camera {
  fill: var(--step-color);
  stroke: none;
}

.reason-step-card .reason-window {
  stroke-width: 3.8;
}

.reason-step-card .reason-doc {
  filter: drop-shadow(0 8px 14px rgba(24, 67, 132, 0.05));
}

.reason-step-card .reason-line {
  stroke-width: 4.4;
}

.reason-check {
  stroke: #3b8a51;
  stroke-width: 6;
}

.reason-accent {
  stroke: #3b8a51;
  stroke-width: 7;
}

.reason-step-card .reason-accent,
.reason-step-card .reason-check-circle,
.reason-step-card .reason-gear {
  fill: none;
  stroke: var(--step-color);
  stroke-width: 5;
}

.reason-step-card .reason-badge-check,
.reason-step-card .reason-small-check {
  stroke: var(--step-color);
  stroke-width: 5.8;
}

.reason-step-card .reason-gear-core,
.reason-step-card .reason-badge-fill {
  fill: var(--step-color);
  stroke: none;
}

.reason-step-card .reason-check-fill {
  fill: var(--step-color);
  stroke: none;
}

.reason-step-card .reason-check-white {
  fill: none;
  stroke: #ffffff;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reason-step-card .reason-badge-check-white {
  stroke: #ffffff;
  stroke-width: 5.8;
}

.reason-dot {
  fill: #cf4548;
  stroke: none;
}

.reason-step-card .reason-dot {
  fill: var(--step-color);
  stroke: none;
}

.reason-step-card .reason-bullet {
  fill: var(--step-color);
  stroke: none;
}

.round-icon {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  margin: 0 auto 24px;
  color: #ffffff;
  background: linear-gradient(180deg, #57a5ff 0%, #0759ff 100%);
  border-radius: 50%;
  box-shadow: 0 16px 28px rgba(47, 130, 255, 0.24);
}

.round-icon svg,
.solution-mark svg,
.square-icon svg {
  width: 34px;
  height: 34px;
}

.round-icon path,
.round-icon circle,
.round-icon rect,
.solution-mark path,
.square-icon path,
.square-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pain-grid h4 {
  margin: 0;
  color: #061b42;
  font-size: clamp(26px, 2vw, 36px);
  line-height: 1.22;
  font-weight: 900;
  letter-spacing: 0;
  word-break: keep-all;
  overflow-wrap: normal;
}

.reason-step-card h4 {
  position: relative;
  z-index: 1;
  margin-top: clamp(2px, 0.6vw, 10px);
  font-size: clamp(25px, 1.9vw, 34px);
  line-height: 1.24;
}

.pain-grid p {
  margin: 0;
  color: #385379;
  font-size: clamp(16px, 1.15vw, 21px);
  line-height: 2;
  font-weight: 800;
  text-align: left;
  line-break: strict;
  word-break: normal;
  overflow-wrap: normal;
}

.reason-step-card p {
  position: relative;
  z-index: 1;
  min-height: 4.2em;
  margin: 0 auto clamp(24px, 2.5vw, 36px);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.75;
  text-align: center;
  overflow-wrap: anywhere;
}

.reason-card-metric {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  width: calc(100% + clamp(56px, 5.2vw, 88px));
  margin: auto calc(clamp(28px, 2.6vw, 44px) * -1) 0;
  padding: clamp(22px, 2vw, 30px) 20px clamp(26px, 2.4vw, 34px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), var(--step-soft));
  border-top: 1px solid #d9e7ff;
}

.reason-card-metric span {
  color: #385379;
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.3;
  font-weight: 900;
}

.reason-card-metric strong {
  color: var(--step-color);
  font-size: clamp(38px, 3.4vw, 56px);
  line-height: 1;
  font-weight: 900;
}

.reason-card-metric small {
  font-size: 0.68em;
}

.reason-step-summary {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  gap: clamp(18px, 2.5vw, 34px);
  align-items: center;
  max-width: 1840px;
  margin: clamp(34px, 4vw, 56px) auto 0;
  padding: clamp(28px, 3vw, 42px) clamp(30px, 4vw, 64px);
  background: #ffffff;
  border: 1px solid #d7e8ff;
  border-radius: 18px;
  box-shadow: 0 20px 56px rgba(24, 67, 132, 0.08);
}

.summary-icon {
  display: grid;
  place-items: center;
  width: clamp(66px, 5vw, 86px);
  height: clamp(66px, 5vw, 86px);
  color: #2f73e6;
  background: #eef5ff;
  border-radius: 50%;
}

.summary-icon svg {
  width: 40px;
  height: 40px;
}

.summary-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reason-step-summary strong {
  color: #061b42;
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.3;
  font-weight: 900;
}

.reason-step-summary p {
  margin: 0;
  padding-left: clamp(18px, 2vw, 34px);
  color: #385379;
  border-left: 2px solid #d7e8ff;
  font-size: clamp(16px, 1.25vw, 22px);
  line-height: 1.7;
  font-weight: 800;
}

.reason-step-summary p span {
  color: #2f73e6;
  font-weight: 900;
}

.reason-metrics {
  max-width: 1680px;
  margin: clamp(54px, 6vw, 92px) auto 0;
}

.reason-metrics-head {
  margin: 0 auto clamp(26px, 3vw, 42px);
  text-align: center;
}

.reason-metrics-head .eyebrow {
  color: #2f73e6;
}

.reason-metrics-head h4 {
  margin: 0;
  color: #061b42;
  font-size: clamp(30px, 3.2vw, 52px);
  line-height: 1.24;
  font-weight: 900;
}

.reason-metrics-table-wrap {
  overflow-x: auto;
  padding: 18px;
  background:
    repeating-linear-gradient(-45deg, rgba(47, 130, 255, 0.06) 0 8px, transparent 8px 18px),
    #ffffff;
  border: 1px solid #d6e7ff;
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(24, 67, 132, 0.09);
}

.reason-metrics-table {
  width: 100%;
  min-width: 980px;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  overflow: hidden;
  border-radius: 14px;
}

.reason-metrics-table th,
.reason-metrics-table td {
  padding: clamp(22px, 2.3vw, 36px);
  border-right: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
  text-align: center;
  vertical-align: middle;
}

.reason-metrics-table thead th {
  color: #ffffff;
  background: #303844;
  font-size: clamp(20px, 1.8vw, 30px);
  line-height: 1.3;
  font-weight: 900;
}

.reason-metrics-table thead th:first-child {
  background: transparent;
  border: 0;
}

.reason-metrics-table thead th.is-featured {
  background: linear-gradient(135deg, #2f83d4 0%, #135aa8 100%);
  border-radius: 14px 14px 0 0;
}

.reason-metrics-table tbody th {
  width: 18%;
  color: #ffffff;
  background: #1f72b3;
  font-size: clamp(18px, 1.55vw, 26px);
  line-height: 1.35;
  font-weight: 900;
}

.reason-metrics-table tbody tr:nth-child(even) th {
  background: #4f94da;
}

.reason-metrics-table td {
  color: #2b3340;
  background: #edf4fc;
}

.reason-metrics-table td:not(.is-featured) {
  background: #eeeeee;
}

.reason-metrics-table tbody tr:nth-child(even) td:not(.is-featured) {
  background: #dddddd;
}

.reason-metrics-table td.is-featured {
  background: #dcecff;
}

.reason-metrics-table tbody tr:nth-child(even) td.is-featured {
  background: #edf6ff;
}

.reason-metrics-table td span {
  display: block;
  margin-top: 8px;
  color: #2e3748;
  font-size: clamp(16px, 1.25vw, 21px);
  line-height: 1.55;
  font-weight: 900;
}

.metric-mark {
  display: block;
  font-size: clamp(34px, 3.2vw, 54px);
  line-height: 1;
  font-weight: 900;
}

.metric-mark.is-good {
  color: #2f73e6;
}

.metric-mark.is-mid {
  color: #f28b32;
}

.metric-mark.is-bad {
  color: #111111;
}

.solution-steps h4 {
  margin: 0 0 12px;
  color: #061b42;
  font-size: clamp(19px, 1.7vw, 26px);
  line-height: 1.35;
  font-weight: 900;
}

.solution-steps p {
  margin: 0;
  color: #385379;
  font-size: clamp(15px, 1.25vw, 19px);
  line-height: 1.75;
  font-weight: 700;
  word-break: normal;
  overflow-wrap: anywhere;
}

.solution-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(380px, 1fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
  padding: clamp(64px, 7vw, 104px) clamp(24px, 5vw, 72px);
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 52%, #f1f8ff 100%);
  border-top: 1px solid #d7e8ff;
}

.solution-copy {
  position: relative;
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 20px 24px;
  align-items: start;
  min-width: 0;
}

.solution-mark {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  color: #1e7cff;
  background: #eef6ff;
  border: 1px solid #d8e9ff;
  border-radius: 18px;
}

.solution-copy h3 {
  margin: 0;
  color: #2d73d8;
  font-size: clamp(30px, 3vw, 50px);
  line-height: 1.36;
}

.solution-copy p {
  grid-column: 2;
  max-width: 640px;
  margin: 0;
  color: #385379;
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.95;
  font-weight: 700;
}

.solution-steps {
  display: grid;
  gap: clamp(16px, 1.8vw, 24px);
  padding-left: 0;
  border-left: 0;
}

.solution-steps article {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 22px;
  align-items: center;
  min-width: 0;
  padding: clamp(22px, 2.4vw, 32px);
  background: #ffffff;
  border: 1px solid #cfe1ff;
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(24, 67, 132, 0.06);
}

.implementation-section {
  background:
    linear-gradient(180deg, #f7fbff 0%, #ffffff 72%);
  border-top: 1px solid #d7e8ff;
}

.implementation-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 1.06fr) minmax(0, 0.94fr);
  align-items: center;
  gap: clamp(42px, 5vw, 82px);
  min-height: 0;
  padding: clamp(62px, 7vw, 104px) clamp(24px, 5vw, 72px) clamp(54px, 6vw, 88px);
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 16%, rgba(47, 130, 255, 0.14), transparent 24%),
    linear-gradient(124deg, #ffffff 0%, #f8fbff 48%, #eef7ff 100%);
}

.implementation-copy {
  position: relative;
  order: 2;
  z-index: 2;
  min-width: 0;
  max-width: 690px;
}

.implementation-copy h3 {
  margin: 0 0 24px;
  color: #2d73d8;
  font-size: clamp(34px, 3.2vw, 54px);
  line-height: 1.28;
  font-weight: 900;
}

.implementation-copy p {
  max-width: 680px;
  margin: 0;
  color: #2d4771;
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.95;
  font-weight: 700;
  word-break: normal;
  overflow-wrap: anywhere;
}

.implementation-visual {
  position: relative;
  order: 1;
  min-height: 440px;
  isolation: isolate;
}

.impl-laptop {
  position: absolute;
  right: 19%;
  top: 22%;
  width: 46%;
  transform: rotate(7deg);
}

.impl-screen {
  display: grid;
  gap: 7px;
  height: clamp(190px, 16vw, 250px);
  padding: 28px 26px;
  background: linear-gradient(145deg, #152b52, #071b3a);
  border: 10px solid #294572;
  border-radius: 20px 20px 12px 12px;
  box-shadow: 0 24px 44px rgba(15, 58, 123, 0.26);
}

.impl-screen i {
  display: block;
  height: 7px;
  border-radius: 999px;
  background: #86b7ff;
}

.impl-screen i:nth-child(2),
.impl-screen i:nth-child(5) {
  width: 70%;
  background: #ff9d45;
}

.impl-screen i:nth-child(3),
.impl-screen i:nth-child(6) {
  width: 78%;
  margin-left: 18%;
  background: #58d4ff;
}

.impl-screen i:nth-child(4) {
  width: 56%;
  margin-left: 10%;
}

.impl-base {
  width: 116%;
  height: 34px;
  margin: -3px 0 0 -8%;
  background: linear-gradient(180deg, #edf5ff, #a7bfdc);
  border-radius: 0 0 26px 26px;
  box-shadow: 0 22px 34px rgba(20, 64, 126, 0.18);
}

.impl-terminal {
  position: absolute;
  left: 8%;
  top: 37%;
  display: grid;
  place-items: center;
  width: 26%;
  min-height: 116px;
  color: #b5d6ff;
  background: linear-gradient(145deg, #14305d, #071b3a);
  border-radius: 16px;
  box-shadow: 0 22px 46px rgba(13, 40, 84, 0.2);
}

.impl-terminal span {
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 900;
}

.impl-terminal b {
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 46px;
  height: 46px;
  background: #83c95d;
  border: 7px solid #ffffff;
  border-radius: 50%;
}

.impl-terminal b::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 11px;
  width: 17px;
  height: 9px;
  border-bottom: 4px solid #ffffff;
  border-left: 4px solid #ffffff;
  transform: rotate(-45deg);
}

.impl-window {
  position: absolute;
  right: 0;
  top: 31%;
  width: 25%;
  height: 190px;
  background: rgba(255, 255, 255, 0.72);
  border-top: 28px solid #2e82ff;
  border-radius: 14px;
  box-shadow: 0 22px 46px rgba(47, 130, 255, 0.12);
}

.impl-window::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 28px;
  width: 44px;
  height: 95px;
  background: #e9f3ff;
  border-radius: 6px;
  box-shadow: 64px 0 0 #e9f3ff, 118px 0 0 #e9f3ff;
}

.impl-window i {
  position: absolute;
  top: -17px;
  width: 7px;
  height: 7px;
  background: #ffffff;
  border-radius: 50%;
}

.impl-window i:nth-child(1) {
  left: 16px;
}

.impl-window i:nth-child(2) {
  left: 32px;
}

.impl-window i:nth-child(3) {
  left: 48px;
}

.impl-cubes {
  position: absolute;
  right: 9%;
  bottom: 7%;
  display: grid;
  grid-template-columns: repeat(2, 54px);
  gap: 8px;
  transform: rotate(-8deg);
}

.impl-cubes i {
  display: block;
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #80b7ff, #0759ff);
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(47, 130, 255, 0.2);
}

.impl-chip {
  position: absolute;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(145deg, #57a5ff, #0759ff);
  border-radius: 12px;
  box-shadow: 0 16px 34px rgba(47, 130, 255, 0.22);
}

.impl-code {
  left: 22%;
  top: 9%;
  width: 78px;
  height: 78px;
  font-size: 31px;
  font-weight: 900;
}

.impl-lines {
  right: 18%;
  top: 8%;
  width: 162px;
  height: 78px;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: none;
}

.impl-lines::before {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  top: 18px;
  height: 4px;
  background: rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  box-shadow:
    0 22px 0 rgba(255, 255, 255, 0.56),
    0 44px 0 rgba(255, 255, 255, 0.36);
}

.impl-gear {
  position: absolute;
  right: 3%;
  top: 15%;
  width: 68px;
  height: 68px;
  border: 14px dashed #8bbdff;
  border-radius: 50%;
  opacity: 0.6;
}

.implementation-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2vw, 28px);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(34px, 4.2vw, 62px) clamp(24px, 5vw, 72px) clamp(66px, 7vw, 104px);
  background: #ffffff;
}

.implementation-grid article {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: clamp(22px, 3vw, 38px);
  align-items: start;
  min-width: 0;
  min-height: 0;
  padding: clamp(28px, 3vw, 42px);
  background: #ffffff;
  border: 2px solid #c8dcf7;
  border-radius: 22px;
  box-shadow: 0 20px 56px rgba(29, 82, 156, 0.08);
}

.implementation-grid .round-icon {
  width: 86px;
  height: 86px;
  margin: 0;
}

.implementation-grid h4 {
  margin: 0 0 14px;
  color: #061b42;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.35;
  font-weight: 900;
}

.implementation-grid p {
  margin: 0;
  color: #385379;
  font-size: clamp(15px, 1.25vw, 19px);
  line-height: 1.85;
  font-weight: 700;
  word-break: normal;
  overflow-wrap: anywhere;
}

.flow-feature-list {
  background: #ffffff;
}

.flow-feature {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(0, 0.96fr);
  align-items: center;
  gap: 78px;
  max-width: 1680px;
  min-height: 700px;
  margin: 0 auto;
  padding: 96px 72px;
  background: #ffffff;
  border-top: 1px solid #e1ecfb;
}

.flow-feature:first-child {
  border-top: 0;
}

.flow-feature.is-reverse {
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1fr);
}

.flow-feature .flow-feature-copy {
  order: 0;
}

.flow-feature .flow-feature-visual {
  order: 1;
}

.flow-feature.is-reverse .flow-feature-visual {
  order: 0;
}

.flow-feature.is-reverse .flow-feature-copy {
  order: 1;
}

.flow-feature-visual {
  min-width: 0;
  min-height: 520px;
}

.flow-feature-copy {
  min-width: 0;
  max-width: 760px;
}

.flow-feature-label {
  display: block;
  margin-bottom: clamp(40px, 5vw, 70px);
}

.flow-feature-icon {
  display: none;
  place-items: center;
  grid-row: 1 / span 2;
  width: 94px;
  height: 94px;
  color: #2f73e6;
  background: #edf6ff;
  border: 1px solid #d8e9ff;
  border-radius: 12px;
}

.flow-feature-icon svg {
  width: 48px;
  height: 48px;
}

.flow-feature-icon path,
.flow-feature-icon circle,
.flow-feature-icon rect {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flow-feature-number {
  display: block;
  margin-bottom: clamp(14px, 1.6vw, 24px);
  color: #5fb7ec;
  font-size: clamp(22px, 2.1vw, 34px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.flow-feature-label h3 {
  margin: 0;
  color: #2d73d8;
  font-size: clamp(56px, 5.8vw, 94px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0.01em;
  word-break: keep-all;
  overflow-wrap: normal;
}

.flow-feature-label h3 span {
  display: block;
}

.flow-feature-label h3::after {
  content: "";
  display: block;
  width: min(58vw, 420px);
  height: clamp(8px, 0.9vw, 14px);
  margin-top: clamp(22px, 2.6vw, 36px);
  background: linear-gradient(90deg, #5fc5f1 0%, #2f73e6 58%, #173f91 100%);
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(47, 130, 255, 0.2);
}

.flow-feature-copy h4 {
  margin: 0 0 36px;
  color: #3374d4;
  font-size: 52px;
  line-height: 1.52;
  font-weight: 900;
}

.flow-feature-copy p {
  margin: 0;
  color: #1f2430;
  font-size: 21px;
  line-height: 2.05;
  font-weight: 800;
  word-break: normal;
  overflow-wrap: anywhere;
}

.flow-feature-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  margin-top: clamp(36px, 4vw, 58px);
}

.flow-feature-facts dl {
  margin: 0;
  background: #f2f7ff;
  border: 1px solid #d8e7ff;
}

.flow-feature-facts dt {
  display: grid;
  place-items: center;
  min-height: 56px;
  color: #061b42;
  background: #eaf3ff;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1;
  font-weight: 900;
}

.flow-feature-facts dd {
  display: grid;
  gap: 8px;
  place-items: center;
  margin: 0;
  padding: 18px 20px 22px;
  color: #061b42;
  font-size: clamp(18px, 1.45vw, 25px);
  line-height: 1.22;
  font-weight: 900;
  text-align: center;
}

.flow-feature-facts dd span {
  display: block;
  white-space: nowrap;
}

.flow-feature.is-codex-reading {
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: clamp(38px, 4.2vw, 68px);
  min-height: 560px;
  padding-top: clamp(46px, 5vw, 72px);
  padding-bottom: clamp(46px, 5vw, 72px);
}

.flow-feature.is-codex-reading .flow-feature-visual {
  min-height: 0;
}

.flow-feature.is-codex-reading .flow-feature-label {
  margin-bottom: clamp(22px, 2.5vw, 34px);
}

.flow-feature.is-codex-reading .flow-feature-number {
  margin-bottom: clamp(10px, 1vw, 14px);
  font-size: clamp(20px, 1.8vw, 28px);
}

.flow-feature.is-codex-reading .flow-feature-label h3 {
  color: #2d73d8;
  max-width: none;
  font-size: clamp(38px, 3.4vw, 56px);
  line-height: 1.1;
  word-break: keep-all;
  overflow-wrap: normal;
}

.flow-feature.is-codex-reading .flow-feature-label h3 span {
  white-space: nowrap;
}

.flow-feature.is-codex-reading .flow-feature-copy h4 {
  max-width: 15em;
  margin-bottom: clamp(18px, 2vw, 26px);
  font-size: clamp(28px, 2.6vw, 42px);
  line-height: 1.34;
}

.flow-feature.is-codex-reading .flow-feature-copy p {
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.78;
}

.flow-feature.is-codex-reading .flow-feature-facts {
  gap: clamp(14px, 1.4vw, 20px);
  margin-top: clamp(24px, 2.7vw, 36px);
}

.flow-feature.is-codex-reading .flow-feature-facts dt {
  min-height: 46px;
}

.flow-feature.is-codex-reading .flow-feature-facts dd {
  padding: 14px 16px 16px;
  font-size: clamp(17px, 1.25vw, 21px);
}

.flow-feature#implementation,
.flow-feature.is-team-work {
  gap: clamp(38px, 4.2vw, 68px);
  min-height: 540px;
  padding-top: clamp(44px, 4.8vw, 68px);
  padding-bottom: clamp(44px, 4.8vw, 68px);
}

.flow-feature#implementation .flow-feature-visual,
.flow-feature.is-team-work .flow-feature-visual {
  min-height: 400px;
}

.flow-feature#implementation .flow-feature-label,
.flow-feature.is-team-work .flow-feature-label {
  margin-bottom: clamp(22px, 2.5vw, 34px);
}

.flow-feature#implementation .flow-feature-number,
.flow-feature.is-team-work .flow-feature-number {
  margin-bottom: clamp(10px, 1vw, 14px);
  font-size: clamp(20px, 1.8vw, 28px);
}

.flow-feature#implementation .flow-feature-label h3,
.flow-feature.is-team-work .flow-feature-label h3 {
  font-size: clamp(40px, 4vw, 62px);
  line-height: 1.08;
}

.flow-feature#implementation .flow-feature-label h3::after,
.flow-feature.is-team-work .flow-feature-label h3::after {
  width: min(38vw, 360px);
  height: clamp(7px, 0.7vw, 10px);
  margin-top: clamp(18px, 2vw, 26px);
}

.flow-feature#implementation .flow-feature-copy h4,
.flow-feature.is-team-work .flow-feature-copy h4 {
  margin-bottom: clamp(18px, 2vw, 26px);
  font-size: clamp(28px, 2.6vw, 42px);
  line-height: 1.34;
}

.flow-feature#implementation .flow-feature-copy p,
.flow-feature.is-team-work .flow-feature-copy p {
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.78;
}

.flow-feature#implementation .impl-laptop {
  right: 19%;
  top: 20%;
  width: 43%;
}

.flow-feature#implementation .impl-screen {
  gap: 6px;
  height: clamp(150px, 12.5vw, 190px);
  padding: 22px 20px;
  border-width: 8px;
  border-radius: 16px 16px 10px 10px;
}

.flow-feature#implementation .impl-screen i {
  height: 6px;
}

.flow-feature#implementation .impl-base {
  height: 26px;
}

.flow-feature#implementation .impl-terminal {
  left: 8%;
  top: 37%;
  width: 24%;
  min-height: 90px;
  border-radius: 14px;
}

.flow-feature#implementation .impl-terminal span {
  font-size: clamp(26px, 2.3vw, 38px);
}

.flow-feature#implementation .impl-window {
  top: 32%;
  width: 24%;
  height: 146px;
  border-top-width: 23px;
  border-radius: 12px;
}

.flow-feature#implementation .impl-window::before {
  left: 18px;
  top: 24px;
  width: 34px;
  height: 72px;
  box-shadow: 50px 0 0 #e9f3ff, 92px 0 0 #e9f3ff;
}

.flow-feature#implementation .impl-cubes {
  right: 10%;
  bottom: 8%;
  grid-template-columns: repeat(2, 44px);
  gap: 7px;
}

.flow-feature#implementation .impl-cubes i {
  width: 44px;
  height: 44px;
}

.flow-feature#implementation .impl-code {
  left: 22%;
  top: 9%;
  width: 64px;
  height: 64px;
  font-size: 25px;
}

.flow-feature#implementation .impl-lines {
  right: 18%;
  top: 8%;
  width: 132px;
  height: 62px;
}

.flow-feature#implementation .impl-lines::before {
  left: 22px;
  right: 22px;
  top: 15px;
  height: 3px;
  box-shadow:
    0 17px 0 rgba(255, 255, 255, 0.56),
    0 34px 0 rgba(255, 255, 255, 0.36);
}

.flow-feature#implementation .impl-gear {
  right: 4%;
  top: 15%;
  width: 52px;
  height: 52px;
  border-width: 11px;
}

.flow-feature.is-team-work .team-visual::before {
  inset: 6% 4% 5% 0;
  border-radius: 28px;
}

.flow-feature.is-team-work .team-board {
  left: 13%;
  top: 18%;
  width: 68%;
  min-height: 250px;
  border-width: 8px;
  border-radius: 18px;
}

.flow-feature.is-team-work .team-board-head {
  height: 36px;
  padding: 0 18px;
}

.flow-feature.is-team-work .team-board-head i {
  width: 7px;
  height: 7px;
}

.flow-feature.is-team-work .team-columns {
  inset: 64px 22px 24px;
  gap: 14px;
}

.flow-feature.is-team-work .team-card {
  height: 54px;
  border-radius: 10px;
}

.flow-feature.is-team-work .team-card::before,
.flow-feature.is-team-work .team-card::after {
  left: 14px;
  right: 14px;
  height: 5px;
}

.flow-feature.is-team-work .team-card::before {
  top: 16px;
}

.flow-feature.is-team-work .team-card::after {
  top: 32px;
  right: 34px;
}

.flow-feature.is-team-work .team-pr {
  left: 13%;
  top: 10%;
  width: 62px;
  height: 62px;
  font-size: 21px;
}

.flow-feature.is-team-work .team-ci {
  right: 14%;
  top: 14%;
  width: 56px;
  height: 56px;
  font-size: 19px;
}

.flow-feature.is-team-work .team-review {
  right: 7%;
  bottom: 17%;
  min-width: 108px;
  height: 46px;
  padding: 0 20px;
  font-size: 15px;
}

.flow-feature.is-team-work .team-people {
  left: 16%;
  bottom: 13%;
  gap: 8px;
}

.flow-feature.is-team-work .team-people i {
  width: 46px;
  height: 46px;
  border-width: 5px;
}

.flow-feature.is-team-work .team-people i::after {
  bottom: -27px;
  width: 60px;
  height: 36px;
  border-width: 5px;
}

.codex-training-visual {
  position: relative;
  display: grid;
  align-content: center;
  gap: clamp(12px, 1.3vw, 18px);
  min-height: 430px;
  padding: clamp(22px, 2.1vw, 34px);
  transform: none;
  background:
    radial-gradient(circle at 86% 18%, rgba(47, 115, 230, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #e1ecfb;
  border-radius: 12px;
  overflow: hidden;
}

.training-message {
  display: grid;
  justify-items: start;
  gap: 8px;
  max-width: 620px;
}

.training-message span {
  display: inline-block;
  padding: 8px 20px 10px;
  color: #ffffff;
  background: #d9041d;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
  font-size: clamp(14px, 1.05vw, 18px);
  font-weight: 900;
  line-height: 1;
}

.training-message strong {
  color: #05070c;
  font-size: clamp(34px, 3.1vw, 52px);
  line-height: 1.08;
  font-weight: 900;
}

.training-message b {
  color: #05070c;
  font-size: clamp(17px, 1.35vw, 24px);
  line-height: 1.22;
  font-weight: 900;
}

.training-stack {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: clamp(10px, 1vw, 16px);
  align-items: center;
  margin-top: clamp(8px, 1vw, 14px);
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.training-stack span {
  display: grid;
  gap: 8px;
  min-height: clamp(118px, 8.5vw, 140px);
  padding: 14px 10px;
  place-items: center;
  background: #ffffff;
  border: 1px solid #e3e8f0;
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(14, 46, 91, 0.08);
}

.training-stack em {
  display: grid;
  place-items: center;
  width: clamp(36px, 3vw, 48px);
  height: clamp(36px, 3vw, 48px);
  font-style: normal;
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1;
  font-weight: 900;
}

.training-tool-vscode em {
  color: #118bd6;
}

.training-tool-github em {
  color: #05070c;
  background: #f3f4f6;
  border-radius: 50%;
}

.training-tool-db em {
  color: #23c48e;
}

.training-tool-deploy em {
  color: #05070c;
}

.training-stack strong {
  color: #05070c;
  font-size: clamp(13px, 0.95vw, 16px);
  line-height: 1.2;
  font-weight: 900;
  text-align: center;
}

.training-stack small {
  display: inline-grid;
  place-items: center;
  min-width: 62px;
  min-height: 26px;
  padding: 0 12px;
  color: var(--tool-color, #2d73d8);
  background: var(--tool-soft, #eaf3ff);
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
}

.training-tool-vscode {
  --tool-color: #118bd6;
  --tool-soft: #eaf5ff;
}

.training-tool-github {
  --tool-color: #05070c;
  --tool-soft: #f0f1f3;
}

.training-tool-db {
  --tool-color: #24b984;
  --tool-soft: #e9f8f2;
}

.training-tool-deploy {
  --tool-color: #6d4bc1;
  --tool-soft: #f2edff;
}

.training-stack i {
  display: block;
  color: #d9041d;
  font-style: normal;
  font-size: clamp(21px, 1.8vw, 30px);
  line-height: 1;
  font-weight: 900;
}

.training-platform {
  display: grid;
  place-items: center;
  min-height: clamp(50px, 4vw, 64px);
  padding: 0 24px;
  color: #222222;
  background: linear-gradient(180deg, #eeeeee 0%, #d5d5d5 100%);
  border: 1px solid #cfcfcf;
  border-radius: 6px;
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.08);
  font-size: clamp(19px, 1.7vw, 28px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.training-outcome {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: clamp(74px, 6vw, 96px);
  padding: 18px clamp(20px, 2vw, 30px);
  background: #ffffff;
  border: 1px solid #d8e7ff;
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(29, 93, 198, 0.1);
}

.training-outcome span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #ffffff;
  background: linear-gradient(135deg, #5fc5f1 0%, #2f73e6 100%);
  border-radius: 50%;
  font-size: 30px;
  font-weight: 900;
}

.training-outcome strong {
  color: #061b42;
  font-size: clamp(21px, 2vw, 34px);
  line-height: 1.35;
  font-weight: 900;
}

.training-value {
  display: grid;
  place-items: center;
  min-height: clamp(48px, 4vw, 64px);
  padding: 12px 20px;
  color: #ffffff;
  background: #d9041d;
  border-radius: 8px;
  font-size: clamp(18px, 1.7vw, 27px);
  line-height: 1.25;
  font-weight: 900;
  text-align: center;
}

.flow-feature .codebase-visual,
.flow-feature .implementation-visual {
  min-height: 520px;
  overflow: hidden;
}

.team-visual {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.team-visual::before {
  content: "";
  position: absolute;
  inset: 7% 4% 5% 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 72%, rgba(47, 130, 255, 0.16), transparent 23%),
    radial-gradient(circle at 76% 28%, rgba(47, 130, 255, 0.13), transparent 26%),
    linear-gradient(145deg, #f4faff 0%, #eaf4ff 100%);
  border-radius: 34px;
}

.team-board {
  position: absolute;
  left: 11%;
  top: 20%;
  width: 70%;
  min-height: 330px;
  background: rgba(255, 255, 255, 0.9);
  border: 10px solid #d5e6ff;
  border-radius: 22px;
  box-shadow: 0 28px 70px rgba(29, 82, 156, 0.16);
}

.team-board-head {
  display: flex;
  gap: 9px;
  align-items: center;
  height: 46px;
  padding: 0 22px;
  background: #2e82ff;
  border-radius: 12px 12px 0 0;
}

.team-board-head i {
  width: 9px;
  height: 9px;
  background: #ffffff;
  border-radius: 50%;
  opacity: 0.86;
}

.team-columns {
  position: absolute;
  inset: 82px 28px 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.team-columns span {
  background: #edf6ff;
  border: 1px solid #d7e9ff;
  border-radius: 14px;
}

.team-card {
  position: absolute;
  width: 24%;
  height: 72px;
  background: #ffffff;
  border: 1px solid #c6ddfb;
  border-radius: 12px;
  box-shadow: 0 18px 36px rgba(47, 130, 255, 0.12);
}

.team-card::before,
.team-card::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  height: 6px;
  background: #7ab3ff;
  border-radius: 999px;
}

.team-card::before {
  top: 21px;
}

.team-card::after {
  top: 42px;
  right: 44px;
  background: #b6d5ff;
}

.team-card-one {
  left: 8%;
  top: 34%;
}

.team-card-two {
  left: 38%;
  top: 50%;
}

.team-card-three {
  right: 8%;
  top: 38%;
}

.team-chip {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(145deg, #57a5ff, #0759ff);
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(47, 130, 255, 0.24);
  font-weight: 900;
}

.team-pr {
  left: 13%;
  top: 10%;
  width: 78px;
  height: 78px;
  font-size: 26px;
}

.team-ci {
  right: 13%;
  top: 15%;
  width: 68px;
  height: 68px;
  background: linear-gradient(145deg, #55c2ff, #2f73e6);
  font-size: 23px;
}

.team-review {
  right: 7%;
  bottom: 17%;
  min-width: 128px;
  height: 58px;
  padding: 0 24px;
  color: #2f73e6;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #cfe1ff;
  font-size: 18px;
}

.team-people {
  position: absolute;
  left: 16%;
  bottom: 14%;
  display: flex;
  gap: 12px;
}

.team-people i {
  position: relative;
  display: block;
  width: 58px;
  height: 58px;
  background: linear-gradient(180deg, #9cc9ff, #2f73e6);
  border: 6px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 14px 28px rgba(47, 130, 255, 0.18);
}

.team-people i::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -32px;
  width: 76px;
  height: 46px;
  background: #dfeeff;
  border: 6px solid #ffffff;
  border-radius: 38px 38px 18px 18px;
  transform: translateX(-50%);
}

.square-icon {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  color: #2e82ff;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #d8e9ff;
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(47, 130, 255, 0.14);
}

.lp-flow-section + .band {
  background:
    linear-gradient(180deg, #eef7ff 0%, #ffffff 64%);
}

.home-nav-grid,
.summary-grid,
.diagnosis-grid,
.news-list {
  display: grid;
  gap: 18px;
}

.home-nav-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2vw, 36px);
}

.home-nav-grid a,
.summary-grid article,
.diagnosis-grid article,
.news-list article {
  background: var(--white);
  border: 2px solid var(--line-strong);
  border-radius: 12px;
  box-shadow: 0 28px 80px rgba(29, 82, 156, 0.08);
}

.home-nav-grid a,
.summary-grid article,
.diagnosis-grid article,
.news-list article {
  padding: clamp(30px, 3.2vw, 52px);
}

.home-nav-grid span,
.summary-grid span,
.diagnosis-grid span,
.news-date {
  color: var(--blue);
  font-weight: 900;
}

.home-nav-grid a:hover {
  color: var(--blue-dark);
  border-color: rgba(46, 130, 255, 0.55);
  transform: translateY(-2px);
}

.summary-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2vw, 36px);
}

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

.news-list {
  max-width: 980px;
}

.news-list article {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  align-items: start;
}

.news-list h3 {
  margin-bottom: 8px;
}

.news-list p,
.home-nav-grid p,
.summary-grid p,
.diagnosis-grid p {
  color: var(--muted);
  line-height: 1.85;
}

.client-section {
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
}

.client-head {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.client-marquee {
  position: relative;
  display: grid;
  gap: 18px;
  margin: 42px calc(clamp(20px, 5vw, 72px) * -1) 0;
  padding: 10px 0;
}

.client-marquee::before,
.client-marquee::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: min(18vw, 180px);
  pointer-events: none;
}

.client-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.client-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #f4f8ff 0%, rgba(244, 248, 255, 0) 100%);
}

.client-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: client-scroll 36s linear infinite;
}

.client-track.reverse {
  animation-name: client-scroll-reverse;
  animation-duration: 42s;
}

.client-track span {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  min-width: 224px;
  min-height: 78px;
  padding: 12px 24px 12px 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #d9e6f7;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(22, 48, 86, 0.08);
}

.client-track img {
  display: block;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  padding: 9px;
  object-fit: contain;
  background: linear-gradient(180deg, #ffffff 0%, #eef6ff 100%);
  border: 1px solid #cfe1f8;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(35, 112, 241, 0.12);
}

.client-track strong {
  color: #22304a;
  font-size: clamp(15px, 1.45vw, 20px);
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}

@keyframes client-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 7px));
  }
}

@keyframes client-scroll-reverse {
  from {
    transform: translateX(calc(-50% - 7px));
  }

  to {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .client-track {
    animation-play-state: paused;
  }
}

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

.result-strip article {
  padding: 26px;
  color: var(--white);
  background: var(--blue-deep);
  border-radius: 8px;
}

.result-strip h3,
.result-strip p {
  color: inherit;
}

.assessment-fv {
  display: grid;
  place-items: center;
  min-height: 0;
  padding: clamp(140px, 10vh, 152px) clamp(20px, 5vw, 72px) clamp(18px, 2vh, 26px);
  background:
    radial-gradient(circle at 50% 18%, rgba(87, 158, 230, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 74%, #f7fbff 100%);
  text-align: center;
}

.assessment-fv-inner {
  display: grid;
  justify-items: center;
  width: min(100%, 1320px);
}

.assessment-fv-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 36px;
  margin: 0 0 clamp(10px, 1.1vw, 16px);
  padding: 0 22px;
  color: #1a2029;
  background: #eaf2fb;
  border-radius: 999px;
  font-size: clamp(14px, 0.95vw, 18px);
  font-weight: 900;
  letter-spacing: 0.22em;
}

.assessment-fv-kicker span {
  width: 10px;
  height: 10px;
  background: #de1640;
  border-radius: 50%;
}

.assessment-fv h1 {
  width: 100%;
  max-width: none;
  margin: 0;
  color: #071f4d;
  font-size: clamp(36px, 3.6vw, 54px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
}

.assessment-fv-lead {
  margin: clamp(10px, 1.1vw, 16px) 0 0;
  color: #5a5f67;
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: 0;
}

.assessment-fv-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: clamp(12px, 1.3vw, 18px);
}

.assessment-fv-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 20px;
  color: #31405a;
  background: #eef4fa;
  border-radius: 999px;
  font-size: clamp(16px, 1.15vw, 22px);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.assessment-fv-chip::before {
  content: "";
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  box-sizing: border-box;
}

.assessment-fv-chip.is-time::before {
  border: 3px solid #31405a;
  border-radius: 50%;
  box-shadow: inset 6px 0 0 -4px #31405a;
}

.assessment-fv-chip.is-count::before {
  border: 3px solid #31405a;
  border-radius: 4px;
  box-shadow: inset 0 -5px 0 -3px #31405a;
}

.assessment-fv-chip.is-free {
  color: #168149;
  background: #e0f4eb;
}

.assessment-fv-chip.is-free::before {
  display: none;
}

.assessment-section {
  padding-top: clamp(18px, 1.8vw, 28px);
  background: #f8fbff;
}

.assessment-section .section-head {
  margin-bottom: clamp(20px, 2.2vw, 32px);
}

.assessment-section .section-head h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.08;
}

.assessment-section .section-head h2::after {
  margin-top: 12px;
}

.assessment-section .section-head p:not(.eyebrow) {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
}

.assessment-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.46fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: start;
}

.assessment-form {
  display: grid;
  gap: 18px;
}

.assessment-question {
  min-width: 0;
  min-inline-size: 0;
  margin: 0;
  padding: clamp(24px, 3vw, 34px);
  background: var(--white);
  border: 0;
  border-radius: 8px;
  box-shadow:
    inset 0 0 0 1px var(--line),
    0 10px 30px rgba(23, 32, 30, 0.05);
}

.assessment-question h3 {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  margin: 0 0 20px;
  color: var(--ink);
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.25;
  font-weight: 900;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.assessment-question h3 span {
  flex: 0 0 auto;
  color: var(--blue);
  font-size: 0.72em;
  line-height: 1.55;
}

.assessment-question p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.assessment-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.assessment-choices label {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 56px;
  padding: 0 28px;
  color: var(--blue-deep);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  transition:
    color 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease;
}

.assessment-choices label:hover {
  border-color: rgba(46, 130, 255, 0.55);
  transform: translateY(-1px);
}

.assessment-choices label:has(input:checked) {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 12px 26px rgba(46, 130, 255, 0.22);
}

.assessment-choices input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.assessment-choices label:has(input:focus-visible) {
  outline: 3px solid rgba(46, 130, 255, 0.28);
  outline-offset: 4px;
}

.assessment-result {
  position: sticky;
  top: 132px;
  container-type: inline-size;
  display: grid;
  gap: 22px;
  padding: clamp(24px, 3vw, 34px);
  background: var(--white);
  border: 1px solid #dde4ef;
  border-left: 10px solid #8a98ad;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(7, 27, 58, 0.1);
}

.assessment-result.is-high {
  border-left-color: #168149;
}

.assessment-result.is-middle {
  border-left-color: #d58a15;
}

.assessment-result.is-low {
  border-left-color: #c04747;
}

.recommendation {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.recommendation span,
.answer-status span {
  color: #6d7a8f;
  font-size: 17px;
  font-weight: 900;
}

.recommendation strong {
  min-width: 76px;
  padding: 4px 14px 6px;
  color: var(--white);
  background: #8a98ad;
  border-radius: 8px;
  font-size: 22px;
  line-height: 1.1;
  text-align: center;
}

.is-high .recommendation strong {
  background: #168149;
}

.is-middle .recommendation strong {
  background: #d58a15;
}

.is-low .recommendation strong {
  background: #c04747;
}

.recommendation em {
  color: #168149;
  font-style: normal;
  font-size: 24px;
  letter-spacing: 0.18em;
}

.is-middle .recommendation em {
  color: #d58a15;
}

.is-low .recommendation em {
  color: #c04747;
}

.assessment-result h3 {
  margin: 0;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.35;
}

.assessment-result p {
  margin: 0;
  color: #606a78;
  font-size: 17px;
  line-height: 1.85;
}

.answer-status,
.assessment-score {
  display: grid;
  gap: 10px;
}

.answer-status strong,
.assessment-score strong {
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
}

.assessment-score > span {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: baseline;
  color: #6d7a8f;
  font-size: 17px;
  font-weight: 900;
}

.assessment-progress {
  height: 10px;
  background: #e7edf7;
  border-radius: 999px;
  overflow: hidden;
}

.assessment-progress i {
  display: block;
  width: 0;
  height: 100%;
  background: #168149;
  border-radius: inherit;
  transition: width 0.24s ease;
}

.is-middle .assessment-progress i {
  background: #d58a15;
}

.is-low .assessment-progress i {
  background: #c04747;
}

.assessment-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(132px, auto);
  gap: 14px;
  align-items: center;
}

.assessment-actions .button {
  width: 100%;
  min-width: 0;
  min-height: 64px;
  padding-right: 20px;
  padding-left: 20px;
  border: 0;
  cursor: pointer;
  white-space: normal;
  overflow-wrap: anywhere;
}

.assessment-actions .button.primary {
  background: #419565;
  box-shadow: none;
}

.assessment-actions .button.ghost {
  color: #606a78;
  background: var(--white);
  border: 1px solid #dde4ef;
}

@container (max-width: 380px) {
  .assessment-actions {
    grid-template-columns: 1fr;
  }
}

.section-head {
  max-width: 940px;
  margin-bottom: clamp(38px, 5vw, 72px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(31px, 4vw, 52px);
  line-height: 1.18;
  font-weight: 900;
}

.section-head p,
.split p {
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.9;
  font-weight: 700;
}

.band {
  background:
    linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%),
    var(--soft);
}

.definition-grid,
.feature-grid,
.usecase-grid,
.pricing-grid {
  display: grid;
  gap: clamp(18px, 2vw, 36px);
}

.definition-grid {
  grid-template-columns: repeat(3, 1fr);
}

.definition-grid article,
.feature-grid article,
.usecase-grid article,
.price-card {
  background: var(--white);
  border: 2px solid var(--line-strong);
  border-radius: 12px;
  box-shadow: 0 28px 80px rgba(29, 82, 156, 0.08);
}

.definition-grid article,
.feature-grid article,
.usecase-grid article {
  padding: clamp(34px, 3.4vw, 56px);
}

.definition-grid span,
.timeline span {
  color: var(--blue);
  display: inline-block;
  margin-bottom: 12px;
  font-size: clamp(25px, 2.4vw, 38px);
  line-height: 1;
  font-weight: 900;
}

h3 {
  margin-bottom: 12px;
  color: #061a39;
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.24;
  font-weight: 900;
}

article p,
li {
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 24px);
  line-height: 1.9;
  font-weight: 700;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.intro-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
}

.definition-grid article,
.home-nav-grid a,
.summary-grid article,
.timeline article {
  display: grid;
  align-content: start;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.definition-grid article {
  min-height: clamp(360px, 31vw, 470px);
}

.definition-grid h3,
.timeline h3 {
  margin-bottom: 28px;
  font-size: clamp(30px, 2.65vw, 46px);
  line-height: 1.16;
}

.definition-grid p,
.timeline p {
  font-size: clamp(19px, 1.8vw, 31px);
  line-height: 1.9;
}

.home-nav-grid a,
.summary-grid article {
  min-height: clamp(250px, 22vw, 330px);
}

.home-nav-grid span,
.summary-grid span {
  display: inline-block;
  margin-bottom: 14px;
  font-size: clamp(23px, 2vw, 34px);
  line-height: 1;
}

.home-nav-grid h3,
.summary-grid h3 {
  margin-bottom: 18px;
  font-size: clamp(25px, 2.4vw, 42px);
  line-height: 1.2;
}

.home-nav-grid p,
.summary-grid p {
  font-size: clamp(16px, 1.35vw, 22px);
  line-height: 1.9;
}

.sitemap-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 96% 20%, rgba(47, 130, 255, 0.12), transparent 18%),
    radial-gradient(circle at 3% 82%, rgba(47, 130, 255, 0.1), transparent 18%),
    linear-gradient(135deg, #f4f9ff 0%, #ffffff 42%, #f2f8ff 100%);
}

.sitemap-section {
  padding: clamp(54px, 5.6vw, 86px) clamp(20px, 5vw, 72px) 0;
  background: #ffffff;
}

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

.sitemap-image-map {
  position: relative;
  width: min(100%, 1586px);
  margin: 0 auto;
  background: #ffffff;
}

.sitemap-image-map img {
  display: block;
  width: 100%;
  height: auto;
}

.sitemap-hotspot {
  position: absolute;
  border-radius: 12px;
}

.sitemap-hotspot:focus-visible {
  outline: 4px solid rgba(46, 130, 255, 0.7);
  outline-offset: -8px;
}

.hotspot-assessment,
.hotspot-courses,
.hotspot-pricing {
  top: 3%;
  height: 41%;
}

.hotspot-usecases,
.hotspot-comparison,
.hotspot-news {
  top: 46.4%;
  height: 37.8%;
}

.hotspot-assessment,
.hotspot-usecases {
  left: 3.15%;
  width: 31.05%;
}

.hotspot-courses,
.hotspot-comparison {
  left: 35.45%;
  width: 29.9%;
}

.hotspot-pricing,
.hotspot-news {
  left: 66.45%;
  width: 30.5%;
}

.sitemap-section::before,
.sitemap-section::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  background-image: radial-gradient(#9cc6ff 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  opacity: 0.35;
  pointer-events: none;
}

.sitemap-section::before {
  right: 28px;
  top: 44px;
}

.sitemap-section::after {
  left: 0;
  bottom: 10px;
}

.sitemap-head {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto clamp(34px, 4vw, 52px);
  text-align: center;
}

.sitemap-head .eyebrow {
  color: #2166d4;
}

.sitemap-head h2 {
  margin: 0;
  color: #061f49;
  font-size: clamp(31px, 4vw, 52px);
  line-height: 1.18;
  font-weight: 900;
}

.sitemap-head h2::after {
  content: "";
  display: block;
  width: 58px;
  height: 4px;
  margin: 18px auto 0;
  background: #2d73ef;
  border-radius: 999px;
}

.sitemap-head p:not(.eyebrow) {
  color: #40577d;
  font-size: clamp(16px, 1.45vw, 22px);
  font-weight: 800;
}

.sitemap-section .home-nav-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 34px);
}

.sitemap-section .home-nav-grid a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: clamp(500px, 35vw, 610px);
  padding: clamp(18px, 2vw, 26px) clamp(22px, 2.4vw, 34px) clamp(26px, 2.8vw, 42px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #d9e7fa;
  border-radius: 18px;
  box-shadow: 0 18px 34px rgba(29, 93, 198, 0.08);
  overflow: hidden;
  text-align: center;
}

.sitemap-section .home-nav-grid a:hover {
  border-color: rgba(46, 130, 255, 0.58);
  box-shadow: 0 24px 48px rgba(29, 93, 198, 0.14);
  transform: translateY(-2px);
}

.sitemap-section .home-nav-grid .nav-visual {
  display: block;
  width: min(76%, 310px);
  aspect-ratio: 4 / 3;
  margin: 0 auto clamp(24px, 2.3vw, 34px);
  background: #f8fbff;
  border: 1px solid #e6eef9;
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(29, 93, 198, 0.1);
  overflow: hidden;
}

.sitemap-section .home-nav-grid .nav-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sitemap-section .home-nav-grid .nav-index {
  display: inline-grid;
  place-items: center;
  align-self: flex-start;
  min-width: 64px;
  min-height: 38px;
  margin: 0 0 clamp(18px, 2vw, 26px);
  padding: 0 14px;
  color: #2d73ef;
  background: #edf5ff;
  border-radius: 999px;
  font-size: clamp(20px, 1.7vw, 28px);
  font-weight: 900;
  line-height: 1;
}

.sitemap-section .home-nav-grid h3 {
  margin: 0 0 14px;
  color: #061b42;
  font-size: clamp(25px, 2vw, 34px);
  line-height: 1.18;
}

.sitemap-section .home-nav-grid p {
  margin: 0 auto;
  color: #40577d;
  max-width: 18em;
  font-size: clamp(15px, 1.15vw, 19px);
  font-weight: 800;
  line-height: 1.85;
}

.sitemap-section .home-nav-grid b {
  position: static;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  align-self: center;
  width: fit-content;
  margin-top: auto;
  padding-bottom: 5px;
  color: #061b42;
  border-bottom: 2px solid currentColor;
  font-size: 26px;
  line-height: 1;
  font-weight: 900;
}

.sitemap-section .home-nav-grid b::before {
  content: "詳しく見る";
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(32px, 7vw, 88px);
  align-items: center;
}

.compare-list {
  display: grid;
  gap: 14px;
}

.compare-list article {
  display: grid;
  gap: 8px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.compare-list strong {
  font-size: 18px;
}

.compare-list span {
  color: var(--muted);
  line-height: 1.8;
}

.compare-list .highlight {
  color: var(--white);
  background: var(--blue-deep);
  border-color: var(--blue-deep);
}

.compare-list .highlight span {
  color: rgba(255, 255, 255, 0.82);
}

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

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 32px);
}

.timeline article {
  display: grid;
  gap: 14px;
  align-items: start;
  min-height: 300px;
  padding: clamp(30px, 3vw, 50px);
  background: var(--white);
  border: 2px solid var(--line-strong);
  border-radius: 12px;
  box-shadow: 0 28px 80px rgba(29, 82, 156, 0.08);
}

.timeline h3 {
  font-size: clamp(28px, 2.8vw, 46px);
}

.timeline p {
  font-size: clamp(18px, 1.55vw, 25px);
}

.course-fv {
  display: grid;
  place-items: center;
  min-height: min(700px, 84svh);
  padding: clamp(150px, 15vh, 190px) clamp(20px, 5vw, 72px) clamp(80px, 10vh, 118px);
  color: #151d2b;
  background:
    radial-gradient(circle at 50% 12%, rgba(46, 130, 255, 0.08), transparent 30%),
    linear-gradient(180deg, #f7f9fc 0%, #f5f8fc 74%, #ffffff 100%);
  text-align: center;
}

.course-fv-inner {
  display: grid;
  justify-items: center;
  width: min(100%, 1500px);
}

.course-fv-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 56px;
  margin: 0 0 clamp(42px, 5vw, 62px);
  padding: 0 28px;
  color: #171d25;
  background: #eaf0f8;
  border-radius: 999px;
  font-size: clamp(15px, 1vw, 20px);
  font-weight: 900;
  letter-spacing: 0.28em;
}

.course-fv-kicker span {
  width: 9px;
  height: 9px;
  background: #d92c3e;
  border-radius: 50%;
}

.course-fv h1 {
  width: 100%;
  max-width: none;
  margin: 0;
  color: #17191d;
  font-size: clamp(50px, 4.6vw, 82px);
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: 0;
}

.course-fv-lead {
  max-width: 1040px;
  margin: clamp(34px, 3.8vw, 52px) 0 0;
  color: #1c2027;
  font-size: clamp(22px, 1.75vw, 34px);
  font-weight: 900;
  line-height: 1.9;
}

.course-fv-sub {
  max-width: 980px;
  margin: 22px 0 0;
  color: #5b6069;
  font-size: clamp(18px, 1.35vw, 25px);
  font-weight: 800;
  line-height: 1.9;
}

@media (min-width: 641px) {
  .course-page .course-fv {
    min-height: min(560px, 68svh);
    padding: clamp(116px, 10vh, 138px) clamp(20px, 5vw, 72px) clamp(46px, 6vh, 64px);
  }

  .course-page .course-fv-kicker {
    min-height: 48px;
    margin-bottom: clamp(28px, 3vw, 38px);
    padding: 0 24px;
    font-size: clamp(14px, 0.9vw, 18px);
  }

  .course-page .course-fv h1 {
    font-size: clamp(44px, 3.9vw, 68px);
    line-height: 1.08;
  }

  .course-page .course-fv-lead {
    margin-top: clamp(24px, 2.4vw, 34px);
    font-size: clamp(20px, 1.55vw, 29px);
    line-height: 1.55;
  }

  .course-page .course-fv-sub {
    margin-top: 10px;
    font-size: clamp(17px, 1.2vw, 22px);
    line-height: 1.55;
  }

  .usecase-page .course-fv {
    min-height: min(520px, 62svh);
    padding: clamp(122px, 10vh, 144px) clamp(20px, 5vw, 72px) clamp(38px, 4.5vh, 58px);
  }

  .usecase-page .course-fv-kicker {
    min-height: 48px;
    margin-bottom: clamp(24px, 2.8vw, 34px);
    padding: 0 24px;
    font-size: clamp(14px, 0.9vw, 18px);
  }

  .usecase-page .course-fv h1 {
    font-size: clamp(48px, 4vw, 72px);
    line-height: 1.06;
  }

  .usecase-page .course-fv-lead {
    max-width: 1300px;
    margin-top: clamp(22px, 2.2vw, 30px);
    font-size: clamp(20px, 1.55vw, 29px);
    line-height: 1.55;
  }

  .usecase-page .course-fv-sub {
    max-width: 1180px;
    margin-top: 10px;
    font-size: clamp(17px, 1.2vw, 22px);
    line-height: 1.55;
  }
}

.pricing-page .course-fv {
  min-height: min(560px, 68svh);
  padding-top: clamp(108px, 10vh, 132px);
  padding-bottom: clamp(48px, 5.5vh, 72px);
}

.pricing-page .course-fv-kicker {
  min-height: 50px;
  margin-bottom: clamp(24px, 2.8vw, 36px);
  padding: 0 26px;
}

.pricing-page .course-fv h1 {
  font-size: clamp(48px, 4.25vw, 76px);
  line-height: 1.04;
}

.pricing-page .course-fv-lead {
  max-width: 1320px;
  margin-top: clamp(26px, 2.8vw, 38px);
  line-height: 1.55;
}

.pricing-page .course-fv-sub {
  max-width: 1160px;
  margin-top: 14px;
  line-height: 1.55;
}

.curriculum-section {
  background:
    radial-gradient(circle at 86% 14%, rgba(93, 164, 255, 0.16), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
}

.curriculum-map {
  position: relative;
  max-width: 1680px;
  margin: 0 auto;
  padding: clamp(30px, 3.2vw, 54px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #d7e8ff;
  border-radius: 14px;
  box-shadow: 0 30px 90px rgba(29, 82, 156, 0.1);
  overflow: hidden;
}

.curriculum-map::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(46, 130, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(46, 130, 255, 0.06) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 70%);
  opacity: 0.65;
}

.curriculum-image-wrap {
  max-width: 1380px;
  margin: 0 auto;
  overflow: hidden;
  background: transparent;
}

.curriculum-flow-image {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 641px) {
  .curriculum-flow-image {
    transform: scaleX(0.94);
    transform-origin: center center;
  }
}

.curriculum-map-head,
.curriculum-flow,
.curriculum-outcome {
  position: relative;
  z-index: 1;
}

.curriculum-map-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: clamp(28px, 3vw, 44px);
}

.curriculum-map-head div {
  display: grid;
  gap: 6px;
  min-height: 88px;
  padding: 20px 24px;
  background: #eef6ff;
  border: 1px solid #cfe3ff;
  border-radius: 8px;
}

.curriculum-map-head div:nth-child(2) {
  color: #ffffff;
  background: linear-gradient(135deg, #57a5ff 0%, #0759ff 100%);
  border-color: transparent;
  box-shadow: 0 18px 42px rgba(47, 130, 255, 0.18);
}

.curriculum-map-head span {
  color: #2e82ff;
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
}

.curriculum-map-head div:nth-child(2) span {
  color: rgba(255, 255, 255, 0.84);
}

.curriculum-map-head strong {
  color: #071b3a;
  font-size: clamp(20px, 1.8vw, 30px);
  line-height: 1.32;
  font-weight: 900;
}

.curriculum-map-head div:nth-child(2) strong {
  color: #ffffff;
}

.curriculum-flow {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr) 54px
    minmax(0, 1fr) 54px
    minmax(0, 1fr) 54px
    minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
}

.curriculum-step {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  min-width: 0;
  min-height: 430px;
  padding: clamp(26px, 2.5vw, 40px);
  background: #ffffff;
  border: 1px solid #cfe3ff;
  border-radius: 12px;
  box-shadow: 0 20px 54px rgba(29, 82, 156, 0.08);
}

.curriculum-step::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 0;
  height: 6px;
  background: #2e82ff;
  border-radius: 0 0 999px 999px;
}

.curriculum-step-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin-bottom: 24px;
  color: #2e82ff;
  background: #edf6ff;
  border: 1px solid #d8e9ff;
  border-radius: 50%;
}

.curriculum-step-icon svg {
  width: 34px;
  height: 34px;
}

.curriculum-step-icon path,
.curriculum-step-icon circle,
.curriculum-step-icon rect {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.curriculum-step > span {
  display: block;
  margin: 0 0 14px;
  color: #6bb9ee;
  font-size: 19px;
  line-height: 1;
  font-weight: 900;
}

.curriculum-step h3 {
  margin: 0 0 18px;
  color: #061b42;
  font-size: clamp(25px, 2vw, 34px);
  line-height: 1.24;
  font-weight: 900;
}

.curriculum-step p {
  margin: 0;
  color: #32496e;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.9;
  font-weight: 800;
}

.curriculum-step ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-self: end;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.curriculum-step li {
  padding: 7px 11px;
  color: #0b4fb8;
  background: #edf6ff;
  border: 1px solid #d8e9ff;
  border-radius: 999px;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 900;
}

.curriculum-arrow {
  position: relative;
  align-self: center;
  display: block;
  height: 3px;
  margin: 0 11px;
  background: #8bbdff;
  border-radius: 999px;
}

.curriculum-arrow::before,
.curriculum-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 13px;
  height: 13px;
  border-top: 3px solid #8bbdff;
  border-right: 3px solid #8bbdff;
  transform: translateY(-50%) rotate(45deg);
}

.curriculum-arrow::before {
  right: 18px;
  opacity: 0.42;
}

.curriculum-outcome {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin-top: clamp(28px, 3vw, 44px);
  padding: clamp(22px, 2.6vw, 34px);
  color: #ffffff;
  background: linear-gradient(135deg, #57a5ff 0%, #0759ff 100%);
  border-radius: 10px;
  box-shadow: 0 20px 44px rgba(47, 130, 255, 0.22);
}

.curriculum-outcome b {
  font-size: clamp(22px, 2.2vw, 36px);
  line-height: 1.36;
  font-weight: 900;
}

.curriculum-outcome span {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(15px, 1.2vw, 19px);
  line-height: 1.6;
  font-weight: 800;
}

.course-flow-section {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: #ffffff;
}

.course-flow-section::before {
  display: none;
}

.course-flow-image-wrap {
  position: relative;
  z-index: 1;
  width: min(100%, 1536px);
  margin: 0 auto;
  overflow: hidden;
  --course-flow-image-crop: clamp(48px, 12.4vw, 190px);
}

.course-flow-image {
  display: block;
  width: 100%;
  height: auto;
  margin-top: calc(var(--course-flow-image-crop) * -1);
}

.course-page .curriculum-section,
.course-page .course-flow-section {
  padding-top: 0;
  background: #ffffff;
}

.course-page-title {
  display: grid;
  justify-items: center;
  padding: clamp(124px, 10vw, 160px) 20px clamp(54px, 5vw, 76px);
  text-align: center;
  background: #ffffff;
  border-bottom: 1px solid #d8e7fb;
}

.course-page-title p {
  margin: 0;
  color: #3980cb;
  font-size: clamp(23px, 2.6vw, 34px);
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: 0;
}

.course-page-title h1 {
  width: 100%;
  margin: 18px auto 0;
  color: #01294d;
  font-size: clamp(36px, 3.8vw, 56px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
}

.course-page-title__separate {
  width: 108px;
  height: 5px;
  margin: 28px auto 0;
  background: linear-gradient(90deg, #b7b7b7 0 28%, #3980cb 28% 72%, #b7b7b7 72% 100%);
}

.course-section-heading {
  width: min(100%, 1380px);
  margin: 0 auto;
  padding: clamp(38px, 4.2vw, 64px) clamp(20px, 4vw, 40px) clamp(22px, 2.6vw, 36px);
  background: #ffffff;
}

.course-section-heading h2 {
  margin: 0;
  color: #000000;
  font-size: clamp(24px, 2.4vw, 38px);
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: 0;
}

.course-section-heading h2::after {
  content: "";
  display: block;
  width: clamp(64px, 6vw, 88px);
  height: 5px;
  margin-top: clamp(14px, 1.6vw, 22px);
  background: #000000;
  border-radius: 999px;
}

.course-section-heading p {
  max-width: 960px;
  margin: clamp(18px, 1.8vw, 26px) 0 0;
  color: #34415a;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.8;
  font-weight: 800;
  letter-spacing: 0;
}

.course-page .curriculum-image-wrap,
.course-flow-image-wrap {
  padding-right: clamp(20px, 4vw, 40px);
  padding-left: clamp(20px, 4vw, 40px);
}

#course-curriculum,
#course-flow {
  scroll-margin-top: 110px;
}

.course-flow-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.course-flow-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(230px, 0.36fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  min-height: 286px;
  padding: clamp(32px, 3.7vw, 52px) clamp(36px, 5vw, 78px);
  background: rgba(255, 255, 255, 0.98);
  border-top: 5px solid #2d73d8;
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(7, 27, 58, 0.08);
}

.course-flow-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(207, 227, 255, 0.9);
  border-radius: inherit;
}

.course-flow-visual {
  display: grid;
  place-items: center;
  min-height: 200px;
}

.course-flow-visual svg {
  width: min(100%, 292px);
  height: auto;
  filter: drop-shadow(0 20px 22px rgba(29, 82, 156, 0.08));
}

.course-flow-copy span {
  display: block;
  margin-bottom: 10px;
  color: #91a2b5;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.course-flow-copy h3 {
  margin: 0 0 20px;
  color: #2d73d8;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.22;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.course-flow-copy p {
  max-width: 760px;
  margin: 0;
  color: #15243d;
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 2;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.course-flow-arrow {
  position: relative;
  justify-self: center;
  display: grid;
  place-items: center;
  width: 40px;
  height: 34px;
}

.course-flow-arrow::before {
  content: "";
  width: 18px;
  height: 18px;
  border-right: 6px solid #2d73d8;
  border-bottom: 6px solid #2d73d8;
  transform: rotate(45deg);
}

.course-lineup-section {
  padding: clamp(42px, 5vw, 72px) clamp(16px, 3.6vw, 52px);
  background: #ffffff;
}

.course-lineup-image-wrap {
  max-width: 1716px;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.course-lineup-image {
  display: block;
  width: 100%;
  min-width: 980px;
  height: auto;
  border-radius: 0;
  box-shadow: none;
}

.flow-paper,
.flow-device {
  fill: #f8fbff;
  stroke: #38495f;
  stroke-width: 4;
}

.flow-face {
  fill: #dcecff;
  stroke: #38495f;
  stroke-width: 4;
}

.flow-body {
  fill: #ffffff;
  stroke: #38495f;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flow-line,
.flow-hair,
.flow-chart {
  fill: none;
  stroke: #38495f;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flow-check {
  fill: none;
  stroke: #2e82ff;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flow-badge {
  fill: #8fd5ff;
  stroke: #2e82ff;
  stroke-width: 4;
}

.page-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 560px;
  padding: 168px clamp(20px, 5vw, 72px) 82px;
  background:
    radial-gradient(circle at 86% 16%, rgba(92, 151, 255, 0.24), transparent 34%),
    linear-gradient(135deg, #f8fbff 0%, #eef6ff 58%, #e3efff 100%);
}

.page-hero h1 {
  max-width: 980px;
  margin: 12px 0 24px;
  color: #061f49;
  font-size: clamp(48px, 6vw, 86px);
  line-height: 1.05;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: #294b7d;
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 2;
  font-weight: 800;
}

.section-head {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head .eyebrow,
.lp-title .eyebrow {
  color: #2166d4;
}

.section-head h2 {
  color: #061f49;
}

.section-head h2::after,
.lp-title h2::after {
  content: "";
  display: block;
  width: 58px;
  height: 4px;
  margin: 18px auto 0;
  background: #2d73ef;
  border-radius: 999px;
}

.definition-grid article,
.feature-grid article,
.usecase-grid article,
.summary-grid article,
.timeline article,
.news-list article,
.home-nav-grid a,
.diagnosis-grid article {
  border: 1px solid #d7e8ff;
  border-radius: 8px;
  box-shadow: 0 18px 36px rgba(29, 93, 198, 0.08);
}

.usecase-grid article,
.summary-grid article,
.timeline article {
  min-height: 0;
}

.usecase-grid h3,
.summary-grid h3,
.timeline h3 {
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.24;
}

.usecase-grid p,
.summary-grid p,
.timeline p {
  font-size: clamp(15px, 1.25vw, 19px);
  line-height: 1.9;
}

.lp-page {
  overflow: hidden;
  background:
    linear-gradient(180deg, #f7fbff 0%, #ffffff 42%, #f3f8ff 100%),
    #ffffff;
}

.lp-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(36px, 5vw, 76px);
  min-height: 720px;
  padding: 168px clamp(20px, 5vw, 72px) 66px;
  background:
    radial-gradient(circle at 86% 18%, rgba(92, 151, 255, 0.24), transparent 32%),
    linear-gradient(135deg, #f8fbff 0%, #eef6ff 58%, #e3efff 100%);
}

.lp-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.lp-hero h1 {
  margin: 12px 0 24px;
  color: #061f49;
  font-size: clamp(48px, 6vw, 86px);
  line-height: 1.05;
}

.lp-hero-copy p:not(.eyebrow) {
  max-width: 640px;
  margin: 0 0 14px;
  color: #294b7d;
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 800;
  line-height: 2;
}

.lp-stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #d7e8ff;
  border-radius: 8px;
  box-shadow: 0 20px 42px rgba(29, 95, 201, 0.12);
}

.lp-stat-strip article {
  display: grid;
  gap: 8px;
  min-height: 116px;
  padding: 22px 18px;
  text-align: center;
}

.lp-stat-strip article + article {
  border-left: 1px solid #e2edfb;
}

.lp-stat-strip strong {
  color: #2d73ef;
  font-size: 22px;
  line-height: 1;
}

.lp-stat-strip span {
  color: #08295c;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.55;
}

.lp-hero-visual {
  position: relative;
  min-height: 440px;
}

.usecase-dashboard {
  position: absolute;
  right: 13%;
  bottom: 80px;
  display: grid;
  gap: 16px;
  width: min(74%, 430px);
  padding: 34px;
  background: linear-gradient(145deg, #0a2d6a 0%, #082151 100%);
  border: 10px solid #96bbf6;
  border-radius: 18px;
  box-shadow: 0 28px 48px rgba(14, 65, 145, 0.24);
}

.usecase-dashboard span {
  display: block;
  height: 18px;
  background: #6da7ff;
  border-radius: 999px;
}

.usecase-dashboard span:nth-child(1) {
  width: 46%;
}

.usecase-dashboard span:nth-child(2) {
  width: 88%;
}

.usecase-dashboard span:nth-child(3) {
  width: 72%;
}

.usecase-dashboard span:nth-child(4) {
  width: 94%;
}

.usecase-stack {
  position: absolute;
  right: 0;
  bottom: 24px;
  width: 178px;
  height: 176px;
}

.usecase-stack i {
  position: absolute;
  display: block;
  width: 138px;
  height: 158px;
  background: linear-gradient(135deg, rgba(213, 231, 255, 0.92), rgba(82, 136, 229, 0.84));
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  box-shadow: 0 20px 38px rgba(36, 96, 197, 0.16);
}

.usecase-stack i:nth-child(1) {
  right: 42px;
  bottom: 0;
}

.usecase-stack i:nth-child(2) {
  right: 20px;
  bottom: 18px;
}

.usecase-stack i:nth-child(3) {
  right: 0;
  bottom: 36px;
}

.usecase-badge {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  color: #ffffff;
  background: linear-gradient(180deg, #8fb8ff 0%, #5e8ee8 100%);
  border-radius: 16px;
  box-shadow: 0 18px 34px rgba(42, 103, 207, 0.2);
}

.usecase-badge svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.badge-top {
  top: 34px;
  right: 46%;
}

.badge-bottom {
  right: 4%;
  top: 126px;
}

.lp-section {
  padding: clamp(70px, 7vw, 112px) clamp(20px, 5vw, 72px);
}

.lp-soft-section {
  background: linear-gradient(180deg, #f5f9ff 0%, #ffffff 100%);
}

.lp-title {
  max-width: 840px;
  margin: 0 auto 34px;
  text-align: center;
}

.lp-title h2 {
  margin: 0;
  color: #061f49;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.25;
}

.lp-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.lp-card-grid article,
.lp-task-grid article {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 290px;
  padding: clamp(26px, 2.6vw, 40px);
  background: #ffffff;
  border: 1px solid #d7e8ff;
  border-radius: 8px;
  box-shadow: 0 18px 36px rgba(29, 93, 198, 0.08);
}

.lp-card-grid h3,
.lp-task-grid h3 {
  margin: 0;
  color: #071f4d;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.28;
}

.lp-card-grid p,
.lp-task-grid p {
  margin: 0;
  color: #3d5a86;
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 700;
  line-height: 1.9;
}

.lp-page .lp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: #2a76ef;
  background: linear-gradient(180deg, #eff6ff 0%, #dbeaff 100%);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px #cfe0fb;
}

.lp-page .lp-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.usecase-scene-grid {
  gap: clamp(18px, 2vw, 32px);
}

.usecase-scene-grid article {
  gap: clamp(14px, 1.5vw, 20px);
  min-height: 0;
  padding: clamp(24px, 2.4vw, 34px);
}

.scene-card-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.scene-step {
  display: inline-grid;
  place-items: center;
  min-width: 56px;
  min-height: 42px;
  padding: 0 14px;
  color: #ffffff;
  background: #d82f3a;
  border-radius: 8px;
  font-size: clamp(22px, 1.8vw, 31px);
  line-height: 1;
  font-weight: 900;
}

.usecase-scene-grid h3 {
  font-size: clamp(19px, 1.55vw, 25px);
  line-height: 1.35;
}

.scene-visual {
  display: grid;
  place-items: center;
  min-height: 126px;
  padding: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid #dbe9ff;
  border-radius: 8px;
}

.scene-visual svg {
  width: 100%;
  max-width: 260px;
  height: auto;
}

.scene-visual svg * {
  fill: none;
  stroke: #071f4d;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scene-visual .scene-line,
.scene-visual .scene-arrow,
.scene-visual .scene-accent {
  stroke: #d82f3a;
}

.scene-visual .scene-accent-fill {
  stroke: #2f7e42;
}

.usecase-scene-grid p {
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.75;
}

.usecase-results-section {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
  padding: clamp(42px, 5vw, 72px) clamp(20px, 5vw, 72px);
  background: #ffffff;
}

.usecase-results-image {
  margin: 0;
}

.usecase-results-image img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #dbe8f6;
  box-shadow: 0 22px 46px rgba(11, 66, 119, 0.1);
}

.usecase-results-copy {
  max-width: 520px;
}

.usecase-results-copy h2 {
  margin: 0;
  color: #061f49;
  font-size: clamp(28px, 2.6vw, 44px);
  line-height: 1.24;
  font-weight: 900;
}

.usecase-results-copy h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 5px;
  margin: 22px 0 0;
  background: #2d73ef;
}

.usecase-results-copy p:not(.eyebrow) {
  margin: 24px 0 0;
  color: #314465;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.85;
  font-weight: 700;
}

.usecase-results-copy ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.usecase-results-copy li {
  position: relative;
  padding-left: 28px;
  color: #092b57;
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.6;
  font-weight: 900;
}

.usecase-results-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 12px;
  background: #2d83d3;
  border-radius: 999px;
  box-shadow: 0 0 0 4px #e4f1ff;
}

.usecase-scenes-image-section {
  margin: 0;
  background: #f7faff;
  line-height: 0;
}

.usecase-scenes-media {
  position: relative;
  width: min(100%, 1672px);
  margin: 0 auto;
}

.usecase-scenes-image {
  display: block;
  width: 100%;
  height: auto;
}

.usecase-scenes-hotspot {
  position: absolute;
  z-index: 1;
  top: 84.7%;
  height: 10.8%;
  border-radius: 14px;
}

.usecase-scenes-hotspot:hover {
  background: rgba(255, 255, 255, 0.08);
}

.usecase-scenes-hotspot:focus-visible {
  outline: 4px solid #ffffff;
  outline-offset: -6px;
}

.usecase-scenes-hotspot--download {
  left: 13.9%;
  width: 34.8%;
}

.usecase-scenes-hotspot--contact {
  left: 49.7%;
  width: 36.4%;
}

.usecase-coded-showcase {
  overflow: hidden;
  color: #102748;
  background: #ffffff;
}

.usecase-coded-showcase__shell {
  width: min(100%, 1440px);
  padding: 64px clamp(20px, 4vw, 58px) 0;
  margin: 0 auto;
}

.usecase-coded-heading {
  margin-bottom: 30px;
  text-align: center;
}

.usecase-coded-heading p,
.usecase-support-results > header p {
  margin: 0 0 10px;
  color: #2e82ff;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.usecase-coded-heading h2,
.usecase-support-results > header h2 {
  margin: 0;
  color: #071f48;
  font-size: clamp(28px, 2.6vw, 42px);
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: 0;
}

.usecase-coded-heading h2::after,
.usecase-support-results > header h2::after {
  display: block;
  width: 64px;
  height: 4px;
  margin: 18px auto 0;
  content: "";
  background: #2e82ff;
  border-radius: 4px;
}

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

.usecase-coded-scenes article {
  display: grid;
  align-content: start;
  gap: 15px;
  min-width: 0;
  padding: 24px 26px;
  background: #ffffff;
  border: 1px solid #dce5f0;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(16, 64, 116, 0.07);
}

.usecase-coded-scenes__head {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.usecase-coded-scenes__head > span {
  display: grid;
  min-height: 52px;
  place-content: center;
  color: #ffffff;
  background: #092e62;
  border-radius: 7px;
  font-size: 11px;
  line-height: 1.15;
  font-weight: 900;
  text-align: center;
}

.usecase-coded-scenes__head h3 {
  margin: 0;
  color: #142b4e;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 900;
}

.usecase-coded-scenes__scope {
  padding: 11px 13px;
  margin: 0;
  color: #284362;
  background: #f1f4f8;
  border-radius: 5px;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 800;
}

.usecase-coded-scenes article > p:not(.usecase-coded-scenes__scope) {
  margin: 0;
  color: #41536b;
  font-size: 13px;
  line-height: 1.8;
  font-weight: 700;
}

.usecase-coded-scenes article > strong {
  align-self: end;
  color: #536780;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 900;
}

.usecase-coded-scenes-visual {
  width: min(100%, 1180px);
  aspect-ratio: 1536 / 900;
  margin: 0 auto;
  overflow: hidden;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  line-height: 0;
}

.usecase-coded-scenes-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.usecase-support-results {
  padding-top: 62px;
}

.usecase-support-results > header {
  margin-bottom: 26px;
  text-align: center;
}

.usecase-support-results__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.usecase-support-results__grid article {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #dce5f0;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(16, 64, 116, 0.08);
}

.usecase-support-results__grid img {
  display: block;
  width: 100%;
  height: 142px;
  object-fit: cover;
}

.usecase-support-results__grid article > div {
  padding: 20px 22px 22px;
}

.usecase-support-results__grid h3 {
  margin: 0;
  color: #156bcf;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 900;
}

.usecase-support-results__grid span {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 9px;
  margin-top: 9px;
  color: #ffffff;
  background: #1672e9;
  border-radius: 4px;
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
}

.usecase-support-results__grid p {
  margin: 11px 0 0;
  color: #40536b;
  font-size: 13px;
  line-height: 1.75;
  font-weight: 700;
}

.usecase-media-strip {
  display: grid;
  grid-template-columns: auto repeat(5, minmax(110px, 1fr));
  gap: 18px;
  align-items: center;
  padding: 20px 28px;
  margin-top: 20px;
  background: #ffffff;
  border-top: 1px solid #dbe4ef;
  border-bottom: 1px solid #dbe4ef;
}

.usecase-media-strip strong {
  padding-right: 24px;
  color: #1d3556;
  border-right: 2px solid #97a6ba;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 900;
  white-space: nowrap;
}

.usecase-media-strip strong small {
  color: #75859a;
  font-size: 10px;
}

.usecase-media-strip > span {
  color: #335b8d;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 900;
  text-align: center;
}

.usecase-media-strip > span:nth-of-type(2) {
  color: #1680c5;
}

.usecase-media-strip > span:nth-of-type(3) {
  color: #4aa743;
}

.usecase-media-strip > span:nth-of-type(4) {
  color: #315cc9;
}

.usecase-media-strip > span:nth-of-type(5) {
  color: #7255c6;
}

.usecase-academy {
  margin-top: 0;
  background: #eef6ff;
  border-top: 1px solid #d5e5f7;
  border-bottom: 1px solid #d5e5f7;
}

.usecase-academy__inner {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr) 340px;
  gap: 42px;
  align-items: center;
  width: min(100%, 1360px);
  min-height: 290px;
  padding: 34px clamp(20px, 4vw, 54px);
  margin: 0 auto;
}

.usecase-academy__model {
  position: relative;
  width: 260px;
  height: 210px;
  margin: 0 auto;
}

.usecase-academy__model > span {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 92px;
  height: 92px;
  place-content: center;
  color: #ffffff;
  background: #0862bd;
  border: 5px solid #d7e9ff;
  border-radius: 50%;
  box-shadow: 0 9px 20px rgba(9, 84, 163, 0.16);
  text-align: center;
}

.usecase-academy__model b {
  font-size: 15px;
  line-height: 1.2;
  font-weight: 900;
}

.usecase-academy__model small {
  margin-top: 4px;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 800;
}

.usecase-academy__model .is-work {
  top: 0;
  left: 84px;
}

.usecase-academy__model .is-organization {
  bottom: 0;
  left: 22px;
}

.usecase-academy__model .is-system {
  right: 22px;
  bottom: 0;
}

.usecase-academy__model > svg {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #7da9dc;
  stroke-width: 8;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.usecase-academy__copy > p:first-child {
  margin: 0 0 10px;
  color: #1f3e67;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 900;
}

.usecase-academy__copy h2 {
  margin: 0;
  color: #071f48;
  font-size: clamp(25px, 2.2vw, 36px);
  line-height: 1.4;
  font-weight: 900;
}

.usecase-academy__copy > p:last-child {
  margin: 18px 0 0;
  color: #40536b;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 700;
}

.usecase-academy__inner > img {
  display: block;
  width: 100%;
  height: auto;
}

.usecase-contact-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 18px max(20px, calc((100% - 1360px) / 2 + 20px));
  background: #eef6ff;
  border-top: 1px solid #d6e5f5;
}

.usecase-contact-band__item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  min-height: 132px;
  padding: 20px 26px;
  color: #ffffff;
  border-radius: 8px;
  text-decoration: none;
}

.usecase-contact-band__item.is-document {
  background: #ee8c0a;
}

.usecase-contact-band__item.is-contact {
  background: #126dda;
}

.usecase-contact-band__item svg {
  display: block;
  width: 64px;
  height: 64px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.usecase-contact-band__item > span {
  display: grid;
  gap: 6px;
}

.usecase-contact-band__item strong {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 900;
}

.usecase-contact-band__item small {
  font-size: 12px;
  line-height: 1.6;
  font-weight: 700;
}

.usecase-contact-band__item > b {
  min-width: 190px;
  padding: 16px 22px;
  color: #1264c5;
  background: #ffffff;
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 900;
  text-align: center;
}

.usecase-contact-band__item.is-document > b {
  color: #d46f00;
}

@media (max-width: 1120px) {
  .usecase-media-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .usecase-media-strip strong {
    grid-column: 1 / -1;
    padding: 0 0 12px;
    border-right: 0;
    border-bottom: 1px solid #dbe4ef;
    text-align: center;
  }

  .usecase-academy__inner {
    grid-template-columns: 250px minmax(0, 1fr);
  }

  .usecase-academy__inner > img {
    display: none;
  }

  .usecase-contact-band__item {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .usecase-contact-band__item svg {
    width: 52px;
    height: 52px;
  }

  .usecase-contact-band__item > b {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 760px) {
  .usecase-coded-showcase__shell {
    padding: 46px 16px 0;
  }

  .usecase-coded-scenes,
  .usecase-support-results__grid,
  .usecase-contact-band {
    grid-template-columns: minmax(0, 1fr);
  }

  .usecase-coded-scenes article {
    padding: 20px;
  }

  .usecase-coded-scenes-visual {
    border-radius: 0;
  }

  .usecase-coded-scenes__head {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 12px;
  }

  .usecase-coded-scenes__head h3,
  .usecase-support-results__grid h3 {
    font-size: 17px;
  }

  .usecase-support-results {
    padding-top: 48px;
  }

  .usecase-support-results__grid img {
    height: 120px;
  }

  .usecase-media-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 10px;
    padding: 18px 12px;
  }

  .usecase-media-strip > span {
    font-size: 12px;
  }

  .usecase-academy__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    padding: 32px 18px 38px;
  }

  .usecase-academy__model {
    transform: scale(0.88);
  }

  .usecase-academy__copy {
    text-align: center;
  }

  .usecase-academy__copy h2 {
    font-size: 25px;
  }

  .usecase-academy__inner > img {
    display: block;
    width: min(100%, 340px);
    margin: 0 auto;
  }

  .usecase-contact-band {
    padding: 14px;
  }

  .usecase-contact-band__item {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    padding: 18px;
  }

  .usecase-contact-band__item svg {
    width: 44px;
    height: 44px;
  }

  .usecase-contact-band__item strong {
    font-size: 20px;
  }

  .usecase-contact-band__item > b {
    min-width: 0;
  }
}

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

.lp-task-grid .task-number {
  color: #2d73ef;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.lp-section.usecase-task-section {
  position: relative;
  overflow: hidden;
  padding-top: clamp(34px, 3vw, 44px);
  padding-bottom: clamp(34px, 4vw, 64px);
  background:
    radial-gradient(circle at 0 0, rgba(141, 190, 255, 0.2), transparent 28%),
    radial-gradient(circle at 100% 100%, rgba(141, 190, 255, 0.2), transparent 30%),
    linear-gradient(180deg, #f7fbff 0%, #edf6ff 100%);
}

.usecase-task-section::before {
  content: "";
  position: absolute;
  left: -150px;
  top: -190px;
  width: 520px;
  height: 520px;
  border: 2px dashed rgba(108, 166, 248, 0.24);
  border-radius: 50%;
  pointer-events: none;
}

.usecase-task-section::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -190px;
  width: 430px;
  height: 430px;
  background: radial-gradient(circle, rgba(187, 215, 252, 0.7) 0 58%, rgba(187, 215, 252, 0) 59%);
  border-radius: 50%;
  pointer-events: none;
}

.usecase-task-section .lp-title {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin-bottom: clamp(32px, 3vw, 40px);
}

.usecase-task-section .lp-title .eyebrow {
  display: none;
}

.usecase-task-section .lp-title h2 {
  font-size: clamp(40px, 3.5vw, 58px);
  line-height: 1.18;
}

.usecase-task-section .lp-title h2::after {
  width: 92px;
  height: 9px;
  margin-top: 26px;
  background: linear-gradient(90deg, #2d73ef 0 52%, #dbe9ff 52% 100%);
}

.usecase-task-section .lp-task-grid {
  position: relative;
  z-index: 1;
  gap: clamp(28px, 2.2vw, 34px) clamp(28px, 2.4vw, 38px);
  max-width: 1544px;
  margin: 0 auto;
}

.usecase-task-section .lp-task-grid article {
  position: relative;
  display: grid;
  align-content: stretch;
  grid-template-columns: minmax(132px, 156px) minmax(0, 1fr);
  grid-template-rows: minmax(170px, 1fr) auto;
  gap: 18px clamp(18px, 1.7vw, 28px);
  min-height: clamp(340px, 21vw, 356px);
  padding: 92px clamp(24px, 2vw, 32px) clamp(24px, 2vw, 32px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 100%),
    #ffffff;
  border: 0;
  border-radius: 14px;
  box-shadow:
    0 22px 54px rgba(24, 78, 158, 0.12),
    inset 0 0 0 1px rgba(214, 230, 253, 0.92);
  overflow: hidden;
}

.usecase-task-section .lp-task-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  background: linear-gradient(90deg, #2e82ff 0%, #61d6f7 45%, #245cf0 100%);
}

.task-number {
  position: absolute;
  top: 22px;
  left: 24px;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 72px;
  height: 52px;
  color: #ffffff;
  background: linear-gradient(135deg, #5596ff 0%, #1d61ef 100%);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(46, 130, 255, 0.22);
  font-size: 30px;
  letter-spacing: 0;
}

.task-icon {
  grid-column: 1;
  grid-row: 1;
  display: grid;
  place-items: center;
  width: clamp(132px, 9vw, 146px);
  aspect-ratio: 1;
  align-self: start;
  justify-self: center;
  color: #1b59c4;
  background: linear-gradient(180deg, #f5f9ff 0%, #eaf3ff 100%);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(205, 224, 250, 0.8);
}

.task-icon svg {
  width: 74%;
  height: 74%;
  fill: none;
  stroke: currentColor;
  stroke-width: 4.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.task-copy {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
}

.task-copy h3 {
  margin: 0 0 18px;
  color: #071f4d;
  font-size: clamp(26px, 1.8vw, 32px);
  line-height: 1.28;
  letter-spacing: 0;
}

.task-copy p {
  max-width: 19em;
  color: #283a59;
  font-size: clamp(17px, 1.2vw, 21px);
  font-weight: 800;
  line-height: 1.68;
}

.task-tags {
  grid-column: 1 / -1;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.1vw, 18px);
  align-self: end;
}

.task-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 14px;
  color: #2469df;
  background: #eef5ff;
  border-radius: 10px;
  font-size: clamp(15px, 1.05vw, 19px);
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .usecase-task-section .lp-task-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
  }
}

@media (max-width: 640px) {
  .usecase-task-section .lp-title h2 {
    font-size: 32px;
    line-height: 1.25;
  }

  .usecase-task-section .lp-task-grid article {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: 0;
    text-align: center;
  }

  .task-number {
    width: 66px;
    height: 50px;
    font-size: 26px;
  }

  .task-icon,
  .task-copy {
    grid-row: auto;
  }

  .task-icon {
    width: min(48vw, 150px);
  }

  .task-copy p {
    max-width: 280px;
    margin-right: auto;
    margin-left: auto;
    font-size: 15px;
  }

  .task-tags {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .task-tags span {
    min-height: 44px;
    font-size: 14px;
  }
}

.usecase-task-board-section {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: clamp(30px, 3vw, 46px) clamp(18px, 3vw, 48px) clamp(34px, 3vw, 48px);
  background: linear-gradient(135deg, #f7fbff 0%, #edf6ff 100%);
  border-top: 1px solid #d6e5f5;
}

.usecase-task-board-section::before,
.usecase-task-board-section::after {
  position: absolute;
  width: 250px;
  height: 170px;
  background: radial-gradient(circle, rgba(66, 141, 240, 0.24) 0 2px, transparent 3px) 0 0 / 26px 26px;
  content: "";
  pointer-events: none;
}

.usecase-task-board-section::before {
  top: -28px;
  left: -40px;
  -webkit-mask-image: linear-gradient(135deg, #000 0%, transparent 72%);
  mask-image: linear-gradient(135deg, #000 0%, transparent 72%);
}

.usecase-task-board-section::after {
  right: -48px;
  bottom: -34px;
  -webkit-mask-image: linear-gradient(315deg, #000 0%, transparent 72%);
  mask-image: linear-gradient(315deg, #000 0%, transparent 72%);
}

.usecase-task-board-heading {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto 20px;
  text-align: center;
}

.usecase-task-board-heading h2 {
  margin: 0;
  color: #071f48;
  font-size: clamp(28px, 2.7vw, 42px);
  line-height: 1.25;
  font-weight: 900;
  word-break: keep-all;
}

.usecase-task-board-heading span {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 16px;
}

.usecase-task-board-heading i {
  display: block;
  width: 44px;
  height: 7px;
  background: #2c7cf4;
  border-radius: 999px;
}

.usecase-task-board-heading i + i {
  background: #d5e4fb;
}

.usecase-task-board-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 16px;
  max-width: 1280px;
  margin: 0 auto;
}

.usecase-task-card {
  position: relative;
  display: grid;
  grid-template-columns: clamp(108px, 8vw, 124px) minmax(0, 1fr);
  grid-template-rows: 44px minmax(138px, 1fr);
  gap: 5px 14px;
  min-height: 228px;
  padding: 16px 18px 18px;
  overflow: hidden;
  background: linear-gradient(145deg, #ffffff 0%, #ffffff 72%, #f8fbff 100%);
  border: 1px solid #d3e0ef;
  border-radius: 8px;
  box-shadow: 0 13px 32px rgba(27, 75, 134, 0.1);
}

.usecase-task-card__number {
  grid-column: 1 / -1;
  display: grid;
  place-items: center;
  width: 56px;
  height: 40px;
  color: #ffffff;
  background: linear-gradient(145deg, #4592ff 0%, #1764e8 100%);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 7px;
  box-shadow: 0 5px 12px rgba(25, 101, 222, 0.18);
  font-size: 20px;
  line-height: 1;
  font-weight: 900;
}

.usecase-task-card__icon {
  display: grid;
  place-items: center;
  align-self: center;
  width: clamp(108px, 8vw, 124px);
  height: clamp(122px, 9vw, 140px);
  padding: 0;
  overflow: hidden;
  background: #eff6ff;
  border: 0;
  border-radius: 17px;
  box-shadow: 0 0 0 0 rgba(44, 124, 244, 0);
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
  -webkit-appearance: none;
  appearance: none;
}

.usecase-task-card__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.usecase-task-card__icon:hover {
  box-shadow: 0 0 0 5px rgba(44, 124, 244, 0.14);
  transform: translateY(-2px);
}

.usecase-task-card__icon:focus-visible {
  outline: 3px solid #075fd7;
  outline-offset: 5px;
}

.usecase-task-card__copy {
  align-self: center;
}

.usecase-task-card__copy h3 {
  margin: 0 0 8px;
  color: #071f48;
  font-size: clamp(18px, 1.25vw, 21px);
  line-height: 1.35;
  font-weight: 900;
}

.usecase-task-card__copy p {
  margin: 0;
  color: #52647b;
  font-size: clamp(12px, 0.88vw, 14px);
  line-height: 1.65;
  font-weight: 600;
}

.usecase-task-card__tags {
  display: none;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.usecase-task-card__tags li {
  display: grid;
  place-items: center;
  min-height: 48px;
  padding: 6px 8px;
  color: #1767d8;
  background: linear-gradient(180deg, #f4f8ff 0%, #edf4ff 100%);
  border: 1px solid #deebfb;
  border-radius: 7px;
  font-size: clamp(12px, 0.9vw, 15px);
  line-height: 1.3;
  font-weight: 800;
  text-align: center;
}

.usecase-task-dialog {
  width: min(calc(100% - 40px), 1040px);
  max-width: none;
  max-height: calc(100dvh - 40px);
  margin: auto;
  padding: 0;
  overflow: hidden;
  color: #102544;
  background: #ffffff;
  border: 1px solid #c9d9eb;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 25, 64, 0.3);
}

.usecase-task-dialog::backdrop {
  background: rgba(3, 20, 48, 0.7);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.usecase-task-dialog__surface {
  position: relative;
  max-height: calc(100dvh - 42px);
  padding: 34px;
  overflow: auto;
}

.usecase-task-dialog__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  color: #52667f;
  background: #f1f6fc;
  border: 1px solid #d4e0ed;
  border-radius: 50%;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.usecase-task-dialog__close:hover {
  color: #0f60cd;
  background: #e8f2ff;
}

.usecase-task-dialog__close:focus-visible {
  outline: 3px solid #2c7cf4;
  outline-offset: 2px;
}

.usecase-task-dialog__close span {
  font-size: 30px;
  line-height: 1;
  transform: translateY(-1px);
}

.usecase-task-dialog__heading {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding-right: 50px;
}

.usecase-task-dialog__number {
  display: grid;
  place-items: center;
  width: 68px;
  height: 58px;
  color: #ffffff;
  background: linear-gradient(145deg, #4592ff 0%, #1764e8 100%);
  border-radius: 8px;
  font-size: 25px;
  line-height: 1;
  font-weight: 900;
}

.usecase-task-dialog__heading p {
  margin: 0 0 3px;
  color: #2675e8;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 900;
}

.usecase-task-dialog__heading h2 {
  margin: 0;
  color: #071f48;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.3;
  font-weight: 900;
}

.usecase-task-dialog__summary {
  margin: 24px 0 0;
  padding: 18px 20px;
  color: #334b68;
  background: #eef6ff;
  border-left: 5px solid #2c7cf4;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 700;
}

.usecase-task-dialog__details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
  overflow: hidden;
  background: #fbfdff;
  border: 1px solid #d6e2ef;
  border-radius: 8px;
}

.usecase-task-dialog__details section {
  min-width: 0;
  padding: 22px;
}

.usecase-task-dialog__details section + section {
  border-left: 1px solid #d6e2ef;
}

.usecase-task-dialog__details h3 {
  margin: 0 0 14px;
  color: #0b59bd;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 900;
}

.usecase-task-dialog__details ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.usecase-task-dialog__details li {
  position: relative;
  padding-left: 18px;
  color: #435771;
  font-size: 13px;
  line-height: 1.65;
  font-weight: 700;
}

.usecase-task-dialog__details li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  background: #2c7cf4;
  border-radius: 50%;
  content: "";
}

@media (max-width: 1080px) {
  .usecase-task-board-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .usecase-task-board-section {
    padding: 40px 14px 52px;
  }

  .usecase-task-board-heading {
    margin-bottom: 24px;
    text-align: center;
  }

  .usecase-task-board-heading h2 {
    font-size: 25px;
  }

  .usecase-task-board-heading span {
    gap: 5px;
    margin-top: 15px;
  }

  .usecase-task-board-heading i {
    width: 34px;
    height: 6px;
  }

  .usecase-task-board-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  .usecase-task-card {
    grid-template-columns: 106px minmax(0, 1fr);
    grid-template-rows: 42px minmax(132px, 1fr);
    min-height: 0;
    padding: 16px 16px 18px;
    gap: 5px 14px;
  }

  .usecase-task-card__number {
    width: 54px;
    height: 38px;
    border-radius: 6px;
    font-size: 18px;
  }

  .usecase-task-card__icon {
    width: 106px;
    height: 120px;
    border-radius: 16px;
  }

  .usecase-task-card__copy h3 {
    margin-bottom: 7px;
    font-size: 19px;
  }

  .usecase-task-card__copy p {
    font-size: 12px;
    line-height: 1.65;
  }

  .usecase-task-card__tags {
    gap: 6px;
  }

  .usecase-task-card__tags li {
    min-height: 36px;
    padding: 5px 4px;
    font-size: 10px;
  }

  .usecase-task-dialog {
    width: calc(100% - 24px);
    max-height: calc(100dvh - 24px);
  }

  .usecase-task-dialog__surface {
    max-height: calc(100dvh - 26px);
    padding: 24px 18px 20px;
  }

  .usecase-task-dialog__close {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
  }

  .usecase-task-dialog__heading {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 12px;
    padding-right: 34px;
  }

  .usecase-task-dialog__number {
    width: 52px;
    height: 44px;
    border-radius: 6px;
    font-size: 19px;
  }

  .usecase-task-dialog__heading p {
    font-size: 11px;
  }

  .usecase-task-dialog__heading h2 {
    font-size: 23px;
  }

  .usecase-task-dialog__summary {
    margin-top: 20px;
    padding: 14px;
    font-size: 13px;
    line-height: 1.7;
  }

  .usecase-task-dialog__details {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 16px;
  }

  .usecase-task-dialog__details section {
    padding: 18px;
  }

  .usecase-task-dialog__details section + section {
    border-top: 1px solid #d6e2ef;
    border-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .usecase-task-card__icon {
    transition: none;
  }
}

.lp-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: clamp(46px, 6vw, 74px) clamp(20px, 5vw, 72px);
  color: #ffffff;
  background:
    radial-gradient(circle at 8% 30%, rgba(255, 255, 255, 0.24), transparent 18%),
    linear-gradient(135deg, #1227d5 0%, #061e63 100%);
}

.lp-cta .eyebrow,
.lp-cta h2,
.lp-cta p {
  color: #ffffff;
}

.lp-cta h2 {
  margin: 8px 0 12px;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.35;
}

.lp-cta p:not(.eyebrow) {
  margin: 0;
  font-size: clamp(16px, 1.6vw, 21px);
  font-weight: 700;
  line-height: 1.8;
}

.lp-cta .button {
  color: #123ebf;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.news-visual {
  min-height: 430px;
}

.news-laptop {
  position: absolute;
  right: 18%;
  bottom: 72px;
  width: min(72%, 430px);
  transform: rotate(10deg) skewY(-4deg);
  transform-origin: 50% 100%;
}

.news-screen {
  display: grid;
  gap: 13px;
  height: 250px;
  padding: 34px 40px;
  background: linear-gradient(145deg, #ffffff 0%, #e8f2ff 100%);
  border: 10px solid #8eb8f7;
  border-radius: 18px;
  box-shadow: 0 28px 48px rgba(14, 65, 145, 0.22);
}

.news-screen strong {
  color: #2471e8;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0;
}

.news-screen i {
  display: block;
  height: 10px;
  background: #b8cff4;
  border-radius: 999px;
}

.news-screen i:nth-of-type(1) {
  width: 86%;
}

.news-screen i:nth-of-type(2) {
  width: 68%;
}

.news-screen i:nth-of-type(3) {
  width: 92%;
}

.news-screen i:nth-of-type(4) {
  width: 54%;
}

.news-keyboard {
  width: 110%;
  height: 70px;
  margin: -4px 0 0 -5%;
  background: linear-gradient(180deg, #a8caff 0%, #6fa3ee 100%);
  clip-path: polygon(8% 0, 92% 0, 100% 100%, 0 100%);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 18px 36px rgba(23, 91, 185, 0.2);
}

.news-megaphone {
  position: absolute;
  right: 0;
  bottom: 68px;
  width: 172px;
  height: 180px;
}

.news-megaphone::before {
  content: "";
  position: absolute;
  right: 14px;
  top: 30px;
  width: 112px;
  height: 96px;
  background: linear-gradient(135deg, #72b3ff 0%, #1e6fff 100%);
  clip-path: polygon(0 36%, 100% 0, 100% 100%, 0 64%);
  border-radius: 14px;
  box-shadow: 0 20px 38px rgba(42, 103, 207, 0.22);
}

.news-megaphone span {
  position: absolute;
  left: 16px;
  top: 58px;
  width: 58px;
  height: 58px;
  background: #d9ebff;
  border: 12px solid #6faeff;
  border-radius: 50%;
}

.news-megaphone i {
  position: absolute;
  left: 54px;
  bottom: 18px;
  width: 28px;
  height: 74px;
  background: #2b76e9;
  border-radius: 999px;
  transform: rotate(-22deg);
}

.news-float {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #2d73ef;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #d7e8ff;
  border-radius: 14px;
  box-shadow: 0 18px 34px rgba(42, 103, 207, 0.14);
}

.news-float svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.note-calendar {
  top: 18px;
  left: 18%;
}

.note-message {
  top: 48px;
  right: 5%;
}

.note-check {
  top: 154px;
  left: 6%;
}

.news-topic-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(520px, 0.9fr);
  align-items: center;
  gap: clamp(20px, 2.4vw, 38px);
  min-height: clamp(610px, 70vh, 690px);
  padding: 124px clamp(28px, 4vw, 58px) 58px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 46%, rgba(70, 139, 255, 0.24), transparent 29%),
    radial-gradient(circle at 18% 30%, rgba(118, 178, 255, 0.14), transparent 36%),
    linear-gradient(180deg, #f8fbff 0%, #eaf4ff 100%);
}

.news-topic-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.68) 0%, rgba(255, 255, 255, 0) 58%),
    radial-gradient(circle at 77% 62%, rgba(47, 120, 244, 0.18), transparent 18%);
  pointer-events: none;
}

.news-topic-copy,
.news-topic-visual {
  position: relative;
  z-index: 1;
}

.news-topic-copy {
  align-self: center;
  max-width: 820px;
}

.news-topic-ribbon {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  margin-bottom: clamp(24px, 3.2vw, 42px);
  color: #ffffff;
}

.news-topic-ribbon span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  padding: 0 50px 0 30px;
  background: linear-gradient(135deg, #2f87ff 0%, #1264ee 100%);
  clip-path: polygon(0 0, calc(100% - 38px) 0, 100% 50%, calc(100% - 38px) 100%, 0 100%);
  border-radius: 6px 0 0 6px;
  font-size: clamp(27px, 2.6vw, 42px);
  line-height: 1;
  font-weight: 900;
  box-shadow: 0 20px 42px rgba(40, 112, 234, 0.2);
}

.news-topic-kicker {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin: 0 0 12px;
  color: #2f78f4;
  font-size: clamp(38px, 3.8vw, 62px);
  line-height: 1.1;
  font-weight: 900;
}

.news-topic-kicker::before,
.news-topic-kicker::after {
  content: "";
  width: 5px;
  height: 1.05em;
  background: currentColor;
  border-radius: 999px;
}

.news-topic-kicker::before {
  transform: rotate(-24deg);
}

.news-topic-kicker::after {
  transform: rotate(24deg);
}

.news-topic-copy h1 {
  margin: 0;
  color: #061f49;
  font-size: clamp(52px, 4.2vw, 72px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.news-topic-copy h1 span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08em;
  font-weight: 700;
}

.news-topic-copy h1 strong {
  color: #2f78f4;
  font-weight: 900;
}

.news-topic-lead {
  max-width: 1060px;
  margin: 22px 0 0;
  color: #061f49;
  font-size: clamp(18px, 1.7vw, 28px);
  line-height: 1.55;
  font-weight: 800;
  word-break: normal;
  overflow-wrap: normal;
}

.news-topic-visual {
  align-self: stretch;
  min-height: 560px;
  overflow: visible;
}

.news-topic-visual::before,
.news-topic-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.news-topic-visual::before {
  left: 0;
  bottom: 68px;
  width: 250px;
  height: 250px;
  background:
    radial-gradient(circle at 78% 72%, #0a367a 0 35%, transparent 36%),
    radial-gradient(circle at 28% 30%, rgba(255, 255, 255, 0.74) 0 22%, transparent 23%),
    radial-gradient(circle at 58% 54%, rgba(230, 239, 255, 0.94) 0 35%, transparent 36%),
    rgba(134, 171, 255, 0.18);
  filter: drop-shadow(0 18px 40px rgba(41, 105, 214, 0.08));
}

.news-topic-visual::after {
  left: 96px;
  bottom: 36px;
  width: 96px;
  height: 96px;
  background: rgba(227, 238, 255, 0.8);
}

.news-topic-logo {
  position: absolute;
  z-index: 4;
  top: -34px;
  right: 0;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #061f49;
}

.news-topic-logo-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #2f78f4;
}

.news-topic-logo-mark svg,
.news-topic-mini-logo svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.news-topic-logo strong {
  font-size: clamp(36px, 3.3vw, 56px);
  line-height: 1;
  font-weight: 900;
}

.news-topic-dots {
  position: absolute;
  top: 58px;
  left: 18%;
  width: 212px;
  height: 96px;
  opacity: 0.4;
  background-image: radial-gradient(circle, #77adff 0 5px, transparent 6px);
  background-size: 24px 24px;
}

.news-topic-burst {
  position: absolute;
  left: -30px;
  top: 178px;
  width: 230px;
  height: 230px;
  background: #2f78f4;
  clip-path: polygon(50% 0, 58% 34%, 82% 10%, 66% 42%, 100% 35%, 69% 53%, 96% 72%, 62% 64%, 68% 100%, 50% 69%, 32% 100%, 38% 64%, 4% 72%, 31% 53%, 0 35%, 34% 42%, 18% 10%, 42% 34%);
  opacity: 0.76;
}

.news-topic-panel {
  position: absolute;
  right: 0;
  bottom: 54px;
  width: min(88%, 640px);
  min-width: 500px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #d7e8ff;
  border-radius: 18px;
  box-shadow: 0 28px 80px rgba(35, 104, 214, 0.18);
  backdrop-filter: blur(8px);
}

.news-topic-panel-head {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 74px;
  padding: 0 30px;
  border-bottom: 1px solid #e4eefb;
}

.news-topic-mini-logo {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #2f78f4;
}

.news-topic-panel-head b {
  color: #061f49;
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
}

.news-topic-panel-head i {
  position: relative;
  width: 22px;
  height: 22px;
  margin-left: auto;
}

.news-topic-panel-head i::before,
.news-topic-panel-head i::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 2px;
  width: 18px;
  height: 3px;
  background: #b5c5df;
  border-radius: 999px;
}

.news-topic-panel-head i::before {
  transform: rotate(45deg);
}

.news-topic-panel-head i::after {
  transform: rotate(-45deg);
}

.news-topic-panel-body {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  min-height: 380px;
}

.news-topic-sidebar {
  display: grid;
  align-content: start;
  gap: 22px;
  padding: 34px 28px;
  background: linear-gradient(180deg, rgba(237, 246, 255, 0.9), rgba(255, 255, 255, 0.42));
}

.news-topic-sidebar span {
  display: block;
  width: 76px;
  height: 12px;
  background: #b7d3f8;
  border-radius: 999px;
}

.news-topic-sidebar span::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: -3px 14px 0 0;
  background: #c9ddf8;
  border-radius: 50%;
  vertical-align: top;
}

.news-topic-cards {
  display: grid;
  gap: 30px;
  padding: 34px 38px 42px;
}

.news-topic-cards article {
  display: grid;
  align-content: center;
  gap: 16px;
  min-height: 86px;
  padding: 22px 34px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid #e1ecfb;
  border-radius: 16px;
  box-shadow: 0 16px 34px rgba(35, 104, 214, 0.1);
}

.news-topic-cards article:first-child {
  min-height: 132px;
  background: linear-gradient(135deg, #eff6ff 0%, #dcecff 100%);
}

.news-topic-cards i {
  display: block;
  height: 12px;
  background: #b4cdf4;
  border-radius: 999px;
}

.news-topic-cards article:first-child i {
  background: #6fa6f9;
}

.news-topic-cards i:nth-child(1) {
  width: 48%;
}

.news-topic-cards i:nth-child(2) {
  width: 72%;
}

.news-topic-cards b {
  display: block;
  width: 22px;
  height: 22px;
  color: #2f78f4;
}

.news-topic-cards b::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border: 3px solid currentColor;
  transform: rotate(30deg);
}

.news-topic-chat {
  position: absolute;
  right: -34px;
  top: 304px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 154px;
  height: 100px;
  background: linear-gradient(135deg, #b8d4ff 0%, #72aaf8 100%);
  border-radius: 42px;
  box-shadow: 0 20px 42px rgba(35, 104, 214, 0.18);
}

.news-topic-chat::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: -14px;
  border-width: 18px 14px 0 0;
  border-style: solid;
  border-color: #89b9fb transparent transparent transparent;
}

.news-topic-chat span {
  width: 12px;
  height: 12px;
  background: #0d3b85;
  border-radius: 50%;
}

.news-topic-plant {
  position: absolute;
  right: -8px;
  bottom: 22px;
  width: 148px;
  height: 176px;
}

.news-topic-plant::before {
  content: "";
  position: absolute;
  left: 66px;
  bottom: 0;
  width: 4px;
  height: 142px;
  background: #2f78f4;
  border-radius: 999px;
  transform: rotate(8deg);
}

.news-topic-plant i {
  position: absolute;
  background: linear-gradient(135deg, #5fa4ff 0%, #1f6fff 100%);
  border-radius: 999px 999px 0 999px;
}

.news-topic-plant i:nth-child(1) {
  left: 8px;
  bottom: 30px;
  width: 72px;
  height: 42px;
  transform: rotate(30deg);
}

.news-topic-plant i:nth-child(2) {
  right: 6px;
  bottom: 38px;
  width: 78px;
  height: 44px;
  transform: rotate(-48deg) scaleX(-1);
}

.news-topic-plant i:nth-child(3) {
  right: 38px;
  bottom: 102px;
  width: 42px;
  height: 72px;
  transform: rotate(20deg);
}

.news-topic-hero + .news-digest {
  margin-top: -46px;
}

.news-reason-grid article {
  justify-items: center;
  min-height: 270px;
  text-align: center;
}

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

.lp-process-grid article {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 250px;
  padding: 22px 16px;
  background: linear-gradient(180deg, #f7fbff 0%, #eef6ff 100%);
  border: 1px solid #d7e8ff;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 18px 36px rgba(29, 93, 198, 0.08);
}

.lp-process-grid article:not(:last-child)::after {
  content: ">";
  position: absolute;
  top: 50%;
  right: -15px;
  z-index: 2;
  color: #2d73ef;
  font-size: 24px;
  font-weight: 900;
  transform: translateY(-50%);
}

.lp-process-grid article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #ffffff;
  background: #2d73ef;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.process-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: #2d73ef;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px #cfe0fb;
}

.process-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lp-process-grid h3 {
  margin: 0;
  color: #071f4d;
  font-size: 18px;
  line-height: 1.35;
}

.lp-process-grid p {
  margin: 0;
  color: #3d5a86;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.75;
}

.lp-news-list {
  max-width: 1120px;
  margin: 0 auto;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #d7e8ff;
  border-radius: 8px;
  box-shadow: 0 18px 36px rgba(29, 93, 198, 0.08);
}

.lp-news-list article {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) 120px;
  align-items: center;
  gap: 18px;
  min-height: 74px;
  padding: 16px 22px;
  border-bottom: 1px solid #e4eefb;
}

.lp-news-list article:last-child {
  border-bottom: 0;
}

.lp-news-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 16px;
  color: #2d73ef;
  background: #edf5ff;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
}

.lp-news-list h3 {
  margin: 0;
  color: #071f4d;
  font-size: 16px;
  line-height: 1.6;
}

.lp-news-list time {
  color: #6c82a5;
  font-size: 13px;
  font-weight: 800;
  text-align: right;
}

.news-contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr);
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
  background: linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%);
}

.news-contact h2 {
  color: #061f49;
}

.news-contact p:not(.eyebrow) {
  color: #3d5a86;
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 700;
  line-height: 1.9;
}

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

.contact-benefits article {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 28px 18px;
  background: #ffffff;
  border: 1px solid #d7e8ff;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 18px 36px rgba(29, 93, 198, 0.08);
}

.contact-benefits h3 {
  margin: 0;
  font-size: 18px;
}

.contact-benefits p {
  margin: 0;
  color: #3d5a86;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.75;
}

.course-board,
.assessment-board {
  position: absolute;
  right: 13%;
  bottom: 70px;
  display: grid;
  gap: 16px;
  width: min(72%, 430px);
  padding: 34px;
  background: linear-gradient(145deg, #0a2d6a 0%, #082151 100%);
  border: 10px solid #96bbf6;
  border-radius: 18px;
  box-shadow: 0 28px 48px rgba(14, 65, 145, 0.24);
}

.course-board strong,
.assessment-board strong {
  color: #ffffff;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.course-board span,
.assessment-board span {
  display: block;
  padding: 12px 16px;
  color: #0a2a5f;
  background: #eef6ff;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px #cfe0fb;
}

.course-chip {
  position: absolute;
  z-index: 3;
  min-width: 148px;
  padding: 16px 20px;
  color: #0a2a5f;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #d7e8ff;
  border-radius: 999px;
  box-shadow: 0 18px 34px rgba(42, 103, 207, 0.16);
  font-size: 16px;
  font-weight: 900;
  text-align: center;
}

.chip-basic {
  top: 36px;
  left: 14%;
}

.chip-standard {
  top: 140px;
  right: 0;
  color: #ffffff;
  background: linear-gradient(135deg, #2d75f2 0%, #1734d2 100%);
}

.chip-enterprise {
  left: 3%;
  bottom: 82px;
}

.assessment-board {
  right: 20%;
  width: min(66%, 390px);
}

.assessment-board span::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 10px;
  background: #2d73ef;
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px #dceaff;
  vertical-align: -1px;
}

.assessment-score-visual {
  position: absolute;
  right: 2%;
  bottom: 82px;
  display: grid;
  gap: 14px;
  width: 150px;
  min-height: 150px;
  padding: 26px 20px;
  color: #ffffff;
  background: linear-gradient(135deg, #2d75f2 0%, #1734d2 100%);
  border-radius: 18px;
  box-shadow: 0 24px 44px rgba(23, 52, 210, 0.24);
}

.assessment-score-visual b {
  font-size: 22px;
  line-height: 1;
}

.assessment-score-visual i {
  display: block;
  width: 100%;
  height: 16px;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 999px;
}

.assessment-score-visual i::after {
  content: "";
  display: block;
  width: 78%;
  height: 100%;
  background: #ffffff;
  border-radius: inherit;
}

.pricing-section {
  background: #f7faf8;
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.price-card.featured {
  border: 2px solid var(--blue);
  box-shadow: var(--shadow);
}

.plan {
  color: var(--blue);
  font-weight: 900;
}

.price-card h3 {
  margin: 0;
  font-size: clamp(30px, 3vw, 44px);
}

.tax {
  margin-top: 8px;
  color: var(--muted);
}

.pricing-showcase {
  padding-top: clamp(42px, 4vw, 58px);
  padding-bottom: clamp(42px, 4vw, 58px);
  overflow: hidden;
  color: #151d2b;
  background: #ffffff;
}

.pricing-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 26px;
  text-align: center;
}

.pricing-title svg {
  width: 46px;
  height: 46px;
  color: #2e82ff;
}

.pricing-title svg path,
.pricing-title svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing-title h2 {
  margin: 0;
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1.05;
  letter-spacing: 0;
}

.pricing-heading-break {
  white-space: nowrap;
}

.pricing-title p {
  margin: 10px 0 0;
  color: #161616;
  font-size: clamp(20px, 2.1vw, 30px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.pricing-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 1060px;
  margin: 0 auto 24px;
}

.pricing-tabs button {
  appearance: none;
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 86px;
  padding: 14px 16px;
  color: #202b3b;
  background: #f0f2f5;
  border: 0;
  border-radius: 12px;
  font: inherit;
  cursor: pointer;
  transition:
    color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

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

.pricing-tabs button:focus-visible,
.pricing-ghost:focus-visible {
  outline: 4px solid rgba(46, 130, 255, 0.24);
  outline-offset: 4px;
}

.pricing-tabs button.is-selected {
  color: #ffffff;
  background: #2e82ff;
  box-shadow: 0 16px 30px rgba(46, 130, 255, 0.22);
}

.pricing-tabs span:not(.recommend) {
  font-size: clamp(16px, 1.45vw, 21px);
  line-height: 1.25;
  font-weight: 900;
}

.pricing-tabs strong {
  margin-top: 6px;
  font-size: clamp(24px, 2.35vw, 33px);
  line-height: 1;
  font-weight: 900;
}

.pricing-tabs small {
  font-size: 0.62em;
}

.recommend {
  position: absolute;
  top: -13px;
  left: 50%;
  min-width: 112px;
  padding: 4px 16px 5px;
  color: #ffffff;
  background: #0b4fb8;
  border-radius: 999px;
  transform: translateX(-50%);
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
}

.pricing-focus {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 592px;
}

.pricing-detail-card,
.pricing-ghost {
  background: #ffffff;
  border-radius: 16px;
}

.pricing-detail-card {
  position: relative;
  z-index: 2;
  width: min(100%, 620px);
  overflow: hidden;
  border: 2px solid #2e82ff;
  box-shadow: 0 28px 60px rgba(22, 29, 43, 0.14);
}

.pricing-detail-card header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 64px;
  padding: 13px 26px;
  color: #ffffff;
  background: #2e82ff;
  font-size: clamp(26px, 2.8vw, 36px);
  line-height: 1;
  font-weight: 900;
}

.pricing-detail-card header small {
  font-size: 0.55em;
}

.popular {
  margin: 0;
  padding: 10px 20px;
  color: #0b4fb8;
  background: #eaf3ff;
  text-align: center;
  font-size: clamp(18px, 1.9vw, 23px);
  line-height: 1.35;
  font-weight: 900;
}

.pricing-detail-list {
  margin: 0;
}

.pricing-detail-list div {
  display: grid;
  grid-template-columns: 185px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 78px;
  padding: 12px 26px;
  border-top: 1px solid #e8ecf1;
}

.pricing-detail-list dt {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 9px;
  align-items: center;
  color: #2e82ff;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 900;
}

.pricing-detail-list dt svg {
  width: 28px;
  height: 28px;
}

.pricing-detail-list dt svg path,
.pricing-detail-list dt svg rect,
.pricing-detail-list dt svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing-detail-list dd {
  margin: 0;
  color: #111827;
  font-size: clamp(17px, 1.75vw, 21px);
  line-height: 1.35;
  font-weight: 900;
}

.pricing-detail-list dd a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.pricing-actions {
  display: grid;
  gap: 10px;
  padding: 12px 26px 16px;
  background: #fbfbfc;
}

.pricing-primary,
.pricing-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 10px;
  font-size: clamp(17px, 1.85vw, 23px);
  line-height: 1.2;
  font-weight: 900;
}

.pricing-primary {
  gap: 18px;
  color: #ffffff;
  background: #2e82ff;
}

.pricing-primary span {
  font-size: 1.4em;
}

.pricing-secondary {
  color: #374151;
  background: #ffffff;
  border: 2px solid #d3dae3;
}

.pricing-ghost {
  position: absolute;
  top: 88px;
  width: 390px;
  min-height: 406px;
  padding: 0;
  overflow: hidden;
  border: 1px solid #d8dde6;
  box-shadow: 0 18px 40px rgba(22, 29, 43, 0.14);
  filter: blur(3px);
  opacity: 0.48;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.pricing-ghost-left {
  left: max(18px, calc(50% - 522px));
}

.pricing-ghost-right {
  right: max(18px, calc(50% - 522px));
}

.pricing-ghost div {
  padding: 15px 20px;
  color: #ffffff;
  background: #777;
  font-size: 20px;
  font-weight: 900;
}

.pricing-ghost div {
  display: flex;
  justify-content: space-between;
}

.pricing-ghost p {
  margin: 0;
  padding: 20px;
  color: #6b7280;
  border-top: 1px solid #e7ebf1;
  font-size: 18px;
  font-weight: 900;
}

.pricing-note {
  margin: 12px 0 0;
  color: #6b7280;
  text-align: center;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
}

ul {
  flex: 1;
  margin: 22px 0 28px;
  padding-left: 20px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  align-items: start;
  gap: 32px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-deep), #0a58c7);
}

.contact .eyebrow {
  color: #b7dcff;
}

.contact h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.contact-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.9;
}

.contact .button {
  min-width: 220px;
  min-height: 74px;
  font-size: 22px;
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 8px;
  box-shadow: 0 22px 56px rgba(4, 24, 63, 0.22);
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.contact-form span {
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  line-height: 1.4;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(46, 130, 255, 0.18);
}

.contact-form .button {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.footer {
  position: relative;
  color: rgba(255, 255, 255, 0.62);
  background: #171717;
  overflow: hidden;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(0, 1.5fr);
  gap: clamp(28px, 6vw, 92px);
  padding: 56px clamp(24px, 5vw, 72px) 66px;
}

.footer-company {
  max-width: 600px;
  min-width: 0;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: clamp(18px, 1.75vw, 28px);
  line-height: 1;
  font-weight: 900;
}

.footer-brand span:last-child {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.footer-brand-mark {
  display: inline-block;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  background: url("assets/codex-cloud-logo.svg") center / contain no-repeat;
  border-radius: 9px;
}

.footer-lead {
  max-width: 540px;
  margin: 58px 0 54px;
  color: rgba(255, 255, 255, 0.64);
  font-size: clamp(16px, 1.65vw, 28px);
  line-height: 1.85;
  font-weight: 900;
}

.footer address {
  display: grid;
  gap: 20px;
  margin: 0;
  padding-left: 48px;
  font-style: normal;
  font-size: clamp(14px, 1.28vw, 23px);
  line-height: 1.4;
  font-weight: 900;
}

.footer address a,
.footer address span {
  display: block;
}

.footer a:hover {
  color: #ffffff;
}

.footer-nav {
  display: grid;
  grid-template-columns: minmax(220px, 1.45fr) minmax(120px, 0.65fr) minmax(120px, 0.65fr);
  gap: clamp(24px, 4vw, 72px);
  min-width: 0;
}

.footer-nav section {
  display: grid;
  align-content: start;
  gap: 24px;
  min-width: 0;
}

.footer-nav h2 {
  margin: 0 0 14px;
  padding-bottom: 18px;
  color: rgba(255, 255, 255, 0.36);
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
  font-size: clamp(14px, 1.22vw, 23px);
  line-height: 1.2;
  font-weight: 900;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(15px, 1.35vw, 26px);
  line-height: 1.35;
  font-weight: 900;
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  padding: 22px clamp(24px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.36);
  background: #070d18;
  font-size: clamp(12px, 1.05vw, 21px);
  font-weight: 900;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.footer-bottom a {
  color: inherit;
}

.footer-admin-link {
  font-size: 0.82em;
  opacity: 0.62;
}

.footer-bottom a + a::before {
  content: "|";
  display: inline-block;
  margin: 0 14px;
  color: rgba(255, 255, 255, 0.18);
}

.footer-bottom p {
  margin: 0;
  white-space: normal;
}

.footer-chat {
  position: absolute;
  right: clamp(28px, 4.4vw, 90px);
  bottom: 38px;
  display: grid;
  place-items: center;
  width: clamp(58px, 5.3vw, 98px);
  height: clamp(58px, 5.3vw, 98px);
  color: #ffffff;
  background: #101010;
  border-radius: 50%;
}

.footer-chat span {
  position: relative;
  width: 33%;
  height: 25%;
  border: 2px solid currentColor;
  border-radius: 5px;
}

.footer-chat span::after {
  content: "";
  position: absolute;
  left: 17%;
  bottom: -28%;
  width: 22%;
  height: 22%;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: skewY(-35deg);
}

.footer.footer--compact {
  margin: 0;
  color: #0b2f5f;
  background: #ffffff;
  border-top: 5px solid #65b6e8;
  overflow: visible;
}

.footer--compact .footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 1280px);
  min-height: 92px;
  margin: 0 auto;
  padding: 20px 40px;
}

.footer--compact .footer__company {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer--compact .footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0b2f5f;
  text-decoration: none;
}

.footer--compact .footer__brandMark {
  display: inline-block;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  background: url("assets/codex-cloud-logo.svg") center / contain no-repeat;
  border-radius: 9px;
}

.footer--compact .footer__brandText {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-size: 20px;
  line-height: 1;
  font-weight: 900;
}

.footer--compact .footer__brandText strong {
  font-size: 23px;
  font-weight: 900;
  text-transform: lowercase;
}

.footer--compact .footer__copyright {
  padding-top: 6px;
  font-size: 12px;
  white-space: nowrap;
}

.footer--compact .footer__privacy {
  display: flex;
  align-items: center;
}

.footer--compact .footer__links {
  margin: 0;
  font-size: 12px;
}

.footer--compact .footer__link {
  color: #ad95e6;
  font-size: 12px;
  text-decoration: none;
}

.footer--compact .footer__link:hover {
  color: #765ac2;
}

@media (max-width: 1020px) {
  .footer--compact .footer__inner {
    gap: 24px;
  }

  .footer--compact .footer__company {
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .footer--compact .footer__inner {
    min-height: 0;
    padding: 18px;
  }

  .footer--compact .footer__privacy {
    display: none;
  }

  .footer--compact .footer__copyright {
    padding-top: 0;
    font-size: 11px;
    white-space: normal;
  }
}

.form-status {
  margin: 12px 0 0;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 900;
}

.contact-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.contact-form [type="submit"]:disabled {
  opacity: 0.65;
  cursor: wait;
}

.form-status.is-success {
  color: #087343;
}

.form-status.is-error {
  color: #b42318;
}

.admin-page {
  min-height: 100svh;
  background:
    linear-gradient(180deg, rgba(217, 237, 255, 0.94), rgba(248, 251, 255, 1)),
    var(--paper);
}

.admin-shell {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 56px clamp(18px, 4vw, 54px);
}

.admin-back {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.admin-login-panel,
.admin-panel,
.admin-stats article {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(19, 45, 87, 0.08);
}

.admin-login-panel {
  width: min(100%, 560px);
  padding: clamp(28px, 5vw, 52px);
}

.admin-login-panel h1,
.admin-dashboard h1 {
  font-size: clamp(38px, 6vw, 70px);
}

.admin-login-form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.admin-login-form label {
  display: grid;
  gap: 10px;
  color: var(--ink);
  font-weight: 900;
}

.admin-login-form input {
  width: 100%;
  padding: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
}

.admin-error,
.admin-note,
.admin-empty {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.admin-error {
  color: #d62d2d;
}

.admin-dashboard-head,
.admin-panel-head {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.admin-actions,
.admin-panel-head div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-actions .button {
  width: auto;
  min-width: 0;
  padding: 12px 18px;
  font-size: 14px;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
}

.admin-stats article {
  padding: 24px;
}

.admin-stats span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.admin-stats strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.admin-panel {
  padding: clamp(20px, 4vw, 34px);
  margin-top: 18px;
}

.admin-panel h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 38px);
}

.admin-text-button {
  padding: 0;
  color: var(--blue-dark);
  background: none;
  border: 0;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.admin-text-button.danger {
  color: #d62d2d;
}

.admin-table-wrap {
  overflow-x: auto;
  margin-top: 18px;
}

.admin-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-size: 14px;
  font-weight: 800;
}

.admin-table th,
.admin-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: var(--muted);
}

.admin-inquiry-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.admin-inquiry {
  padding: 18px;
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-inquiry header {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  color: var(--ink);
  font-weight: 900;
}

.admin-inquiry header span {
  color: var(--muted);
  font-size: 13px;
}

.admin-inquiry dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 16px;
  margin: 16px 0;
}

.admin-inquiry dl div {
  min-width: 0;
}

.admin-inquiry dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.admin-inquiry dd,
.admin-inquiry p {
  margin: 2px 0 0;
  color: var(--ink);
  font-weight: 800;
  overflow-wrap: anywhere;
}

@media (max-width: 1180px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-company {
    max-width: none;
  }

  .footer-lead {
    max-width: 720px;
    margin: 34px 0;
  }

  .footer address {
    padding-left: 0;
  }

  .footer-nav {
    grid-template-columns: minmax(220px, 1.2fr) repeat(2, minmax(140px, 0.8fr));
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .site-header {
    min-height: 90px;
    left: 0;
    right: 0;
    top: 0;
    padding: 18px 28px;
  }

  .brand {
    font-size: 26px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .header-menu {
    width: 60px;
    height: 60px;
    gap: 8px;
  }

  .header-menu span {
    width: 44px;
    height: 2px;
  }

  .menu-toggle:checked ~ .site-header .header-menu span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }

  .menu-toggle:checked ~ .site-header .header-menu span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }

  .side-menu {
    top: 90px;
    width: min(92vw, 460px);
    height: calc(100svh - 90px);
    padding: 42px 34px 44px;
  }

  .menu-list strong {
    font-size: 19px;
  }

  .menu-list a {
    min-height: 72px;
  }

  .menu-actions a {
    min-height: 64px;
    font-size: 17px;
  }

  .definition-grid,
  .feature-grid,
  .usecase-grid,
  .pricing-grid,
  .home-nav-grid,
  .summary-grid,
  .diagnosis-grid,
  .result-strip,
  .contact,
  .assessment-shell,
  .split,
  .footer-main,
  .footer-nav,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .timeline article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .assessment-result {
    position: static;
  }

  .footer-main {
    gap: 46px;
    padding-top: 46px;
    padding-bottom: 60px;
  }

  .footer-lead {
    margin: 36px 0;
  }

  .footer address {
    padding-left: 0;
  }

  .footer-nav {
    gap: 36px;
  }

  .footer-bottom p {
    white-space: normal;
  }

  .footer-chat {
    bottom: 76px;
  }

  .pricing-showcase {
    padding-top: 82px;
  }

  .pricing-tabs {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pricing-tabs button {
    min-height: 116px;
  }

  .pricing-focus {
    min-height: 0;
  }

  .pricing-ghost {
    display: none;
  }

  .pricing-detail-list div {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .pricing-detail-list dt {
    grid-template-columns: 30px 1fr;
  }

  .comparison-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 132px;
  }

  .comparison-hero-copy {
    max-width: none;
  }

  .comparison-visual {
    min-height: 360px;
  }

  .visual-laptop {
    right: 20%;
    width: min(70%, 380px);
  }

  .visual-folder {
    right: 8%;
    width: 148px;
    height: 158px;
  }

  .comparison-card-grid,
  .comparison-principles,
  .comparison-cta,
  .lp-hero,
  .lp-stat-strip,
  .lp-card-grid,
  .lp-task-grid,
  .lp-process-grid,
  .lp-cta,
  .news-contact,
  .contact-benefits {
    grid-template-columns: 1fr;
  }

  .comparison-principles article + article {
    border-top: 1px solid #e2edfb;
    border-left: 0;
  }

  .lp-stat-strip article + article {
    border-top: 1px solid #e2edfb;
    border-left: 0;
  }

  .comparison-cta .button,
  .lp-cta .button {
    width: 100%;
  }

  .lp-hero {
    min-height: 0;
    padding-top: 132px;
  }

  .lp-hero-copy {
    max-width: none;
  }

  .lp-hero-visual {
    min-height: 360px;
  }

  .usecase-dashboard {
    right: 14%;
    width: min(72%, 380px);
  }

  .usecase-stack {
    right: 8%;
    width: 148px;
    height: 154px;
  }

  .news-laptop {
    right: 18%;
    width: min(70%, 380px);
  }

  .news-megaphone {
    right: 6%;
    width: 138px;
    height: 148px;
  }

  .course-board,
  .assessment-board {
    right: 14%;
    width: min(72%, 380px);
  }

  .assessment-score-visual {
    right: 7%;
  }

  .lp-process-grid {
    gap: 16px;
  }

  .lp-process-grid article {
    min-height: 0;
  }

  .lp-process-grid article:not(:last-child)::after {
    content: "";
    top: auto;
    right: auto;
    bottom: -13px;
    left: 50%;
    width: 12px;
    height: 12px;
    border-right: 3px solid #2d73ef;
    border-bottom: 3px solid #2d73ef;
    transform: translateX(-50%) rotate(45deg);
  }

  .lp-news-list article {
    grid-template-columns: 140px minmax(0, 1fr);
  }

  .lp-news-list time {
    grid-column: 2;
    text-align: left;
  }

  .hero-billboard {
    padding-top: 90px;
  }

  .hero-main-panel {
    min-height: 0;
  }

  .hero-image {
    width: 100%;
    opacity: 1;
  }

  .fv-visual {
    min-height: 0;
    background: none;
  }

  .fv-visual__text {
    display: none;
  }

  .fv-visual__mobile {
    display: block;
    width: 100%;
    height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    width: 100%;
    min-height: 460px;
    padding: 48px 30px 36px;
  }

  .hero-badges {
    grid-column: 1;
  }

  .hero-logo-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 14px 18px;
  }

  .hero-blue-panel h2 {
    font-size: clamp(30px, 6vw, 52px);
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 0;
  }

  .hero-image {
    width: 100%;
    opacity: 1;
    object-position: center top;
  }

  .hero::before {
    display: none;
  }

  .hero-billboard {
    padding-top: 90px;
  }

  .hero-main-panel {
    min-height: 0;
  }

  .hero-content {
    min-height: 0;
    padding: 30px 18px 24px;
  }

  .hero-kicker {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
    font-size: clamp(17px, 5.2vw, 24px);
    white-space: normal;
  }

  .hero-kicker::before {
    width: 46px;
    height: 10px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(38px, 11.6vw, 54px);
    line-height: 0.98;
  }

  .hero h1 strong {
    overflow-wrap: anywhere;
  }

  .hero-ranking-line {
    gap: 8px 12px;
    margin-top: 18px;
  }

  .hero-ranking-line span {
    flex-basis: 100%;
    font-size: clamp(30px, 9vw, 48px);
  }

  .hero-ranking-line b {
    font-size: clamp(32px, 10vw, 54px);
  }

  .hero-ranking-line strong {
    font-size: clamp(70px, 20vw, 102px);
  }

  .hero-badges {
    gap: 8px;
  }

  .hero-badges li {
    width: min(28vw, 92px);
    font-size: clamp(14px, 4.2vw, 19px);
  }

  .hero-logo-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
  }

  .hero-logo-strip span {
    min-width: 0;
    min-height: 50px;
    padding: 0 10px;
    font-size: 15px;
    white-space: normal;
  }

  .hero-blue-panel {
    padding: 28px 18px 34px;
  }

  .hero-blue-panel p {
    font-size: clamp(18px, 5.6vw, 24px);
  }

  .hero-blue-panel h2 {
    font-size: clamp(22px, 6.8vw, 32px);
    line-height: 1.32;
  }

  .hero-actions {
    display: grid;
    gap: 14px;
    margin-top: 30px;
  }

  .hero .button {
    width: 100%;
    min-height: 62px;
    font-size: 16px;
  }

  .hero-facts div {
    width: 100%;
  }

  .section {
    padding: 70px 18px;
  }

  .page-hero {
    padding: 124px 18px 58px;
  }

  .page-hero h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .page-hero p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.85;
  }

  .assessment-fv {
    min-height: 0;
    padding: 116px 18px 34px;
  }

  .assessment-fv-kicker {
    min-height: 42px;
    margin-bottom: 18px;
    padding: 0 20px;
    font-size: 14px;
  }

  .assessment-fv h1 {
    max-width: 340px;
    overflow-wrap: anywhere;
    word-break: break-all;
    text-wrap: balance;
    font-size: clamp(28px, 7.2vw, 32px);
    line-height: 1.05;
  }

  .assessment-fv-lead {
    max-width: 300px;
    margin-top: 18px;
    overflow-wrap: anywhere;
    word-break: break-all;
    font-size: 14px;
    line-height: 1.55;
  }

  .assessment-fv-lead br {
    display: none;
  }

  .assessment-fv-meta {
    gap: 8px;
    margin-top: 18px;
    width: 100%;
    max-width: 340px;
  }

  .assessment-fv-chip {
    min-height: 40px;
    padding: 0 12px;
    font-size: 14px;
  }

  .assessment-section .section-head h2 {
    max-width: 300px;
    margin-right: auto;
    margin-left: auto;
    overflow-wrap: anywhere;
    word-break: break-all;
    text-wrap: wrap;
    font-size: 20px;
  }

  .assessment-section .section-head p:not(.eyebrow) {
    max-width: 300px;
    margin-right: auto;
    margin-left: auto;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .assessment-shell,
  .assessment-question,
  .assessment-result {
    min-width: 0;
  }

  .assessment-question h3,
  .assessment-question p,
  .assessment-result h3,
  .assessment-result p {
    overflow-wrap: anywhere;
  }

  .assessment-question h3 {
    font-size: 22px;
  }

  .assessment-question p {
    font-size: 15px;
    line-height: 1.65;
  }

  .route-page {
    padding: 130px 18px 48px;
  }

  .route-panel {
    padding: 26px 22px;
  }

  .route-panel p {
    font-size: 16px;
  }

  .route-actions .button {
    width: 100%;
  }

  .page-actions .button,
  .home-actions .button {
    width: 100%;
  }

  .pricing-showcase {
    padding-top: 76px;
  }

  .pricing-title {
    align-items: flex-start;
    gap: 10px;
    text-align: left;
  }

  .pricing-title svg {
    width: 34px;
    height: 34px;
  }

  .pricing-title h2 {
    font-size: 30px;
    line-height: 1.15;
  }

  .pricing-heading-break {
    display: block;
  }

  .pricing-tabs button {
    min-height: 100px;
    padding: 20px 16px;
  }

  .pricing-detail-card header {
    padding: 16px 18px;
  }

  .popular {
    padding: 12px 18px;
  }

  .pricing-detail-list div {
    min-height: 0;
    padding: 16px 18px;
  }

  .pricing-actions {
    padding: 16px 18px 20px;
  }

  .comparison-hero {
    padding: 118px 18px 46px;
  }

  .comparison-hero h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .comparison-hero-copy p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.85;
  }

  .comparison-principles article {
    min-height: 0;
    padding: 18px 16px;
  }

  .comparison-visual {
    min-height: 292px;
  }

  .visual-bubble {
    width: 48px;
    height: 48px;
    border-radius: 10px;
  }

  .visual-bubble svg {
    width: 26px;
    height: 26px;
  }

  .bubble-chat {
    left: 4%;
  }

  .bubble-code {
    right: 22%;
  }

  .bubble-check {
    right: 0;
    top: 96px;
  }

  .visual-laptop {
    right: 17%;
    bottom: 58px;
    width: min(82%, 300px);
  }

  .visual-screen {
    height: 188px;
    padding: 24px 30px;
    border-width: 8px;
  }

  .visual-screen i {
    height: 6px;
    margin-bottom: 12px;
  }

  .visual-keyboard {
    height: 52px;
  }

  .visual-folder {
    right: 0;
    bottom: 20px;
    width: 104px;
    height: 120px;
  }

  .visual-folder::before {
    top: -18px;
    width: 58px;
    height: 30px;
  }

  .visual-folder span {
    width: 22px;
    height: 72px;
  }

  .visual-folder span:nth-child(1) {
    left: 18px;
    height: 84px;
  }

  .visual-folder span:nth-child(2) {
    left: 47px;
  }

  .visual-folder span:nth-child(3) {
    left: 76px;
    height: 92px;
  }

  .comparison-section {
    padding: 58px 18px;
  }

  .comparison-card-grid article {
    min-height: 0;
    padding: 30px 22px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 16px 14px;
    font-size: 14px;
  }

  .comparison-flow {
    align-items: flex-start;
    padding: 18px;
  }

  .comparison-cta {
    padding: 42px 18px 52px;
  }

  .lp-hero {
    padding: 118px 18px 46px;
  }

  .lp-hero h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .lp-hero-copy p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.85;
  }

  .lp-stat-strip article {
    min-height: 0;
    padding: 18px 16px;
  }

  .lp-hero-visual {
    min-height: 292px;
  }

  .news-visual {
    min-height: 286px;
  }

  .usecase-dashboard {
    right: 14%;
    bottom: 58px;
    width: min(76%, 300px);
    padding: 22px;
    border-width: 8px;
  }

  .usecase-dashboard span {
    height: 12px;
  }

  .usecase-stack {
    right: 0;
    bottom: 18px;
    width: 104px;
    height: 118px;
  }

  .usecase-stack i {
    width: 78px;
    height: 102px;
    border-radius: 10px;
  }

  .usecase-stack i:nth-child(1) {
    right: 28px;
  }

  .usecase-stack i:nth-child(2) {
    right: 14px;
    bottom: 12px;
  }

  .usecase-stack i:nth-child(3) {
    bottom: 24px;
  }

  .usecase-badge {
    width: 48px;
    height: 48px;
    border-radius: 10px;
  }

  .usecase-badge svg {
    width: 26px;
    height: 26px;
  }

  .badge-top {
    top: 10px;
    right: 62%;
  }

  .badge-bottom {
    top: 82px;
    right: 0;
  }

  .lp-section {
    padding: 58px 18px;
  }

  .lp-card-grid article,
  .lp-task-grid article {
    min-height: 0;
    padding: 28px 22px;
  }

  .news-laptop {
    right: 14%;
    bottom: 58px;
    width: min(76%, 300px);
  }

  .news-screen {
    height: 180px;
    padding: 22px 26px;
    border-width: 8px;
  }

  .news-screen strong {
    font-size: 20px;
  }

  .news-screen i {
    height: 7px;
  }

  .news-keyboard {
    height: 50px;
  }

  .news-megaphone {
    right: -4px;
    bottom: 26px;
    width: 96px;
    height: 106px;
  }

  .news-megaphone::before {
    right: 8px;
    top: 20px;
    width: 70px;
    height: 62px;
  }

  .news-megaphone span {
    left: 8px;
    top: 38px;
    width: 38px;
    height: 38px;
    border-width: 8px;
  }

  .news-megaphone i {
    left: 34px;
    bottom: 8px;
    width: 18px;
    height: 46px;
  }

  .news-float {
    width: 46px;
    height: 46px;
  }

  .news-float svg {
    width: 24px;
    height: 24px;
  }

  .note-calendar {
    top: 8px;
    left: 8%;
  }

  .note-message {
    top: 24px;
    right: 2%;
  }

  .note-check {
    top: 96px;
    left: 0;
  }

  .lp-news-list article {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px;
  }

  .lp-news-list span {
    justify-self: start;
  }

  .lp-news-list time {
    grid-column: auto;
  }

  .contact-benefits article {
    padding: 24px 18px;
  }

  .course-board,
  .assessment-board {
    right: 12%;
    bottom: 58px;
    width: min(76%, 300px);
    padding: 22px;
    border-width: 8px;
    gap: 10px;
  }

  .course-board strong,
  .assessment-board strong {
    font-size: 22px;
  }

  .course-board span,
  .assessment-board span {
    padding: 9px 12px;
    font-size: 12px;
  }

  .course-chip {
    min-width: 112px;
    padding: 10px 14px;
    font-size: 12px;
  }

  .chip-basic {
    top: 8px;
    left: 4%;
  }

  .chip-standard {
    top: 92px;
    right: 0;
  }

  .chip-enterprise {
    left: 0;
    bottom: 24px;
  }

  .assessment-score-visual {
    right: 0;
    bottom: 28px;
    width: 104px;
    min-height: 104px;
    padding: 18px 14px;
  }

  .assessment-score-visual b {
    font-size: 16px;
  }

  .assessment-score-visual i {
    height: 12px;
  }

  .lp-cta {
    padding: 42px 18px 52px;
  }

  .pricing-primary,
  .pricing-secondary {
    min-height: 58px;
  }

  .home-nav-grid a,
  .summary-grid article,
  .diagnosis-grid article,
  .news-list article {
    padding: 22px;
  }

  .definition-grid article,
  .home-nav-grid a,
  .summary-grid article,
  .timeline article {
    min-height: 0;
  }

  .news-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .assessment-question h3 {
    display: grid;
    gap: 6px;
  }

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

  .assessment-choices label {
    min-width: 0;
    width: 100%;
  }

  .assessment-actions {
    grid-template-columns: 1fr;
  }

  .assessment-actions .button.ghost {
    min-width: 0;
  }

  .definition-grid article,
  .feature-grid article,
  .usecase-grid article,
  .price-card {
    padding: 22px;
  }

  .contact {
    align-items: flex-start;
  }

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

  .button {
    min-width: 0;
    width: 100%;
  }

  .footer-main {
    padding: 38px 18px 50px;
  }

  .footer-brand-mark {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
    border-radius: 7px;
  }

  .footer-lead {
    font-size: 18px;
    line-height: 1.75;
  }

  .footer address,
  .footer-nav a {
    font-size: 17px;
  }

  .footer-nav section {
    gap: 16px;
  }

  .footer-nav h2 {
    padding-bottom: 18px;
  }

  .footer-bottom {
    padding: 18px 18px 82px;
    font-size: 13px;
  }

  .footer-bottom a + a::before {
    margin: 0 10px;
  }

  .footer-chat {
    right: 18px;
    bottom: 24px;
  }

  .admin-shell {
    padding: 34px 18px;
  }

  .admin-dashboard-head,
  .admin-panel-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-stats,
  .admin-inquiry dl {
    grid-template-columns: 1fr;
  }

  .admin-actions .button {
    width: auto;
  }
}

@media (max-width: 980px) {
  .lp-flow-hero,
  .solution-panel {
    grid-template-columns: 1fr;
  }

  .lp-flow-hero {
    min-height: 0;
    padding-top: 32px;
    background: transparent;
  }

  .codebase-visual {
    min-height: 460px;
  }

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

  .reason-step-track {
    display: none;
  }

  .reason-number {
    width: 72px;
    height: 56px;
    font-size: 28px;
  }

  .reason-metrics-table-wrap {
    margin-right: -18px;
    margin-left: -18px;
    border-radius: 12px;
  }

  .reason-step-summary {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .reason-step-summary p {
    grid-column: 1 / -1;
    padding-left: 0;
    border-left: 0;
  }

  .solution-steps {
    padding-left: 0;
    border-left: 0;
  }

}

@media (max-width: 640px) {
  .lp-flow-section h2,
  .lp-flow-section h3,
  .lp-flow-section h4,
  .lp-flow-section p {
    max-width: 100%;
    min-width: 0;
    line-break: anywhere;
    text-wrap: wrap;
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .lp-flow-section-head {
    padding: 54px 18px 32px;
  }

  .lp-flow-section-head h2 {
    font-size: clamp(44px, 12vw, 58px);
    line-height: 1.12;
  }

  .lp-flow-section-head h2::after {
    width: min(78vw, 260px);
    height: 8px;
    margin-top: 18px;
  }

  .lp-flow-section-head p:not(.eyebrow) {
    font-size: 17px;
    line-height: 1.85;
  }

  #about .lp-flow-section-head {
    padding-top: 30px;
    padding-bottom: 18px;
  }

  #about .lp-flow-section-head h2 {
    margin-bottom: 16px;
    font-size: clamp(34px, 10vw, 44px);
  }

  #about .lp-flow-section-head h2::after {
    width: min(62vw, 200px);
    height: 6px;
    margin-top: 10px;
  }

  .lp-flow-hero,
  .pain-panel,
  .solution-panel {
    padding-right: 18px;
    padding-left: 18px;
  }

  .reason-metrics {
    margin-top: 44px;
  }

  .reason-steps-title {
    font-size: 36px;
    line-height: 1.24;
  }

  .reason-steps-lead {
    margin-bottom: 36px;
    font-size: 16px;
  }

  .reason-step-card {
    min-height: 0;
    padding: 30px 22px 0;
  }

  .reason-step-card .reason-visual {
    width: min(100%, 180px);
    padding: 0;
  }

  .reason-card-bg {
    font-size: 92px;
  }

  .reason-card-metric {
    width: calc(100% + 44px);
    margin-right: -22px;
    margin-left: -22px;
  }

  .reason-step-summary {
    padding: 24px 20px;
  }

  .reason-metrics-head h4 {
    font-size: 28px;
    line-height: 1.35;
  }

  .reason-metrics-table-wrap {
    padding: 10px;
  }

  .reason-metrics-table {
    min-width: 820px;
  }

  .reason-metrics-table th,
  .reason-metrics-table td {
    padding: 18px 16px;
  }

  .reason-metrics-table td span {
    font-size: 15px;
  }

  .metric-mark {
    font-size: 34px;
  }

  .lp-step-number {
    width: 64px;
    height: 64px;
    margin-bottom: 22px;
    font-size: 24px;
  }

  .lp-step-number::after {
    display: none;
  }

  .lp-flow-card {
    min-height: 0;
    padding: 34px 24px;
  }

  .lp-flow-card h3 {
    font-size: 32px;
    line-height: 1.18;
  }

  .lp-flow-card p {
    font-size: 17px;
    line-height: 1.8;
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .codebase-visual {
    min-height: 300px;
    overflow: hidden;
  }

  .visual-laptop-clean {
    left: 2%;
    top: 28%;
    width: 50%;
  }

  .visual-laptop-screen {
    height: 112px;
    padding: 16px 14px;
    border-width: 6px;
    border-radius: 12px;
  }

  .visual-laptop-screen i {
    height: 4px;
  }

  .visual-laptop-base {
    height: 18px;
  }

  .visual-file-stack {
    right: 7%;
    top: 31%;
    width: 29%;
    height: 165px;
  }

  .visual-file-stack span {
    border-width: 4px;
    border-radius: 10px;
  }

  .visual-file-stack span:nth-child(1) {
    transform: translate(-25px, 16px);
  }

  .visual-file-stack span:nth-child(2) {
    transform: translate(-16px, 10px);
  }

  .visual-file-stack span:nth-child(3) {
    transform: translate(-8px, 5px);
  }

  .visual-search {
    left: 43%;
    bottom: 14%;
    width: 68px;
    height: 68px;
    border-width: 8px;
  }

  .visual-search::after {
    right: -36px;
    bottom: -20px;
    width: 48px;
    height: 9px;
  }

  .visual-paper-flow {
    right: 4%;
    bottom: 8%;
    width: 122px;
    height: 70px;
    border-width: 2px;
  }

  .visual-paper-flow i {
    width: 28px;
    height: 17px;
    border-width: 2px;
  }

  .visual-paper-flow i:nth-child(1) {
    left: 18px;
    top: 14px;
  }

  .visual-paper-flow i:nth-child(2) {
    left: 57px;
    top: 22px;
  }

  .visual-paper-flow i:nth-child(3) {
    left: 38px;
    top: 42px;
  }

  .chip-code {
    left: 18%;
    top: 8%;
    width: 54px;
    height: 40px;
    font-size: 17px;
  }

  .chip-lines,
  .chip-folder {
    display: none;
  }

  .pain-grid article {
    min-height: 0;
    padding: 28px 22px 34px;
    overflow: hidden;
  }

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

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

  .pain-grid h4 {
    font-size: 25px;
    line-height: 1.24;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .pain-grid p {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.75;
    line-break: strict;
    word-break: normal;
    overflow-wrap: normal;
  }

  .reason-head {
    gap: 16px;
    margin-bottom: 24px;
  }

  .reason-number {
    width: 62px;
    height: 48px;
    border-radius: 8px;
    font-size: 24px;
  }

  .reason-visual {
    margin-bottom: 24px;
    padding: 12px;
    border-radius: 9px;
  }

  .round-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 18px;
  }

  .solution-copy {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px 12px;
  }

  .solution-mark {
    width: 38px;
    height: 38px;
  }

  .solution-copy h3 {
    font-size: 22px;
    line-height: 1.5;
  }

  .solution-copy p {
    font-size: 16px;
    line-height: 1.85;
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .solution-steps article {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 14px;
  }

  .square-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
  }

  .solution-steps h4 {
    font-size: 20px;
    line-height: 1.4;
  }

  .solution-steps p {
    font-size: 14px;
    line-height: 1.75;
    word-break: break-all;
    overflow-wrap: anywhere;
  }

}

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

  .implementation-hero {
    min-height: 0;
    background:
      linear-gradient(180deg, #ffffff 0%, #eef7ff 100%);
  }

  .implementation-visual {
    min-height: 430px;
    overflow: hidden;
  }

  .implementation-grid article {
    grid-template-columns: 86px 1fr;
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .implementation-hero,
  .implementation-grid {
    padding-right: 18px;
    padding-left: 18px;
  }

  .implementation-copy h3 {
    font-size: 32px;
    line-height: 1.18;
  }

  .implementation-copy p {
    font-size: 17px;
    line-height: 1.8;
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .implementation-visual {
    min-height: 280px;
  }

  .impl-laptop {
    right: 14%;
    top: 20%;
    width: 46%;
  }

  .impl-screen {
    height: 112px;
    padding: 16px 14px;
    border-width: 6px;
    border-radius: 12px;
  }

  .impl-screen i {
    height: 4px;
  }

  .impl-base {
    height: 18px;
  }

  .impl-terminal {
    left: 2%;
    top: 37%;
    width: 30%;
    min-height: 70px;
    border-radius: 10px;
  }

  .impl-terminal span {
    font-size: 24px;
  }

  .impl-terminal b {
    right: -12px;
    bottom: -12px;
    width: 32px;
    height: 32px;
    border-width: 5px;
  }

  .impl-terminal b::after {
    left: 7px;
    top: 7px;
    width: 12px;
    height: 6px;
    border-width: 3px;
  }

  .impl-window {
    right: 0;
    top: 30%;
    width: 25%;
    height: 92px;
    border-top-width: 16px;
    border-radius: 8px;
  }

  .impl-window::before {
    left: 10px;
    top: 14px;
    width: 18px;
    height: 46px;
    box-shadow: 28px 0 0 #e9f3ff, 52px 0 0 #e9f3ff;
  }

  .impl-window i {
    top: -11px;
    width: 4px;
    height: 4px;
  }

  .impl-window i:nth-child(1) {
    left: 8px;
  }

  .impl-window i:nth-child(2) {
    left: 17px;
  }

  .impl-window i:nth-child(3) {
    left: 26px;
  }

  .impl-cubes {
    right: 9%;
    bottom: 12%;
    grid-template-columns: repeat(2, 26px);
    gap: 5px;
  }

  .impl-cubes i {
    width: 26px;
    height: 26px;
    border-radius: 5px;
  }

  .impl-code {
    left: 29%;
    top: 7%;
    width: 54px;
    height: 54px;
    font-size: 21px;
  }

  .impl-lines {
    right: 12%;
    top: 7%;
    width: 94px;
    height: 48px;
  }

  .impl-lines::before {
    left: 14px;
    right: 14px;
    top: 11px;
    height: 2px;
    box-shadow:
      0 13px 0 rgba(255, 255, 255, 0.56),
      0 26px 0 rgba(255, 255, 255, 0.36);
  }

  .impl-gear {
    right: 0;
    top: 17%;
    width: 34px;
    height: 34px;
    border-width: 7px;
  }

  .implementation-grid article {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .implementation-grid .round-icon {
    margin: 0 auto;
  }

  .implementation-grid p {
    font-size: 14px;
    line-height: 1.75;
    word-break: break-all;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 980px) {
  .sitemap-section .home-nav-grid {
    grid-template-columns: 1fr;
  }

  .sitemap-section .home-nav-grid a {
    min-height: 0;
  }

  .sitemap-section .home-nav-grid .nav-visual {
    width: min(62%, 320px);
  }
}

@media (max-width: 640px) {
  .sitemap-head h2 {
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.22;
  }

  .sitemap-head .eyebrow {
    gap: 16px;
  }

  .sitemap-head .eyebrow::before,
  .sitemap-head .eyebrow::after {
    width: 38px;
  }

  .sitemap-section .home-nav-grid a {
    padding: 20px 18px 28px;
    border-radius: 16px;
  }

  .sitemap-section .home-nav-grid .nav-index {
    min-width: 58px;
    min-height: 34px;
    font-size: 20px;
  }

  .sitemap-section .home-nav-grid .nav-visual {
    width: min(86%, 280px);
    margin-bottom: 22px;
    border-radius: 14px;
  }

  .sitemap-section .home-nav-grid h3 {
    font-size: 25px;
  }

  .sitemap-section .home-nav-grid p {
    font-size: 14px;
  }

  .sitemap-section .home-nav-grid b {
    margin-top: 24px;
  }
}

@media (max-width: 1180px) {
  .flow-feature,
  .flow-feature.is-reverse {
    grid-template-columns: 1fr;
    gap: 42px;
    min-height: 0;
    padding: 76px 36px;
  }

  .flow-feature .flow-feature-copy,
  .flow-feature.is-reverse .flow-feature-copy {
    order: 1;
    max-width: 820px;
  }

  .flow-feature .flow-feature-visual,
  .flow-feature.is-reverse .flow-feature-visual {
    order: 2;
  }

  .flow-feature.is-codex-reading {
    grid-template-columns: 1fr;
  }

  .codex-training-visual {
    min-height: 0;
    transform: none;
  }
}

@media (max-width: 640px) {
  .flow-feature,
  .flow-feature.is-reverse {
    gap: 28px;
    padding: 58px 18px;
  }

  .flow-feature-label {
    display: block;
    margin-bottom: 34px;
  }

  .flow-feature-icon {
    display: none;
    grid-row: 1 / span 2;
    width: 72px;
    height: 72px;
    border-radius: 10px;
  }

  .flow-feature-icon svg {
    width: 38px;
    height: 38px;
  }

  .flow-feature-number {
    display: block;
    margin-bottom: 12px;
    font-size: 19px;
  }

  .flow-feature-label h3 {
    font-size: clamp(40px, 11vw, 56px);
    line-height: 1.12;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .flow-feature-label h3::after {
    width: min(72vw, 260px);
    height: 8px;
    margin-top: 18px;
  }

  .flow-feature-copy h4 {
    max-width: 10.5em;
    margin-bottom: 22px;
    font-size: 31px;
    line-height: 1.48;
  }

  .flow-feature-copy p {
    max-width: 20em;
    font-size: 16px;
    line-height: 1.9;
  }

  .flow-feature-facts {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
  }

  .flow-feature-facts dt {
    min-height: 46px;
    font-size: 14px;
  }

  .flow-feature-facts dd {
    padding: 16px 18px 18px;
    font-size: 20px;
  }

  .flow-feature.is-codex-reading .flow-feature-label h3 {
    font-size: clamp(36px, 10vw, 48px);
    line-height: 1.16;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .codex-training-visual {
    gap: 16px;
    padding: 18px;
    border-radius: 14px;
  }

  .training-message strong {
    font-size: 28px;
  }

  .training-message b {
    font-size: 22px;
  }

  .training-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 14px;
  }

  .training-stack i {
    display: none;
  }

  .training-stack span {
    min-height: 108px;
    padding: 14px 10px;
  }

  .training-platform {
    min-height: 52px;
    font-size: 20px;
  }

  .training-outcome {
    grid-template-columns: 1fr;
    gap: 12px;
    justify-items: start;
    padding: 18px;
  }

  .training-outcome span {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }

  .lp-flow-section-head p:not(.eyebrow) {
    max-width: 18.5em;
  }

  .lp-flow-section-head .codex-lead {
    max-width: 10.8em;
    gap: 8px;
    padding-left: 16px;
    font-size: 30px;
    line-height: 1.42;
  }

  .lp-flow-section-head .codex-lead::before {
    width: 6px;
  }

  .codex-process-diagram {
    max-width: none;
    margin-top: 26px;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .codex-process-diagram img {
    width: 760px;
    max-width: none;
    border-radius: 10px;
  }

  .codex-action-panel {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
    padding: 14px;
  }

  .codex-mini-flow {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .codex-mini-flow span {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 4px 10px;
    padding: 14px 16px;
  }

  .codex-mini-flow b {
    grid-row: 1 / span 2;
    align-self: center;
    font-size: 13px;
  }

  .codex-mini-flow strong {
    font-size: 20px;
  }

  .codex-mini-flow small {
    font-size: 12px;
  }

  .codex-mini-flow i {
    display: none;
  }

  .codex-lead-action {
    width: 100%;
    min-height: 58px;
    font-size: 16px;
  }

  .flow-feature-copy h4,
  .flow-feature-copy p {
    line-break: anywhere;
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .flow-feature .codebase-visual,
  .flow-feature .implementation-visual,
  .team-visual {
    min-height: 300px;
  }

  .team-board {
    left: 4%;
    top: 20%;
    width: 82%;
    min-height: 210px;
    border-width: 6px;
    border-radius: 14px;
  }

  .team-board-head {
    height: 32px;
    padding: 0 14px;
    border-radius: 8px 8px 0 0;
  }

  .team-board-head i {
    width: 6px;
    height: 6px;
  }

  .team-columns {
    inset: 54px 14px 18px;
    gap: 8px;
  }

  .team-card {
    height: 42px;
    border-radius: 8px;
  }

  .team-card::before,
  .team-card::after {
    left: 10px;
    right: 10px;
    height: 4px;
  }

  .team-card::before {
    top: 13px;
  }

  .team-card::after {
    top: 26px;
    right: 22px;
  }

  .team-pr {
    left: 8%;
    top: 8%;
    width: 54px;
    height: 54px;
    font-size: 18px;
  }

  .team-ci {
    right: 8%;
    top: 13%;
    width: 48px;
    height: 48px;
    font-size: 16px;
  }

  .team-review {
    right: 3%;
    bottom: 12%;
    min-width: 92px;
    height: 42px;
    padding: 0 14px;
    font-size: 13px;
  }

  .team-people {
    left: 8%;
    bottom: 12%;
    gap: 6px;
  }

  .team-people i {
    width: 38px;
    height: 38px;
    border-width: 4px;
  }

  .team-people i::after {
    bottom: -22px;
    width: 50px;
    height: 30px;
    border-width: 4px;
  }
}

@media (max-width: 1180px) {
  .curriculum-map-head {
    grid-template-columns: 1fr;
  }

  .curriculum-flow {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .curriculum-step {
    min-height: 0;
  }

  .curriculum-arrow {
    justify-self: center;
    width: 3px;
    height: 42px;
    margin: 10px 0;
  }

  .curriculum-arrow::before,
  .curriculum-arrow::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: 0;
    transform: translateX(-50%) rotate(135deg);
  }

  .curriculum-arrow::before {
    bottom: 18px;
  }

  .curriculum-outcome {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .curriculum-image-wrap {
    margin-right: -2px;
    margin-left: -2px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .curriculum-flow-image {
    width: 980px;
    max-width: none;
  }

  .curriculum-map {
    margin-right: -2px;
    margin-left: -2px;
    padding: 18px;
    border-radius: 10px;
  }

  .curriculum-map-head {
    margin-bottom: 22px;
  }

  .curriculum-map-head div {
    min-height: 0;
    padding: 16px 18px;
  }

  .curriculum-map-head span {
    font-size: 15px;
  }

  .curriculum-map-head strong {
    font-size: 20px;
  }

  .curriculum-step {
    grid-template-rows: auto auto auto auto auto;
    padding: 24px 20px;
  }

  .curriculum-step-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 18px;
  }

  .curriculum-step-icon svg {
    width: 29px;
    height: 29px;
  }

  .curriculum-step > span {
    font-size: 16px;
  }

  .curriculum-step h3 {
    font-size: 25px;
    line-height: 1.32;
  }

  .curriculum-step p {
    font-size: 15px;
    line-height: 1.8;
  }

  .curriculum-step ul {
    margin-top: 18px;
  }

  .curriculum-step li {
    font-size: 12px;
  }

  .curriculum-outcome {
    padding: 22px 18px;
  }

  .curriculum-outcome b {
    font-size: 22px;
  }
}

@media (max-width: 980px) {
  .course-flow-card {
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: 0;
    text-align: center;
  }

  .course-flow-visual {
    min-height: 150px;
  }

  .course-flow-visual svg {
    width: min(70vw, 250px);
  }

  .course-flow-copy p {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 640px) {
  .course-page * {
    min-width: 0;
  }

  .course-page h1,
  .course-page h2,
  .course-page h3,
  .course-page p,
  .course-page strong,
  .course-page span,
  .course-page li {
    max-width: 100%;
    line-break: anywhere;
    word-break: break-all;
    overflow-wrap: anywhere;
    white-space: normal;
    text-wrap: wrap;
  }

  .course-fv {
    min-height: 0;
    padding: 124px 18px 64px;
  }

  .course-fv-kicker {
    min-height: 50px;
    margin-bottom: 32px;
    padding: 0 22px;
    font-size: 14px;
    letter-spacing: 0.22em;
    word-break: normal;
  }

  .course-fv h1 {
    font-size: clamp(38px, 10vw, 54px);
    line-height: 1.24;
    word-break: keep-all;
    line-break: strict;
    overflow-wrap: anywhere;
  }

  .course-fv-lead,
  .course-fv-sub {
    max-width: 330px;
    word-break: keep-all;
    line-break: strict;
    overflow-wrap: anywhere;
  }

  .course-fv-lead {
    margin-top: 28px;
    font-size: 18px;
    line-height: 1.9;
  }

  .course-fv-sub {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.85;
  }

  .usecase-page .course-fv {
    padding: 116px 18px 42px;
  }

  .usecase-page .course-fv-kicker {
    min-height: 44px;
    margin-bottom: 22px;
  }

  .usecase-page .course-fv h1 {
    line-height: 1.12;
  }

  .usecase-page .course-fv-lead {
    margin-top: 22px;
    line-height: 1.62;
  }

  .usecase-page .course-fv-sub {
    margin-top: 10px;
    line-height: 1.62;
  }

  .pricing-page .course-fv {
    min-height: 0;
    padding: 124px 18px 64px;
  }

  .pricing-page .course-fv-kicker {
    min-height: 50px;
    margin-bottom: 32px;
    padding: 0 22px;
  }

  .pricing-page .course-fv h1 {
    font-size: clamp(38px, 10vw, 54px);
    line-height: 1.24;
  }

  .pricing-page .course-fv-lead,
  .pricing-page .course-fv-sub {
    max-width: 330px;
  }

  .pricing-page .course-fv-lead {
    margin-top: 28px;
    line-height: 1.9;
  }

  .pricing-page .course-fv-sub {
    margin-top: 16px;
    line-height: 1.85;
  }

  .curriculum-step,
  .course-flow-card,
  .summary-grid article {
    overflow: hidden;
  }

  .course-hero .lp-hero-copy p:not(.eyebrow) {
    max-width: 310px;
    font-size: 16px;
    line-height: 1.85;
  }

  .curriculum-step h3,
  .course-flow-copy h3 {
    max-width: 270px;
    margin-right: auto;
    margin-left: auto;
    font-size: 23px;
  }

  .curriculum-step p,
  .course-flow-copy p,
  .summary-grid p {
    max-width: 270px;
    margin-right: auto;
    margin-left: auto;
    font-size: 14px;
  }

  .course-flow-copy {
    width: min(100%, 278px);
    margin-right: auto;
    margin-left: auto;
  }

  .curriculum-outcome b,
  .curriculum-outcome span {
    display: block;
    max-width: 280px;
    font-size: 18px;
  }

  .curriculum-outcome span {
    font-size: 13px;
  }

  .course-flow-section {
    background-size: 24px 24px;
  }

  .course-flow-section .section-head h2::after {
    width: 48px;
    height: 3px;
    margin-top: 14px;
  }

  .course-flow-list {
    gap: 18px;
    margin-right: -2px;
    margin-left: -2px;
  }

  .course-flow-card {
    padding: 24px 16px 28px;
    border-top-width: 4px;
  }

  .course-flow-visual {
    min-height: 126px;
  }

  .course-flow-visual svg {
    width: min(72vw, 210px);
  }

  .course-flow-copy span {
    margin-bottom: 8px;
    font-size: 18px;
  }

  .course-flow-copy h3 {
    margin-bottom: 14px;
    line-height: 1.32;
  }

  .course-flow-copy p {
    line-height: 1.85;
  }

  .course-flow-arrow {
    width: 30px;
    height: 26px;
  }

  .course-flow-arrow::before {
    width: 14px;
    height: 14px;
    border-right-width: 4px;
    border-bottom-width: 4px;
  }
}

.news-digest,
.news-board-section {
  padding-right: clamp(20px, 5vw, 72px);
  padding-left: clamp(20px, 5vw, 72px);
}

.news-board-image-section {
  position: relative;
  z-index: 2;
  margin-top: -54px;
  padding: clamp(24px, 3vw, 42px) clamp(16px, 4vw, 64px) clamp(34px, 4vw, 58px);
  background:
    linear-gradient(180deg, #f7fbff 0%, #eef5ff 100%),
    #f7fbff;
}

.news-board-image-wrap {
  max-width: min(1080px, 100%);
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.news-board-image-frame {
  position: relative;
  width: 100%;
  min-width: 920px;
}

.news-page .news-board-image-frame {
  min-width: 920px;
}

.news-board-image {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
}

.news-image-filter-tabs {
  position: absolute;
  z-index: 10;
  left: 5.1%;
  top: 35.88%;
  display: grid;
  grid-template-columns: 1.04fr 1.28fr 1.13fr 1.14fr 1.06fr;
  gap: 2.25%;
  width: 56.9%;
  height: 3.15%;
}

.news-image-filter-tabs::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -18% -1.7%;
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.98), rgba(246, 250, 255, 0.98));
  border-radius: 10px;
}

.news-image-filter-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: min(0.8vw, 12px);
  min-width: 0;
  height: 100%;
  color: #31476b;
  background:
    linear-gradient(180deg, #ffffff 0%, #edf4ff 100%);
  border: 1px solid #d9e8ff;
  border-radius: 7px;
  box-shadow:
    0 8px 18px rgba(23, 93, 192, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  font-size: clamp(10px, 1.15vw, 17px);
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.news-image-filter-tab svg {
  flex: 0 0 auto;
  width: 1.08em;
  height: 1.08em;
}

.news-image-filter-tab path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.news-image-filter-tab:hover,
.news-image-filter-tab:focus-visible {
  color: #105fd5;
  border-color: #9fc4ff;
  outline: none;
  box-shadow:
    0 12px 24px rgba(23, 93, 192, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.news-filter-all,
body:not(:has(#news-update:target, #news-corporate:target, #news-material:target, #news-info:target)) .news-image-filter-tab[data-filter="all"],
body:has(#news-update:target) .news-image-filter-tab[data-filter="update"],
body:has(#news-corporate:target) .news-image-filter-tab[data-filter="corporate"],
body:has(#news-material:target) .news-image-filter-tab[data-filter="material"],
body:has(#news-info:target) .news-image-filter-tab[data-filter="info"] {
  color: #ffffff;
  background:
    linear-gradient(180deg, #4f91ff 0%, #1769e8 100%);
  border-color: #1769e8;
  box-shadow:
    0 12px 26px rgba(23, 105, 232, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

body:has(#news-update:target) .news-filter-all,
body:has(#news-corporate:target) .news-filter-all,
body:has(#news-material:target) .news-filter-all,
body:has(#news-info:target) .news-filter-all,
body:has(.news-detail-modal:target) .news-filter-all {
  color: #31476b;
  background:
    linear-gradient(180deg, #ffffff 0%, #edf4ff 100%);
  border-color: #d9e8ff;
  box-shadow:
    0 8px 18px rgba(23, 93, 192, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.news-image-hotspot {
  position: absolute;
  z-index: 2;
  left: var(--x);
  top: var(--y);
  display: block;
  width: var(--w);
  height: var(--h);
  border-radius: 8px;
  color: transparent;
  text-decoration: none;
}

.news-image-hotspot:focus-visible {
  outline: 4px solid rgba(47, 130, 255, 0.86);
  outline-offset: 3px;
  background: rgba(47, 130, 255, 0.12);
}

.news-live-board {
  position: absolute;
  z-index: 20;
  left: 3.45%;
  top: 34.02%;
  display: flex;
  flex-direction: column;
  width: 61.55%;
  height: 51.35%;
  padding: 2.05% 1.95% 1.35%;
  background: #ffffff;
  border: 1px solid #d7e8ff;
  border-radius: 10px;
  box-shadow: 0 18px 54px rgba(29, 93, 198, 0.1);
  overflow: hidden;
}

.news-live-tabs {
  display: grid;
  grid-template-columns: 1.04fr 1.28fr 1.13fr 1.14fr 1.06fr;
  gap: 2.35%;
  margin-bottom: clamp(12px, 1.4vw, 20px);
}

.news-live-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: min(0.75vw, 10px);
  min-width: 0;
  min-height: clamp(34px, 3.5vw, 48px);
  padding: 0 10px;
  color: #31476b;
  background: linear-gradient(180deg, #ffffff 0%, #edf4ff 100%);
  border: 1px solid #d9e8ff;
  border-radius: 7px;
  box-shadow:
    0 8px 18px rgba(23, 93, 192, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  font: inherit;
  font-size: clamp(10px, 1.05vw, 16px);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
}

.news-live-tab svg {
  flex: 0 0 auto;
  width: 1.08em;
  height: 1.08em;
}

.news-live-tab path,
.news-live-icon path,
.news-live-icon rect,
.news-live-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.news-live-tab:hover,
.news-live-tab:focus-visible {
  color: #105fd5;
  border-color: #9fc4ff;
  outline: none;
}

.news-live-tab.is-active {
  color: #ffffff;
  background: linear-gradient(180deg, #4f91ff 0%, #1769e8 100%);
  border-color: #1769e8;
  box-shadow:
    0 12px 26px rgba(23, 105, 232, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.news-live-list {
  display: grid;
  flex: 1 1 auto;
  gap: 0;
  min-height: 0;
  overflow: hidden;
}

.news-live-board.is-expanded .news-live-list {
  overflow-y: auto;
  padding-right: 4px;
}

.news-live-row {
  display: grid;
  grid-template-columns: clamp(54px, 6.5vw, 86px) minmax(0, 1fr) clamp(92px, 7.7vw, 108px) clamp(78px, 6.2vw, 92px) 16px;
  gap: clamp(8px, 1vw, 18px);
  align-items: center;
  min-height: clamp(76px, 7vw, 102px);
  color: #061b42;
  border-bottom: 1px solid #dce9ff;
  text-decoration: none;
}

.news-live-row[hidden] {
  display: none;
}

.news-live-row:hover,
.news-live-row:focus-visible {
  outline: none;
  background: rgba(238, 246, 255, 0.72);
}

.news-live-icon {
  display: grid;
  place-items: center;
  width: clamp(50px, 6.1vw, 76px);
  height: clamp(50px, 6.1vw, 76px);
  border-radius: 8px;
}

.news-live-icon svg {
  width: 62%;
  height: 62%;
}

.news-live-icon-blue {
  color: #3b82f6;
  background: #edf5ff;
}

.news-live-icon-green {
  color: #39ae67;
  background: #eefaf2;
}

.news-live-icon-orange {
  color: #e6842f;
  background: #fff5ea;
}

.news-live-icon-purple {
  color: #8b68e8;
  background: #f4f0ff;
}

.news-live-copy {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.news-live-copy strong {
  color: #061b42;
  font-size: clamp(12px, 1.05vw, 18px);
  line-height: 1.35;
  font-weight: 900;
}

.news-live-copy small {
  color: #385379;
  font-size: clamp(9px, 0.82vw, 13px);
  line-height: 1.55;
  font-weight: 800;
}

.news-live-badge {
  justify-self: center;
  min-width: clamp(88px, 7.8vw, 108px);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: clamp(10px, 0.95vw, 14px);
  line-height: 1;
  font-weight: 900;
  text-align: center;
  white-space: nowrap;
}

.news-live-badge-blue {
  color: #2f73e6;
  background: #edf5ff;
  border: 1px solid #c9ddff;
}

.news-live-badge-green {
  color: #299451;
  background: #eefaf2;
  border: 1px solid #c9efd6;
}

.news-live-badge-orange {
  color: #d87526;
  background: #fff5ea;
  border: 1px solid #ffd9b6;
}

.news-live-badge-purple {
  color: #7f5ae8;
  background: #f4f0ff;
  border: 1px solid #ded4ff;
}

.news-live-row time {
  justify-self: end;
  color: #193765;
  font-size: clamp(11px, 1.05vw, 16px);
  font-weight: 900;
}

.news-live-row i {
  justify-self: end;
  width: 14px;
  height: 14px;
  border-top: 3px solid #245ba8;
  border-right: 3px solid #245ba8;
  transform: rotate(45deg);
}

.news-live-more {
  align-self: center;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 290px);
  min-height: clamp(34px, 3.5vw, 46px);
  margin-top: clamp(10px, 1.3vw, 18px);
  color: #2f73e6;
  background: #ffffff;
  border: 1px solid #d7e8ff;
  border-radius: 10px;
  font: inherit;
  font-size: clamp(12px, 1.12vw, 17px);
  font-weight: 900;
  cursor: pointer;
}

.news-live-more span {
  width: 10px;
  height: 10px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
}

.news-live-more[hidden] {
  display: none;
}

.news-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  place-items: center;
  padding: clamp(18px, 4vw, 44px);
}

.news-detail-modal:target {
  display: grid;
}

.news-detail-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 27, 66, 0.58);
  backdrop-filter: blur(8px);
}

.news-detail-card {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  max-height: min(760px, calc(100svh - 48px));
  overflow: auto;
  padding: clamp(28px, 4vw, 48px);
  background: #ffffff;
  border: 1px solid #cfe1ff;
  border-radius: 14px;
  box-shadow: 0 28px 90px rgba(6, 27, 66, 0.26);
}

.news-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.news-detail-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 18px;
  color: #2f73e6;
  background: #edf5ff;
  border: 1px solid #cfe1ff;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
}

.news-detail-meta time {
  color: #50688d;
  font-size: 15px;
  font-weight: 900;
}

.news-detail-card h3 {
  margin: 0 0 18px;
  color: #061b42;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.3;
  font-weight: 900;
}

.news-detail-card p {
  margin: 0;
  color: #385379;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.9;
  font-weight: 800;
}

.news-detail-card ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.news-detail-card li {
  position: relative;
  padding-left: 28px;
  color: #233b61;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.8;
  font-weight: 800;
}

.news-detail-card li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 10px;
  height: 10px;
  background: #2f73e6;
  border-radius: 50%;
}

.news-detail-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 30px;
  padding: 0 24px;
  color: #ffffff;
  background: #2f73e6;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
}

.news-detail-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  background: #eef5ff;
  border: 1px solid #cfe1ff;
  border-radius: 50%;
}

.news-detail-close::before,
.news-detail-close::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 11px;
  width: 20px;
  height: 3px;
  background: #2f73e6;
  border-radius: 999px;
}

.news-detail-close::before {
  transform: rotate(45deg);
}

.news-detail-close::after {
  transform: rotate(-45deg);
}

body:has(.news-detail-modal:target) {
  overflow: hidden;
}

.news-digest {
  position: relative;
  z-index: 2;
  margin-top: -44px;
  padding-bottom: clamp(34px, 4vw, 62px);
}

.news-panel,
.news-main-board,
.news-side-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #d7e8ff;
  border-radius: 10px;
  box-shadow: 0 24px 70px rgba(29, 93, 198, 0.11);
}

.news-panel {
  max-width: 1680px;
  margin: 0 auto;
  padding: clamp(24px, 2.6vw, 34px);
}

.news-panel-title,
.news-board-head,
.news-board-head > div {
  display: flex;
  align-items: center;
}

.news-panel-title {
  gap: 12px;
  margin-bottom: 24px;
}

.news-panel-title span,
.news-board-head span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #2e82ff;
  background: #edf6ff;
  border: 1px solid #cfe3ff;
  border-radius: 8px;
}

.news-panel-title svg,
.news-board-head svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.news-panel-title h2,
.news-board-head h2,
.news-side-card h2 {
  margin: 0;
  color: #061f49;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.35;
  font-weight: 900;
}

.news-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.news-feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  min-height: 220px;
  padding: clamp(24px, 2.6vw, 34px);
  border: 1px solid #cfe3ff;
  border-radius: 10px;
  overflow: hidden;
}

.news-feature-card div {
  display: grid;
  align-content: start;
  gap: 12px;
}

.news-feature-card span,
.news-list-table b {
  justify-self: start;
  min-height: 27px;
  padding: 4px 13px 5px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
}

.news-feature-card time {
  color: #637796;
  font-size: 14px;
  font-weight: 800;
}

.news-feature-card h3 {
  margin: 0;
  color: #061f49;
  font-size: clamp(20px, 1.7vw, 28px);
  line-height: 1.42;
  font-weight: 900;
}

.news-feature-card p {
  margin: 0;
  color: #405a82;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 700;
}

.news-feature-card a,
.news-side-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2e82ff;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
}

.news-feature-card a::after,
.news-side-card a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.news-feature-card i {
  display: grid;
  place-items: center;
  align-self: center;
  width: clamp(82px, 8vw, 112px);
  height: clamp(82px, 8vw, 112px);
  border: 1px solid currentColor;
  border-radius: 14px;
  opacity: 0.95;
}

.news-feature-card svg,
.news-row-icon svg,
.news-flow-mini svg {
  width: 52%;
  height: 52%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.news-feature-card.news-card-blue {
  color: #2e82ff;
  background: linear-gradient(135deg, #f7fbff 0%, #eef6ff 100%);
}

.news-feature-card.news-card-green {
  color: #2aa563;
  background: linear-gradient(135deg, #f8fffb 0%, #edf9f1 100%);
  border-color: #ccefd8;
}

.news-feature-card.news-card-orange {
  color: #f07a19;
  background: linear-gradient(135deg, #fffaf5 0%, #fff2e7 100%);
  border-color: #ffd9bb;
}

.news-feature-card.news-card-blue span,
.news-list-table b {
  color: #2e82ff;
  background: #edf6ff;
  border: 1px solid #cfe3ff;
}

.news-feature-card.news-card-green span,
.news-list-table article:nth-child(2) b {
  color: #2aa563;
  background: #ecf9f1;
  border: 1px solid #ccefd8;
}

.news-feature-card.news-card-orange span,
.news-list-table article:nth-child(3) b {
  color: #f07a19;
  background: #fff2e7;
  border: 1px solid #ffd9bb;
}

.news-list-table article:nth-child(4) b {
  color: #7a56d9;
  background: #f2edff;
  border: 1px solid #ded2ff;
}

.news-board-section {
  padding-top: clamp(10px, 2vw, 24px);
  padding-bottom: clamp(34px, 4vw, 62px);
}

.news-board-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 350px);
  gap: 28px;
  max-width: 1680px;
  margin: 0 auto;
  align-items: start;
}

.news-main-board {
  overflow: hidden;
}

.news-board-head {
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px 16px;
  border-bottom: 1px solid #e4eefb;
}

.news-board-head > div {
  gap: 12px;
}

.news-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.news-filter a {
  min-height: 32px;
  padding: 7px 14px;
  color: #284a7c;
  background: #ffffff;
  border: 1px solid #dbe8fb;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
}

.news-filter a.is-active {
  color: #ffffff;
  background: #2e82ff;
  border-color: #2e82ff;
}

.news-list-table article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 128px 116px 24px;
  gap: 20px;
  align-items: center;
  min-height: 88px;
  padding: 20px 24px;
  border-bottom: 1px solid #e4eefb;
}

.news-list-table article:last-child {
  border-bottom: 0;
}

.news-row-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid currentColor;
  border-radius: 10px;
}

.news-row-icon.news-card-blue {
  color: #2e82ff;
  background: #edf6ff;
}

.news-row-icon.news-card-green {
  color: #2aa563;
  background: #ecf9f1;
}

.news-row-icon.news-card-orange {
  color: #f07a19;
  background: #fff2e7;
}

.news-row-icon.news-card-purple {
  color: #7a56d9;
  background: #f2edff;
}

.news-list-table h3 {
  margin: 0 0 5px;
  color: #061f49;
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.45;
  font-weight: 900;
}

.news-list-table p {
  margin: 0;
  color: #405a82;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 700;
}

.news-list-table time {
  color: #1d3865;
  font-size: 14px;
  font-weight: 900;
  text-align: right;
}

.news-list-table article > a {
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #2d5eaa;
  border-right: 2px solid #2d5eaa;
  transform: rotate(45deg);
}

.news-sidebar {
  display: grid;
  gap: 24px;
}

.news-side-card {
  padding: 24px;
}

.news-side-card h2 {
  margin-bottom: 18px;
  font-size: 19px;
}

.news-flow-mini {
  display: grid;
  grid-template-columns: 1fr 24px 1fr 24px 1fr;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
}

.news-flow-mini span {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-width: 0;
}

.news-flow-mini i {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: #2e82ff;
  background: #edf6ff;
  border: 1px solid #cfe3ff;
  border-radius: 50%;
}

.news-flow-mini b {
  color: #294b7d;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 900;
  text-align: center;
}

.news-flow-mini em {
  height: 3px;
  background: #8bbdff;
  border-radius: 999px;
}

.news-side-card p {
  margin: 0;
  color: #405a82;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 700;
}

.news-side-card p strong,
.news-side-card > strong {
  color: #2e82ff;
  font-weight: 900;
}

.news-side-card > strong {
  display: block;
  margin: 8px 0 8px;
  font-size: 34px;
  line-height: 1;
}

.news-side-card a {
  margin-top: 18px;
}

@media (max-width: 1180px) {
  .news-topic-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 132px;
  }

  .news-topic-copy {
    max-width: none;
  }

  .news-topic-visual {
    min-height: 520px;
  }

  .news-topic-logo {
    top: 0;
    right: 6%;
  }

  .news-topic-burst {
    left: 4%;
    top: 142px;
  }

  .news-topic-panel {
    right: 4%;
    bottom: 34px;
    width: min(86%, 680px);
    min-width: min(560px, 86vw);
  }

  .news-topic-chat {
    right: 0;
    top: 260px;
  }

  .news-feature-grid,
  .news-board-layout {
    grid-template-columns: 1fr;
  }

  .news-list-table article {
    grid-template-columns: 64px minmax(0, 1fr) 120px 108px 20px;
  }
}

@media (max-width: 760px) {
  .news-page {
    width: 100%;
    overflow-x: hidden;
  }

  .news-page * {
    min-width: 0;
  }

  .news-page h1,
  .news-page h2,
  .news-page h3,
  .news-page p,
  .news-page a,
  .news-page b,
  .news-page span,
  .news-page time {
    max-width: 100%;
    line-break: anywhere;
    word-break: break-all;
    overflow-wrap: anywhere;
    white-space: normal;
    text-wrap: wrap;
  }

  .news-topic-hero {
    display: block;
    padding: 118px 18px 62px;
  }

  .news-topic-ribbon {
    min-height: 48px;
    margin-bottom: 28px;
  }

  .news-topic-ribbon span {
    min-height: 48px;
    padding: 0 36px 0 20px;
    font-size: 22px;
    clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 50%, calc(100% - 28px) 100%, 0 100%);
  }

  .news-topic-kicker {
    gap: 12px;
    margin-bottom: 12px;
    font-size: clamp(25px, 6.8vw, 30px);
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .news-topic-kicker::before,
  .news-topic-kicker::after {
    width: 4px;
  }

  .news-topic-copy h1 {
    font-size: clamp(38px, 11.8vw, 54px);
    line-height: 1.12;
    white-space: normal;
  }

  .news-topic-copy h1 span {
    display: inline;
  }

  .news-topic-lead {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.85;
  }

  .news-page .news-topic-lead {
    word-break: keep-all;
    overflow-wrap: normal;
    line-break: strict;
  }

  .news-topic-visual {
    min-height: 330px;
    margin-top: 26px;
  }

  .news-topic-visual::before {
    left: -34px;
    bottom: 36px;
    width: 132px;
    height: 132px;
  }

  .news-topic-visual::after {
    left: 38px;
    bottom: 24px;
    width: 58px;
    height: 58px;
  }

  .news-topic-logo {
    display: none;
  }

  .news-topic-dots {
    top: 22px;
    left: 40%;
    width: 122px;
    height: 66px;
    background-size: 16px 16px;
  }

  .news-topic-burst {
    left: -22px;
    top: 86px;
    width: 112px;
    height: 112px;
  }

  .news-topic-panel {
    right: 8px;
    bottom: 24px;
    width: min(88vw, 350px);
    min-width: 0;
    border-radius: 12px;
  }

  .news-topic-panel-head {
    height: 46px;
    padding: 0 12px;
  }

  .news-topic-mini-logo {
    width: 22px;
    height: 22px;
  }

  .news-topic-panel-head b {
    font-size: 18px;
  }

  .news-topic-panel-body {
    grid-template-columns: 70px minmax(0, 1fr);
    min-height: 190px;
  }

  .news-topic-sidebar {
    gap: 10px;
    padding: 18px 12px;
  }

  .news-topic-sidebar span {
    width: 42px;
    height: 8px;
  }

  .news-topic-sidebar span::before {
    width: 11px;
    height: 11px;
    margin: -2px 8px 0 0;
  }

  .news-topic-cards {
    gap: 10px;
    padding: 14px 14px 16px;
  }

  .news-topic-cards article {
    min-height: 46px;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 8px;
  }

  .news-topic-cards article:first-child {
    min-height: 64px;
  }

  .news-topic-cards i {
    height: 8px;
  }

  .news-topic-chat {
    right: -4px;
    top: 132px;
    gap: 7px;
    width: 76px;
    height: 54px;
  }

  .news-topic-chat span {
    width: 8px;
    height: 8px;
  }

  .news-topic-plant {
    right: -18px;
    bottom: 14px;
    width: 80px;
    height: 100px;
  }

  .news-topic-plant::before {
    left: 38px;
    height: 78px;
  }

  .news-topic-plant i:nth-child(1) {
    width: 42px;
    height: 25px;
  }

  .news-topic-plant i:nth-child(2) {
    width: 44px;
    height: 26px;
  }

  .news-topic-plant i:nth-child(3) {
    width: 24px;
    height: 42px;
  }

  .news-topic-hero + .news-digest {
    margin-top: -24px;
  }

  .news-feature-card h3,
  .news-feature-card p,
  .news-list-table h3,
  .news-list-table p,
  .news-side-card p {
    max-width: 286px;
  }

  .news-page .lp-hero-copy p:not(.eyebrow) {
    max-width: 330px;
    line-break: strict;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .news-digest,
  .news-board-image-section {
    margin-top: -24px;
  }

  .news-digest,
  .news-board-image-section,
  .news-board-section {
    width: 100%;
    max-width: 100%;
    padding-right: 16px;
    padding-left: 16px;
  }

  .news-digest,
  .news-board-section {
    overflow: hidden;
  }

  .news-board-image-section {
    overflow: visible;
  }

  .news-panel,
  .news-main-board,
  .news-side-card {
    width: 100%;
    max-width: 100%;
    border-radius: 8px;
  }

  .news-panel {
    padding: 18px;
  }

  .news-panel-title,
  .news-board-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .news-feature-card {
    grid-template-columns: 1fr;
    min-height: 0;
    width: 100%;
    padding: 20px;
  }

  .news-feature-card h3 {
    font-size: 21px;
    line-height: 1.48;
  }

  .news-feature-card div,
  .news-list-table article > div {
    width: 100%;
  }

  .news-feature-card i {
    justify-self: start;
    width: 76px;
    height: 76px;
  }

  .news-board-head {
    padding: 20px;
  }

  .news-list-table article {
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    padding: 18px 16px;
  }

  .news-row-icon {
    width: 44px;
    height: 44px;
  }

  .news-list-table b,
  .news-list-table time,
  .news-list-table article > a {
    grid-column: auto;
    justify-self: start;
  }

  .news-list-table time {
    text-align: left;
  }

  .news-list-table article > a {
    width: 10px;
    height: 10px;
  }

  .news-sidebar {
    gap: 18px;
  }

  .news-flow-mini {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .news-flow-mini em {
    width: 3px;
    height: 22px;
  }

}

.news-topic-visual {
  display: grid;
  place-items: center end;
  min-height: 560px;
  overflow: visible;
}

.news-topic-visual::before,
.news-topic-visual::after {
  display: none;
}

.news-topic-visual-image {
  display: block;
  width: min(98%, 680px);
  max-width: none;
  height: auto;
  margin-right: -18px;
  filter: drop-shadow(0 26px 52px rgba(35, 104, 214, 0.12));
}

@media (max-width: 1180px) {
  .news-topic-visual {
    min-height: 500px;
    place-items: center;
  }

  .news-topic-visual-image {
    width: min(100%, 680px);
    margin-right: 0;
  }
}

@media (max-width: 760px) {
  .news-topic-visual {
    min-height: 310px;
    margin-top: 24px;
  }

  .news-topic-visual-image {
    width: min(112%, 430px);
    margin-right: -18px;
  }
}

/* Flow feature redesign */
.flow-feature.feature-showcase,
.flow-feature.feature-showcase.is-reverse {
  grid-template-columns: minmax(0, 0.86fr) minmax(560px, 1.14fr);
  gap: clamp(44px, 5.4vw, 92px);
  align-items: center;
  max-width: 1760px;
  min-height: 0;
  padding: clamp(58px, 6vw, 92px) clamp(54px, 6vw, 96px);
  background:
    radial-gradient(circle at 88% 22%, rgba(73, 133, 230, 0.08), transparent 24%),
    #ffffff;
  border-top: 1px solid #e5efff;
}

.flow-feature.feature-showcase.is-reverse {
  grid-template-columns: minmax(560px, 1.08fr) minmax(0, 0.92fr);
}

.flow-feature.feature-showcase .flow-feature-copy {
  max-width: 650px;
}

.flow-feature.feature-showcase .flow-feature-visual {
  min-height: 0;
}

.flow-feature.feature-showcase .flow-feature-label {
  margin-bottom: clamp(24px, 2.6vw, 38px);
}

.flow-feature.feature-showcase .flow-feature-number {
  margin: 0 0 clamp(14px, 1.3vw, 20px);
  color: #6bb7e8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 2.9vw, 46px);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.flow-feature.feature-showcase .flow-feature-label h3 {
  margin: 0;
  color: #061b42;
  font-size: clamp(42px, 4.2vw, 72px);
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: 0;
}

.flow-feature.feature-showcase .flow-feature-label h3::after {
  width: min(38vw, 190px);
  height: 5px;
  margin-top: clamp(18px, 1.7vw, 26px);
  background: #0f56c7;
  border-radius: 999px;
  box-shadow: none;
}

.flow-feature.feature-showcase .flow-feature-copy h4 {
  margin: 0 0 clamp(20px, 2.3vw, 34px);
  color: #1560c8;
  font-size: clamp(24px, 2.5vw, 42px);
  line-height: 1.38;
  font-weight: 900;
}

.flow-feature.feature-showcase .flow-feature-copy p {
  margin: 0;
  color: #061b42;
  font-size: clamp(16px, 1.35vw, 22px);
  line-height: 1.95;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.flow-feature.feature-showcase .flow-feature-facts {
  gap: clamp(18px, 2vw, 32px);
  margin-top: clamp(28px, 3vw, 44px);
}

.flow-feature.feature-showcase .flow-feature-facts dl {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid #cfe1ff;
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(19, 83, 180, 0.08);
}

.flow-feature.feature-showcase .flow-feature-facts dt {
  min-height: 46px;
  color: #061b42;
  background: rgba(238, 246, 255, 0.72);
}

.flow-feature.feature-showcase .flow-feature-facts dd {
  padding: 16px 18px 18px;
  font-size: clamp(17px, 1.25vw, 22px);
  line-height: 1.42;
}

.feature-illustration {
  position: relative;
  isolation: isolate;
}

.feature-illustration::before,
.feature-illustration::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.feature-illustration::before {
  inset: 6% 3% 4%;
  background:
    radial-gradient(circle at 72% 26%, rgba(119, 170, 255, 0.16), transparent 22%),
    radial-gradient(circle at 26% 74%, rgba(70, 132, 230, 0.1), transparent 28%);
  filter: blur(2px);
}

.feature-illustration::after {
  right: 0;
  bottom: 0;
  width: 42%;
  height: 34%;
  background: rgba(224, 239, 255, 0.55);
  filter: blur(12px);
}

.toolchain-card {
  position: relative;
  min-height: clamp(420px, 37vw, 560px);
  padding: clamp(34px, 3.8vw, 58px);
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 88%, rgba(103, 160, 255, 0.16), transparent 26%),
    radial-gradient(circle at 88% 18%, rgba(103, 160, 255, 0.12), transparent 28%),
    rgba(255, 255, 255, 0.9);
  border: 1px solid #cfe1ff;
  border-radius: 18px;
  box-shadow: 0 26px 70px rgba(20, 72, 148, 0.09);
}

.toolchain-card::before,
.toolchain-card::after {
  content: "";
  position: absolute;
  border: 2px dashed rgba(47, 115, 230, 0.25);
  border-radius: 50%;
}

.toolchain-card::before {
  right: 36px;
  top: 48px;
  width: 160px;
  height: 160px;
  border-left-color: transparent;
  border-bottom-color: transparent;
}

.toolchain-card::after {
  left: 120px;
  bottom: 104px;
  width: 310px;
  height: 92px;
  border-top: 0;
}

.toolchain-badge {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 28px;
  color: #ffffff;
  background: linear-gradient(180deg, #4b91ff 0%, #1768e8 100%);
  border-radius: 999px;
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 900;
}

.toolchain-card > strong {
  display: block;
  margin: clamp(22px, 2.2vw, 34px) 0 10px;
  color: #061b42;
  font-size: clamp(28px, 2.8vw, 48px);
  line-height: 1.2;
  font-weight: 900;
}

.toolchain-card > strong span {
  display: inline;
}

.toolchain-card > strong span:first-child {
  color: #1f6fe5;
}

.toolchain-card > b {
  display: block;
  color: #061b42;
  font-size: clamp(18px, 1.35vw, 24px);
  line-height: 1.35;
  font-weight: 900;
}

.toolchain-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 1.8vw, 28px);
  align-items: center;
  margin-top: clamp(34px, 3.5vw, 54px);
}

.toolchain-arrow {
  position: absolute;
  top: 50%;
  width: 24px;
  height: 2px;
  background: #9dc3ff;
  transform: translateY(-50%);
}

.toolchain-arrow::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #9dc3ff;
  border-right: 2px solid #9dc3ff;
  transform: translateY(-50%) rotate(45deg);
}

.toolchain-arrow:nth-child(2) {
  left: 23%;
}

.toolchain-arrow:nth-child(4) {
  left: 49%;
}

.toolchain-arrow:nth-child(6) {
  left: 75%;
}

.toolchain-tool {
  display: grid;
  place-items: center;
  gap: 10px;
  min-height: clamp(116px, 10vw, 156px);
  padding: 16px 12px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #cfe1ff;
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(19, 83, 180, 0.08);
}

.toolchain-tool i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--tool-color, #1768e8);
  background: var(--tool-soft, #eef5ff);
  border-radius: 12px;
  font-style: normal;
  font-size: 18px;
  font-weight: 900;
}

.toolchain-tool em {
  color: #061b42;
  font-style: normal;
  font-size: clamp(13px, 1vw, 17px);
  font-weight: 900;
  line-height: 1;
}

.toolchain-tool small {
  display: inline-grid;
  place-items: center;
  min-height: 24px;
  padding: 0 14px;
  color: var(--tool-color, #1768e8);
  background: var(--tool-soft, #eef5ff);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.toolchain-vscode {
  --tool-color: #168be8;
  --tool-soft: #eaf5ff;
}

.toolchain-github {
  --tool-color: #061b42;
  --tool-soft: #eef2f8;
}

.toolchain-github i {
  border-radius: 50%;
}

.toolchain-db {
  --tool-color: #26bd8b;
  --tool-soft: #e9f8f2;
}

.toolchain-render {
  --tool-color: #2569e8;
  --tool-soft: #eaf2ff;
}

.toolchain-render i::before {
  content: "";
  width: 30px;
  height: 20px;
  background:
    radial-gradient(circle at 32% 55%, #6aa7ff 0 34%, transparent 35%),
    radial-gradient(circle at 56% 44%, #2878ef 0 38%, transparent 39%),
    radial-gradient(circle at 70% 62%, #2f73e6 0 31%, transparent 32%);
}

.toolchain-database {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 4px 18px;
  align-items: center;
  width: min(70%, 390px);
  min-height: 84px;
  margin: clamp(34px, 4vw, 58px) auto 0;
  padding: 16px 28px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #cfe1ff;
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(19, 83, 180, 0.08);
}

.db-icon {
  grid-row: 1 / span 2;
  width: 50px;
  height: 50px;
  background:
    linear-gradient(#1768e8, #1768e8) center 13px / 30px 3px no-repeat,
    linear-gradient(#1768e8, #1768e8) center 25px / 30px 3px no-repeat,
    linear-gradient(#1768e8, #1768e8) center 37px / 30px 3px no-repeat;
  border: 2px solid #1768e8;
  border-radius: 50%;
  opacity: 0.9;
}

.toolchain-database strong {
  color: #061b42;
  font-size: 20px;
  font-weight: 900;
}

.toolchain-database small {
  color: #385379;
  font-size: 13px;
  font-weight: 800;
}

.toolchain-people {
  position: absolute;
  left: 38px;
  bottom: 28px;
  display: flex;
  align-items: end;
  gap: 10px;
  opacity: 0.72;
}

.toolchain-people i {
  position: relative;
  width: 38px;
  height: 56px;
  border: 2px solid #1768e8;
  border-bottom: 0;
  border-radius: 22px 22px 0 0;
}

.toolchain-people i::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -20px;
  width: 26px;
  height: 26px;
  background: #dceaff;
  border: 2px solid #1768e8;
  border-radius: 50%;
  transform: translateX(-50%);
}

.toolchain-people i:nth-child(2) {
  height: 70px;
}

.toolchain-people i:nth-child(3) {
  height: 58px;
}

.developer-illustration svg,
.review-illustration svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.developer-illustration,
.review-illustration {
  padding: 0;
}

.feature-illustration .sketch-line {
  fill: none;
  stroke: #0f56c7;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-illustration .sketch-line.thin {
  stroke-width: 3;
}

.feature-illustration .sketch-line.light {
  stroke: #6fa2e9;
  stroke-width: 3;
}

.feature-illustration .sketch-line.white {
  stroke: #ffffff;
  stroke-width: 4;
}

.feature-illustration .sketch-fill.dark {
  fill: #0b2f67;
  stroke: #0f56c7;
  stroke-width: 3;
}

.feature-illustration .sketch-fill.blue {
  fill: #1768e8;
}

.feature-illustration .sketch-fill.white {
  fill: rgba(255, 255, 255, 0.9);
  stroke: #0f56c7;
  stroke-width: 3;
}

.feature-illustration .sketch-soft {
  fill: rgba(89, 145, 226, 0.12);
  stroke: none;
}

.feature-illustration .sketch-soft.mid {
  fill: rgba(89, 145, 226, 0.18);
}

.feature-illustration .sketch-spark {
  fill: none;
  stroke: #6fa2e9;
  stroke-width: 3;
  stroke-linecap: round;
  opacity: 0.75;
}

.feature-illustration .sketch-text {
  fill: none;
  stroke: #0f56c7;
  stroke-width: 5;
  stroke-linecap: round;
}

.feature-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 34px);
  margin-top: clamp(30px, 3.2vw, 48px);
}

.feature-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 72px;
  color: #0f56c7;
  background: #ffffff;
  border: 2px solid #0f56c7;
  border-radius: 8px;
  font-size: clamp(16px, 1.35vw, 22px);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 36px rgba(20, 72, 148, 0.08);
}

.feature-action.is-primary {
  color: #ffffff;
  background: linear-gradient(180deg, #1269dd 0%, #064dbd 100%);
  border-color: #064dbd;
  box-shadow: 0 18px 42px rgba(15, 86, 199, 0.22);
}

.feature-action span {
  width: 12px;
  height: 12px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: rotate(45deg);
}

.feature-mini-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 32px);
  margin-top: clamp(26px, 3vw, 42px);
}

.feature-mini-steps span {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 18px;
  color: #0f56c7;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #cfe1ff;
  border-radius: 8px;
  font-size: clamp(14px, 1.05vw, 18px);
  font-weight: 900;
  box-shadow: 0 12px 32px rgba(20, 72, 148, 0.06);
}

.feature-mini-steps span + span::before {
  content: "";
  position: absolute;
  left: calc(-1 * clamp(16px, 2vw, 32px));
  width: clamp(16px, 2vw, 32px);
  border-top: 2px dashed #9dc3ff;
}

.feature-mini-steps i {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #0f56c7;
  font-style: normal;
  font-weight: 900;
}

.feature-mini-steps span:nth-child(2) i {
  border: 3px solid #0f56c7;
  border-radius: 50%;
}

.feature-mini-steps span:nth-child(2) i::after {
  content: "";
  position: absolute;
  right: -7px;
  bottom: -5px;
  width: 10px;
  height: 3px;
  background: #0f56c7;
  border-radius: 999px;
  transform: rotate(45deg);
}

.feature-mini-steps span:nth-child(3) i {
  border: 3px solid #0f56c7;
  border-radius: 8px 8px 12px 12px;
}

.feature-mini-steps span:nth-child(3) i::after {
  content: "";
  width: 10px;
  height: 6px;
  border-left: 3px solid #0f56c7;
  border-bottom: 3px solid #0f56c7;
  transform: rotate(-45deg);
}

@media (max-width: 1180px) {
  .flow-feature.feature-showcase,
  .flow-feature.feature-showcase.is-reverse {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 58px 32px;
  }

  .flow-feature.feature-showcase .flow-feature-copy,
  .flow-feature.feature-showcase.is-reverse .flow-feature-copy {
    order: 0;
    max-width: 760px;
  }

  .flow-feature.feature-showcase .flow-feature-visual,
  .flow-feature.feature-showcase.is-reverse .flow-feature-visual {
    order: 1;
  }

  .flow-feature.feature-showcase .flow-feature-label h3 {
    font-size: clamp(40px, 6vw, 62px);
  }

  .toolchain-card {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .flow-feature.feature-showcase,
  .flow-feature.feature-showcase.is-reverse {
    padding: 46px 18px;
  }

  .flow-feature.feature-showcase .flow-feature-label h3 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .flow-feature.feature-showcase .flow-feature-copy h4 {
    font-size: clamp(23px, 6.6vw, 31px);
  }

  .flow-feature.feature-showcase .flow-feature-copy p {
    font-size: 15px;
    line-height: 1.8;
  }

  .flow-feature.feature-showcase .flow-feature-facts,
  .feature-actions,
  .feature-mini-steps {
    grid-template-columns: 1fr;
  }

  .feature-action {
    min-height: 58px;
  }

  .feature-mini-steps span + span::before {
    display: none;
  }

  .toolchain-card {
    padding: 24px 18px 28px;
  }

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

  .toolchain-arrow {
    display: none;
  }

  .toolchain-card > strong span {
    display: block;
  }

  .toolchain-database {
    width: 100%;
    padding: 14px 16px;
  }

  .toolchain-people {
    display: none;
  }

  .developer-illustration svg,
  .review-illustration svg {
    width: 112%;
    margin-left: -6%;
  }
}

/* Reference-image alignment pass */
.flow-feature-list {
  background: #ffffff;
}

.flow-feature.feature-showcase,
.flow-feature.feature-showcase.is-reverse {
  width: 100%;
  max-width: none;
  min-height: clamp(640px, 56.25vw, 920px);
  padding: clamp(64px, 6.2vw, 108px) clamp(72px, 6.8vw, 128px);
  background:
    radial-gradient(circle at 50% 100%, rgba(82, 142, 226, 0.08), transparent 32%),
    #ffffff;
}

.flow-feature.feature-showcase {
  grid-template-columns: minmax(440px, 0.78fr) minmax(720px, 1.22fr);
}

.flow-feature.feature-showcase.is-reverse {
  grid-template-columns: minmax(720px, 1.18fr) minmax(470px, 0.82fr);
}

.flow-feature.feature-showcase .flow-feature-copy {
  max-width: 720px;
}

.flow-feature.feature-showcase .flow-feature-number {
  color: #0a2a5f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 3.4vw, 60px);
  font-style: italic;
  line-height: 1;
}

.flow-feature.feature-showcase-codebase .flow-feature-number {
  color: #66b7e9;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-style: normal;
  font-size: clamp(28px, 2.6vw, 46px);
}

.flow-feature.feature-showcase-implementation .flow-feature-number::after,
.flow-feature.feature-showcase-team .flow-feature-number::after {
  content: "/";
  display: inline-block;
  margin-left: 18px;
  color: #9fbff3;
  font-size: 0.72em;
  font-weight: 400;
  transform: translateY(-0.1em);
}

.flow-feature.feature-showcase .flow-feature-label h3 {
  color: #061b42;
  font-size: clamp(54px, 5.3vw, 96px);
  line-height: 1.14;
}

.flow-feature.feature-showcase-codebase .flow-feature-label h3 {
  color: #0b3472;
  font-size: clamp(42px, 4.1vw, 72px);
  line-height: 1.18;
}

.flow-feature.feature-showcase .flow-feature-label h3::after {
  width: clamp(92px, 8vw, 160px);
  height: 5px;
  margin-top: clamp(22px, 1.9vw, 30px);
  background: #0f56c7;
}

.flow-feature.feature-showcase .flow-feature-copy h4 {
  color: #0f56c7;
  font-size: clamp(28px, 2.8vw, 48px);
  line-height: 1.42;
}

.flow-feature.feature-showcase-codebase .flow-feature-copy h4 {
  font-size: clamp(26px, 2.45vw, 42px);
}

.flow-feature.feature-showcase .flow-feature-copy p {
  color: #07142c;
  font-size: clamp(17px, 1.35vw, 23px);
  line-height: 1.9;
  font-weight: 700;
}

.flow-feature.feature-showcase-codebase .flow-feature-copy p {
  max-width: 620px;
}

.flow-feature.feature-showcase-implementation .flow-feature-copy,
.flow-feature.feature-showcase-team .flow-feature-copy {
  align-self: center;
}

.flow-feature.feature-showcase-implementation .flow-feature-copy h4 {
  white-space: nowrap;
}

.flow-feature.feature-showcase-implementation .flow-feature-copy p {
  max-width: 760px;
}

.flow-feature.feature-showcase-team .flow-feature-copy p {
  max-width: 660px;
}

.flow-feature.feature-showcase .feature-illustration::before,
.flow-feature.feature-showcase .feature-illustration::after {
  display: none;
}

.feature-showcase-codebase .toolchain-card {
  min-height: clamp(460px, 38vw, 650px);
  padding: clamp(46px, 4.4vw, 76px);
  background:
    radial-gradient(circle at 38% 82%, rgba(126, 177, 245, 0.18), transparent 24%),
    radial-gradient(circle at 86% 74%, rgba(126, 177, 245, 0.12), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(246, 250, 255, 0.86));
  border-color: #bfd6ff;
  border-radius: 20px;
}

.feature-showcase-codebase .toolchain-card > strong {
  font-size: clamp(28px, 2.6vw, 46px);
  line-height: 1.18;
}

.feature-showcase-codebase .toolchain-row {
  margin-top: clamp(38px, 3.8vw, 62px);
}

.feature-showcase-codebase .toolchain-tool {
  min-height: clamp(130px, 10.8vw, 176px);
}

.feature-showcase-codebase .toolchain-database {
  margin-top: clamp(40px, 4vw, 66px);
}

.feature-showcase-implementation .developer-illustration {
  transform: translateX(-3%);
}

.feature-showcase-implementation .developer-illustration svg {
  width: min(112%, 900px);
  margin-left: -4%;
}

.feature-showcase-team .review-illustration svg {
  width: min(112%, 980px);
  margin-left: 0;
}

.feature-showcase-team .flow-feature-copy {
  padding-left: clamp(16px, 2vw, 42px);
}

.feature-actions {
  max-width: 680px;
}

.feature-action {
  min-height: clamp(64px, 5.5vw, 82px);
}

.feature-mini-steps {
  max-width: 760px;
}

.feature-illustration .sketch-line,
.feature-illustration .sketch-line.thin {
  stroke: #0b55bf;
}

.feature-illustration .sketch-line.light,
.feature-illustration .sketch-spark {
  stroke: #7da7e8;
}

.feature-illustration .sketch-soft {
  fill: rgba(85, 145, 226, 0.1);
}

.feature-illustration .sketch-soft.mid {
  fill: rgba(85, 145, 226, 0.16);
}

@media (max-width: 1180px) {
  .flow-feature.feature-showcase,
  .flow-feature.feature-showcase.is-reverse {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 58px 28px;
  }

  .flow-feature.feature-showcase-implementation .flow-feature-copy h4 {
    white-space: normal;
  }
}

@media (max-width: 760px) {
  .flow-feature.feature-showcase,
  .flow-feature.feature-showcase.is-reverse {
    padding: 44px 18px;
  }

  .flow-feature.feature-showcase .flow-feature-label h3,
  .flow-feature.feature-showcase-codebase .flow-feature-label h3 {
    font-size: clamp(34px, 9.6vw, 46px);
  }

  .flow-feature.feature-showcase .flow-feature-number {
    font-size: 30px;
  }

  .feature-showcase-implementation .developer-illustration,
  .feature-showcase-implementation .developer-illustration svg,
  .feature-showcase-team .review-illustration svg {
    width: 112%;
    margin-left: -6%;
    transform: none;
  }
}

.flow-feature-image-list {
  display: grid;
  gap: 0;
  background: #ffffff;
}

.training-content-heading {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: clamp(72px, 7vw, 116px) clamp(18px, 4vw, 64px) clamp(28px, 3.2vw, 48px);
  background: #ffffff;
}

.training-content-heading h2 {
  margin: 0;
  color: #000000;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: 0;
}

.training-content-heading h2::after {
  content: "";
  display: block;
  width: clamp(84px, 8vw, 112px);
  height: 8px;
  margin-top: clamp(24px, 2.4vw, 36px);
  background: #000000;
  border-radius: 999px;
}

.implementation-benefits-heading {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(72px, 7vw, 116px) clamp(20px, 5vw, 84px) clamp(28px, 3.2vw, 48px);
  border-top: 1px solid #d7e8ff;
}

.implementation-benefits-heading h2 {
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
}

.reason-image-panel {
  border-top: 0;
}

.flow-feature-image-card {
  position: relative;
  display: grid;
  justify-items: center;
  margin: 0;
  padding: 0 clamp(18px, 4vw, 64px);
  background: #ffffff;
  border-top: 0;
}

.flow-feature-image {
  display: block;
  width: min(100%, 1280px);
  max-width: 100%;
  height: auto;
  margin: 0;
  object-fit: contain;
}

.flow-feature-image-card + .flow-feature-image-card {
  --flow-arrow-top: clamp(18px, 4vw, 72px);
  --flow-arrow-length: clamp(46px, 6vw, 108px);
  --flow-arrow-size: clamp(12px, 1.2vw, 18px);
  --flow-arrow-stroke: clamp(2px, 0.22vw, 4px);
}

.flow-feature-image-card + .flow-feature-image-card::before,
.flow-feature-image-card + .flow-feature-image-card::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 50%;
  pointer-events: none;
}

.flow-feature-image-card + .flow-feature-image-card::before {
  top: var(--flow-arrow-top);
  height: var(--flow-arrow-length);
  border-left: var(--flow-arrow-stroke) dashed rgba(47, 111, 239, 0.42);
  transform: translateX(-50%);
}

.flow-feature-image-card + .flow-feature-image-card::after {
  top: calc(var(--flow-arrow-top) + var(--flow-arrow-length) - var(--flow-arrow-size));
  width: var(--flow-arrow-size);
  height: var(--flow-arrow-size);
  border-right: var(--flow-arrow-stroke) solid rgba(47, 111, 239, 0.6);
  border-bottom: var(--flow-arrow-stroke) solid rgba(47, 111, 239, 0.6);
  transform: translateX(-50%) rotate(45deg);
}

.theme-toggle {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0;
  padding: 0;
  color: #0b4fb8;
  background: rgba(237, 246, 255, 0.86);
  border: 1px solid rgba(46, 130, 255, 0.24);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(25, 105, 224, 0.16);
  cursor: pointer;
  transition:
    color 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.theme-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(25, 105, 224, 0.2);
}

.theme-toggle:focus-visible {
  outline: 3px solid rgba(46, 130, 255, 0.4);
  outline-offset: 3px;
}

.theme-toggle svg {
  display: block;
  width: 28px;
  height: 28px;
}

.theme-toggle path,
.theme-toggle circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-toggle-icon {
  grid-area: 1 / 1;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.theme-toggle-sun {
  opacity: 0;
  transform: rotate(-30deg) scale(0.8);
}

.theme-toggle[aria-pressed="true"] .theme-toggle-moon {
  opacity: 0;
  transform: rotate(30deg) scale(0.8);
}

.theme-toggle[aria-pressed="true"] .theme-toggle-sun {
  opacity: 1;
  transform: rotate(0) scale(1);
}

.theme-toggle-floating {
  position: fixed;
  z-index: 50;
  top: 22px;
  right: 22px;
}

:root.theme-dark {
  --ink: #f3f7ff;
  --muted: #a9b7cc;
  --line: rgba(126, 177, 245, 0.26);
  --line-strong: rgba(126, 177, 245, 0.42);
  --paper: #05070d;
  --soft: #101827;
  --blue: #63a0ff;
  --blue-dark: #8cbbff;
  --blue-deep: #d8e7ff;
  --cyan: #89d4ff;
  --white: #f7fbff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.46);
  color-scheme: dark;
}

:root.theme-dark body {
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(46, 130, 255, 0.22), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(114, 199, 255, 0.12), transparent 24%),
    linear-gradient(180deg, #05070d 0%, #08101d 48%, #05070d 100%) !important;
}

:root.theme-dark :where(main, section) {
  background: transparent !important;
}

:root.theme-dark :where(
  .site-header,
  .side-menu,
  .footer-main,
  .route-panel,
  .admin-login-panel,
  .admin-panel,
  .admin-stats article,
  .contact-form,
  .home-nav-grid a,
  .sitemap-hotspot,
  [class$="-card"],
  [class*="-card "],
  [class$="-panel"],
  [class*="-panel "],
  [class$="-tile"],
  [class*="-tile "],
  [class$="-box"],
  [class*="-box "],
  [class$="-item"],
  [class*="-item "],
  [class$="-strip"],
  [class*="-strip "],
  [class$="-banner"],
  [class*="-banner "]
) {
  color: var(--ink) !important;
  background:
    linear-gradient(180deg, rgba(15, 22, 36, 0.96), rgba(8, 12, 20, 0.98)) !important;
  border-color: rgba(126, 177, 245, 0.26) !important;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.36) !important;
}

:root.theme-dark .site-header {
  background: rgba(7, 11, 19, 0.92) !important;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.48) !important;
}

:root.theme-dark .side-menu {
  background: rgba(7, 11, 19, 0.98) !important;
}

:root.theme-dark .menu-head {
  border-color: rgba(126, 177, 245, 0.18) !important;
}

:root.theme-dark .menu-scrim {
  background: rgba(0, 0, 0, 0.7);
}

:root.theme-dark :where(
  h1,
  h2,
  h3,
  h4,
  p,
  li,
  dt,
  dd,
  th,
  td,
  label,
  span,
  strong,
  small,
  address,
  a,
  .brand,
  .nav,
  .menu-head p,
  .menu-list strong,
  .menu-list small
) {
  color: var(--ink) !important;
}

:root.theme-dark :where(.eyebrow, b, .table-icon, .nav a:hover, .footer a:hover) {
  color: #78adff !important;
}

:root.theme-dark :where(
  .menu-list a,
  .footer-nav h2,
  .footer-bottom,
  .footer address,
  .footer-nav a,
  .footer-lead,
  .pricing-note,
  .admin-note,
  .admin-empty
) {
  color: var(--muted) !important;
}

:root.theme-dark :where(input, select, textarea) {
  color: var(--ink) !important;
  background: #070d18 !important;
  border-color: rgba(126, 177, 245, 0.34) !important;
}

:root.theme-dark :where(input, select, textarea)::placeholder {
  color: rgba(169, 183, 204, 0.72);
}

:root.theme-dark :where(input, select, textarea):focus {
  border-color: #78adff !important;
  box-shadow: 0 0 0 4px rgba(46, 130, 255, 0.18) !important;
}

:root.theme-dark :where(.button.primary, .header-cta) {
  color: #ffffff !important;
  background: linear-gradient(135deg, #2f80ff 0%, #0b56d8 100%) !important;
  border-color: rgba(126, 177, 245, 0.32) !important;
  box-shadow: 0 16px 34px rgba(47, 128, 255, 0.26) !important;
}

:root.theme-dark :where(.button.ghost, .button.secondary, .admin-text-button) {
  color: var(--ink) !important;
  background: rgba(12, 19, 32, 0.92) !important;
  border-color: rgba(126, 177, 245, 0.28) !important;
}

:root.theme-dark .theme-toggle {
  color: #ffcf6a;
  background: rgba(15, 22, 36, 0.96);
  border-color: rgba(255, 207, 106, 0.34);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.36);
}

:root.theme-dark .header-menu {
  color: #f5f8ff;
}

:root.theme-dark .brand-mark path:first-child {
  fill: #63a0ff;
}

:root.theme-dark .footer-brand-mark {
  background: url("assets/codex-cloud-logo.svg") center / contain no-repeat;
}

:root.theme-dark :where(.brand-mark path:last-child) {
  fill: #9fd0ff;
}

:root.theme-dark :where(.menu-icon path, .menu-icon rect, .menu-icon circle) {
  stroke: currentColor;
}

:root.theme-dark :where(.footer, .footer-bottom) {
  background: #03060b !important;
}

:root.theme-dark :where(.admin-table th, .admin-table td, .comparison-table th, .comparison-table td) {
  border-color: rgba(126, 177, 245, 0.2) !important;
}

:root.theme-dark :where(
  .pixel-banner img,
  .flow-feature-image,
  .course-flow-image,
  .reason-steps-image img,
  .sitemap-image-map img,
  .course-lineup-image img,
  .course-curriculum-image img,
  .news-board-image img,
  .usecase-visual img
) {
  filter: brightness(0.84) contrast(1.04) saturate(0.9);
}

:root.theme-dark .hero-content :where(h1, h1 strong, .eyebrow, .hero-lead, .hero-lead b) {
  color: #ffffff !important;
}

:root.theme-dark .site-header {
  color: #071b3a !important;
  background: rgba(255, 255, 255, 0.98) !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

:root.theme-dark :where(.brand, .brand strong) {
  color: #064f9f !important;
}

:root.theme-dark .header-menu {
  color: #2c2c2c !important;
}

:root.theme-dark .side-menu {
  color: #ffffff !important;
  background: #303030 !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

:root.theme-dark :where(.menu-list strong, .menu-actions a, .menu-download) {
  color: #ffffff !important;
}

:root.theme-dark .menu-contact {
  color: #303030 !important;
  background: #ffffff !important;
}

@media (max-width: 980px) {
  .theme-toggle {
    width: 52px;
    height: 52px;
  }

  .theme-toggle svg {
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 640px) {
  .theme-toggle {
    width: 46px;
    height: 46px;
  }

  .theme-toggle svg {
    width: 23px;
    height: 23px;
  }
}

.course-fv {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 290px;
  padding: clamp(122px, 10vh, 144px) clamp(24px, 6vw, 96px) 64px;
  overflow: hidden;
  color: #000000;
  background: #ffffff;
  text-align: center;
  isolation: isolate;
}

.course-fv::before,
.course-fv::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.course-fv::before {
  display: none;
}

.course-fv::after {
  display: none;
}

.course-fv-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(100%, 1320px);
  min-height: 100%;
  margin: 0 auto;
  padding-left: 0;
}

.course-fv-inner::before {
  display: none;
}

.course-fv-kicker {
  display: none;
}

.course-fv-kicker span {
  display: none;
}

.course-fv h1 {
  order: 1;
  max-width: none;
  margin: 0;
  color: #000000;
  font-size: clamp(42px, 4.4vw, 72px);
  line-height: 1.22;
  font-weight: 900;
  text-shadow: none;
}

.course-fv h1::after {
  content: "";
  display: block;
  width: 120px;
  height: 8px;
  margin: clamp(28px, 3vw, 44px) auto 0;
  background: #000000;
  border-radius: 999px;
}

.course-fv-lead,
.course-fv-sub {
  display: none;
}

.course-fv-inner::after {
  display: none;
}

.course-page .course-fv,
.usecase-page .course-fv,
.pricing-page .course-fv,
.comparison-page .course-fv {
  min-height: 290px;
  padding: clamp(122px, 10vh, 144px) clamp(24px, 6vw, 96px) 64px;
}

.course-page .course-fv-kicker,
.usecase-page .course-fv-kicker,
.pricing-page .course-fv-kicker,
.comparison-page .course-fv-kicker {
  display: none;
}

.course-page .course-fv h1,
.usecase-page .course-fv h1,
.pricing-page .course-fv h1,
.comparison-page .course-fv h1 {
  font-size: clamp(42px, 4.4vw, 72px);
  line-height: 1.22;
}

.course-page .course-fv-lead,
.usecase-page .course-fv-lead,
.pricing-page .course-fv-lead,
.comparison-page .course-fv-lead,
.course-page .course-fv-sub,
.usecase-page .course-fv-sub,
.pricing-page .course-fv-sub,
.comparison-page .course-fv-sub {
  display: none;
}

.course-page .course-fv-inner::after {
  display: none;
}

.pricing-page .course-fv-inner::after {
  display: none;
}

.usecase-page .course-fv-inner::after {
  display: none;
}

.comparison-page .course-fv-inner::after {
  display: none;
}

.assessment-fv {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 290px;
  padding: clamp(122px, 10vh, 144px) clamp(24px, 6vw, 96px) 64px;
  color: #000000;
  background: #ffffff;
  text-align: center;
  isolation: isolate;
}

.assessment-fv::before {
  display: none;
}

.assessment-fv-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(100%, 1320px);
  min-height: 100%;
  margin: 0 auto;
}

.assessment-fv-kicker {
  display: none;
}

.assessment-fv-kicker span {
  display: none;
}

.assessment-fv h1 {
  max-width: none;
  margin: 0;
  color: #000000;
  font-size: clamp(42px, 4.4vw, 72px);
  line-height: 1.22;
  font-weight: 900;
  text-shadow: none;
}

.assessment-fv h1::after {
  content: "";
  display: block;
  width: 120px;
  height: 8px;
  margin: clamp(28px, 3vw, 44px) auto 0;
  background: #000000;
  border-radius: 999px;
}

.assessment-fv-lead,
.assessment-fv-meta {
  display: none;
}

@media (max-width: 760px) {
  .course-fv {
    min-height: 0;
    padding: 110px 18px 48px;
  }

  .course-fv-inner {
    padding-left: 0;
  }

  .course-fv h1 {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.18;
  }

  .course-fv h1::after {
    width: 78px;
    height: 6px;
  }

  .course-fv-lead,
  .course-fv-sub {
    display: none;
  }

  .course-page .course-fv,
  .usecase-page .course-fv,
  .pricing-page .course-fv,
  .comparison-page .course-fv {
    min-height: 0;
    padding: 110px 18px 48px;
  }

  .course-page .course-fv h1,
  .usecase-page .course-fv h1,
  .pricing-page .course-fv h1,
  .comparison-page .course-fv h1 {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.18;
  }

  .course-page .course-fv-lead,
  .usecase-page .course-fv-lead,
  .pricing-page .course-fv-lead,
  .comparison-page .course-fv-lead,
  .course-page .course-fv-sub,
  .usecase-page .course-fv-sub,
  .pricing-page .course-fv-sub,
  .comparison-page .course-fv-sub {
    display: none;
  }

  .assessment-fv {
    min-height: 0;
    padding: 110px 18px 48px;
  }

  .assessment-fv h1 {
    max-width: none;
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.18;
  }

  .assessment-fv h1::after {
    width: 78px;
    height: 6px;
  }

}

.assessment-page .assessment-section {
  padding: clamp(34px, 3.4vw, 52px) clamp(24px, 5vw, 72px) clamp(48px, 4.6vw, 72px);
}

.assessment-page .assessment-section .section-head {
  max-width: 840px;
  margin: 0 auto clamp(18px, 1.8vw, 28px);
  text-align: center;
}

.assessment-page .assessment-section .section-head .eyebrow {
  display: none;
}

.assessment-page .assessment-section .section-head h2 {
  margin-bottom: 8px;
  font-size: clamp(28px, 2.6vw, 42px);
  line-height: 1.12;
}

.assessment-page .assessment-section .section-head h2::after {
  width: 86px;
  height: 5px;
  margin-top: 10px;
}

.assessment-page .assessment-section .section-head p:not(.eyebrow) {
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.55;
}

.assessment-page .assessment-shell {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.36fr);
  gap: clamp(14px, 1.8vw, 24px);
}

.assessment-page .assessment-form {
  gap: 12px;
}

.assessment-page .assessment-question {
  padding: clamp(18px, 1.8vw, 26px);
}

.assessment-page .assessment-question h3 {
  gap: 10px;
  margin-bottom: 12px;
  font-size: clamp(18px, 1.45vw, 26px);
  line-height: 1.24;
}

.assessment-page .assessment-question p {
  margin-bottom: 16px;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.72;
}

.assessment-page .assessment-choices {
  gap: 10px;
}

.assessment-page .assessment-choices label {
  min-width: 112px;
  min-height: 46px;
  padding: 0 22px;
  font-size: 16px;
}

.assessment-page .assessment-result {
  top: 118px;
  gap: 16px;
  padding: clamp(18px, 1.8vw, 26px);
  border-left-width: 7px;
  box-shadow: 0 16px 42px rgba(7, 27, 58, 0.08);
}

.assessment-page .recommendation {
  gap: 10px;
}

.assessment-page .recommendation span,
.assessment-page .answer-status span,
.assessment-page .assessment-score > span {
  font-size: 14px;
}

.assessment-page .recommendation strong {
  min-width: 64px;
  padding: 4px 12px 5px;
  font-size: 17px;
}

.assessment-page .recommendation em {
  font-size: 19px;
}

.assessment-page .assessment-result h3 {
  font-size: clamp(20px, 1.9vw, 28px);
  line-height: 1.32;
}

.assessment-page .assessment-result p {
  font-size: 14px;
  line-height: 1.7;
}

.assessment-page .answer-status,
.assessment-page .assessment-score {
  gap: 7px;
}

.assessment-page .answer-status strong,
.assessment-page .assessment-score strong {
  font-size: 23px;
}

.assessment-page .assessment-progress {
  height: 8px;
}

.assessment-page .assessment-actions {
  gap: 10px;
}

.assessment-page .assessment-actions .button {
  min-height: 52px;
  padding-right: 16px;
  padding-left: 16px;
  font-size: 15px;
}

@media (max-width: 1180px) {
  .assessment-page .assessment-shell {
    grid-template-columns: 1fr;
  }

  .assessment-page .assessment-result {
    position: static;
  }
}

@media (max-width: 760px) {
  .assessment-page .assessment-section {
    padding: 32px 18px 52px;
  }

  .assessment-page .assessment-section .section-head h2 {
    font-size: clamp(24px, 7vw, 32px);
  }

  .assessment-page .assessment-section .section-head p:not(.eyebrow) {
    font-size: 14px;
  }

  .assessment-page .assessment-question {
    padding: 18px;
  }

  .assessment-page .assessment-question h3 {
    font-size: 19px;
  }

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

.course-fv,
.assessment-fv {
  min-height: 220px;
  padding: clamp(104px, 8.4vh, 124px) clamp(22px, 5vw, 72px) 42px;
}

.course-page .course-fv,
.usecase-page .course-fv,
.pricing-page .course-fv,
.comparison-page .course-fv {
  min-height: 220px;
  padding: clamp(104px, 8.4vh, 124px) clamp(22px, 5vw, 72px) 42px;
}

.course-fv h1,
.course-page .course-fv h1,
.usecase-page .course-fv h1,
.pricing-page .course-fv h1,
.comparison-page .course-fv h1,
.assessment-fv h1 {
  font-size: clamp(30px, 3.1vw, 52px);
  line-height: 1.18;
}

.course-fv h1::after,
.assessment-fv h1::after {
  width: 90px;
  height: 6px;
  margin-top: clamp(20px, 2.2vw, 30px);
}

.course-section-nav {
  gap: clamp(12px, 1.4vw, 20px);
  padding: clamp(28px, 3.2vw, 44px) clamp(20px, 4vw, 36px);
}

.course-section-nav a {
  min-height: clamp(48px, 4vw, 60px);
  padding: 0 clamp(44px, 3.6vw, 58px) 0 clamp(24px, 2.5vw, 34px);
  font-size: clamp(16px, 1.25vw, 22px);
}

.course-section-nav a::after {
  right: clamp(18px, 1.5vw, 24px);
  width: 11px;
  height: 11px;
  border-right-width: 5px;
  border-bottom-width: 5px;
}

@media (max-width: 760px) {
  .course-fv,
  .assessment-fv,
  .course-page .course-fv,
  .usecase-page .course-fv,
  .pricing-page .course-fv,
  .comparison-page .course-fv {
    min-height: 0;
    padding: 96px 18px 34px;
  }

  .course-fv h1,
  .course-page .course-fv h1,
  .usecase-page .course-fv h1,
  .pricing-page .course-fv h1,
  .comparison-page .course-fv h1,
  .assessment-fv h1 {
    font-size: clamp(26px, 8vw, 36px);
    line-height: 1.18;
  }

  .course-fv h1::after,
  .assessment-fv h1::after {
    width: 68px;
    height: 5px;
    margin-top: 18px;
  }

  .course-section-nav {
    gap: 12px;
    padding: 24px 18px;
  }

  .course-section-nav a {
    min-height: 48px;
    padding: 0 40px 0 22px;
    font-size: 16px;
  }

  .course-section-nav a::after {
    right: 18px;
    width: 10px;
    height: 10px;
    border-right-width: 4px;
    border-bottom-width: 4px;
  }
}

.assessment-fv {
  min-height: 170px;
  padding: clamp(88px, 7.4vh, 104px) clamp(22px, 5vw, 72px) 30px;
}

.assessment-fv h1 {
  font-size: clamp(28px, 2.7vw, 44px);
  line-height: 1.16;
}

.assessment-fv h1::after {
  width: 78px;
  height: 5px;
  margin-top: clamp(16px, 1.8vw, 24px);
}

@media (max-width: 760px) {
  .assessment-fv {
    padding: 88px 18px 28px;
  }

  .assessment-fv h1 {
    font-size: clamp(24px, 7.2vw, 32px);
  }

  .assessment-fv h1::after {
    width: 60px;
    height: 4px;
    margin-top: 16px;
  }
}

.course-fv,
.assessment-fv {
  min-height: 180px;
  padding: 112px clamp(22px, 5vw, 72px) 20px;
}

.course-page .course-fv,
.usecase-page .course-fv,
.pricing-page .course-fv,
.comparison-page .course-fv {
  min-height: 180px;
  padding: 112px clamp(22px, 5vw, 72px) 20px;
}

.course-fv h1,
.course-page .course-fv h1,
.usecase-page .course-fv h1,
.pricing-page .course-fv h1,
.comparison-page .course-fv h1,
.assessment-fv h1 {
  font-size: clamp(24px, 2.35vw, 40px);
  line-height: 1.14;
}

.course-fv h1::after,
.assessment-fv h1::after {
  width: 68px;
  height: 5px;
  margin-top: clamp(12px, 1.4vw, 18px);
}

.news-topic-hero {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 180px;
  padding: 112px clamp(22px, 5vw, 72px) 20px;
  background: #ffffff;
  text-align: center;
}

.news-topic-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: none;
  min-height: 0;
  padding: 0;
}

.news-topic-ribbon,
.news-topic-kicker,
.news-topic-lead,
.news-topic-visual {
  display: none;
}

.news-topic-copy h1 {
  margin: 0;
  color: #000000;
  font-size: clamp(24px, 2.35vw, 40px);
  line-height: 1.14;
  font-weight: 900;
  white-space: normal;
  text-shadow: none;
}

.news-topic-copy h1 span,
.news-topic-copy h1 strong {
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
}

.news-topic-copy h1::after {
  content: "";
  display: block;
  width: 68px;
  height: 5px;
  margin: clamp(12px, 1.4vw, 18px) auto 0;
  background: #000000;
  border-radius: 999px;
}

@media (max-width: 760px) {
  .course-fv,
  .assessment-fv,
  .course-page .course-fv,
  .usecase-page .course-fv,
  .pricing-page .course-fv,
  .comparison-page .course-fv,
  .news-topic-hero {
    min-height: 0;
    padding: 90px 18px 20px;
  }

  .course-fv h1,
  .course-page .course-fv h1,
  .usecase-page .course-fv h1,
  .pricing-page .course-fv h1,
  .comparison-page .course-fv h1,
  .assessment-fv h1,
  .news-topic-copy h1 {
    font-size: clamp(22px, 6.7vw, 30px);
    line-height: 1.16;
  }

  .course-fv h1::after,
  .assessment-fv h1::after,
  .news-topic-copy h1::after {
    width: 54px;
    height: 4px;
    margin-top: 12px;
  }
}

.course-fv,
.assessment-fv,
.news-topic-hero {
  margin-top: 112px;
  min-height: 118px;
  padding: 18px clamp(22px, 5vw, 72px) 22px;
}

.course-page .course-fv,
.usecase-page .course-fv,
.pricing-page .course-fv,
.comparison-page .course-fv {
  min-height: 118px;
  padding: 18px clamp(22px, 5vw, 72px) 22px;
}

.course-fv-inner,
.assessment-fv-inner,
.news-topic-copy {
  min-height: 0;
}

.course-fv h1,
.course-page .course-fv h1,
.usecase-page .course-fv h1,
.pricing-page .course-fv h1,
.comparison-page .course-fv h1,
.assessment-fv h1,
.news-topic-copy h1 {
  font-size: clamp(24px, 2.15vw, 36px);
  line-height: 1.18;
}

.course-fv h1::after,
.assessment-fv h1::after,
.news-topic-copy h1::after {
  width: 62px;
  height: 5px;
  margin-top: 12px;
}

.section,
.lp-section,
.comparison-section,
.course-section-nav,
#course-results,
#course-curriculum,
#course-flow,
#course-plan {
  scroll-margin-top: 128px;
}

@media (max-width: 980px) {
  .course-fv,
  .assessment-fv,
  .news-topic-hero {
    margin-top: 90px;
  }

  .section,
  .lp-section,
  .comparison-section,
  .course-section-nav,
  #course-results,
  #course-curriculum,
  #course-flow,
  #course-plan {
    scroll-margin-top: 104px;
  }
}

@media (max-width: 760px) {
  .course-fv,
  .assessment-fv,
  .news-topic-hero,
  .course-page .course-fv,
  .usecase-page .course-fv,
  .pricing-page .course-fv,
  .comparison-page .course-fv {
    min-height: 96px;
    padding: 14px 18px 18px;
  }

  .course-fv h1,
  .course-page .course-fv h1,
  .usecase-page .course-fv h1,
  .pricing-page .course-fv h1,
  .comparison-page .course-fv h1,
  .assessment-fv h1,
  .news-topic-copy h1 {
    font-size: clamp(22px, 6.2vw, 28px);
    line-height: 1.18;
  }

  .course-fv h1::after,
  .assessment-fv h1::after,
  .news-topic-copy h1::after {
    width: 50px;
    height: 4px;
    margin-top: 10px;
  }
}

.course-lineup-section {
  padding-top: 0;
}

.course-lineup-section .course-section-heading {
  padding-top: clamp(32px, 3.4vw, 52px);
  padding-bottom: clamp(18px, 2.2vw, 30px);
}

.pricing-page .pricing-showcase {
  padding: clamp(30px, 3vw, 46px) clamp(20px, 5vw, 72px) clamp(34px, 3.4vw, 52px);
}

.pricing-page .pricing-tabs {
  max-width: 920px;
  gap: clamp(8px, 0.8vw, 12px);
  margin-bottom: clamp(18px, 2vw, 28px);
}

.pricing-page .pricing-tabs button {
  min-height: clamp(62px, 5vw, 74px);
  padding: clamp(10px, 1.1vw, 14px) clamp(12px, 1.4vw, 18px);
  border-radius: 10px;
}

.pricing-page .pricing-tabs span:not(.recommend) {
  font-size: 18px;
}

.pricing-page .pricing-tabs strong {
  margin-top: 4px;
  font-size: 29px;
}

.pricing-page .recommend {
  top: -11px;
  min-width: 96px;
  padding: 4px 13px 5px;
  font-size: 16px;
}

.pricing-page .pricing-focus {
  min-height: clamp(438px, 38vw, 516px);
}

.pricing-page .pricing-detail-card {
  width: min(100%, 560px);
  border-radius: 14px;
  box-shadow: 0 22px 48px rgba(22, 29, 43, 0.13);
}

.pricing-page .pricing-detail-card header {
  min-height: 56px;
  padding: 11px 22px;
  font-size: 31px;
}

.pricing-page .popular {
  padding: 8px 16px;
  font-size: 20px;
}

.pricing-page .pricing-detail-list div {
  grid-template-columns: 160px 1fr;
  gap: 10px;
  min-height: 66px;
  padding: 10px 22px;
}

.pricing-page .pricing-detail-list dt {
  grid-template-columns: 24px 1fr;
  gap: 8px;
  font-size: 18px;
}

.pricing-page .pricing-detail-list dt svg {
  width: 24px;
  height: 24px;
}

.pricing-page .pricing-detail-list dd {
  font-size: 18px;
}

.pricing-page .pricing-actions {
  gap: 8px;
  padding: 10px 22px 14px;
}

.pricing-page .pricing-primary,
.pricing-page .pricing-secondary {
  min-height: 44px;
  border-radius: 9px;
  font-size: 17px;
}

.pricing-page .pricing-primary {
  gap: 12px;
}

.pricing-page .pricing-primary span {
  font-size: 1.25em;
}

.pricing-page .pricing-ghost {
  top: 74px;
  width: 330px;
  min-height: 330px;
  opacity: 0.42;
}

.pricing-page .pricing-ghost-left {
  left: max(18px, calc(50% - 452px));
}

.pricing-page .pricing-ghost-right {
  right: max(18px, calc(50% - 452px));
}

.pricing-page .pricing-ghost div {
  padding: 12px 16px;
  font-size: 17px;
}

.pricing-page .pricing-ghost p {
  padding: 16px;
  font-size: 16px;
}

.pricing-page .pricing-note {
  margin-top: 8px;
  font-size: 18px;
}

@media (max-width: 760px) {
  .pricing-page .pricing-showcase {
    padding: 32px 18px 42px;
  }

  .pricing-page .pricing-tabs {
    max-width: 100%;
    gap: 10px;
    margin-bottom: 20px;
  }

  .pricing-page .pricing-tabs button {
    min-height: 84px;
    padding: 16px 14px;
  }

  .pricing-page .pricing-tabs span:not(.recommend) {
    font-size: 16px;
  }

  .pricing-page .pricing-tabs strong {
    font-size: 24px;
  }

  .pricing-page .recommend {
    font-size: 14px;
  }

  .pricing-page .pricing-focus {
    min-height: 0;
  }

  .pricing-page .pricing-detail-card {
    width: 100%;
  }

  .pricing-page .pricing-detail-card header {
    padding: 14px 16px;
    font-size: 24px;
  }

  .pricing-page .popular {
    font-size: 16px;
  }

  .pricing-page .pricing-detail-list div {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 14px 16px;
  }

  .pricing-page .pricing-detail-list dt,
  .pricing-page .pricing-detail-list dd {
    font-size: 15px;
  }

  .pricing-page .pricing-actions {
    padding: 14px 16px 18px;
  }
}

.pricing-card-showcase {
  background: #ffffff;
}

.pricing-card-head {
  margin: 0 auto clamp(26px, 3vw, 44px);
  text-align: center;
}

.pricing-card-head h2 {
  margin: 0;
  color: #061f49;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.15;
  font-weight: 900;
}

.pricing-card-head h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 5px;
  margin: 18px auto 0;
  background: #2d73ef;
}

.pricing-plan-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.26fr) minmax(0, 0.92fr);
  gap: clamp(18px, 2vw, 30px);
  align-items: stretch;
  max-width: 1500px;
  margin: 0 auto;
}

.pricing-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 650px;
  padding: clamp(24px, 2vw, 34px);
  color: #152238;
  background: #ffffff;
  border: 2px solid #e1e6ef;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(15, 40, 80, 0.08);
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.pricing-plan-card:hover {
  transform: translateY(-3px);
}

.pricing-plan-card:focus-visible {
  outline: 4px solid rgba(30, 114, 222, 0.22);
  outline-offset: 4px;
}

.pricing-plan-card.is-selected {
  border-color: #1f73df;
  box-shadow: 0 24px 54px rgba(17, 91, 190, 0.18);
}

.pricing-plan-badge {
  position: absolute;
  z-index: 2;
  top: -24px;
  left: 50%;
  display: none;
  min-width: 122px;
  padding: 7px 18px 9px;
  color: #ffffff;
  background: #1f73df;
  border-radius: 999px;
  text-align: center;
  font-size: clamp(17px, 1.25vw, 24px);
  line-height: 1;
  font-weight: 900;
  transform: translateX(-50%);
}

.pricing-plan-card.is-selected .pricing-plan-badge {
  display: inline-flex;
  justify-content: center;
}

.pricing-plan-visual {
  display: grid;
  place-items: center;
  min-height: 150px;
  margin: 0 0 clamp(18px, 2vw, 28px);
  color: #1b5ea5;
}

.pricing-plan-visual svg {
  display: block;
  width: min(100%, 360px);
  height: auto;
}

.pricing-plan-visual svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing-plan-title {
  margin: 0 calc(clamp(24px, 2vw, 34px) * -1) clamp(18px, 2vw, 28px);
  padding: 0 clamp(22px, 2vw, 32px);
  text-align: center;
}

.pricing-plan-card.is-selected .pricing-plan-title {
  padding-top: 22px;
  padding-bottom: 22px;
  color: #ffffff;
  background: linear-gradient(180deg, #2b83f2 0%, #0865df 100%);
}

.pricing-plan-title h3 {
  margin: 0;
  color: inherit;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.18;
  font-weight: 900;
}

.pricing-plan-card[data-pricing-card="premium"] .pricing-plan-title h3 {
  font-size: clamp(28px, 2.45vw, 40px);
  white-space: nowrap;
}

.pricing-plan-title p {
  margin: 10px 0 0;
  color: #0c66cc;
  font-size: clamp(17px, 1.5vw, 24px);
  line-height: 1.25;
  font-weight: 900;
}

.pricing-plan-card.is-selected .pricing-plan-title p {
  color: #ffffff;
}

.pricing-plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  min-height: 74px;
  margin: 0 0 clamp(16px, 1.6vw, 24px);
  padding-bottom: clamp(16px, 1.6vw, 24px);
  color: #176fdb;
  border-bottom: 1px solid #dce4ef;
  line-height: 1;
  font-weight: 900;
}

.pricing-plan-price strong {
  font-size: clamp(44px, 4.2vw, 68px);
}

.pricing-plan-price span {
  font-size: clamp(20px, 1.8vw, 30px);
}

.pricing-plan-price--consult strong {
  font-size: clamp(38px, 3.4vw, 54px);
}

.pricing-plan-checks,
.pricing-plan-specs {
  flex: 1;
  margin: 0;
  padding: 0;
}

.pricing-plan-checks {
  display: grid;
  align-content: start;
  gap: 18px;
  list-style: none;
}

.pricing-plan-checks li {
  position: relative;
  padding-left: 34px;
  color: #53627a;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.55;
  font-weight: 700;
}

.pricing-plan-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 22px;
  height: 22px;
  border: 3px solid #1774e8;
  border-radius: 50%;
}

.pricing-plan-checks li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: calc(0.2em + 6px);
  width: 9px;
  height: 5px;
  border-left: 3px solid #1774e8;
  border-bottom: 3px solid #1774e8;
  transform: rotate(-45deg);
}

.pricing-plan-specs {
  display: grid;
  gap: 0;
}

.pricing-plan-specs div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 64px;
  padding: 12px 0;
  border-top: 1px solid #dce4ef;
}

.pricing-plan-specs dt {
  position: relative;
  margin: 0;
  padding-left: 34px;
  color: #176fdb;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.25;
  font-weight: 900;
}

.pricing-plan-specs dt::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 22px;
  height: 22px;
  border: 3px solid #1774e8;
  border-radius: 5px;
  transform: translateY(-50%);
}

.pricing-plan-specs dd {
  margin: 0;
  color: #111827;
  font-size: clamp(15px, 1.15vw, 19px);
  line-height: 1.45;
  font-weight: 900;
}

.pricing-plan-specs dd a {
  color: #176fdb;
  text-decoration: none;
}

.pricing-plan-actions {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.pricing-plan-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 66px;
  margin-top: auto;
  padding: 12px 18px;
  color: #ffffff;
  background: linear-gradient(180deg, #2b83f2 0%, #0865df 100%);
  border: 2px solid #176fdb;
  border-radius: 8px;
  text-align: center;
  font-size: clamp(19px, 1.6vw, 28px);
  line-height: 1.25;
  font-weight: 900;
}

.pricing-plan-actions .pricing-plan-cta {
  margin-top: 0;
}

.pricing-plan-cta--outline {
  color: #176fdb;
  background: #ffffff;
}

@media (max-width: 1120px) {
  .pricing-plan-grid {
    grid-template-columns: 1fr;
    max-width: 720px;
  }

  .pricing-plan-card {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .pricing-card-showcase {
    padding-right: 16px;
    padding-left: 16px;
  }

  .pricing-plan-card {
    padding: 22px 18px;
  }

  .pricing-plan-title {
    margin-right: -18px;
    margin-left: -18px;
  }

  .pricing-plan-specs div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .pricing-plan-card[data-pricing-card="premium"] .pricing-plan-title h3 {
    white-space: normal;
  }
}

.pricing-page .pricing-explain-section {
  padding: 0 clamp(20px, 5vw, 72px) clamp(54px, 5.5vw, 86px);
  background: #ffffff;
}

.pricing-page .pricing-explain-heading {
  padding: clamp(34px, 3.6vw, 56px) 0 clamp(20px, 2.4vw, 34px);
}

.pricing-explain-list {
  display: grid;
  gap: clamp(22px, 2.4vw, 36px);
  width: min(100%, 1380px);
  margin: 0 auto;
}

.pricing-explain-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.42fr) minmax(0, 1fr);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #d8e1ec;
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(7, 27, 58, 0.08);
}

.pricing-explain-card.is-featured {
  border-color: #d8e1ec;
  box-shadow: 0 18px 50px rgba(7, 27, 58, 0.08);
}

.pricing-explain-summary {
  display: grid;
  align-content: start;
  gap: clamp(14px, 1.3vw, 20px);
  padding: clamp(26px, 3.1vw, 44px);
  background: #f6f8fb;
  border-right: 1px solid #d8e1ec;
}

.pricing-explain-card.is-featured .pricing-explain-summary {
  color: #ffffff;
  background: linear-gradient(135deg, #0b4fb8 0%, #2e82ff 100%);
  border-right-color: rgba(255, 255, 255, 0.28);
}

.pricing-explain-kicker {
  width: fit-content;
  margin: 0;
  padding: 6px 12px;
  color: #2e82ff;
  background: #ffffff;
  border: 1px solid #b8cff5;
  border-radius: 999px;
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
}

.pricing-explain-card.is-featured .pricing-explain-kicker {
  color: #0b4fb8;
  border-color: transparent;
}

.pricing-explain-summary h3 {
  margin: 0;
  color: #111827;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 900;
}

.pricing-explain-card.is-featured .pricing-explain-summary h3 {
  color: #ffffff;
}

.pricing-explain-lead {
  margin: 0;
  color: #34415a;
  font-size: 17px;
  line-height: 1.75;
  font-weight: 800;
}

.pricing-explain-card.is-featured .pricing-explain-lead {
  color: rgba(255, 255, 255, 0.92);
}

.pricing-explain-price {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 10px 14px;
  padding-top: clamp(16px, 1.8vw, 26px);
  border-top: 1px solid #c9d4e3;
}

.pricing-explain-card.is-featured .pricing-explain-price {
  border-top-color: rgba(255, 255, 255, 0.34);
}

.pricing-explain-price span {
  align-self: center;
  padding: 6px 10px;
  color: #2e82ff;
  background: #ffffff;
  border: 2px solid #2e82ff;
  border-radius: 4px;
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
}

.pricing-explain-card.is-featured .pricing-explain-price span {
  color: #0b4fb8;
  border-color: #ffffff;
}

.pricing-explain-price strong {
  color: #05070d;
  font-size: 56px;
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: 0;
}

.pricing-explain-card.is-featured .pricing-explain-price strong {
  color: #ffffff;
}

.pricing-explain-price small {
  font-size: 0.48em;
}

.pricing-explain-price em {
  align-self: center;
  color: #111827;
  font-size: 16px;
  line-height: 1;
  font-style: normal;
  font-weight: 900;
}

.pricing-explain-card.is-featured .pricing-explain-price em {
  color: rgba(255, 255, 255, 0.9);
}

.pricing-explain-aid {
  margin: 0;
  padding: clamp(14px, 1.4vw, 20px);
  color: #253249;
  background: #ffffff;
  border: 1px solid #d9e2ef;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 800;
}

.pricing-explain-card.is-featured .pricing-explain-aid {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
}

.pricing-explain-body {
  display: grid;
  align-content: space-between;
  min-width: 0;
  background: #ffffff;
}

.pricing-explain-body dl {
  margin: 0;
}

.pricing-explain-body dl div {
  display: grid;
  grid-template-columns: minmax(92px, 0.18fr) minmax(0, 1fr);
  gap: clamp(16px, 1.8vw, 28px);
  align-items: start;
  padding: clamp(18px, 2.1vw, 30px) clamp(24px, 3vw, 44px);
  border-bottom: 1px solid #e1e7ef;
}

.pricing-explain-body dt {
  margin: 0;
  color: #2e82ff;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 900;
}

.pricing-explain-body dd {
  margin: 0;
  color: #1d2738;
  font-size: 17px;
  line-height: 1.75;
  font-weight: 800;
}

.pricing-explain-actions {
  display: flex;
  justify-content: flex-end;
  padding: clamp(18px, 2vw, 28px) clamp(24px, 3vw, 44px);
}

.pricing-explain-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 clamp(22px, 2.2vw, 34px);
  color: #ffffff;
  background: #2e82ff;
  border-radius: 999px;
  font-size: 16px;
  line-height: 1;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(46, 130, 255, 0.2);
}

@media (max-width: 980px) {
  .pricing-explain-card {
    grid-template-columns: 1fr;
  }

  .pricing-explain-summary {
    border-right: 0;
    border-bottom: 1px solid #d8e1ec;
  }

  .pricing-explain-card.is-featured .pricing-explain-summary {
    border-bottom-color: rgba(255, 255, 255, 0.26);
  }
}

@media (max-width: 760px) {
  .pricing-page .pricing-explain-section {
    padding: 0 18px 48px;
  }

  .pricing-page .pricing-explain-heading {
    padding-top: 30px;
  }

  .pricing-explain-summary {
    padding: 22px 18px;
  }

  .pricing-explain-kicker,
  .pricing-explain-aid {
    font-size: 14px;
  }

  .pricing-explain-summary h3 {
    font-size: 30px;
  }

  .pricing-explain-lead,
  .pricing-explain-body dt,
  .pricing-explain-body dd {
    font-size: 15px;
  }

  .pricing-explain-price strong {
    font-size: 42px;
  }

  .pricing-explain-body dl div {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px;
  }

  .pricing-explain-actions {
    justify-content: stretch;
    padding: 18px;
  }

  .pricing-explain-actions a {
    width: 100%;
  }
}

.training-plan-comparison {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.training-plan-card {
  --plan-accent: #286cec;
  --plan-soft: #eef5ff;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 26px;
  min-width: 0;
  padding: 24px 24px 20px;
  background: #ffffff;
  border: 1px solid #d8e1ec;
  border-top: 4px solid var(--plan-accent);
  border-radius: 6px;
  box-shadow: 0 18px 46px rgba(7, 27, 58, 0.08);
}

.training-plan-card--standard {
  --plan-accent: #075fcf;
  --plan-soft: #eaf4ff;
}

.training-plan-card__recommend {
  position: absolute;
  top: -18px;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 18px;
  color: #ffffff;
  background: var(--plan-accent);
  border: 3px solid #ffffff;
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  transform: translateX(-50%);
}

.training-plan-card__header {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.training-plan-card__name {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.training-plan-card__book {
  position: relative;
  display: block;
  width: 22px;
  height: 28px;
  flex: 0 0 22px;
  background: #2f78e8;
  border: 2px solid #1959ad;
  border-radius: 2px 5px 5px 2px;
}

.training-plan-card--standard .training-plan-card__book {
  background: #4f98e8;
  border-color: #2565a8;
}

.training-plan-card__book::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5px;
  width: 2px;
  content: "";
  background: rgba(255, 255, 255, 0.6);
}

.training-plan-card__name h3 {
  margin: 0;
  color: #131d2d;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 900;
}

.training-plan-card__price {
  flex: 0 0 auto;
  margin: 0;
  color: #111827;
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}

.training-plan-card--standard .training-plan-card__price {
  color: var(--plan-accent);
}

.training-plan-card__price small {
  font-size: 0.55em;
}

.training-plan-card__level {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  gap: 13px;
  margin-top: 16px;
}

.training-plan-card__level span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  flex: 0 0 auto;
  color: #ffffff;
  background: var(--plan-accent);
  border-radius: 999px;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
}

.training-plan-card__level p {
  min-width: 0;
  margin: 0;
  color: #58677b;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 800;
}

.training-plan-card__content {
  margin-top: 20px;
}

.training-plan-card__content h4,
.training-plan-card__outcomes h4 {
  margin: 0 0 11px;
  color: #5b6b7f;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 900;
}

.training-plan-card__learn,
.training-plan-card__outcomes ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.training-plan-card__learn li {
  position: relative;
  padding-left: 29px;
  color: #4e5d70;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 800;
}

.training-plan-card__learn li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: #20b85a;
  content: "✓";
  background: #ffffff;
  border: 2px solid #20b85a;
  border-radius: 50%;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
}

.training-plan-card__outcomes {
  margin-top: 20px;
}

.training-plan-card__outcomes ul {
  padding: 14px 16px;
  background: var(--plan-soft);
}

.training-plan-card__outcomes li {
  position: relative;
  padding-left: 25px;
  color: #243247;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 800;
}

.training-plan-card__outcomes li::before {
  position: absolute;
  top: -1px;
  left: 0;
  color: var(--plan-accent);
  content: "✦";
  font-size: 20px;
  line-height: 1;
}

.training-plan-card__goal {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 18px;
  color: #111827;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 900;
}

.training-plan-card__goal strong {
  color: var(--plan-accent);
}

.training-plan-card__schedule {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  gap: 8px;
  padding-top: 15px;
  margin: 17px 0 0;
  color: #607085;
  border-top: 1px solid #dfe5ed;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 800;
}

.training-plan-card__schedule span {
  color: #607085;
  font-size: 23px;
  line-height: 1;
}

.training-plan-eligibility {
  width: min(100%, 1180px);
  padding: 24px 0 0;
  margin: 26px auto 0;
  color: #243247;
  border-top: 1px solid #d8e1ec;
}

.training-plan-eligibility h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: #18263a;
  font-size: 19px;
  line-height: 1.4;
  font-weight: 900;
}

.training-plan-eligibility h3 svg {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  fill: none;
  stroke: #1672e9;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.training-plan-eligibility__body {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.training-plan-eligibility__body p {
  margin: 0;
  color: #34415a;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 800;
}

.training-plan-eligibility__note {
  margin: 14px 0 0;
  color: #68768a;
  font-size: 13px;
  line-height: 1.7;
  font-weight: 800;
}

@media (max-width: 1120px) {
  .training-plan-card {
    column-gap: 22px;
    padding: 24px 22px 20px;
  }

  .training-plan-card__header {
    align-items: center;
    flex-direction: row;
  }

  .training-plan-card__name h3,
  .training-plan-card__price {
    font-size: 27px;
  }

  .training-plan-card__level {
    align-items: center;
    flex-direction: row;
  }
}

@media (max-width: 860px) {
  .training-plan-card {
    grid-template-columns: 1fr;
  }

  .training-plan-card__header,
  .training-plan-card__level,
  .training-plan-card__goal,
  .training-plan-card__schedule {
    grid-column: 1;
  }
}

@media (max-width: 560px) {
  .training-plan-card {
    padding: 26px 18px 22px;
  }

  .training-plan-card__header,
  .training-plan-card__level {
    align-items: flex-start;
    flex-direction: column;
  }

  .training-plan-card__name h3,
  .training-plan-card__price {
    font-size: 27px;
  }

  .training-plan-card__level p,
  .training-plan-card__content h4,
  .training-plan-card__outcomes h4 {
    font-size: 15px;
  }

  .training-plan-card__learn li,
  .training-plan-card__outcomes li {
    font-size: 14px;
  }

  .training-plan-card__outcomes ul {
    padding: 16px 14px;
  }

  .training-plan-card__goal {
    font-size: 17px;
  }

  .training-plan-card__schedule {
    align-items: flex-start;
    font-size: 13px;
  }

  .training-plan-eligibility {
    padding-top: 24px;
    margin-top: 26px;
  }

  .training-plan-eligibility h3 {
    align-items: flex-start;
    font-size: 19px;
  }

  .training-plan-eligibility__body {
    margin-top: 18px;
  }

  .training-plan-eligibility__body p {
    font-size: 14px;
  }

  .training-plan-eligibility__note {
    font-size: 13px;
  }
}

.courses-mirror-page .mirror-site-header {
  position: sticky;
  top: 0;
  min-height: 80px;
  padding: 0 24px;
  background: #ffffff;
  box-shadow: 0 0 20px rgba(51, 51, 51, 0.16);
  backdrop-filter: none;
}

.courses-mirror-page .mirror-header-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: auto;
  color: #182f3d;
  text-decoration: none;
  white-space: nowrap;
}

.courses-mirror-page .mirror-header-logo-icon {
  display: block;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
}

.courses-mirror-page .mirror-header-logo-text {
  display: block;
  font-family: Arial, "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.courses-mirror-page .mirror-header-menu-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  margin: 0 32px 0 auto;
}

.courses-mirror-page .mirror-header-contact {
  color: #01294d;
  font-size: 12px;
  font-weight: 300;
  line-height: 15.6px;
  text-decoration: underline;
  white-space: nowrap;
}

.courses-mirror-page .mirror-header-contact:hover {
  text-decoration: none;
}

.courses-mirror-page .mirror-header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  color: #01294d;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.courses-mirror-page .mirror-header-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
}

.courses-mirror-page .mirror-header-nav a:hover,
.courses-mirror-page .mirror-header-nav a.is-active {
  color: #3980cb;
}

.courses-mirror-page .header-menu {
  display: none;
  color: #3980cb;
}

.courses-mirror-page .course-page .course-fv.course-fv--mirror-home,
.courses-mirror-page .course-fv--mirror-home {
  display: block;
  min-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #ffffff;
  text-align: left;
  isolation: auto;
  place-items: initial;
}

.courses-mirror-page .course-fv--mirror-home::before,
.courses-mirror-page .course-fv--mirror-home::after {
  content: none;
  display: none;
}

.courses-mirror-page .course-page .course-fv.course-fv--mirror-home .course-fv-inner,
.courses-mirror-page .course-fv--mirror-home .course-fv-inner {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.courses-mirror-page .course-fv-mirror-image {
  display: block;
  width: 100%;
  height: auto;
}

.courses-mirror-page .course-section-nav {
  background: #eeeeee;
}

.course-results-section {
  padding: 54px 5vw 72px;
  background: #ffffff;
}

.course-results-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 34px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 46px 52px 28px;
  color: #06264f;
  background:
    linear-gradient(135deg, rgba(21, 91, 160, 0.08) 0 1px, transparent 1px) 0 170px / 210px 150px,
    #ffffff;
  border: 1px solid #dfe8f4;
  box-shadow: 0 22px 52px rgba(16, 52, 91, 0.08);
  overflow: hidden;
}

.course-results-head {
  position: relative;
  z-index: 1;
  max-width: 62%;
}

.course-results-head p {
  margin: 0 0 18px;
  color: #000000;
  font-size: 28px;
  line-height: 1.3;
  font-weight: 900;
}

.course-results-head h2 {
  margin: 0;
  color: #062b5b;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 900;
}

.course-results-hero {
  position: absolute;
  top: 38px;
  right: 34px;
  width: min(42%, 520px);
  color: #0d5188;
  pointer-events: none;
}

.course-results-hero svg {
  display: block;
  width: 100%;
  height: auto;
}

.result-line-art {
  fill: none;
  stroke: currentColor;
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.result-labels {
  fill: #062b5b;
  font-size: 22px;
  font-weight: 900;
}

.course-results-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  margin-top: 120px;
}

.course-results-card {
  position: relative;
  min-height: 240px;
  padding: 4px 0 0;
}

.course-results-card--companies {
  padding-left: 36px;
  border-left: 2px solid #d8dde6;
}

.course-results-copy h3 {
  margin: 0 0 16px;
  color: #0d5188;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 900;
}

.course-results-copy h3::after {
  content: "";
  display: block;
  width: 30px;
  height: 4px;
  margin-top: 14px;
  background: #d80e2f;
}

.course-results-number {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 0;
  color: #0d5b99;
  line-height: 1;
}

.course-results-number strong {
  font-size: 58px;
  font-weight: 900;
  letter-spacing: 0;
}

.course-results-number span {
  font-size: 24px;
  font-weight: 900;
}

.course-results-number sup {
  margin-left: 3px;
  color: #233955;
  font-size: 13px;
  font-weight: 800;
}

.course-results-card--share {
  display: grid;
  grid-template-columns: 190px 178px;
  gap: 22px;
  align-items: end;
}

.course-results-donut {
  position: relative;
  width: 164px;
  aspect-ratio: 1;
  margin: 0 auto 8px;
  background: conic-gradient(#0865ad 0 85.8%, #e3e6ea 85.8% 100%);
  border-radius: 50%;
}

.course-results-donut::after {
  content: "";
  position: absolute;
  inset: 42px;
  background: #ffffff;
  border-radius: inherit;
}

.course-results-terminal {
  grid-column: 1 / -1;
  display: grid;
  gap: 4px;
  align-self: end;
  min-height: 92px;
  padding: 14px 16px;
  color: #71f0aa;
  background: #0b1119;
  border: 5px solid #0d5188;
  border-radius: 8px;
  box-shadow: 0 14px 24px rgba(9, 36, 65, 0.12);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  line-height: 1.35;
}

.course-results-card--companies {
  display: grid;
  grid-template-columns: 240px 152px 84px;
  gap: 14px;
  align-items: end;
}

.course-results-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 158px;
  padding-bottom: 10px;
}

.course-results-bars i {
  display: block;
  width: 24px;
  background: #dfe3e8;
  border-radius: 4px 4px 0 0;
}

.course-results-bars i:nth-child(1) { height: 50px; }
.course-results-bars i:nth-child(2) { height: 74px; }
.course-results-bars i:nth-child(3) { height: 100px; }
.course-results-bars i:nth-child(4) { height: 128px; }
.course-results-bars i:nth-child(5) {
  height: 152px;
  background: linear-gradient(180deg, #0f76bd, #0061a7);
}

.course-results-building {
  position: relative;
  height: 166px;
}

.course-results-building span {
  position: absolute;
  bottom: 0;
  display: block;
  border: 6px solid #0d5188;
  border-bottom-width: 8px;
  border-radius: 6px 6px 0 0;
}

.course-results-building span::before {
  content: "";
  position: absolute;
  inset: 15px 16px 36px;
  background:
    repeating-linear-gradient(90deg, #0d5188 0 7px, transparent 7px 24px),
    repeating-linear-gradient(180deg, transparent 0 24px, #0d5188 24px 31px, transparent 31px 47px);
  opacity: 0.9;
}

.course-results-building span:first-child {
  left: 0;
  width: 42px;
  height: 100px;
}

.course-results-building span:last-child {
  right: 0;
  width: 52px;
  height: 146px;
}

.course-results-clients {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  padding-top: 10px;
}

.course-results-clients p {
  margin: 0;
  color: #062b5b;
  font-size: 22px;
  font-weight: 900;
}

.course-results-clients ul {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.course-results-clients li {
  display: grid;
  place-items: center;
  min-height: 78px;
  background: #f8fbff;
  border: 1px solid #dce9f7;
}

.course-results-clients img {
  display: block;
  max-width: 118px;
  max-height: 38px;
}

.course-results-notes {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: flex-end;
  justify-content: space-between;
  color: #000000;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
}

.course-results-notes p {
  margin: 0;
}

.course-results-complete {
  margin-left: auto;
  font-size: 22px;
  font-weight: 900;
}

.course-results-complete span {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 8px;
  border: 3px solid #0d5188;
  vertical-align: -3px;
}

@media (max-width: 1160px) {
  .course-results-panel {
    padding: 38px 32px 28px;
  }

  .course-results-head {
    max-width: none;
  }

  .course-results-hero {
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 620px);
    margin: 0 auto;
  }

  .course-results-grid {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .course-results-card--companies {
    padding-left: 0;
    padding-top: 30px;
    border-left: 0;
    border-top: 2px solid #d8dde6;
  }
}

@media (max-width: 860px) {
  .course-results-section {
    padding: 34px 18px 52px;
  }

  .course-results-panel {
    padding: 30px 20px 24px;
  }

  .course-results-head p {
    font-size: 20px;
  }

  .course-results-head h2 {
    font-size: 34px;
  }

  .course-results-card--share,
  .course-results-card--companies {
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: 0;
  }

  .course-results-donut {
    width: 178px;
    margin: 0;
  }

  .course-results-terminal {
    max-width: 100%;
  }

  .course-results-bars {
    height: 150px;
  }

  .course-results-building {
    display: none;
  }

  .course-results-clients ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .course-results-head p {
    font-size: 16px;
  }

  .course-results-head h2 {
    font-size: 28px;
  }

  .course-results-copy h3 {
    font-size: 22px;
  }

  .course-results-number strong {
    font-size: 44px;
  }

  .course-results-number span {
    font-size: 20px;
  }

  .course-results-clients ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .course-results-notes {
    display: grid;
    justify-content: start;
  }

.course-results-complete {
  margin-left: 0;
  font-size: 18px;
  }
}

@media (max-width: 980px) {
  .usecase-results-section {
    grid-template-columns: 1fr;
  }

  .usecase-results-copy {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .usecase-results-section {
    padding: 34px 18px 46px;
  }

  .usecase-results-copy h2 {
    font-size: 26px;
  }
}

@media (max-width: 1200px) {
  .courses-mirror-page .mirror-header-menu-wrapper,
  .courses-mirror-page .mirror-header-nav {
    display: none;
  }

  .courses-mirror-page .header-menu {
    position: relative;
    display: flex;
    width: 40px;
    height: 28px;
    margin-right: 24px;
    gap: 11px;
  }

  .courses-mirror-page .header-menu span {
    width: 40px;
    height: 2px;
  }

  .courses-mirror-page .menu-toggle:checked ~ .site-header .header-menu span:nth-child(1) {
    transform: translateY(13px) rotate(45deg);
  }

  .courses-mirror-page .menu-toggle:checked ~ .site-header .header-menu span:nth-child(3) {
    transform: translateY(-13px) rotate(-45deg);
  }

  .courses-mirror-page .side-menu.side-menu--mirror {
    top: 80px;
    height: calc(100svh - 80px);
  }
}

@media (min-width: 1201px) and (max-width: 1400px) {
  .courses-mirror-page .mirror-header-menu-wrapper {
    margin-right: 24px;
  }

  .courses-mirror-page .mirror-header-nav {
    gap: 10px;
    font-size: 12px;
  }
}

@media (max-width: 1280px) {
  .courses-mirror-page .mirror-header-logo-icon {
    width: 34px;
    height: 34px;
  }

  .courses-mirror-page .mirror-header-logo-text {
    font-size: 23px;
  }
}

@media (max-width: 767px) {
  .courses-mirror-page .mirror-site-header {
    min-height: 54px;
    padding: 0 16px;
  }

  .courses-mirror-page .mirror-header-logo {
    gap: 6px;
  }

  .courses-mirror-page .mirror-header-logo-icon {
    width: 31px;
    height: 31px;
  }

  .courses-mirror-page .mirror-header-logo-text {
    font-size: 21px;
  }

  .courses-mirror-page .header-menu {
    width: 32px;
    height: 22px;
    margin-right: 0;
    gap: 8px;
  }

  .courses-mirror-page .header-menu span {
    width: 32px;
  }

  .courses-mirror-page .menu-toggle:checked ~ .site-header .header-menu span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }

  .courses-mirror-page .menu-toggle:checked ~ .site-header .header-menu span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }

  .courses-mirror-page .side-menu.side-menu--mirror {
    top: 54px;
    height: calc(100svh - 54px);
  }
}

.pricing-page-intro {
  padding: calc(112px + clamp(30px, 3.4vw, 52px)) clamp(24px, 5vw, 80px) clamp(36px, 3.8vw, 58px);
  color: #071b3a;
  background:
    radial-gradient(circle at 14% 8%, rgba(46, 130, 255, 0.11), transparent 29%),
    radial-gradient(circle at 88% 24%, rgba(114, 199, 255, 0.13), transparent 25%),
    linear-gradient(180deg, #ffffff 0%, #f4f8fe 100%);
  border-bottom: 1px solid #d8e7fb;
}

.pricing-page-intro__inner {
  width: min(100%, 1540px);
  margin: 0 auto;
  text-align: center;
}

.pricing-page-intro__kicker {
  margin: 0 0 13px;
  color: #2e82ff;
  font-size: clamp(13px, 0.95vw, 16px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.pricing-page-intro h1 {
  max-width: 1320px;
  margin: 0 auto;
  color: #071b3a;
  font-size: clamp(30px, 3.1vw, 50px);
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.pricing-page-intro__line {
  display: block;
  width: 68px;
  height: 4px;
  margin: clamp(17px, 1.6vw, 24px) auto;
  background: linear-gradient(90deg, #2e82ff, #72c7ff);
  border-radius: 999px;
}

.pricing-page-intro__lead {
  max-width: 1080px;
  margin: 0 auto;
  color: #34415a;
  font-size: clamp(15px, 1.18vw, 19px);
  line-height: 1.8;
  font-weight: 700;
  text-wrap: balance;
}

.courses-mirror-page .unified-page-intro {
  padding-top: clamp(30px, 3.4vw, 52px);
}

.pricing-overview-section {
  padding: clamp(48px, 4vw, 66px) clamp(24px, 5vw, 78px) clamp(54px, 5vw, 76px);
  background:
    radial-gradient(circle at 50% 0%, rgba(46, 130, 255, 0.055), transparent 34%),
    #ffffff;
}

.pricing-overview-heading {
  margin-bottom: clamp(38px, 3.5vw, 54px);
}

.pricing-overview-heading > p:first-child {
  color: #2e82ff;
}

.pricing-overview-heading > span {
  background: linear-gradient(90deg, #2e82ff 0 62%, #0b93a1 62% 82%, #d9572b 82%);
}

.pricing-overview-heading__mobile,
.pricing-overview-tax {
  display: none;
}

.pricing-overview-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(370px, 1.2fr) minmax(220px, 0.82fr);
  gap: clamp(16px, 1.4vw, 22px);
  align-items: stretch;
  width: min(100%, 1140px);
  margin: 0 auto;
}

.pricing-overview-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 570px;
  flex-direction: column;
  overflow: visible;
  padding: clamp(20px, 1.7vw, 26px);
  color: #071b3a;
  background: rgba(255, 255, 255, 0.98);
  border: 2px solid #e0e8f2;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(14, 59, 118, 0.08);
}

.pricing-overview-illustration {
  display: block;
  width: 100%;
  height: 125px;
  margin: 0 auto 8px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.pricing-overview-card--basic .pricing-overview-illustration {
  max-width: 345px;
}

.pricing-overview-card--premium .pricing-overview-illustration {
  max-width: 400px;
}

.pricing-overview-card > h3 {
  margin: 6px 0 3px;
  color: #071731;
  font-size: clamp(24px, 1.7vw, 30px);
  line-height: 1.2;
  font-weight: 900;
  text-align: center;
  letter-spacing: -0.025em;
}

.pricing-overview-subtitle {
  margin: 0;
  color: #1475ed;
  font-size: clamp(14px, 0.95vw, 16px);
  line-height: 1.45;
  font-weight: 900;
  text-align: center;
}

.pricing-overview-price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: 16px;
  padding: 16px 0 14px;
  color: #1475ed;
  border-top: 1px solid #d8e2ee;
  border-bottom: 1px solid #d8e2ee;
}

.pricing-overview-price strong {
  font-size: clamp(40px, 3vw, 52px);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.pricing-overview-price strong small {
  font-size: 0.55em;
  letter-spacing: -0.03em;
}

.pricing-overview-price > span {
  margin: 0 0 2px 5px;
  font-size: clamp(16px, 1.15vw, 20px);
  line-height: 1;
  font-weight: 900;
}

.pricing-overview-price--consult strong {
  font-size: clamp(32px, 2.4vw, 42px);
  letter-spacing: -0.02em;
}

.pricing-overview-checks {
  display: grid;
  flex: 0 0 auto;
  grid-auto-rows: max-content;
  align-content: start;
  gap: 10px;
  margin: 17px 0;
  padding: 0;
  color: #344762;
  list-style: none;
}

.pricing-overview-checks li {
  position: relative;
  padding-left: 31px;
  font-size: clamp(13px, 0.88vw, 15px);
  line-height: 1.55;
  font-weight: 700;
}

.pricing-overview-checks li::before {
  content: "✓";
  position: absolute;
  top: 0.04em;
  left: 0;
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  color: #1d78eb;
  border: 2px solid #2e82ff;
  border-radius: 50%;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
}

.pricing-overview-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  margin-top: auto;
  padding: 0 24px;
  color: #ffffff;
  background: linear-gradient(135deg, #2e82ff, #1268df);
  border: 2px solid #2e82ff;
  border-radius: 10px;
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.2;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 12px 24px rgba(46, 130, 255, 0.16);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.pricing-overview-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(46, 130, 255, 0.24);
}

.pricing-overview-cta:focus-visible {
  outline: 4px solid rgba(46, 130, 255, 0.25);
  outline-offset: 3px;
}

.pricing-overview-cta--outline {
  color: #1672e9;
  background: #ffffff;
  border-color: #2e82ff;
  box-shadow: none;
}

.pricing-overview-card--standard {
  min-height: 610px;
  padding: 0;
  border: 3px solid #2e82ff;
  transform: translateY(-13px);
  box-shadow: 0 28px 64px rgba(46, 130, 255, 0.17);
}

.pricing-overview-recommend {
  position: absolute;
  z-index: 2;
  top: -19px;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 36px;
  padding: 0 17px;
  color: #ffffff;
  background: linear-gradient(135deg, #2e82ff, #1268df);
  border: 4px solid #ffffff;
  border-radius: 999px;
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
  transform: translateX(-50%);
}

.pricing-overview-standard-visual {
  padding: 23px 24px 0;
}

.pricing-overview-standard-visual .pricing-overview-illustration {
  height: 105px;
  margin-bottom: 0;
}

.pricing-overview-standard-head {
  padding: 12px 20px 13px;
  color: #ffffff;
  background: linear-gradient(135deg, #2e82ff, #1268df);
  text-align: center;
}

.pricing-overview-standard-head h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(28px, 2.1vw, 36px);
  line-height: 1.15;
  font-weight: 900;
}

.pricing-overview-standard-head p {
  margin: 5px 0 0;
  color: #ffffff;
  font-size: clamp(13px, 0.9vw, 15px);
  line-height: 1.35;
  font-weight: 800;
}

.pricing-overview-standard-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 0 clamp(19px, 1.7vw, 27px) 18px;
}

.pricing-overview-card--standard .pricing-overview-price {
  margin: 0;
  padding: 15px 0 13px;
  border-top: 0;
}

.pricing-overview-specs {
  margin: 0;
}

.pricing-overview-specs > div {
  display: grid;
  grid-template-columns: minmax(135px, 0.82fr) minmax(0, 1.18fr);
  gap: 11px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #dce5ef;
}

.pricing-overview-specs dt {
  display: flex;
  gap: 9px;
  align-items: center;
  margin: 0;
  color: #1672e9;
  font-size: clamp(12px, 0.78vw, 14px);
  line-height: 1.35;
  font-weight: 900;
}

.pricing-overview-specs dt svg {
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing-overview-specs dd {
  margin: 0;
  color: #17243a;
  font-size: clamp(12px, 0.76vw, 14px);
  line-height: 1.5;
  font-weight: 800;
}

.pricing-overview-specs dd a {
  display: inline-block;
  margin-top: 4px;
  color: #1475ed;
  font-weight: 900;
}

.pricing-overview-standard-actions {
  display: grid;
  gap: 9px;
  margin-top: auto;
  padding-top: 11px;
}

.pricing-overview-standard-actions .pricing-overview-cta {
  margin-top: 0;
}

@media (max-width: 980px) {
  .pricing-page-intro {
    padding-top: calc(54px + clamp(30px, 6vw, 48px));
  }

  .pricing-overview-section {
    padding-top: 58px;
  }

  .pricing-overview-grid {
    grid-template-columns: 1fr;
    max-width: 700px;
    gap: 34px;
  }

  .pricing-overview-card,
  .pricing-overview-card--standard {
    min-height: 0;
    transform: none;
  }

  .pricing-overview-card--basic,
  .pricing-overview-card--premium {
    padding: 34px clamp(24px, 7vw, 54px);
  }

  .pricing-overview-card--basic .pricing-overview-illustration,
  .pricing-overview-card--premium .pricing-overview-illustration {
    height: 210px;
  }

  .pricing-overview-specs > div {
    grid-template-columns: minmax(190px, 0.8fr) minmax(0, 1.2fr);
  }
}

@media (max-width: 760px) {
  .pricing-page-intro {
    padding-right: 18px;
    padding-bottom: 36px;
    padding-left: 18px;
  }

  .pricing-page-intro__kicker {
    margin-bottom: 14px;
  }

  .pricing-page-intro h1 {
    font-size: clamp(27px, 7.8vw, 34px);
    line-height: 1.35;
    letter-spacing: -0.025em;
  }

  .pricing-page-intro__line {
    width: 58px;
    height: 4px;
    margin: 18px auto;
  }

  .pricing-page-intro__lead {
    font-size: 15px;
    line-height: 1.85;
  }

  .pricing-overview-section {
    padding: 32px clamp(18px, 7.5vw, 48px) 44px;
  }

  .pricing-overview-section .pricing-overview-heading {
    max-width: 580px;
    margin-bottom: 24px;
  }

  .pricing-overview-section .pricing-overview-heading > p:first-child {
    display: none;
  }

  .pricing-overview-section .pricing-overview-heading h2 {
    font-size: clamp(22px, 5.8vw, 28px);
    line-height: 1.45;
  }

  .pricing-overview-section .pricing-overview-heading > span {
    display: none;
  }

  .pricing-overview-section .pricing-overview-heading > p:last-child {
    margin-top: 10px;
    color: #71829a;
    font-size: clamp(13px, 3.5vw, 16px);
    line-height: 1.55;
  }

  .pricing-overview-heading__desktop {
    display: none;
  }

  .pricing-overview-heading__mobile {
    display: inline;
  }

  .pricing-overview-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    width: min(100%, 580px);
    max-width: none;
  }

  .pricing-overview-card,
  .pricing-overview-card--basic,
  .pricing-overview-card--premium {
    padding: 16px;
    border-width: 1px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(14, 59, 118, 0.08);
  }

  .pricing-overview-card--basic,
  .pricing-overview-card--premium {
    display: grid;
    grid-template-columns: minmax(110px, 0.82fr) minmax(0, 1.18fr);
    column-gap: 14px;
    align-items: center;
  }

  .pricing-overview-card--standard {
    display: grid;
    grid-template-columns: minmax(115px, 0.88fr) minmax(0, 1.12fr);
    column-gap: 14px;
    padding: 16px;
    border-width: 2px;
    border-radius: 14px;
  }

  .pricing-overview-card--basic .pricing-overview-illustration,
  .pricing-overview-card--premium .pricing-overview-illustration {
    display: block;
    grid-column: 1;
    grid-row: 1 / 4;
    width: 100%;
    height: 110px;
    margin: 0;
  }

  .pricing-overview-card--premium .pricing-overview-illustration {
    height: 105px;
  }

  .pricing-overview-card--basic > h3,
  .pricing-overview-card--premium > h3 {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    margin: 0;
    font-size: clamp(20px, 5.2vw, 25px);
    line-height: 1.15;
    text-align: left;
  }

  .pricing-overview-card--basic > .pricing-overview-subtitle,
  .pricing-overview-card--premium > .pricing-overview-subtitle {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    margin-top: 4px;
    font-size: clamp(11px, 3.1vw, 14px);
    text-align: left;
  }

  .pricing-overview-card--basic > .pricing-overview-price,
  .pricing-overview-card--premium > .pricing-overview-price {
    grid-column: 2;
    grid-row: 3;
    justify-content: flex-start;
    margin: 10px 0 0;
    padding: 0;
    border: 0;
  }

  .pricing-overview-price strong {
    font-size: clamp(34px, 8.4vw, 42px);
  }

  .pricing-overview-price > span {
    margin-left: 4px;
    font-size: clamp(13px, 3.4vw, 17px);
  }

  .pricing-overview-price--consult strong {
    font-size: clamp(29px, 7.4vw, 37px);
  }

  .pricing-overview-tax {
    display: inline-block;
    align-self: flex-end;
    margin: 0 0 2px 6px;
    color: #6d7f97;
    font-size: clamp(10px, 2.7vw, 13px);
    line-height: 1;
    font-weight: 700;
    white-space: nowrap;
  }

  .pricing-overview-checks {
    grid-column: 1 / -1;
    grid-row: 4;
    grid-template-columns: minmax(0, 1fr);
    gap: 7px;
    margin: 14px 0 12px;
    padding-top: 13px;
    border-top: 1px solid #d8e2ee;
  }

  .pricing-overview-checks li {
    padding-left: 25px;
    font-size: clamp(12px, 3.25vw, 15px);
    line-height: 1.45;
  }

  .pricing-overview-checks li::before {
    width: 17px;
    height: 17px;
    border-width: 1px;
    font-size: 10px;
  }

  .pricing-overview-card--basic > .pricing-overview-cta,
  .pricing-overview-card--premium > .pricing-overview-cta {
    grid-column: 1 / -1;
    grid-row: 5;
  }

  .pricing-overview-recommend {
    top: -17px;
    min-width: 102px;
    min-height: 32px;
    padding: 0 15px;
    border-width: 3px;
    font-size: 13px;
  }

  .pricing-overview-standard-visual {
    display: block;
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: center;
    padding: 0;
  }

  .pricing-overview-standard-visual .pricing-overview-illustration {
    width: 100%;
    height: 110px;
    margin: 0;
  }

  .pricing-overview-standard-head {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    padding: 0;
    color: #071731;
    background: transparent;
    text-align: left;
  }

  .pricing-overview-standard-head h3 {
    color: #071731;
    font-size: clamp(21px, 5.5vw, 27px);
    line-height: 1.15;
  }

  .pricing-overview-standard-head p {
    margin-top: 4px;
    color: #1475ed;
    font-size: clamp(11px, 3.1vw, 14px);
  }

  .pricing-overview-standard-body {
    display: contents;
  }

  .pricing-overview-card--standard .pricing-overview-price {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    justify-content: flex-start;
    margin: 10px 0 0;
    padding: 0;
    border: 0;
  }

  .pricing-overview-specs {
    grid-column: 1 / -1;
    grid-row: 3;
    margin-top: 14px;
    padding-top: 5px;
    border-top: 1px solid #d8e2ee;
  }

  .pricing-overview-specs > div {
    grid-template-columns: minmax(120px, 0.9fr) minmax(0, 1.1fr);
    gap: 9px;
    padding: 7px 0;
  }

  .pricing-overview-specs dt,
  .pricing-overview-specs dd {
    font-size: clamp(11px, 3vw, 14px);
    line-height: 1.4;
  }

  .pricing-overview-specs dt {
    gap: 7px;
  }

  .pricing-overview-specs dt svg {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }

  .pricing-overview-specs dd a {
    margin-top: 2px;
  }

  .pricing-overview-standard-actions {
    grid-column: 1 / -1;
    grid-row: 4;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    padding-top: 13px;
  }

  .pricing-overview-cta {
    min-height: 45px;
    padding: 0 16px;
    border-width: 2px;
    border-radius: 8px;
    font-size: clamp(13px, 3.5vw, 16px);
  }

  .pricing-overview-standard-actions .pricing-overview-cta {
    padding-right: 10px;
    padding-left: 10px;
    font-size: clamp(12px, 3.25vw, 15px);
  }
}

/* Course lineup rebuilt as semantic HTML; only the illustrations remain raster assets. */
.courses-mirror-page .course-lineup-rebuilt {
  padding: clamp(36px, 3.5vw, 54px) clamp(20px, 4vw, 64px) clamp(42px, 4vw, 62px);
  color: #061c4b;
  background:
    radial-gradient(circle at 8% 8%, rgba(50, 129, 255, 0.07), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
}

.course-plan-shell {
  width: min(100%, 1320px);
  margin: 0 auto;
}

.course-plan-intro,
.course-choice-heading {
  text-align: center;
}

.course-plan-intro h2,
.course-choice-heading h2 {
  margin: 0;
  color: #051637;
  font-size: clamp(27px, 2.2vw, 36px);
  line-height: 1.22;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.course-plan-intro h2::after {
  content: "";
  display: block;
  width: 68px;
  height: 4px;
  margin: 14px auto 0;
  background: #2e82ff;
  border-radius: 999px;
}

.course-plan-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2vw, 30px);
  width: min(100%, 1100px);
  margin: clamp(24px, 2.4vw, 32px) auto 0;
}

.course-plan-step {
  position: relative;
  min-width: 0;
  padding: clamp(15px, 1.2vw, 19px);
  background: rgba(255, 255, 255, 0.96);
  border: 2px solid #d4e6ff;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(22, 73, 142, 0.08);
}

.course-plan-step:not(:last-child)::after {
  content: "›";
  position: absolute;
  z-index: 2;
  top: 48%;
  right: clamp(-30px, -1.9vw, -21px);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #ffffff;
  background: #2e82ff;
  border: 5px solid #ffffff;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  font-weight: 500;
  box-shadow: 0 8px 20px rgba(46, 130, 255, 0.24);
}

.course-plan-step-heading {
  display: flex;
  align-items: center;
  gap: 11px;
}

.course-plan-step-heading > span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  color: #ffffff;
  background: linear-gradient(145deg, #348eff, #176ae7);
  border-radius: 50%;
  font-size: 16px;
  line-height: 1;
  font-weight: 900;
}

.course-plan-step-heading p {
  margin: 0;
  color: #1672e9;
  font-size: clamp(13px, 0.9vw, 16px);
  line-height: 1.3;
  font-weight: 900;
}

.course-plan-step > h3 {
  margin: 11px 0 12px 51px;
  color: #071731;
  font-size: clamp(18px, 1.2vw, 21px);
  line-height: 1.32;
  font-weight: 900;
}

.course-plan-step-content {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(138px, 0.9fr);
  gap: 10px;
  align-items: stretch;
}

.course-plan-step-visual {
  display: grid;
  align-content: start;
}

.course-plan-step-visual img {
  display: block;
  width: 100%;
  max-width: 180px;
  height: 88px;
  margin: 0 auto 8px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.course-plan-step-visual p {
  margin: 0;
  color: #263954;
  font-size: clamp(10px, 0.68vw, 12px);
  line-height: 1.55;
  font-weight: 700;
}

.course-plan-step-details {
  padding: 10px 9px;
  background: linear-gradient(135deg, #f5f9ff, #fbfdff);
  border: 1px solid #d4e5fb;
  border-radius: 9px;
}

.course-plan-step-details h4 {
  display: flex;
  gap: 6px;
  align-items: center;
  margin: 0 0 9px;
  color: #1475ed;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
}

.course-plan-step-details h4::before {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  border: 2px solid #2e82ff;
  border-radius: 50%;
  font-size: 14px;
  line-height: 1;
}

.course-plan-step-details h4.is-target::before { content: "◎"; }
.course-plan-step-details h4.is-chart::before { content: "↗"; }
.course-plan-step-details h4.is-support::before { content: "◉"; }

.course-plan-step-details ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.course-plan-step-details li {
  position: relative;
  padding-left: 11px;
  color: #142743;
  font-size: clamp(10px, 0.68vw, 12px);
  line-height: 1.4;
  font-weight: 700;
}

.course-plan-step-details li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.course-support-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(100%, 1100px);
  margin: 16px auto 0;
  padding: 8px;
  background: rgba(248, 251, 255, 0.96);
  border: 2px solid #d4e6ff;
  border-radius: 10px;
  list-style: none;
}

.course-support-strip li {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 0 9px;
  border-right: 1px solid #b9d5f7;
}

.course-support-strip li:last-child {
  border-right: 0;
}

.course-support-strip svg {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  fill: none;
  stroke: #257ceb;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.course-support-strip strong {
  color: #163056;
  font-size: clamp(10px, 0.72vw, 12px);
  line-height: 1.35;
  font-weight: 900;
}

.course-choice-heading {
  position: relative;
  margin: clamp(46px, 5vw, 74px) 0 28px;
}

.course-choice-heading::before,
.course-choice-heading::after {
  content: "";
  position: absolute;
  top: 27px;
  width: 31%;
  border-top: 2px dashed #74adf6;
}

.course-choice-heading::before { left: 0; }
.course-choice-heading::after { right: 0; }

.course-choice-heading h2 {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0 34px;
  background: #f7faff;
  font-size: clamp(31px, 2.55vw, 45px);
}

.course-choice-heading p {
  margin: 6px 0 0;
  color: #2c405f;
  font-size: clamp(15px, 1.15vw, 19px);
  line-height: 1.5;
  font-weight: 700;
}

.course-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 2.6vw, 40px);
}

.course-choice-card {
  min-width: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 2px solid #dbe9fa;
  border-radius: 16px;
  box-shadow: 0 18px 38px rgba(22, 73, 142, 0.08);
}

.course-choice-summary {
  position: relative;
  min-height: 208px;
  padding: 22px 18px 18px;
}

.course-choice-copy {
  position: relative;
  z-index: 1;
  width: 56%;
}

.course-choice-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  color: #2176e8;
  background: #edf6ff;
  border: 1px solid #c8e0fa;
  border-radius: 8px;
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
}

.course-choice-copy h3 {
  margin: 16px 0 10px;
  color: #071731;
  font-size: clamp(27px, 2vw, 34px);
  line-height: 1.2;
  font-weight: 900;
}

.course-choice-copy p {
  margin: 0;
  color: #29405f;
  font-size: clamp(13px, 0.95vw, 16px);
  line-height: 1.65;
  font-weight: 700;
}

.course-choice-summary > img {
  position: absolute;
  right: 12px;
  top: 20px;
  display: block;
  width: 45%;
  height: 168px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.course-choice-meta {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 12px;
  padding: 0 18px 18px;
}

.course-choice-meta section {
  min-width: 0;
  padding: 14px 12px;
  background: #f6faff;
  border: 1px solid #d8e8fb;
  border-radius: 10px;
}

.course-choice-meta h4 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 0 0 12px;
  color: #267cea;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 900;
  text-align: center;
}

.course-choice-meta h4 svg,
.course-choice-link {
  display: none;
}

.course-choice-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: center;
}

.course-choice-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 8px;
  color: #216cd1;
  background: #edf6ff;
  border: 1px solid #9ac8fa;
  border-radius: 7px;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}

.course-choice-meta ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.course-choice-meta li {
  position: relative;
  padding-left: 18px;
  color: #172d4b;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
}

.course-choice-meta li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #1d78eb;
  font-weight: 900;
}

@media (max-width: 1240px) {
  .course-plan-step-content {
    grid-template-columns: 1fr;
  }

  .course-plan-step > h3 {
    margin-left: 0;
  }

  .course-support-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px 0;
  }

  .course-support-strip li:nth-child(3) {
    border-right: 0;
  }

  .course-support-strip li:nth-child(n + 4) {
    grid-column: span 1;
  }

  .course-choice-summary {
    min-height: 260px;
  }

  .course-choice-copy {
    width: 100%;
  }

  .course-choice-summary > img {
    position: static;
    width: min(64%, 240px);
    height: 130px;
    margin: 10px auto 0;
  }

  .course-choice-meta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .course-plan-steps,
  .course-choice-grid {
    grid-template-columns: 1fr;
  }

  .course-plan-steps {
    row-gap: 48px;
  }

  .course-plan-step {
    max-width: 720px;
    margin: 0 auto;
  }

  .course-plan-step:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -38px;
    width: 44px;
    height: 26px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transform: translateX(50%) rotate(90deg);
  }

  .course-plan-step-content {
    grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.8fr);
  }

  .course-support-strip {
    grid-template-columns: 1fr 1fr;
  }

  .course-support-strip li,
  .course-support-strip li:nth-child(3) {
    border-right: 0;
  }

  .course-support-strip li:last-child {
    grid-column: 1 / -1;
  }

  .course-choice-heading::before,
  .course-choice-heading::after {
    width: 18%;
  }

  .course-choice-card {
    max-width: 720px;
    margin: 0 auto;
  }

  .course-choice-summary {
    min-height: 230px;
  }

  .course-choice-copy {
    width: 58%;
  }

  .course-choice-summary > img {
    position: absolute;
    width: 42%;
    height: 180px;
    margin: 0;
  }

  .course-choice-meta {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

@media (max-width: 767px) {
  .courses-mirror-page .course-lineup-rebuilt {
    padding: 32px 16px 42px;
  }

  .course-plan-intro h2 {
    font-size: 26px;
  }

  .course-plan-step {
    padding: 16px 14px;
  }

  .course-plan-step-heading > span {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    font-size: 17px;
  }

  .course-plan-step > h3 {
    margin-left: 0;
    font-size: 20px;
  }

  .course-plan-step-content {
    grid-template-columns: minmax(0, 1.05fr) minmax(124px, 0.95fr);
    gap: 10px;
  }

  .course-plan-step-visual img {
    height: 88px;
    margin-bottom: 8px;
  }

  .course-plan-step-visual p,
  .course-plan-step-details li {
    font-size: 10px;
  }

  .course-plan-step-details {
    padding: 10px 9px;
  }

  .course-support-strip {
    grid-template-columns: 1fr 1fr;
    padding: 8px 14px;
  }

  .course-support-strip li,
  .course-support-strip li:last-child {
    grid-column: auto;
    justify-content: flex-start;
    padding: 9px 0;
    border-right: 0;
    border-bottom: 1px solid #d8e8fb;
  }

  .course-support-strip li:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }

  .course-choice-heading::before,
  .course-choice-heading::after {
    display: none;
  }

  .course-choice-heading h2 {
    padding: 0;
    background: transparent;
    font-size: 29px;
  }

  .course-choice-grid {
    gap: 28px;
  }

  .course-choice-card {
    position: relative;
    max-width: none;
    margin: 0;
    padding: 20px 16px 18px;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(22, 73, 142, 0.08);
  }

  .course-choice-summary {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(126px, 0.88fr);
    gap: 8px;
    min-height: 166px;
    padding: 0;
  }

  .course-choice-copy {
    width: auto;
    min-width: 0;
  }

  .course-choice-badge {
    min-height: 28px;
    padding: 0 10px;
    border-radius: 7px;
    font-size: 14px;
  }

  .course-choice-copy h3 {
    margin: 16px 0 9px;
    font-size: clamp(25px, 7.4vw, 32px);
    line-height: 1.14;
  }

  .course-choice-copy p {
    font-size: clamp(11px, 3.15vw, 13px);
    line-height: 1.68;
  }

  .course-choice-summary > img {
    position: static;
    align-self: center;
    width: 100%;
    height: 150px;
    margin: 10px 0 0;
  }

  .course-choice-meta {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0;
    margin-top: 8px;
    padding: 0 48px 0 0;
  }

  .course-choice-meta section {
    padding: 2px 12px;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .course-choice-meta section:first-child {
    padding-left: 0;
  }

  .course-choice-meta section + section {
    border-left: 1px solid #d8e4f2;
  }

  .course-choice-meta h4 {
    justify-content: flex-start;
    margin-bottom: 9px;
    font-size: clamp(11px, 3.2vw, 14px);
    text-align: left;
  }

  .course-choice-meta h4 svg {
    display: block;
    width: 21px;
    height: 21px;
    flex: 0 0 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .course-choice-tags {
    gap: 6px;
    justify-content: flex-start;
  }

  .course-choice-tags span {
    min-height: 27px;
    padding: 0 8px;
    background: color-mix(in srgb, var(--course-choice-accent) 10%, #ffffff);
    border: 0;
    font-size: clamp(10px, 2.9vw, 12px);
  }

  .course-choice-meta ul {
    gap: 5px;
  }

  .course-choice-meta li {
    padding-left: 17px;
    font-size: clamp(10px, 2.9vw, 12px);
  }

  .course-choice-link {
    position: absolute;
    right: 16px;
    bottom: 18px;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #ffffff;
    background: var(--course-choice-accent);
    border-radius: 50%;
    box-shadow: 0 8px 18px color-mix(in srgb, var(--course-choice-accent) 28%, transparent);
    font-size: 32px;
    line-height: 1;
    font-weight: 500;
    text-decoration: none;
  }
}

.course-insights {
  padding: 76px clamp(20px, 5vw, 78px) 88px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.92), rgba(246, 250, 255, 0.96)),
    linear-gradient(90deg, rgba(46, 130, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(46, 130, 255, 0.06) 1px, transparent 1px);
  background-size: auto, 48px 48px, 48px 48px;
}

.course-insights__header {
  max-width: 1040px;
  margin: 0 auto 48px;
  text-align: center;
}

.course-insights__header > p:first-child {
  margin: 0 0 14px;
  color: #2e82ff;
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.course-insights__header h2 {
  margin: 0;
  color: #071b3a;
  font-size: 42px;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: 0;
}

.course-insights__header > span {
  display: block;
  width: 74px;
  height: 5px;
  margin: 22px auto;
  background: linear-gradient(90deg, #2e82ff, #64c3ff);
  border-radius: 5px;
}

.course-insights__header > p:last-child {
  margin: 0;
  color: #435773;
  font-size: 17px;
  line-height: 1.8;
  font-weight: 700;
}

[data-fade-heading].has-fade-motion > * {
  opacity: 0;
  transition: opacity 850ms ease;
  will-change: opacity;
}

[data-fade-heading].has-fade-motion.is-fade-visible > * {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  [data-fade-heading].has-fade-motion > * {
    transition: none;
  }
}

.course-insights__list {
  display: grid;
  gap: 30px;
  width: min(100%, 1560px);
  margin: 0 auto;
}

.course-insight-point {
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(480px, 1.12fr);
  gap: 54px;
  align-items: center;
  min-height: 430px;
  padding: 46px 56px;
  background: #f3f5f7;
  border: 1px solid #e4e8ed;
  border-radius: 8px;
}

.course-insight-point--results {
  grid-template-columns: minmax(330px, 0.76fr) minmax(520px, 1.24fr);
  gap: 38px;
  min-height: 0;
  padding: 28px 38px;
}

.course-insight-point--results .course-insight-point__copy > p {
  margin-top: 18px;
  line-height: 1.8;
}

.course-insight-point--results .course-insight-metrics {
  padding-top: 16px;
  margin-top: 18px;
}

.course-insight-point--results .course-insight-metrics dd {
  font-size: 32px;
}

.course-insight-point--reverse .course-insight-point__copy {
  order: 2;
}

.course-insight-point--reverse .course-insight-chart {
  order: 1;
}

.course-insight-point__copy {
  min-width: 0;
}

.course-insight-point__label {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 18px;
  color: #ffffff;
  background: #2e82ff;
  border-radius: 6px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
}

.course-insight-point__copy h3 {
  margin: 18px 0 0;
  color: #14233a;
  font-size: 30px;
  line-height: 1.45;
  font-weight: 900;
  letter-spacing: 0;
}

.course-insight-point__copy > p {
  margin: 26px 0 0;
  color: #34445a;
  font-size: 16px;
  line-height: 2;
  font-weight: 700;
}

.course-insight-point__copy > p + p {
  margin-top: 16px;
}

.course-insight-metrics {
  display: flex;
  gap: 36px;
  padding-top: 22px;
  margin: 26px 0 0;
  border-top: 1px solid #d5dce5;
}

.course-insight-metrics div {
  min-width: 0;
}

.course-insight-metrics dt {
  color: #63738a;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 800;
}

.course-insight-metrics dd {
  margin: 5px 0 0;
  color: #0b5fc7;
  font-size: 36px;
  line-height: 1;
  font-weight: 900;
}

.course-insight-metrics small {
  margin-left: 3px;
  font-size: 15px;
}

.course-insight-chart {
  min-width: 0;
  min-height: 330px;
  padding: 24px 28px;
  margin: 0;
  background: #ffffff;
  border: 1px solid #d6dee8;
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(25, 70, 124, 0.08);
}

.course-insight-chart figcaption {
  margin: 0 0 20px;
  color: #53657d;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 900;
}

.course-insight-chart figcaption span {
  margin-left: 5px;
  color: #7a899c;
  font-size: 11px;
}

.course-insight-chart--adoption {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(180px, 1fr);
  align-items: center;
  gap: 20px;
}

.course-insight-point--results .course-insight-chart--adoption {
  grid-template-columns: minmax(150px, 0.7fr) minmax(210px, 1.3fr);
  gap: 12px 20px;
  min-height: 0;
  padding: 18px 22px;
}

.course-insight-point--results .course-insight-chart figcaption {
  margin-bottom: 4px;
}

.course-insight-chart--adoption figcaption {
  grid-column: 1 / -1;
}

.course-adoption-chart {
  position: relative;
  width: min(100%, 240px);
  aspect-ratio: 1;
  margin: 0 auto;
}

.course-insight-point--results .course-adoption-chart {
  width: min(100%, 180px);
}

.course-insight-point--results .course-adoption-legend {
  gap: 9px;
}

.course-insight-point--results .course-adoption-measures {
  padding-top: 10px;
  margin-top: 2px;
}

.course-insight-point--results .course-adoption-measures h4 {
  margin-bottom: 8px;
}

.course-insight-point--results .course-adoption-measures ul {
  gap: 12px;
}

.course-adoption-chart svg {
  display: block;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.course-adoption-chart circle {
  fill: none;
  stroke-width: 22;
}

.course-adoption-chart__track {
  stroke: #e4eaf1;
}

.course-adoption-chart__segment {
  stroke-linecap: butt;
}

.course-adoption-chart__segment--development {
  stroke: #2e82ff;
  stroke-dasharray: 31 69;
}

.course-adoption-chart__segment--planning {
  stroke: #2eb5cc;
  stroke-dasharray: 24 76;
  stroke-dashoffset: -31;
}

.course-adoption-chart__segment--management {
  stroke: #5ba967;
  stroke-dasharray: 18 82;
  stroke-dashoffset: -55;
}

.course-adoption-chart__segment--support {
  stroke: #7957c7;
  stroke-dasharray: 15 85;
  stroke-dashoffset: -73;
}

.course-adoption-chart__segment--other {
  stroke: #93a0af;
  stroke-dasharray: 12 88;
  stroke-dashoffset: -88;
}

.course-adoption-chart__segment--operations {
  stroke: #65a66a;
  stroke-dasharray: 45 55;
  stroke-dashoffset: -55;
}

.course-adoption-chart > div {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
}

.course-adoption-chart strong {
  color: #0c4f9e;
  font-size: 27px;
  line-height: 1;
  font-weight: 900;
}

.course-adoption-chart span {
  margin-top: 8px;
  color: #62738a;
  font-size: 13px;
  font-weight: 800;
}

.course-adoption-legend {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.course-adoption-legend li {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  color: #3b4c63;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 800;
}

.course-adoption-legend li b,
.course-adoption-legend li em {
  color: #3b4c63;
  font-size: 13px;
  font-style: normal;
  line-height: 1.4;
  font-weight: 800;
}

.course-adoption-legend li em {
  color: #1672e9;
  font-variant-numeric: tabular-nums;
}

.course-adoption-legend li span {
  display: block;
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  background: #2e82ff;
  border-radius: 3px;
}

.course-adoption-legend li:nth-child(2) span {
  background: #31b6c9;
}

.course-adoption-legend li:nth-child(3) span {
  background: #65a66a;
}

.course-adoption-legend li:nth-child(4) span {
  background: #7957c7;
}

.course-adoption-legend li:nth-child(5) span {
  background: #93a0af;
}

.course-adoption-measures {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid #e0e6ee;
}

.course-adoption-measures h4 {
  margin: 0 0 13px;
  color: #53657d;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 900;
}

.course-adoption-measures ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.course-adoption-measures li {
  display: grid;
  grid-template-columns: auto minmax(44px, 1fr) auto;
  gap: 8px;
  align-items: center;
}

.course-adoption-measures li > span,
.course-adoption-measures li > em {
  color: #52647b;
  font-size: 11px;
  font-style: normal;
  line-height: 1.4;
  font-weight: 800;
}

.course-adoption-measures li > em {
  color: #1672e9;
}

.course-adoption-measures li > i {
  display: block;
  height: 8px;
  overflow: hidden;
  background: #e8edf3;
  border-radius: 3px;
}

.course-adoption-measures li > i b {
  display: block;
  width: var(--measure-size);
  height: 100%;
  background: linear-gradient(90deg, #2e82ff, #42bfe4);
  border-radius: inherit;
}

.course-insight-chart--bars {
  display: grid;
  align-content: start;
}

.course-chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: flex-end;
  margin: -4px 0 18px;
}

.course-chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #5c6e85;
  font-size: 11px;
  line-height: 1.4;
  font-weight: 800;
}

.course-chart-legend span::before {
  display: block;
  width: 16px;
  height: 7px;
  content: "";
  background: #7e8b9e;
  border-radius: 2px;
}

.course-chart-legend .is-after::before {
  background: linear-gradient(90deg, #2e82ff, #55c1ec);
}

.course-skill-bars {
  display: grid;
  gap: 18px;
}

.course-skill-bars > div {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 42px;
  gap: 12px;
  align-items: center;
}

.course-skill-bars span,
.course-skill-bars em {
  color: #4b5e76;
  font-size: 13px;
  font-style: normal;
  line-height: 1.3;
  font-weight: 800;
}

.course-skill-bars em {
  color: #1672e9;
  text-align: right;
}

.course-skill-bars i {
  position: relative;
  display: block;
  height: 16px;
  overflow: hidden;
  background: #e8edf3;
  border-radius: 4px;
}

.course-skill-bars i b {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 100%;
  border-radius: inherit;
}

.course-skill-bars i b.is-after {
  width: var(--bar-size);
  background: linear-gradient(90deg, #2e82ff, #55c1ec);
}

.course-skill-bars i b.is-before {
  z-index: 1;
  left: var(--bar-size);
  width: 3px;
  background: #69788d;
  border-radius: 0;
  transform: translateX(-50%);
}

.course-day-route {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin: 24px 0 0;
  padding-top: 18px;
  border-top: 1px solid #e0e6ee;
}

.course-day-route > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
}

.course-day-route strong {
  width: 100%;
  color: #0c5fc4;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 900;
}

.course-day-route span {
  padding: 5px 8px;
  color: #4e6077;
  background: #eff5fc;
  border: 1px solid #d8e5f5;
  border-radius: 4px;
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
}

.course-day-route > i {
  color: #2e82ff;
  font-size: 24px;
  font-style: normal;
  line-height: 1;
}

.course-insight-chart--radar svg,
.course-insight-chart--network svg {
  display: block;
  width: 100%;
  height: 260px;
}

.course-radar-grid {
  fill: none;
  stroke: #d7dee7;
  stroke-width: 1.5;
}

.course-radar-value {
  fill: rgba(46, 130, 255, 0.3);
  stroke: #2e82ff;
  stroke-width: 4;
  stroke-linejoin: round;
}

.course-radar-base {
  fill: rgba(46, 181, 204, 0.2);
  stroke: #2eb5cc;
  stroke-width: 3;
  stroke-linejoin: round;
}

.course-radar-dots {
  fill: #ffffff;
  stroke: #1672e9;
  stroke-width: 3;
}

.course-radar-labels {
  fill: #4f6076;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.course-radar-scales {
  fill: #8c99aa;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: 700;
}

.course-radar-legend {
  display: flex;
  gap: 22px;
  justify-content: center;
  margin-top: 6px;
}

.course-radar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #4f6076;
  font-size: 11px;
  font-weight: 800;
}

.course-radar-legend span::before {
  display: block;
  width: 12px;
  height: 12px;
  content: "";
  background: rgba(46, 181, 204, 0.35);
  border: 2px solid #2eb5cc;
  border-radius: 3px;
}

.course-radar-legend .is-standard::before {
  background: rgba(46, 130, 255, 0.35);
  border-color: #2e82ff;
}

.course-radar-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-top: 16px;
  margin: 16px 0 0;
  border-top: 1px solid #e0e6ee;
}

.course-radar-summary div {
  display: grid;
  gap: 4px;
}

.course-radar-summary dt {
  color: #1672e9;
  font-size: 11px;
  font-weight: 900;
}

.course-radar-summary dd {
  margin: 0;
  color: #53657d;
  font-size: 11px;
  line-height: 1.5;
  font-weight: 800;
}

.course-compare-bars {
  display: grid;
  gap: 13px;
  margin-top: 18px;
}

.course-compare-bars > div {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.course-compare-bars > div > span {
  color: #4b5e76;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 800;
}

.course-compare-bars i {
  position: relative;
  display: grid;
  gap: 4px;
}

.course-compare-bars i::before,
.course-compare-bars i::after {
  display: block;
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  height: 6px;
  content: "";
  background: #e8edf3;
  border-radius: 3px;
}

.course-compare-bars i::after {
  grid-row: 2;
}

.course-compare-bars i b {
  z-index: 1;
  display: block;
  width: var(--compare-size);
  height: 6px;
  border-radius: 3px;
}

.course-compare-bars i .is-basic {
  grid-column: 1;
  grid-row: 1;
  background: #2eb5cc;
}

.course-compare-bars i .is-standard {
  grid-column: 1;
  grid-row: 2;
  background: #2e82ff;
}

.course-chart-detail {
  padding-top: 12px;
  margin-top: 13px;
  border-top: 1px solid #e0e6ee;
}

.course-chart-detail h4 {
  margin: 0 0 8px;
  color: #53657d;
  font-size: 11px;
  line-height: 1.4;
  font-weight: 900;
}

.course-chart-detail ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.course-chart-detail li {
  padding: 6px 3px;
  color: #315d91;
  background: #edf5ff;
  border: 1px solid #d1e3f7;
  border-radius: 4px;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 900;
  text-align: center;
}

.course-chart-detail p {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 7px;
  align-items: center;
  margin: 9px 0 0;
  color: #40536b;
  font-size: 10px;
  line-height: 1.4;
  font-weight: 800;
}

.course-chart-detail p span {
  padding: 4px 6px;
  color: #ffffff;
  background: #2e82ff;
  border-radius: 3px;
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
}

.course-network-lines {
  fill: none;
  stroke-width: 3;
}

.course-network-lines--input {
  stroke: #75a9e8;
  marker-end: url("#course-network-arrow-blue");
}

.course-network-lines--delivery {
  stroke: #46a98a;
  marker-end: url("#course-network-arrow-green");
}

#course-network-arrow-blue path {
  fill: #75a9e8;
}

#course-network-arrow-green path {
  fill: #46a98a;
}

.course-network-feedback {
  fill: none;
  stroke: #7957c7;
  stroke-width: 3;
  stroke-dasharray: 8 7;
}

.course-network-node rect {
  fill: #f7fbff;
  stroke: #77aeea;
  stroke-width: 2;
}

.course-network-node text {
  fill: #38506d;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.course-network-node--source rect {
  fill: #eef4fb;
  stroke: #9fb5ce;
}

.course-network-node--core rect {
  fill: #1672e9;
  stroke: #0d5dc8;
}

.course-network-node--core text {
  fill: #ffffff;
  font-size: 15px;
  font-weight: 900;
}

.course-network-node--design rect {
  fill: #edf5ff;
  stroke: #2e82ff;
}

.course-network-node--design text {
  fill: #0c5ebd;
  font-size: 14px;
  font-weight: 900;
}

.course-network-node--result rect {
  fill: #edf9f5;
  stroke: #46a98a;
}

.course-network-node--result text {
  fill: #267a61;
  font-size: 14px;
  font-weight: 900;
}

.course-network-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  justify-content: center;
  padding: 14px 0 0;
  margin: 0;
  border-top: 1px solid #e0e6ee;
  list-style: none;
}

.course-network-legend li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #52647b;
  font-size: 11px;
  line-height: 1.4;
  font-weight: 800;
}

.course-network-legend li::before {
  display: block;
  width: 24px;
  height: 3px;
  content: "";
  background: #75a9e8;
}

.course-network-legend .is-delivery::before {
  background: #46a98a;
}

.course-network-legend .is-feedback::before {
  height: 0;
  background: transparent;
  border-top: 3px dashed #7957c7;
}

.course-operation-inputs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-bottom: 13px;
}

.course-operation-inputs span {
  padding: 7px 4px;
  color: #375b88;
  background: #edf5ff;
  border: 1px solid #cfe2f8;
  border-radius: 4px;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  text-align: center;
}

.course-operation-flow {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.course-operation-flow li {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 8px 10px;
  background: #f7faff;
  border: 1px solid #d5e3f4;
  border-radius: 5px;
}

.course-operation-flow li:not(:last-child)::after {
  position: absolute;
  bottom: -8px;
  left: 26px;
  z-index: 2;
  width: 2px;
  height: 8px;
  content: "";
  background: #72a9ea;
}

.course-operation-flow li > b {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #ffffff;
  background: #2e82ff;
  border-radius: 4px;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
}

.course-operation-flow li div {
  display: grid;
  gap: 2px;
}

.course-operation-flow strong {
  color: #183f70;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 900;
}

.course-operation-flow span {
  color: #5b6e86;
  font-size: 10px;
  line-height: 1.3;
  font-weight: 700;
}

.course-operation-feedback {
  margin: 12px 0 0;
  padding-top: 10px;
  color: #6746b5;
  border-top: 1px dashed #a996d8;
  font-size: 10px;
  line-height: 1.4;
  font-weight: 900;
  text-align: center;
}

.course-insight-point--compact {
  gap: 38px;
  min-height: 0;
  padding: 28px 38px;
}

.course-insight-point--compact .course-insight-point__copy > p {
  margin-top: 18px;
  line-height: 1.8;
}

.course-insight-point--compact .course-insight-chart {
  min-height: 0;
  padding: 18px 22px;
}

.course-insight-point--compact .course-insight-chart figcaption {
  margin-bottom: 12px;
}

.course-insight-point--compact .course-chart-legend {
  margin-bottom: 12px;
}

.course-insight-point--compact .course-skill-bars {
  gap: 11px;
}

.course-insight-point--compact .course-skill-bars i {
  height: 13px;
}

.course-insight-point--compact .course-day-route {
  margin-top: 16px;
  padding-top: 12px;
}

.course-insight-point--compact .course-insight-chart--radar svg {
  height: 190px;
}

.course-insight-point--compact .course-radar-legend {
  margin-top: 2px;
}

.course-insight-point--compact .course-radar-summary {
  padding-top: 10px;
  margin-top: 10px;
}

.course-insight-point--compact .course-insight-chart--network svg {
  height: 200px;
}

.course-insight-point--compact .course-network-legend {
  padding-top: 10px;
}

.course-insights__list--stacked {
  gap: 24px;
  width: min(100%, 1180px);
}

.course-insights__list--stacked .course-insight-point,
.course-insights__list--stacked .course-insight-point--results,
.course-insights__list--stacked .course-insight-point--compact {
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  min-height: 0;
  padding: 28px 32px;
}

.course-insights__list--stacked .course-insight-point__copy {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px 18px;
  align-items: center;
}

.course-insights__list--stacked .course-insight-point__label {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
}

.course-insights__list--stacked .course-insight-point__copy h3 {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
}

.course-insights__list--stacked .course-insight-point__copy > p,
.course-insights__list--stacked .course-insight-metrics {
  grid-column: 1 / -1;
}

.course-insights__list--stacked .course-insight-point__copy > p {
  margin: 2px 0 0;
}

.course-insights__list--stacked .course-insight-metrics {
  margin-top: 2px;
}

.course-insights__list--stacked .course-insight-point--reverse .course-insight-point__copy,
.course-insights__list--stacked .course-insight-point--reverse .course-insight-chart {
  order: initial;
}

.course-insights__list--stacked .course-insight-chart {
  width: 100%;
}

.course-insights__list--stacked .course-insight-chart--adoption {
  grid-template-columns: minmax(150px, 0.45fr) minmax(240px, 1.55fr);
}

.course-insights__list--four-column {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, 1560px);
  align-items: stretch;
}

.course-insights__list--four-column .course-insight-point,
.course-insights__list--four-column .course-insight-point--results,
.course-insights__list--four-column .course-insight-point--compact {
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr) 430px;
  gap: 16px;
  min-height: 0;
  padding: 24px 20px;
  align-items: stretch;
  align-self: stretch;
}

.course-insights__list--four-column .course-insight-point__copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: start;
}

.course-insights__list--four-column .course-insight-point__label {
  justify-self: start;
}

.course-insights__list--four-column .course-insight-point__copy h3 {
  display: flex;
  flex-wrap: wrap;
  margin-top: 16px;
  font-size: 22px;
  line-height: 1.35;
}

.course-insight-title-keep {
  white-space: nowrap;
}

.course-insights__list--four-column .course-insight-point__copy > p {
  margin-top: 15px;
  font-size: 13px;
  line-height: 1.7;
}

.course-insight-emphasis {
  color: #d94316;
  font-weight: 900;
}

.course-insights__list--four-column .course-insight-metrics {
  gap: 20px;
  padding-top: 14px;
  margin-top: 15px;
}

.course-insights__list--four-column .course-insight-metrics dd {
  font-size: 28px;
}

.course-insights__list--four-column .course-insight-point--reverse .course-insight-point__copy,
.course-insights__list--four-column .course-insight-point--reverse .course-insight-chart {
  order: initial;
}

.course-insights__list--four-column .course-insight-chart {
  display: grid;
  width: 100%;
  height: 430px;
  min-height: 0;
  padding: 16px 12px;
  align-content: space-between;
  align-self: stretch;
}

.course-insights__list--four-column .course-insight-chart figcaption {
  min-height: 38px;
  margin-bottom: 10px;
}

.course-insights__list--four-column .course-insight-chart--adoption {
  grid-template-columns: minmax(105px, 0.78fr) minmax(125px, 1.22fr);
  align-content: space-between;
  gap: 8px 10px;
}

.course-insights__list--four-column .course-insight-chart--adoption .course-insight-metrics {
  grid-column: 1 / -1;
  justify-content: space-between;
  padding: 8px 0 10px;
  margin: 0;
}

.course-insights__list--four-column .course-adoption-chart {
  width: min(100%, 136px);
}

.course-insights__list--four-column .course-insight-point--results .course-adoption-chart > div {
  inset: 19%;
  background: #ffffff;
  border-radius: 50%;
}

.course-insights__list--four-column .course-insight-point--results .course-adoption-chart strong {
  font-size: 15px;
  white-space: nowrap;
}

.course-insights__list--four-column .course-insight-point--results .course-adoption-chart span {
  margin-top: 4px;
  font-size: 9px;
}

.course-insights__list--four-column .course-adoption-legend {
  gap: 5px;
}

.course-insights__list--four-column .course-adoption-legend li {
  grid-template-columns: 8px minmax(0, 1fr) auto;
  gap: 5px;
}

.course-insights__list--four-column .course-adoption-legend li span {
  width: 8px;
  height: 8px;
}

.course-insights__list--four-column .course-adoption-legend li b,
.course-insights__list--four-column .course-adoption-legend li em {
  font-size: 11px;
}

.course-insights__list--four-column .course-adoption-measures {
  padding-top: 10px;
}

.course-insights__list--four-column .course-adoption-measures ul {
  grid-template-columns: minmax(0, 1fr);
  gap: 6px;
}

.course-insights__list--four-column .course-chart-legend {
  justify-content: flex-start;
  gap: 7px 12px;
}

.course-insights__list--four-column .course-skill-bars {
  gap: 10px;
}

.course-insights__list--four-column .course-skill-bars > div {
  grid-template-columns: 68px minmax(0, 1fr) 30px;
  gap: 6px;
}

.course-insights__list--four-column .course-skill-bars span,
.course-insights__list--four-column .course-skill-bars em {
  font-size: 11px;
}

.course-insights__list--four-column .course-day-route {
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 6px;
}

.course-insights__list--four-column .course-day-route > div {
  gap: 4px;
}

.course-insights__list--four-column .course-day-route span {
  padding: 4px 5px;
}

.course-insights__list--four-column .course-insight-chart--radar svg {
  height: 190px;
}

.course-insights__list--four-column .course-radar-summary {
  grid-template-columns: minmax(0, 1fr);
  gap: 7px;
}

.course-insights__list--four-column .course-radar-legend {
  justify-content: flex-start;
  margin-top: 0;
}

.course-insights__list--four-column .course-compare-bars {
  gap: 12px;
  margin-top: 14px;
}

.course-insights__list--four-column .course-insight-point--compact .course-insight-chart--network {
  overflow: hidden;
}

.course-insights__list--four-column .course-insight-point--compact .course-insight-chart--network svg {
  width: 100%;
  max-width: 100%;
  height: 190px;
}

.course-insights__list--four-column + .course-insights__note {
  width: min(100%, 1560px);
}

/* Motion is applied after the chart enters the viewport and can be replayed on hover. */
.course-insight-chart {
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.course-insight-chart:hover {
  border-color: #9ec7f7;
  box-shadow: 0 18px 42px rgba(25, 91, 170, 0.15);
  transform: translateY(-3px);
}

.course-insight-chart.is-animated .course-adoption-chart__segment--development {
  animation: course-donut-development 1400ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.course-insight-chart.is-animated .course-adoption-chart__segment--planning {
  animation: course-donut-planning 1250ms 480ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.course-insight-chart.is-animated .course-adoption-chart__segment--operations {
  animation: course-donut-operations 1400ms 860ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.course-insight-chart.is-animated .course-adoption-chart > div {
  animation: course-chart-center 1050ms 920ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.course-insight-chart.is-animated .course-adoption-legend li {
  animation: course-chart-row 760ms ease both;
}

.course-insight-chart.is-animated .course-adoption-legend li:nth-child(1) { animation-delay: 760ms; }
.course-insight-chart.is-animated .course-adoption-legend li:nth-child(2) { animation-delay: 980ms; }
.course-insight-chart.is-animated .course-adoption-legend li:nth-child(3) { animation-delay: 1200ms; }

.course-insight-chart.is-animated .course-adoption-measures li > i b {
  animation: course-progress-fill 1500ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.course-insight-chart.is-animated .course-adoption-measures li:nth-child(2) > i b { animation-delay: 240ms; }
.course-insight-chart.is-animated .course-adoption-measures li:nth-child(3) > i b { animation-delay: 480ms; }

.course-insight-chart.is-animated .course-skill-bars i b.is-after {
  animation: course-skill-fill 1500ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.course-insight-chart.is-animated .course-skill-bars > div:nth-child(2) i b.is-after { animation-delay: 220ms; }
.course-insight-chart.is-animated .course-skill-bars > div:nth-child(3) i b.is-after { animation-delay: 440ms; }
.course-insight-chart.is-animated .course-skill-bars > div:nth-child(4) i b.is-after { animation-delay: 660ms; }

.course-insight-chart.is-animated .course-skill-bars i b.is-before {
  animation: course-skill-marker 1250ms 380ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.course-insight-chart.is-animated .course-day-route > i {
  animation: course-route-arrow 1500ms 1100ms ease-in-out both;
}

.course-insight-chart.is-animated .course-compare-bars i b {
  animation: course-compare-fill 1600ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.course-insight-chart.is-animated .course-compare-bars > div:nth-child(2) i b { animation-delay: 180ms; }
.course-insight-chart.is-animated .course-compare-bars > div:nth-child(3) i b { animation-delay: 360ms; }
.course-insight-chart.is-animated .course-compare-bars > div:nth-child(4) i b { animation-delay: 540ms; }
.course-insight-chart.is-animated .course-compare-bars > div:nth-child(5) i b { animation-delay: 720ms; }

.course-insight-chart.is-animated .course-operation-inputs span {
  animation: course-chart-row 760ms ease both;
}

.course-insight-chart.is-animated .course-operation-inputs span:nth-child(2) { animation-delay: 180ms; }
.course-insight-chart.is-animated .course-operation-inputs span:nth-child(3) { animation-delay: 360ms; }

.course-insight-chart.is-animated .course-operation-flow li {
  animation: course-flow-step 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.course-insight-chart.is-animated .course-operation-flow li:nth-child(1) { animation-delay: 320ms; }
.course-insight-chart.is-animated .course-operation-flow li:nth-child(2) { animation-delay: 720ms; }
.course-insight-chart.is-animated .course-operation-flow li:nth-child(3) { animation-delay: 1120ms; }
.course-insight-chart.is-animated .course-operation-flow li:nth-child(4) { animation-delay: 1520ms; }

.course-insight-chart.is-animated .course-operation-flow li > b {
  animation: course-step-pulse 900ms ease both;
  animation-delay: inherit;
}

.course-insight-chart.is-animated .course-operation-feedback {
  animation: course-feedback-in 1000ms 2300ms ease both;
}

.course-adoption-measures li > i,
.course-skill-bars i,
.course-compare-bars i {
  position: relative;
  isolation: isolate;
}

.course-adoption-measures li > i::after,
.course-skill-bars i::after,
.course-compare-bars i::after {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: -45%;
  width: 30%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.75), transparent);
  transform: skewX(-18deg);
}

.course-insight-chart.is-animated:hover .course-adoption-measures li > i::after,
.course-insight-chart.is-animated:hover .course-skill-bars i::after,
.course-insight-chart.is-animated:hover .course-compare-bars i::after {
  animation: course-bar-sheen 1500ms ease-out;
}

@keyframes course-donut-development {
  from { stroke-dasharray: 0 100; }
  to { stroke-dasharray: 31 69; }
}

@keyframes course-donut-planning {
  from { stroke-dasharray: 0 100; }
  to { stroke-dasharray: 24 76; }
}

@keyframes course-donut-operations {
  from { stroke-dasharray: 0 100; }
  to { stroke-dasharray: 45 55; }
}

@keyframes course-chart-center {
  from { opacity: 0; transform: scale(0.72); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes course-chart-row {
  from { opacity: 0; transform: translateX(-12px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes course-progress-fill {
  from { width: 0; }
  to { width: var(--measure-size); }
}

@keyframes course-skill-fill {
  from { width: 0; }
  to { width: var(--bar-size); }
}

@keyframes course-skill-marker {
  from { left: 0; opacity: 0; }
  to { left: var(--bar-size); opacity: 1; }
}

@keyframes course-route-arrow {
  0% { opacity: 0; transform: translateX(-10px); }
  45% { opacity: 1; transform: translateX(5px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes course-compare-fill {
  from { width: 0; }
  to { width: var(--compare-size); }
}

@keyframes course-flow-step {
  from { opacity: 0; transform: translateY(10px); border-color: #9cc5f5; }
  to { opacity: 1; transform: translateY(0); border-color: #d5e3f4; }
}

@keyframes course-step-pulse {
  0% { box-shadow: 0 0 0 0 rgba(46, 130, 255, 0.45); }
  100% { box-shadow: 0 0 0 8px rgba(46, 130, 255, 0); }
}

@keyframes course-feedback-in {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes course-bar-sheen {
  from { left: -45%; }
  to { left: 120%; }
}

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

  .course-insight-chart:hover {
    transform: none;
  }
}

@media (max-width: 1260px) {
  .course-insights__list--four-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .course-insights__list--four-column {
    grid-template-columns: minmax(0, 1fr);
  }
}

.course-insights__note {
  width: min(100%, 1180px);
  margin: 24px auto 0;
  color: #68798f;
  font-size: 12px;
  line-height: 1.6;
  font-weight: 700;
}

@media (max-width: 1120px) {
  .course-insight-point {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 920px;
    margin: 0 auto;
  }

  .course-insight-point--reverse .course-insight-point__copy,
  .course-insight-point--reverse .course-insight-chart {
    order: initial;
  }

  .course-insight-chart {
    min-height: 0;
  }

  .course-insight-point--results {
    max-width: 920px;
  }
}

@media (max-width: 640px) {
  .course-insights {
    padding: 52px 16px 62px;
    background-size: auto, 32px 32px, 32px 32px;
  }

  .course-insights__header {
    margin-bottom: 34px;
  }

  .course-insights__header > p:first-child {
    font-size: 12px;
  }

  .course-insights__header h2 {
    font-size: 30px;
  }

  .course-insights__header > p:last-child {
    font-size: 14px;
  }

  .course-insights__list {
    gap: 22px;
  }

  .course-insight-point {
    gap: 24px;
    min-height: 0;
    padding: 26px 18px;
  }

  .course-insight-point--results {
    gap: 18px;
    padding: 22px 16px;
  }

  .course-insight-point--compact {
    gap: 18px;
    padding: 22px 16px;
  }

  .course-insight-point--compact .course-insight-point__copy > p {
    margin-top: 14px;
    line-height: 1.75;
  }

  .course-insight-point--compact .course-insight-chart {
    padding: 15px 12px;
  }

  .course-insight-point--compact .course-day-route {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 7px;
  }

  .course-insight-point--compact .course-day-route > i {
    transform: none;
  }

  .course-insight-point--compact .course-day-route > div {
    gap: 5px;
  }

  .course-insight-point--compact .course-day-route span {
    padding: 4px 5px;
  }

  .course-insight-point--compact .course-insight-chart--radar svg {
    height: 180px;
  }

  .course-insight-point--compact .course-radar-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .course-insight-point--compact .course-insight-chart--network svg {
    width: 520px;
    height: auto;
  }

  .course-insights__list--stacked {
    gap: 18px;
  }

  .course-insights__list--stacked .course-insight-point,
  .course-insights__list--stacked .course-insight-point--results,
  .course-insights__list--stacked .course-insight-point--compact {
    gap: 18px;
    padding: 22px 16px;
  }

  .course-insights__list--stacked .course-insight-point__copy {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .course-insights__list--stacked .course-insight-point__label,
  .course-insights__list--stacked .course-insight-point__copy h3,
  .course-insights__list--stacked .course-insight-point__copy > p,
  .course-insights__list--stacked .course-insight-metrics {
    grid-column: 1;
    grid-row: auto;
  }

  .course-insights__list--stacked .course-insight-point__copy h3 {
    margin-top: 15px;
  }

  .course-insights__list--stacked .course-insight-point__copy > p {
    margin-top: 14px;
  }

  .course-insights__list--stacked .course-insight-chart--adoption {
    grid-template-columns: minmax(118px, 0.8fr) minmax(140px, 1.2fr);
  }

  .course-insight-point--results .course-insight-point__copy > p {
    margin-top: 14px;
    line-height: 1.75;
  }

  .course-insight-point--results .course-insight-metrics {
    padding-top: 13px;
    margin-top: 14px;
  }

  .course-insight-point--results .course-insight-metrics dd {
    font-size: 28px;
  }

  .course-insight-point__label {
    min-height: 32px;
    padding: 0 14px;
    font-size: 13px;
  }

  .course-insight-point__copy h3 {
    margin-top: 15px;
    font-size: 23px;
  }

  .course-insight-point__copy > p {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.85;
  }

  .course-insight-metrics {
    gap: 24px;
  }

  .course-insight-metrics dd {
    font-size: 30px;
  }

  .course-insight-chart {
    padding: 18px 14px;
  }

  .course-insight-chart--adoption {
    grid-template-columns: 1fr;
  }

  .course-insight-point--results .course-insight-chart--adoption {
    grid-template-columns: minmax(118px, 0.8fr) minmax(140px, 1.2fr);
    gap: 10px 12px;
    padding: 15px 12px;
  }

  .course-insight-point--results .course-insight-chart--adoption figcaption,
  .course-insight-point--results .course-adoption-measures {
    grid-column: 1 / -1;
  }

  .course-insight-point--results .course-adoption-chart {
    max-width: 142px;
  }

  .course-insight-point--results .course-adoption-chart strong {
    font-size: 21px;
  }

  .course-insight-point--results .course-adoption-legend {
    gap: 6px;
  }

  .course-insight-point--results .course-adoption-legend li {
    grid-template-columns: 9px minmax(0, 1fr) auto;
    gap: 6px;
  }

  .course-insight-point--results .course-adoption-legend li b,
  .course-insight-point--results .course-adoption-legend li em {
    font-size: 10px;
  }

  .course-insight-point--results .course-adoption-measures ul {
    gap: 7px;
  }

  .course-adoption-chart {
    max-width: 210px;
  }

  .course-adoption-legend {
    gap: 12px;
  }

  .course-adoption-measures ul {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .course-skill-bars > div {
    grid-template-columns: 74px minmax(0, 1fr) 36px;
    gap: 8px;
  }

  .course-skill-bars span,
  .course-skill-bars em {
    font-size: 11px;
  }

  .course-day-route {
    grid-template-columns: 1fr;
  }

  .course-day-route > i {
    transform: rotate(90deg);
    justify-self: center;
  }

  .course-radar-summary {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .course-insight-chart--radar svg,
  .course-insight-chart--network svg {
    height: auto;
  }

  .course-insight-chart--network {
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
  }

  .course-insight-chart--network svg {
    width: 560px;
    max-width: none;
  }
}

.course-page .curriculum-section--split {
  padding: clamp(62px, 6vw, 96px) clamp(24px, 5vw, 78px);
  background:
    radial-gradient(circle at 88% 12%, rgba(46, 130, 255, 0.1), transparent 27%),
    linear-gradient(180deg, #ffffff 0%, #f6f9fe 100%);
}

.course-curriculum-split {
  display: grid;
  grid-template-columns: minmax(460px, 0.95fr) minmax(520px, 1.1fr);
  gap: clamp(32px, 3vw, 48px);
  align-items: center;
  width: min(100%, 1580px);
  margin: 0 auto;
}

.course-curriculum-copy {
  min-width: 0;
}

.course-curriculum-kicker {
  margin: 0 0 15px;
  color: #2e82ff;
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.course-curriculum-copy > h2 {
  margin: 0;
  color: #071b3a;
  font-size: clamp(32px, 2.55vw, 43px);
  line-height: 1.28;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.course-curriculum-title-line {
  display: block;
  white-space: nowrap;
}

.course-curriculum-copy > h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin: 22px 0;
  background: linear-gradient(90deg, #2e82ff, #72c7ff);
  border-radius: 999px;
}

.course-curriculum-lead {
  margin: 0;
  color: #344762;
  font-size: clamp(15px, 1.12vw, 18px);
  line-height: 1.85;
  font-weight: 700;
}

.course-curriculum-outcomes {
  margin-top: clamp(28px, 3vw, 42px);
}

.course-curriculum-outcomes h3 {
  margin: 0 0 18px;
  color: #0b4f9f;
  font-size: clamp(21px, 1.65vw, 27px);
  line-height: 1.35;
  font-weight: 900;
}

.course-curriculum-outcomes ul {
  display: grid;
  flex: 0 0 auto;
  grid-auto-rows: max-content;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.course-curriculum-outcomes li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #d6e6fa;
  border-radius: 11px;
  box-shadow: 0 10px 26px rgba(15, 74, 148, 0.055);
}

.course-curriculum-outcomes li > span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: #ffffff;
  background: linear-gradient(145deg, #348eff, #176ae7);
  border-radius: 50%;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
}

.course-curriculum-outcomes strong {
  display: block;
  color: #10284c;
  font-size: clamp(15px, 1.08vw, 18px);
  line-height: 1.45;
  font-weight: 900;
}

.course-curriculum-outcomes li p {
  margin: 3px 0 0;
  color: #536681;
  font-size: clamp(13px, 0.92vw, 15px);
  line-height: 1.65;
  font-weight: 700;
}

.course-curriculum-note {
  margin: 18px 0 0;
  padding-left: 15px;
  color: #38638f;
  border-left: 4px solid #2e82ff;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 800;
}

.course-curriculum-visual {
  min-width: 0;
  margin: 0;
  padding: clamp(12px, 1.4vw, 20px);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #d8e7fb;
  border-radius: 18px;
  box-shadow: 0 26px 64px rgba(23, 81, 155, 0.12);
}

.course-curriculum-visual .curriculum-flow-image {
  width: 100%;
  height: auto;
  transform: none;
}

.course-curriculum-visual figcaption {
  margin: 12px 0 0;
  color: #536681;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 1120px) {
  .course-curriculum-split {
    grid-template-columns: 1fr;
    max-width: 920px;
  }

  .course-curriculum-copy {
    max-width: 760px;
  }
}

@media (max-width: 640px) {
  .course-page .curriculum-section--split {
    padding: 48px 16px 58px;
  }

  .course-curriculum-copy > h2 {
    font-size: 31px;
  }

  .course-curriculum-title-line {
    white-space: normal;
  }

  .course-curriculum-outcomes li {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
    padding: 14px 13px;
  }

  .course-curriculum-outcomes li > span {
    width: 36px;
    height: 36px;
  }

  .course-curriculum-visual {
    overflow-x: auto;
    padding: 10px;
    border-radius: 12px;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
  }

  .course-curriculum-visual .curriculum-flow-image {
    width: 900px;
    max-width: none;
  }

  .course-curriculum-visual figcaption {
    width: 900px;
    text-align: left;
  }
}

.course-roadmap-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 8%, rgba(75, 139, 225, 0.08), transparent 25%),
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.course-roadmap {
  position: relative;
  width: min(100%, 1360px);
  min-height: 560px;
  margin: 0 auto;
}

.course-roadmap__intro {
  position: absolute;
  z-index: 3;
  top: 24px;
  left: clamp(28px, 3vw, 48px);
  width: min(46%, 580px);
}

.course-roadmap__intro h2 {
  margin: 0;
  color: #061a3c;
  font-size: clamp(32px, 2.8vw, 40px);
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: 0;
}

.course-roadmap__intro h2 span {
  display: block;
  white-space: nowrap;
}

.course-roadmap__intro > i {
  display: block;
  width: 76px;
  height: 4px;
  margin: 16px 0 14px;
  background: #1768ed;
  border-radius: 999px;
}

.course-roadmap__intro > p {
  max-width: 390px;
  margin: 0;
  color: #132b4e;
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.7;
  font-weight: 600;
}

.course-roadmap__track {
  position: absolute;
  inset: 0;
}

.course-roadmap__curve {
  position: absolute;
  z-index: 0;
  inset: 38px 0 0;
  width: 100%;
  height: calc(100% - 38px);
  overflow: visible;
}

.course-roadmap__line {
  fill: none;
  stroke: #d9dee8;
  stroke-width: 44;
  stroke-linecap: round;
}

.course-roadmap__arrowhead {
  fill: #d4d9e3;
}

.course-roadmap-day {
  position: absolute;
  z-index: 2;
  width: clamp(186px, 13.5vw, 214px);
}

.course-roadmap-day--1 {
  top: 264px;
  left: 7%;
}

.course-roadmap-day--2 {
  top: 198px;
  left: 34%;
}

.course-roadmap-day--3 {
  top: 132px;
  left: 58%;
}

.course-roadmap-day--4 {
  top: 74px;
  left: 81%;
}

.course-roadmap-day__card {
  position: relative;
  min-height: 0;
  padding: 15px 14px 12px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid #e0e6ee;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(20, 44, 84, 0.13);
}

.course-roadmap-day__badge {
  position: absolute;
  top: -24px;
  left: 50%;
  min-width: 76px;
  padding: 5px 13px;
  color: #ffffff;
  background: linear-gradient(180deg, #126cef 0%, #0756d7 100%);
  border-radius: 999px;
  box-shadow: 0 5px 14px rgba(19, 97, 218, 0.18);
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  text-align: center;
  transform: translateX(-50%);
}

.course-roadmap-day__card h3 {
  margin: 0;
  color: #071d42;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: 0;
}

.course-roadmap-day__card > p {
  margin: 7px 0 0;
  color: #172d4c;
  font-size: clamp(11px, 0.8vw, 12px);
  line-height: 1.55;
  font-weight: 600;
}

.course-roadmap-day__card ul {
  display: grid;
  gap: 4px;
  margin: 9px 0 0;
  padding: 0;
  list-style: none;
}

.course-roadmap-day__card li {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 6px;
  align-items: center;
  min-width: 0;
  color: #0e2e5c;
  font-size: clamp(10px, 0.72vw, 11px);
  line-height: 1.45;
  font-weight: 800;
}

.course-roadmap-day__card li svg {
  display: block;
  width: 19px;
  height: 19px;
  fill: none;
  stroke: #0861ec;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

[data-roadmap-sequence].has-sequence-motion .course-roadmap-day__card > * {
  opacity: 0;
  transition: opacity 780ms ease;
  will-change: opacity;
}

[data-roadmap-sequence].has-sequence-motion.is-sequence-visible .course-roadmap-day--1 .course-roadmap-day__card > * {
  opacity: 1;
  transition-delay: 0ms;
}

[data-roadmap-sequence].has-sequence-motion.is-sequence-visible .course-roadmap-day--2 .course-roadmap-day__card > * {
  opacity: 1;
  transition-delay: 320ms;
}

[data-roadmap-sequence].has-sequence-motion.is-sequence-visible .course-roadmap-day--3 .course-roadmap-day__card > * {
  opacity: 1;
  transition-delay: 640ms;
}

[data-roadmap-sequence].has-sequence-motion.is-sequence-visible .course-roadmap-day--4 .course-roadmap-day__card > * {
  opacity: 1;
  transition-delay: 960ms;
}

@media (prefers-reduced-motion: reduce) {
  [data-roadmap-sequence].has-sequence-motion .course-roadmap-day__card > * {
    transition: none;
  }
}

.course-roadmap-day__connector {
  display: block;
  width: 4px;
  height: 18px;
  margin: 3px auto 0;
  background: radial-gradient(circle, #061b42 0 2px, transparent 2.4px) center top / 4px 11px repeat-y;
}

.course-roadmap-day > img {
  display: block;
  width: clamp(90px, 7.8vw, 112px);
  height: auto;
  margin: -2px auto 0;
}

@media (max-width: 1320px) {
  .course-roadmap {
    min-height: 0;
    padding: 40px clamp(22px, 5vw, 58px) 48px;
  }

  .course-roadmap__intro {
    position: relative;
    top: auto;
    left: auto;
    width: min(100%, 760px);
  }

  .course-roadmap__intro h2 {
    font-size: clamp(29px, 4.2vw, 40px);
  }

  .course-roadmap__intro > p {
    max-width: 680px;
  }

  .course-roadmap__track {
    position: relative;
    display: grid;
    gap: 20px;
    margin-top: 46px;
  }

  .course-roadmap__track::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 58px;
    width: 3px;
    background: linear-gradient(180deg, #9bbfea 0%, #2e82ff 100%);
    border-radius: 999px;
    content: "";
  }

  .course-roadmap__curve {
    display: none;
  }

  .course-roadmap-day {
    position: relative;
    top: auto;
    left: auto;
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    width: 100%;
  }

  .course-roadmap-day__card {
    grid-column: 2;
    min-height: 0;
  }

  .course-roadmap-day__badge {
    left: 24px;
    transform: none;
  }

  .course-roadmap-day__connector {
    display: none;
  }

  .course-roadmap-day > img {
    z-index: 1;
    grid-row: 1;
    grid-column: 1;
    width: 116px;
    margin: 0;
  }
}

@media (max-width: 640px) {
  .course-roadmap {
    padding: 32px 16px 38px;
  }

  .course-roadmap__intro h2 {
    font-size: 23px;
    line-height: 1.35;
  }

  .course-roadmap__intro h2 span {
    white-space: normal;
  }

  .course-roadmap__intro > i {
    width: 60px;
    height: 4px;
    margin: 13px 0;
  }

  .course-roadmap__intro > p {
    font-size: 12px;
    line-height: 1.65;
  }

  .course-roadmap__track {
    gap: 18px;
    margin-top: 36px;
  }

  .course-roadmap__track::before {
    left: 34px;
    width: 3px;
  }

  .course-roadmap-day {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 10px;
  }

  .course-roadmap-day > img {
    width: 70px;
  }

  .course-roadmap-day__card {
    padding: 16px 12px 11px;
  }

  .course-roadmap-day__badge {
    top: -25px;
    left: 15px;
    min-width: 76px;
    padding: 6px 13px;
    font-size: 14px;
  }

  .course-roadmap-day__card h3 {
    font-size: 15px;
  }

  .course-roadmap-day__card > p {
    margin-top: 8px;
    font-size: 11px;
    line-height: 1.65;
  }

  .course-roadmap-day__card ul {
    gap: 6px;
    margin-top: 12px;
  }

  .course-roadmap-day__card li {
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 6px;
    font-size: 11px;
  }

  .course-roadmap-day__card li svg {
    width: 21px;
    height: 21px;
  }
}

.course-pricing-cta-section {
  padding: clamp(32px, 3.5vw, 48px) 20px clamp(40px, 4vw, 58px);
  background: #ffffff;
}

.course-pricing-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  width: min(100%, 420px);
  min-height: 68px;
  margin: 0 auto;
  padding: 13px 22px 13px 26px;
  color: #07589d;
  background: #e9f0f7;
  border: 2px solid #07589d;
  border-radius: 8px;
  box-shadow: none;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.course-pricing-cta:hover {
  color: #ffffff;
  background: #07589d;
  transform: translateY(-3px);
}

.course-pricing-cta:focus-visible {
  outline: 3px solid rgba(46, 130, 255, 0.25);
  outline-offset: 3px;
}

.course-pricing-cta__copy {
  min-width: 0;
  text-align: center;
}

.course-pricing-cta__copy strong {
  color: currentColor;
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: 0;
}

.course-pricing-cta__arrow {
  color: currentColor;
  font-size: 30px;
  line-height: 1;
  font-weight: 400;
  transition: transform 180ms ease;
}

.course-pricing-cta:hover .course-pricing-cta__arrow {
  transform: translateX(5px);
}

@media (max-width: 640px) {
  .course-pricing-cta-section {
    padding: 28px 16px 40px;
  }

  .course-pricing-cta {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    min-height: 62px;
    padding: 12px 16px 12px 18px;
    border-width: 2px;
    border-radius: 8px;
  }

  .course-pricing-cta__copy strong {
    font-size: 17px;
  }

  .course-pricing-cta__arrow {
    display: block;
    font-size: 27px;
  }
}

/* Course-page color system: blue remains primary, with teal and coral used as accents. */
.course-heading-accent {
  color: #1268d8;
}

.course-lead-accent {
  font-weight: 900;
  white-space: nowrap;
}

.course-lead-accent--basic {
  color: #1268d8;
}

.course-lead-accent--standard {
  color: #087f8c;
}

.course-lead-accent--enterprise {
  color: #c94b24;
}

.courses-mirror-page .pricing-page-intro__line {
  background: linear-gradient(90deg, #2e82ff 0 68%, #0b93a1 68% 86%, #d9572b 86%);
}

.course-insights__header > span {
  background: linear-gradient(90deg, #2e82ff 0 62%, #0b93a1 62% 82%, #d9572b 82%);
}

.course-insight-point {
  --course-point-accent: #237be7;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f7faff 0%, #f3f5f7 28%);
}

.course-insight-point:nth-child(2) {
  --course-point-accent: #087f8c;
}

.course-insight-point:nth-child(3) {
  --course-point-accent: #255fc3;
}

.course-insight-point:nth-child(4) {
  --course-point-accent: #c94b24;
}

.course-insight-point::before {
  content: none;
}

.course-insight-point .course-insight-point__label {
  background: var(--course-point-accent);
}

.course-insight-point .course-insight-chart {
  border-top: 1px solid #d6dee8;
}

.course-insight-point .course-insight-chart figcaption::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  background: var(--course-point-accent);
  border-radius: 50%;
  content: "";
}

.course-roadmap__intro h2 span:last-child {
  color: #145ebc;
}

.course-roadmap__intro > i {
  background: linear-gradient(90deg, #1768ed 0 68%, #0b93a1 68% 86%, #d9572b 86%);
}

.course-roadmap-day {
  --course-roadmap-accent: #1268d8;
}

.course-roadmap-day--2 {
  --course-roadmap-accent: #087f8c;
}

.course-roadmap-day--3 {
  --course-roadmap-accent: #255fc3;
}

.course-roadmap-day--4 {
  --course-roadmap-accent: #c94b24;
}

.course-roadmap-day__card {
  border-top: 1px solid #e0e6ee;
}

.course-roadmap-day__badge {
  background: var(--course-roadmap-accent);
}

.course-roadmap-day__card li svg {
  stroke: var(--course-roadmap-accent);
}

.usecase-page .usecase-visual-hero {
  width: 100%;
  aspect-ratio: 2476 / 660;
  overflow: hidden;
  background: #eaf3ff;
  border-bottom: 1px solid #d4e5fb;
}

.usecase-page .usecase-visual-hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.usecase-page .usecase-visual-hero picture {
  display: block;
  height: 100%;
}

@media (max-width: 767px) {
  .usecase-page .usecase-visual-hero {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    padding: 0;
    overflow: hidden;
    background: #edf5ff;
    border-bottom: 0;
    line-height: 0;
  }

  .usecase-page .usecase-visual-hero picture {
    display: block;
    width: 100%;
    height: auto;
  }

  .usecase-page .usecase-visual-hero img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0;
  }
}

.contact-page .contact-visual-hero {
  width: 100%;
  overflow: hidden;
  background: #eaf3ff;
  border-bottom: 1px solid #d4e5fb;
}

.contact-page .contact-visual-hero img {
  display: block;
  width: 100%;
  height: auto;
}

.contact-page .contact-visual-hero picture {
  display: block;
  width: 100%;
}

@media (max-width: 767px) {
  .contact-page .contact-visual-hero {
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
    background: #edf5ff;
    border-bottom: 0;
    line-height: 0;
  }

  .contact-page .contact-visual-hero picture,
  .contact-page .contact-visual-hero img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0;
  }
}

.contact-page .contact-consultation {
  display: block;
  padding: clamp(52px, 5vw, 82px) clamp(20px, 4.5vw, 72px) clamp(58px, 5.5vw, 90px);
  color: #071d42;
  background:
    radial-gradient(circle at 4% 0%, rgba(46, 130, 255, 0.08), transparent 18%),
    radial-gradient(circle at 95% 4%, rgba(46, 130, 255, 0.08), transparent 17%),
    #fbfdff;
}

.contact-consultation__inner {
  width: min(100%, 1540px);
  margin: 0 auto;
}

.contact-consultation__heading {
  margin: 0 auto clamp(30px, 3.2vw, 48px);
  text-align: center;
}

.contact-consultation__heading h2 {
  max-width: none;
  margin: 0;
  color: #061a3c;
  font-size: clamp(30px, 3.1vw, 50px);
  line-height: 1.34;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.contact-consultation__heading h2 span {
  display: block;
}

.contact-consultation__heading > p {
  margin: 14px auto 0;
  color: #526989;
  font-size: clamp(14px, 1.1vw, 18px);
  line-height: 1.75;
  font-weight: 700;
}

.contact-page .contact-consultation__form {
  display: grid;
  gap: 20px;
  padding: 0;
  color: #071d42;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.contact-step {
  min-inline-size: 0;
  margin: 0;
  padding: clamp(28px, 3.2vw, 46px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #d8e7fa;
  border-radius: 20px;
  box-shadow: 0 18px 46px rgba(24, 67, 132, 0.055);
}

.contact-step__heading {
  position: relative;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.contact-step__icon {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  color: #1d74ea;
  background: #eef5ff;
  border-radius: 50%;
}

.contact-step__icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-step__number {
  position: absolute;
  top: 0;
  left: 48px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #ffffff;
  background: linear-gradient(135deg, #2f83ff, #1268df);
  border: 4px solid #ffffff;
  border-radius: 12px;
  font-size: 17px;
  line-height: 1;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(46, 130, 255, 0.2);
}

.contact-step__heading h3 {
  margin: 0;
  color: #071d42;
  font-size: clamp(24px, 1.9vw, 32px);
  line-height: 1.3;
  font-weight: 900;
}

.contact-step__heading p {
  margin: 16px 0 0;
  color: #132b4e;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.5;
  font-weight: 800;
}

.contact-step__heading em,
.contact-field em {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-left: 8px;
  padding: 0 10px;
  color: #ffffff;
  background: #4d8df5;
  border-radius: 5px;
  font-size: 13px;
  line-height: 1;
  font-style: normal;
  font-weight: 900;
}

.contact-step__lead,
.contact-step__hint {
  margin: 12px 0 0 102px;
  color: #68809f;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 700;
}

.contact-purpose-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 0 102px;
}

.contact-page .contact-purpose-option {
  position: relative;
  display: block;
  min-width: 0;
}

.contact-page .contact-purpose-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  border: 0;
}

.contact-page .contact-purpose-option > span {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  padding: 12px 10px;
  color: #1768d8;
  background: #ffffff;
  border: 2px solid #d9e7f9;
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.contact-purpose-option svg {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-purpose-option strong {
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.25;
  font-weight: 900;
  white-space: nowrap;
}

.contact-purpose-option input:checked + span {
  color: #075fcf;
  background: #eef6ff;
  border-color: #2e82ff;
  box-shadow: 0 10px 22px rgba(46, 130, 255, 0.15);
  transform: translateY(-2px);
}

.contact-purpose-option input:focus-visible + span {
  outline: 4px solid rgba(46, 130, 255, 0.24);
  outline-offset: 2px;
}

.contact-information-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 24px;
  margin: 22px 0 0 102px;
}

.contact-page .contact-field {
  display: grid;
  gap: 10px;
}

.contact-page .contact-field > span {
  display: flex;
  align-items: center;
  color: #071d42;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 900;
}

.contact-field em.is-optional {
  color: #657a97;
  background: #eef3f9;
}

.contact-page .contact-field input {
  width: 100%;
  min-height: 58px;
  padding: 14px 18px;
  color: #071d42;
  background: #ffffff;
  border: 2px solid #dce8f8;
  border-radius: 11px;
  font-size: 16px;
}

.contact-page .contact-field input::placeholder {
  color: #8294ad;
  opacity: 1;
}

.contact-page .contact-field input:focus {
  border-color: #2e82ff;
  outline: 4px solid rgba(46, 130, 255, 0.14);
}

.contact-page .contact-consent {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin: 4px auto 0;
  color: #607794;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
}

.contact-page .contact-consent input {
  width: 18px;
  height: 18px;
  min-height: 0;
  padding: 0;
  flex: 0 0 18px;
  accent-color: #1768ed;
}

.contact-page .contact-consent span {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.contact-consent a {
  color: #1768ed;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-page .contact-consultation__submit {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  width: min(100%, 920px);
  min-height: 64px;
  margin: 0 auto;
  padding: 0 28px;
  color: #ffffff;
  background: linear-gradient(135deg, #2e82ff, #0759e6);
  border: 0;
  border-radius: 999px;
  font-size: clamp(17px, 1.5vw, 23px);
  line-height: 1.3;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(23, 104, 237, 0.24);
  cursor: pointer;
}

.contact-consultation__submit svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-consultation__security {
  margin: -5px auto 0;
  color: #71849f;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 700;
  text-align: center;
}

.contact-page .contact-consultation .form-status {
  margin: 0;
  text-align: center;
}

@media (max-width: 1100px) {
  .contact-purpose-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .contact-page .contact-consultation {
    padding: 38px 16px 48px;
  }

  .contact-consultation__heading h2 {
    font-size: clamp(26px, 7.4vw, 34px);
  }

  .contact-consultation__heading h2 span {
    display: inline;
  }

  .contact-consultation__heading > p {
    font-size: 14px;
  }

  .contact-step {
    padding: 24px 18px;
    border-radius: 14px;
  }

  .contact-step__heading {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 16px;
  }

  .contact-step__icon {
    width: 58px;
    height: 58px;
  }

  .contact-step__icon svg {
    width: 30px;
    height: 30px;
  }

  .contact-step__number {
    left: 32px;
    width: 36px;
    height: 36px;
    border-width: 3px;
    font-size: 14px;
  }

  .contact-step__heading h3 {
    font-size: 22px;
  }

  .contact-step__heading p {
    margin-top: 10px;
    font-size: 14px;
  }

  .contact-step__lead,
  .contact-step__hint,
  .contact-purpose-grid,
  .contact-information-grid {
    margin-left: 0;
  }

  .contact-purpose-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 18px;
  }

  .contact-information-grid {
    grid-template-columns: 1fr;
  }

  .contact-page .contact-consent {
    align-items: flex-start;
  }

  .contact-page .contact-consultation__submit {
    min-height: 58px;
    padding: 12px 20px;
    border-radius: 16px;
    font-size: 16px;
  }
}

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

.course-plan-step {
  --course-plan-accent: #1268d8;
  border-top: 2px solid #d4e6ff;
}

.course-plan-step:nth-child(2) {
  --course-plan-accent: #087f8c;
}

.course-plan-step:nth-child(3) {
  --course-plan-accent: #c94b24;
}

.course-plan-step:not(:last-child)::after,
.course-plan-step-heading > span {
  background: var(--course-plan-accent);
}

.course-plan-step-heading p,
.course-plan-step-details h4 {
  color: var(--course-plan-accent);
}

.course-plan-step-details h4::before {
  border-color: var(--course-plan-accent);
}

@media (max-width: 900px) {
  .course-plan-step:not(:last-child)::after {
    content: "";
    background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 76 44'%3E%3Cpath fill='%231268d8' d='M0 0h20l22 22-22 22H0l22-22z'/%3E%3Cpath fill='%231268d8' d='M34 0h20l22 22-22 22H34l22-22z'/%3E%3C/svg%3E") center / contain no-repeat;
  }
}

.course-support-strip li:nth-child(2) svg,
.course-support-strip li:nth-child(5) svg {
  stroke: #087f8c;
}

.course-support-strip li:nth-child(4) svg {
  stroke: #c94b24;
}

.course-choice-card {
  --course-choice-accent: #1268d8;
  border-top: 2px solid #dbe9fa;
}

.course-choice-card:nth-child(2) {
  --course-choice-accent: #087f8c;
}

.course-choice-card:nth-child(3) {
  --course-choice-accent: #c94b24;
}

.course-choice-card .course-choice-badge,
.course-choice-card .course-choice-meta h4,
.course-choice-card .course-choice-meta li::before {
  color: var(--course-choice-accent);
}

.course-choice-card .course-choice-badge {
  background: #f4f8fc;
  border-color: var(--course-choice-accent);
}

.course-pricing-cta:not(:hover) .course-pricing-cta__arrow {
  color: #c94b24;
}

.course-visual-intro {
  position: relative;
  overflow: hidden;
  color: #071b3a;
  background: #edf5ff;
  border-bottom: 1px solid #d4e5f8;
}

.course-visual-intro::before,
.course-visual-intro::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.course-visual-intro::before {
  top: -148px;
  left: -128px;
  width: 270px;
  height: 270px;
  background: #2e82ff;
}

.course-visual-intro::after {
  top: 50px;
  left: 118px;
  width: 34px;
  height: 34px;
  background: rgba(46, 130, 255, 0.82);
}

.course-visual-intro__inner {
  display: grid;
  grid-template-columns: minmax(360px, 0.42fr) minmax(560px, 0.58fr);
  align-items: center;
  width: min(100%, 1536px);
  min-height: 390px;
  margin: 0 auto;
}

.course-visual-intro__copy {
  z-index: 1;
  padding: 52px 28px 52px clamp(36px, 6vw, 96px);
}

.course-visual-intro__copy h1 {
  margin: 0;
  color: #071b3a;
  font-size: clamp(36px, 3vw, 48px);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0;
}

.course-visual-intro__line {
  display: block;
  width: 64px;
  height: 4px;
  margin: 22px 0 18px;
  background: linear-gradient(90deg, #1768ed 0 72%, #0b93a1 72% 88%, #d9572b 88%);
  border-radius: 999px;
}

.course-visual-intro__copy p {
  max-width: 560px;
  margin: 0;
  color: #203450;
  font-size: clamp(14px, 1.18vw, 18px);
  line-height: 1.75;
  font-weight: 700;
  letter-spacing: 0;
}

.course-visual-intro__copy p + p {
  margin-top: 3px;
}

.course-visual-intro__media {
  position: relative;
  align-self: stretch;
  min-width: 0;
  overflow: hidden;
}

.course-visual-intro__media::after {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  width: 70px;
  background: linear-gradient(90deg, #edf5ff, rgba(237, 245, 255, 0));
  content: "";
}

.course-visual-intro__media img {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 166.667%;
  max-width: none;
  height: auto;
  transform: translate(-40%, -50%);
}

@media (max-width: 900px) {
  .course-visual-intro__inner {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }

  .course-visual-intro__copy {
    padding: 42px clamp(24px, 8vw, 64px) 28px;
  }

  .course-visual-intro__media {
    height: clamp(160px, 42vw, 270px);
  }

  .course-visual-intro__media img {
    top: 0;
    width: 166.667%;
    transform: translateX(-40%);
  }
}

@media (max-width: 640px) {
  .course-visual-intro::before,
  .course-visual-intro::after {
    display: none;
  }

  .course-visual-intro__copy {
    padding: 32px 20px 24px;
  }

  .course-visual-intro__copy h1 {
    font-size: 34px;
  }

  .course-visual-intro__line {
    width: 54px;
    margin: 16px 0 14px;
  }

  .course-visual-intro__copy p {
    font-size: 13px;
    line-height: 1.7;
  }

  .course-visual-intro__media {
    height: 162px;
  }
}

.course-image-hero {
  aspect-ratio: 2476 / 660;
  overflow: hidden;
  background: #edf5ff;
  border-bottom: 1px solid #d4e5f8;
  line-height: 0;
}

.course-image-hero > img,
.course-image-hero > picture > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.course-image-hero > picture {
  display: block;
  height: 100%;
}

@media (max-width: 767px) {
  .course-image-hero {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    overflow: hidden;
    background: #edf5ff;
    border-bottom: 0;
    line-height: 0;
  }

  .course-image-hero > picture {
    display: block;
    width: 100%;
    height: auto;
  }

  .course-image-hero > picture > img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0;
  }
}

.shared-code-hero + .course-insights {
  padding-top: 32px;
}

.pricing-image-hero {
  overflow: hidden;
  background: #edf5ff;
  border-bottom: 1px solid #d4e5f8;
  line-height: 0;
}

.pricing-image-hero > img {
  display: block;
  width: 100%;
  height: auto;
}

.shared-code-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  grid-template-rows: minmax(0, 1fr);
  width: 100%;
  height: calc(100svh - 80px);
  min-height: 560px;
  overflow: hidden;
  background: #edf5ff;
  border-bottom: 1px solid #d4e5f8;
}

.shared-code-hero__background {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  border-left: 1px solid #d4e5f8;
}

.shared-code-hero__copy {
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  width: min(100%, 1040px);
  padding: clamp(40px, 6vw, 108px);
  margin: 0 auto;
  color: #05256c;
  text-align: center;
}

.shared-code-hero__eyebrow {
  margin: 0;
  color: #1976e8;
  font-size: clamp(14px, 1.21vw, 24px);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.03em;
}

.shared-code-hero__title {
  width: 100%;
  max-width: none;
  margin: 6px 0 0;
  color: #05256c;
  font-size: clamp(35px, 3.43vw, 67px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-align: center;
}

.shared-code-hero__underline {
  display: block;
  width: clamp(48px, 3.71vw, 73px);
  height: clamp(4px, 0.39vw, 7px);
  margin: clamp(7px, 0.63vw, 13px) auto 0;
  background: #2383ee;
  border-radius: 999px;
}

.shared-code-hero__description {
  margin: clamp(13px, 1.16vw, 22px) 0 0;
  color: #082968;
  font-size: clamp(14px, 1.16vw, 22px);
  font-weight: 500;
  line-height: 1.78;
  letter-spacing: 0.01em;
}

.shared-code-hero__description span {
  display: block;
  max-width: 100%;
  font: inherit;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
}

@media (min-width: 1025px) {
  .shared-code-hero {
    display: block;
    height: max(320px, calc(40vh - 32px));
    min-height: 0;
  }

  .shared-code-hero__background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: center;
    border-left: 0;
  }

  .shared-code-hero__copy {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(80%, 1040px);
    padding: 0;
    margin: 0;
    transform: translate(-50%, -50%);
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .shared-code-hero {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(0, 2fr) minmax(0, 3fr);
  }

  .shared-code-hero__background {
    grid-column: 1;
    grid-row: 1;
    object-position: right center;
    border-bottom: 1px solid #d4e5f8;
    border-left: 0;
  }

  .shared-code-hero__copy {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    padding: 28px 48px;
  }

  .shared-code-hero__eyebrow {
    font-size: clamp(12px, 1.33vw, 14px);
  }

  .shared-code-hero__title {
    margin-top: 4px;
    font-size: clamp(27px, 3.5vw, 35px);
  }

  .shared-code-hero__underline {
    height: 4px;
    margin-top: 7px;
  }

  .shared-code-hero__description {
    margin-top: 10px;
    font-size: clamp(12px, 1.25vw, 14px);
    line-height: 1.6;
  }
}

@media (max-width: 767px) {
  .shared-code-hero {
    display: block;
    height: 30svh;
    min-height: 0;
    border-bottom: 0;
  }

  .shared-code-hero__background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-left: 0;
  }

  .shared-code-hero__copy {
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% - 24px);
    padding: 0;
    margin: 0;
    transform: translate(-50%, -50%);
  }

  .shared-code-hero__eyebrow {
    font-size: clamp(11px, 3.5vw, 14px);
  }

  .shared-code-hero__title {
    margin-top: 5px;
    font-size: clamp(29px, 9vw, 38px);
  }

  .shared-code-hero__underline {
    width: 45px;
    height: 4px;
    margin-top: 7px;
  }

  .shared-code-hero__description {
    margin-top: clamp(9px, 2svh, 17px);
    font-size: clamp(11px, 3.4vw, 14px);
    line-height: 1.65;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .shared-code-hero__description span {
    word-break: break-all;
  }
}

/* Coded six-step course flow. Only the central illustrations are cropped assets. */
.courses-mirror-page .course-flow-section {
  padding: clamp(42px, 4vw, 64px) 0 clamp(46px, 4.5vw, 72px);
  background:
    radial-gradient(circle at 8% 16%, rgba(75, 145, 244, 0.08), transparent 25%),
    radial-gradient(circle at 92% 20%, rgba(44, 124, 244, 0.07), transparent 24%),
    #ffffff;
}

.course-flow-coded__heading {
  width: min(100%, 1360px);
  margin: 0 auto;
  padding: 0 28px clamp(28px, 3vw, 42px);
  text-align: center;
}

.course-flow-coded__heading .course-flow-coded__eyebrow {
  margin: 0 0 12px;
  color: #1670ed;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.course-flow-coded__heading h2 {
  margin: 0;
  color: #071f48;
  font-size: clamp(34px, 3.5vw, 54px);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0;
}

.course-flow-coded__heading > p:last-child {
  max-width: 940px;
  margin: 18px auto 0;
  color: #52647b;
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.8;
  font-weight: 700;
  letter-spacing: 0;
}

.course-flow-coded {
  width: min(100%, 1420px);
  margin: 0 auto;
  padding: 0 28px;
}

.course-flow-coded__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.course-flow-coded__steps::before {
  position: absolute;
  top: 30px;
  right: 7.8%;
  left: 7.8%;
  border-top: 2px dashed #66a5f9;
  content: "";
}

.course-flow-coded__step {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
}

.course-flow-coded__step::before {
  position: absolute;
  z-index: 0;
  top: 56px;
  left: 50%;
  height: 30px;
  border-left: 2px solid #9ac3f7;
  content: "";
}

.course-flow-coded__step:nth-child(odd):not(:last-child)::after {
  position: absolute;
  z-index: 1;
  top: 24px;
  right: -9px;
  width: 11px;
  height: 11px;
  background: #ffffff;
  border-top: 2px solid #2c7cf4;
  border-right: 2px solid #2c7cf4;
  content: "";
  transform: rotate(45deg);
}

.course-flow-coded__number {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  color: #ffffff;
  background: linear-gradient(145deg, #2f88ff 0%, #075ce3 100%);
  border: 4px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 7px 16px rgba(17, 101, 223, 0.2);
  font-size: 20px;
  line-height: 1;
  font-weight: 900;
}

.course-flow-coded__card {
  display: grid;
  grid-template-rows: 164px auto 4px minmax(94px, 1fr) auto;
  width: 100%;
  min-height: 438px;
  margin-top: 25px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #d9e7f7;
  border-radius: 8px;
  box-shadow: 0 16px 32px rgba(38, 84, 143, 0.09);
  text-align: center;
}

.course-flow-coded__card > img {
  display: block;
  width: 154px;
  height: 154px;
  margin: 10px auto 0;
  object-fit: cover;
}

.course-flow-coded__card h3 {
  display: grid;
  min-height: 46px;
  margin: 0;
  padding: 0 10px;
  place-items: center;
  color: #0b1f3b;
  font-size: clamp(15px, 1.18vw, 18px);
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: 0;
}

.course-flow-coded__line {
  align-self: center;
  justify-self: center;
  width: 32px;
  height: 3px;
  margin: 6px 0 10px;
  background: #2c7cf4;
  border-radius: 999px;
}

.course-flow-coded__card > p {
  margin: 0;
  padding: 0 13px 14px;
  color: #465872;
  font-size: clamp(11px, 0.86vw, 13px);
  line-height: 1.8;
  font-weight: 650;
  letter-spacing: 0;
}

.course-flow-coded__estimate {
  display: flex;
  min-height: 72px;
  gap: 9px;
  align-items: center;
  padding: 11px 10px;
  background: linear-gradient(180deg, #f8fbff 0%, #f1f7ff 100%);
  text-align: left;
}

.course-flow-coded__estimate > svg {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  padding: 8px;
  color: #2b79e9;
  background: #ffffff;
  border: 1px solid #d6e6fa;
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.course-flow-coded__estimate span,
.course-flow-coded__estimate small,
.course-flow-coded__estimate strong {
  display: block;
}

.course-flow-coded__estimate span {
  min-width: 0;
}

.course-flow-coded__estimate small {
  margin-bottom: 2px;
  color: #788ba2;
  font-size: 10px;
  line-height: 1.3;
  font-weight: 800;
}

.course-flow-coded__estimate strong {
  color: #126be5;
  font-size: clamp(11px, 0.84vw, 13px);
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: 0;
}

.course-flow-coded__support {
  display: grid;
  grid-template-columns: minmax(340px, 1.35fr) minmax(0, 2fr);
  gap: 28px;
  align-items: center;
  margin-top: 26px;
  padding: 20px clamp(22px, 3vw, 40px);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #d9e7f7;
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(38, 84, 143, 0.08);
}

.course-flow-coded__supportLead {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.course-flow-coded__supportMark {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  color: #ffffff;
  background: linear-gradient(145deg, #2f88ff 0%, #075ce3 100%);
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(20, 104, 224, 0.2);
}

.course-flow-coded__supportMark svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.course-flow-coded__supportLead h3 {
  margin: 0 0 6px;
  color: #0b1f3b;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 900;
}

.course-flow-coded__supportLead p {
  margin: 0;
  color: #52647b;
  font-size: 12px;
  line-height: 1.75;
  font-weight: 700;
}

.course-flow-coded__support ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.course-flow-coded__support li {
  display: flex;
  min-width: 0;
  gap: 11px;
  align-items: center;
  padding: 2px 18px;
  border-left: 1px solid #d6e4f4;
}

.course-flow-coded__support li > svg {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  padding: 8px;
  color: #2778e9;
  background: #f1f7ff;
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.course-flow-coded__support li span,
.course-flow-coded__support li strong,
.course-flow-coded__support li small {
  display: block;
}

.course-flow-coded__support li strong {
  color: #176fe3;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 900;
}

.course-flow-coded__support li small {
  margin-top: 2px;
  color: #596b82;
  font-size: 11px;
  line-height: 1.45;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .course-flow-coded {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .course-flow-coded__steps,
  .course-flow-coded__support {
    width: 1120px;
  }

  .course-flow-coded__card h3 {
    font-size: 16px;
  }

  .course-flow-coded__card > p,
  .course-flow-coded__estimate strong {
    font-size: 12px;
  }
}

@media (max-width: 680px) {
  .courses-mirror-page .course-flow-section {
    padding: 36px 0 44px;
  }

  .course-flow-coded__heading {
    padding: 0 18px 26px;
  }

  .course-flow-coded__heading h2 {
    font-size: 32px;
  }

  .course-flow-coded__heading > p:last-child {
    font-size: 13px;
    line-height: 1.75;
  }

  .course-flow-coded {
    width: 100%;
    padding: 0 14px;
    overflow: visible;
  }

  .course-flow-coded__steps {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    width: auto;
  }

  .course-flow-coded__steps::before,
  .course-flow-coded__step::before,
  .course-flow-coded__step::after {
    display: none;
  }

  .course-flow-coded__step {
    display: block;
  }

  .course-flow-coded__number {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 46px;
    height: 46px;
    border-width: 3px;
    font-size: 16px;
  }

  .course-flow-coded__card {
    grid-template-columns: 112px minmax(0, 1fr);
    grid-template-rows: auto 3px minmax(88px, 1fr) auto;
    min-height: 0;
    margin-top: 0;
    padding-top: 64px;
    text-align: left;
  }

  .course-flow-coded__card > img {
    grid-row: 1 / 4;
    width: 112px;
    height: 112px;
    margin: 0;
  }

  .course-flow-coded__card h3 {
    min-height: 0;
    padding: 0 14px;
    place-items: start;
    font-size: 18px;
  }

  .course-flow-coded__line {
    justify-self: start;
    margin: 7px 14px 8px;
  }

  .course-flow-coded__card > p {
    padding: 0 14px 12px;
    font-size: 12px;
    line-height: 1.65;
  }

  .course-flow-coded__estimate {
    grid-column: 1 / -1;
  }

  .course-flow-coded__support {
    grid-template-columns: 1fr;
    gap: 18px;
    width: auto;
    margin-top: 18px;
    padding: 20px 16px;
  }

  .course-flow-coded__supportLead {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 12px;
  }

  .course-flow-coded__supportMark {
    width: 58px;
    height: 58px;
  }

  .course-flow-coded__supportMark svg {
    width: 38px;
    height: 38px;
  }

  .course-flow-coded__supportLead h3 {
    font-size: 18px;
  }

  .course-flow-coded__support ul {
    grid-template-columns: 1fr;
  }

  .course-flow-coded__support li {
    padding: 12px 0;
    border-top: 1px solid #d6e4f4;
    border-left: 0;
  }
}

/* Pricing detail comparison table */
.pricing-comparison-table-wrap {
  width: min(100%, 1420px);
  margin: 0 auto;
  padding-top: 18px;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
}

.pricing-comparison-table-wrap:focus-visible {
  outline: 3px solid rgba(44, 124, 244, 0.28);
  outline-offset: 5px;
}

.pricing-comparison-table {
  width: 100%;
  min-width: 1120px;
  overflow: visible;
  color: #102544;
  background: #ffffff;
  border: 1px solid #d8e4f2;
  border-spacing: 0;
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(30, 77, 137, 0.08);
  table-layout: fixed;
}

.pricing-comparison-table th,
.pricing-comparison-table td {
  height: 48px;
  padding: 9px 16px;
  border-right: 1px solid #dce7f3;
  border-bottom: 1px solid #dce7f3;
  font-size: clamp(12px, 0.9vw, 14px);
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
}

.pricing-comparison-table tr > :last-child {
  border-right: 0;
}

.pricing-comparison-table tbody tr:last-child > * {
  border-bottom: 0;
}

.pricing-comparison-table thead th {
  position: relative;
  height: 94px;
  padding-top: 18px;
  background: linear-gradient(180deg, #f9fbfe 0%, #f3f7fc 100%);
  font-size: 16px;
  font-weight: 900;
}

.pricing-comparison-table thead th:first-child {
  width: 23%;
  color: #1c2c43;
  font-size: 17px;
}

.pricing-comparison-table thead th:not(:first-child) {
  width: 25.666%;
}

.pricing-comparison-table tbody th {
  padding-left: 20px;
  color: #1a2d48;
  background: #fbfdff;
  font-weight: 800;
  text-align: left;
  white-space: nowrap;
}

.pricing-comparison-table tbody th svg {
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-right: 12px;
  color: #1672ed;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
  vertical-align: -6px;
}

.pricing-comparison-table td {
  color: #243a58;
  background: rgba(255, 255, 255, 0.98);
}

.pricing-comparison-table th.is-standard,
.pricing-comparison-table td.is-standard {
  background: #f8fbff;
  box-shadow:
    inset 1px 0 #72a8fa,
    inset -1px 0 #72a8fa;
}

.pricing-comparison-table thead th.is-standard {
  border-top: 1px solid #2f7ef2;
}

.pricing-comparison-table tbody tr:last-child td.is-standard {
  border-bottom: 1px solid #72a8fa;
}

.pricing-comparison-table__plan,
.pricing-comparison-table thead strong {
  display: block;
}

.pricing-comparison-table__plan {
  margin-bottom: 9px;
  color: #176fe7;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 900;
}

.pricing-comparison-table__plan.is-standard,
.pricing-comparison-table__plan.is-premium {
  color: #07878e;
}

.pricing-comparison-table thead strong {
  color: #14243a;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 900;
}

.pricing-comparison-table__recommend {
  position: absolute;
  top: -18px;
  left: 50%;
  z-index: 2;
  min-width: 92px;
  padding: 5px 16px;
  color: #ffffff;
  background: linear-gradient(180deg, #2f83f4 0%, #0e66db 100%);
  border: 2px solid #ffffff;
  border-radius: 999px;
  box-shadow: 0 5px 13px rgba(27, 103, 212, 0.18);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  transform: translateX(-50%);
}

.pricing-comparison-check {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: #ffffff;
  background: #35bbc4;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(53, 187, 196, 0.2);
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
}

@media (max-width: 760px) {
  .pricing-page .pricing-explain-section {
    padding-right: 14px;
    padding-left: 14px;
  }

  .pricing-comparison-table-wrap {
    padding-top: 11px;
  }

  .pricing-comparison-table {
    min-width: 720px;
  }

  .pricing-comparison-table th,
  .pricing-comparison-table td {
    height: 28px;
    padding: 3px 6px;
    font-size: 9px;
    line-height: 1.2;
  }

  .pricing-comparison-table thead th {
    height: 52px;
    padding-top: 8px;
    font-size: 10px;
  }

  .pricing-comparison-table thead th:first-child {
    width: 32%;
    font-size: 11px;
  }

  .pricing-comparison-table thead th:not(:first-child) {
    width: 22.666%;
  }

  .pricing-comparison-table tbody th {
    padding-left: 7px;
  }

  .pricing-comparison-table tbody th svg {
    width: 13px;
    height: 13px;
    margin-right: 5px;
    stroke-width: 1.8;
    vertical-align: -3px;
  }

  .pricing-comparison-table__plan {
    margin-bottom: 3px;
    font-size: 11px;
  }

  .pricing-comparison-table thead strong {
    font-size: 9px;
    line-height: 1.15;
  }

  .pricing-comparison-table__recommend {
    top: -11px;
    min-width: 62px;
    padding: 3px 8px;
    border-width: 1px;
    font-size: 8px;
  }

  .pricing-comparison-check {
    width: 15px;
    height: 15px;
    font-size: 9px;
  }
}
