:root {
  --up-bg: #f7f8fa;
  --up-surface: #ffffff;
  --up-ink: #121826;
  --up-muted: #667085;
  --up-line: #d9dee8;
  --up-primary: #175cd3;
  --up-primary-dark: #0f46a6;
  --up-accent: #f2c94c;
  --up-dark: #101828;
  --up-radius: 8px;
  --up-shadow: 0 18px 50px rgba(18, 24, 38, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--up-bg);
  color: var(--up-ink);
  font-family: "Noto Sans KR", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input {
  letter-spacing: 0;
}

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

button {
  color: inherit;
  font: inherit;
}

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

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

svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  stroke-width: 1.8;
}

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

h1,
h2,
h3 {
  line-height: 1.24;
}

.up-site {
  overflow-x: clip;
}

.up-container {
  width: min(calc(100% - 40px), 1200px);
  margin-inline: auto;
}

.up-skip {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 4px;
  background: var(--up-ink);
  color: #fff;
  transform: translateY(-150%);
}

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

:focus-visible {
  outline: 3px solid var(--up-accent);
  outline-offset: 3px;
}

.up-notice {
  min-height: 38px;
  background: var(--up-dark);
  color: #fff;
  font-size: 13px;
}

.up-notice__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.up-notice a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
}

.up-notice svg {
  width: 15px;
  height: 15px;
}

.up-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(217, 222, 232, 0.85);
  background: rgba(255, 255, 255, 0.96);
  transition: box-shadow 180ms ease, background-color 180ms ease;
}

.up-header.is-scrolled {
  box-shadow: 0 8px 22px rgba(18, 24, 38, 0.08);
}

.up-header__inner {
  height: 74px;
  display: flex;
  align-items: center;
  gap: 38px;
}

.up-brand {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.up-brand__mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--up-primary);
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 800;
}

.up-brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.up-brand__text strong {
  font-size: 17px;
  font-weight: 800;
}

.up-brand__text small {
  margin-top: 5px;
  color: var(--up-muted);
  font-family: "Manrope", sans-serif;
  font-size: 9px;
  font-weight: 800;
}

.up-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-right: auto;
}

.up-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #344054;
  font-size: 14px;
  font-weight: 700;
}

.up-nav a:hover {
  color: var(--up-primary);
}

.up-header__actions,
.up-button-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.up-button,
.up-icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.up-button {
  padding: 11px 17px;
}

.up-button:hover,
.up-icon-button:hover {
  transform: translateY(-1px);
}

.up-button--large {
  min-height: 50px;
  padding: 13px 20px;
  font-size: 15px;
}

.up-button--primary {
  background: var(--up-primary);
  color: #fff;
}

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

.up-button--secondary {
  border-color: var(--up-line);
  background: #fff;
  color: var(--up-ink);
}

.up-button--secondary:hover {
  border-color: #98a2b3;
}

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

.up-button--outline-light {
  border-color: rgba(255, 255, 255, 0.65);
  background: transparent;
  color: #fff;
}

.up-button--outline-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.up-icon-button {
  width: 44px;
  padding: 0;
  border-color: var(--up-line);
  background: #fff;
}

.up-menu-button {
  display: none;
}

.up-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--up-primary);
  font-family: "Manrope", "Noto Sans KR", sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.up-kicker svg {
  width: 17px;
  height: 17px;
}

.up-kicker--light {
  color: #9cc2ff;
}

.up-section {
  padding: 112px 0;
  background: var(--up-surface);
}

.up-section--soft {
  background: var(--up-bg);
}

.up-section--dark {
  background: var(--up-dark);
  color: #fff;
}

.up-section-heading {
  margin-bottom: 46px;
}

.up-section-heading h2 {
  margin-bottom: 0;
  font-size: 40px;
  font-weight: 800;
}

.up-section-heading > p,
.up-section-heading > div + p {
  color: var(--up-muted);
  font-size: 17px;
}

.up-section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 44px;
}

.up-section-heading--split > p {
  margin-bottom: 3px;
}

.up-section-heading--center {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.up-section-heading--center .up-kicker {
  justify-content: center;
}

.up-section-heading--center h2 {
  margin-bottom: 16px;
}

.up-section-heading--center > p:last-child {
  margin-bottom: 0;
}

.up-text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--up-primary);
  font-size: 14px;
  font-weight: 800;
}

.up-footer {
  padding: 48px 0 30px;
  background: #fff;
  border-top: 1px solid var(--up-line);
}

.up-footer__top,
.up-footer__bottom,
.up-footer__channels {
  display: flex;
  align-items: center;
}

.up-footer__top {
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 30px;
}

.up-footer__channels {
  gap: 22px;
}

.up-footer__channels a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #475467;
  font-size: 13px;
  font-weight: 700;
}

.up-footer__channels svg {
  width: 15px;
  height: 15px;
}

.up-footer__bottom {
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--up-line);
  color: var(--up-muted);
  font-size: 12px;
}

.up-mobile-bar {
  display: none;
}

.up-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

/* Option A: guided commerce */
.a-hero {
  position: relative;
  padding: 84px 0 88px;
  background: var(--up-bg);
}

.a-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--up-accent);
}

.a-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
  align-items: center;
  gap: 68px;
}

.a-hero__copy h1 {
  margin-bottom: 24px;
  font-size: 54px;
  font-weight: 800;
}

.a-hero__lead {
  max-width: 650px;
  margin-bottom: 30px;
  color: #475467;
  font-size: 18px;
}

.a-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 34px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--up-line);
  list-style: none;
}

.a-hero__facts li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #475467;
  font-size: 13px;
  font-weight: 700;
}

.a-hero__facts svg {
  width: 18px;
  height: 18px;
  color: var(--up-primary);
}

.a-product-stage {
  position: relative;
  min-height: 510px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--up-line);
  border-radius: var(--up-radius);
  background: #eef1f5;
}

.a-product-stage::before,
.a-product-stage::after {
  content: "";
  position: absolute;
  background: #d6dce5;
}

.a-product-stage::before {
  width: 1px;
  height: 100%;
}

.a-product-stage::after {
  width: 100%;
  height: 1px;
}

.a-product-stage > img {
  position: relative;
  z-index: 1;
  width: 84%;
  height: auto;
  max-height: 430px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.a-product-stage__label {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  padding: 7px 10px;
  border: 1px solid var(--up-line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.9);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.a-product-stage__note {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 15px;
  border: 1px solid var(--up-line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
}

.a-product-stage__note svg {
  color: var(--up-primary);
}

.a-product-stage__note span {
  display: flex;
  flex-direction: column;
}

.a-product-stage__note strong {
  font-size: 13px;
}

.a-product-stage__note small {
  color: var(--up-muted);
  font-size: 10px;
}

.a-quick {
  border-top: 1px solid var(--up-line);
  border-bottom: 1px solid var(--up-line);
  background: #fff;
}

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

.a-quick__grid > a {
  min-height: 104px;
  display: grid;
  grid-template-columns: 38px 1fr 20px;
  align-items: center;
  gap: 14px;
  padding: 20px 30px;
  border-right: 1px solid var(--up-line);
}

.a-quick__grid > a:first-child {
  border-left: 1px solid var(--up-line);
}

.a-quick__grid > a > svg:first-child {
  width: 30px;
  height: 30px;
  color: var(--up-primary);
}

.a-quick__grid > a > svg:last-child {
  color: #98a2b3;
}

.a-quick__grid span {
  display: flex;
  flex-direction: column;
}

.a-quick__grid strong {
  font-size: 15px;
}

.a-quick__grid small {
  margin-top: 2px;
  color: var(--up-muted);
  font-size: 12px;
}

.a-scene-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.a-scene-tabs button {
  min-height: 44px;
  padding: 9px 17px;
  border: 1px solid var(--up-line);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  color: #475467;
  font-size: 14px;
  font-weight: 700;
}

.a-scene-tabs button[aria-selected="true"] {
  border-color: var(--up-primary);
  background: var(--up-primary);
  color: #fff;
}

.a-scene-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  overflow: hidden;
  border: 1px solid var(--up-line);
  border-radius: var(--up-radius);
  background: #fff;
}

.a-scene-panel__media {
  min-height: 500px;
  overflow: hidden;
  background: #e8ebef;
}

.a-scene-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.a-scene-panel__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px 44px;
}

.a-scene-panel__eyebrow {
  margin-bottom: 12px;
  color: var(--up-primary);
  font-size: 13px;
  font-weight: 800;
}

.a-scene-panel__copy h3 {
  margin-bottom: 16px;
  font-size: 30px;
}

.a-scene-panel__copy > p:not(.a-scene-panel__eyebrow) {
  color: var(--up-muted);
}

.a-scene-panel__copy ul {
  display: grid;
  gap: 11px;
  margin: 12px 0 24px;
  padding: 0;
  list-style: none;
}

.a-scene-panel__copy li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #344054;
  font-size: 14px;
}

.a-scene-panel__copy li svg {
  width: 17px;
  height: 17px;
  margin-top: 4px;
  color: var(--up-primary);
}

.a-selector {
  padding: 34px;
  border: 1px solid var(--up-line);
  border-radius: var(--up-radius);
  background: #fff;
  box-shadow: var(--up-shadow);
}

.a-selector__controls {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 34px;
}

.a-selector fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.a-selector legend {
  margin-bottom: 12px;
  color: #344054;
  font-size: 13px;
  font-weight: 800;
}

.up-segmented {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--up-line);
  border-radius: 7px;
  background: var(--up-bg);
}

.up-segmented--distance {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.up-segmented button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 5px;
  background: transparent;
  cursor: pointer;
  color: #475467;
  font-size: 13px;
  font-weight: 700;
}

.up-segmented button.is-active {
  border-color: var(--up-line);
  background: #fff;
  color: var(--up-primary);
  box-shadow: 0 3px 10px rgba(18, 24, 38, 0.08);
}

.up-segmented button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.a-selector__result {
  min-height: 112px;
  display: grid;
  grid-template-columns: 58px 1fr auto;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
  padding: 22px 24px;
  border: 1px solid #b7cff4;
  border-radius: 7px;
  background: #f3f7fd;
}

.a-selector__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--up-primary);
  color: #fff;
}

.a-selector__result p {
  margin-bottom: 1px;
  color: var(--up-muted);
  font-size: 11px;
  font-weight: 800;
}

.a-selector__result h3 {
  display: inline;
  margin: 0 10px 0 0;
  font-size: 24px;
}

.a-selector__result div > span {
  color: #475467;
  font-size: 13px;
}

.a-selector__disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 14px 0 0;
  color: var(--up-muted);
  font-size: 12px;
}

.a-selector__disclaimer svg {
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

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

.a-product-card {
  padding: 18px;
  border: 1px solid var(--up-line);
  border-radius: var(--up-radius);
  background: #fff;
}

.a-product-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 2px 2px 14px;
  color: var(--up-primary);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.a-product-card__visual {
  aspect-ratio: 1.45;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 6px;
  background: #eef1f5;
}

.a-product-card__visual img {
  width: 74%;
  height: 74%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.a-product-card h3 {
  margin: 22px 2px 10px;
  font-size: 22px;
}

.a-product-card p {
  min-height: 74px;
  margin: 0 2px 14px;
  color: var(--up-muted);
  font-size: 14px;
}

.a-product-card > a {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 2px 2px;
  border-top: 1px solid var(--up-line);
  color: var(--up-primary);
  font-size: 13px;
  font-weight: 800;
}

.a-product-card > a svg {
  width: 17px;
  height: 17px;
}

.a-compare {
  margin-top: 28px;
  overflow-x: auto;
  border: 1px solid var(--up-line);
  border-radius: var(--up-radius);
}

.a-compare__row {
  min-width: 760px;
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
}

.a-compare__row + .a-compare__row {
  border-top: 1px solid var(--up-line);
}

.a-compare__row span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-right: 1px solid var(--up-line);
  color: #475467;
  font-size: 13px;
}

.a-compare__row span:first-child {
  color: var(--up-ink);
  font-weight: 800;
}

.a-compare__row span:last-child {
  border-right: 0;
}

.a-compare__head {
  background: var(--up-bg);
}

.a-compare__head span {
  color: var(--up-ink);
  font-weight: 800;
}

.a-proof {
  background: #fff;
}

.a-proof__grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 70px;
}

.a-proof__copy h2 {
  margin-bottom: 18px;
  font-size: 40px;
}

.a-proof__copy > p:not(.up-kicker) {
  color: var(--up-muted);
  font-size: 16px;
}

.a-proof__links {
  display: grid;
  gap: 8px;
  margin-top: 28px;
}

.a-proof__links a {
  min-height: 74px;
  display: grid;
  grid-template-columns: 32px 1fr 20px;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--up-line);
  border-radius: 6px;
}

.a-proof__links a > svg:first-child {
  color: var(--up-primary);
}

.a-proof__links span {
  display: flex;
  flex-direction: column;
}

.a-proof__links strong {
  font-size: 14px;
}

.a-proof__links small {
  color: var(--up-muted);
  font-size: 11px;
}

.a-proof__gallery {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 12px;
}

.a-proof__gallery figure {
  position: relative;
  min-height: 390px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--up-radius);
  background: #e8ebef;
}

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

.a-proof__gallery figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 8px 10px;
  border-radius: 4px;
  background: rgba(16, 24, 40, 0.82);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.a-support__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  align-items: start;
  gap: 90px;
}

.a-support h2 {
  margin-bottom: 18px;
  font-size: 40px;
}

.a-support > .up-container > div:first-child > p:not(.up-kicker) {
  max-width: 460px;
  margin-bottom: 28px;
  color: #b8c0ce;
}

.up-accordion article {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.up-accordion article:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.up-accordion button {
  width: 100%;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
}

.up-accordion__panel p {
  max-width: 620px;
  margin: -4px 40px 22px 0;
  color: #b8c0ce;
  font-size: 13px;
}

.a-final {
  padding: 62px 0;
  border-bottom: 1px solid var(--up-line);
  background: var(--up-accent);
}

.a-final__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.a-final h2 {
  max-width: 640px;
  margin-bottom: 0;
  font-size: 32px;
}

.a-final .up-kicker {
  color: #765b00;
}

/* Option B: scene-led solutions */
.option-b {
  background: #fff;
}

.b-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  border-bottom-color: rgba(255, 255, 255, 0.24);
  background: transparent;
  color: #fff;
}

.b-header .up-brand__text small,
.b-header .up-nav a {
  color: rgba(255, 255, 255, 0.82);
}

.b-header .up-icon-button {
  border-color: rgba(255, 255, 255, 0.5);
  background: transparent;
  color: #fff;
}

.b-header.is-scrolled {
  position: fixed;
  border-bottom-color: var(--up-line);
  background: rgba(255, 255, 255, 0.97);
  color: var(--up-ink);
}

.b-header.is-scrolled .up-brand__text small,
.b-header.is-scrolled .up-nav a {
  color: #475467;
}

.b-header.is-scrolled .up-icon-button {
  border-color: var(--up-line);
  background: #fff;
  color: var(--up-ink);
}

.b-hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: #28303b;
  color: #fff;
}

.b-hero__backdrop {
  position: absolute;
  inset: 0;
  background-image: url("./assets/upointer-classroom-wide.webp");
  background-position: center 46%;
  background-size: cover;
  transform: scale(1.02);
}

.b-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 14, 24, 0.57);
}

.b-hero__inner {
  position: relative;
  z-index: 2;
  min-height: 760px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 110px;
  padding-bottom: 90px;
}

.b-hero__copy {
  max-width: 720px;
}

.b-hero__label {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
}

.b-hero h1 {
  margin-bottom: 22px;
  font-family: "Manrope", "Noto Sans KR", sans-serif;
  font-size: 82px;
  font-weight: 800;
}

.b-hero__copy > p:not(.b-hero__label) {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 21px;
}

.b-hero__meta {
  position: absolute;
  right: 0;
  bottom: 52px;
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.b-hero__meta span {
  min-width: 130px;
  display: flex;
  flex-direction: column;
  padding: 15px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
}

.b-hero__meta strong {
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
}

.b-hero__caption {
  position: absolute;
  right: 22px;
  bottom: 16px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
}

.b-intro {
  padding: 120px 0;
  background: #fff;
}

.b-intro__grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 90px;
}

.b-intro__title h2 {
  margin-bottom: 0;
  font-size: 44px;
}

.b-intro__body {
  padding-top: 32px;
}

.b-intro__body p {
  color: #475467;
  font-size: 17px;
}

.b-intro__visual {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  margin-top: 70px;
  border-top: 1px solid var(--up-line);
  border-bottom: 1px solid var(--up-line);
}

.b-intro__image {
  min-height: 460px;
  display: grid;
  place-items: center;
  background: #eef1f5;
}

.b-intro__image img {
  width: min(78%, 520px);
  aspect-ratio: 1;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.b-intro__features {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  border-left: 1px solid var(--up-line);
  list-style: none;
}

.b-intro__features li {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 16px;
  padding: 24px 30px;
  border-bottom: 1px solid var(--up-line);
}

.b-intro__features li:last-child {
  border-bottom: 0;
}

.b-intro__features svg {
  width: 28px;
  height: 28px;
  color: var(--up-primary);
}

.b-intro__features span {
  display: flex;
  flex-direction: column;
}

.b-intro__features strong {
  font-size: 15px;
}

.b-intro__features small {
  margin-top: 3px;
  color: var(--up-muted);
  font-size: 12px;
}

.b-spaces {
  padding-bottom: 0;
  background: var(--up-bg);
}

.b-space-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 36px;
  border-top: 1px solid var(--up-line);
  border-bottom: 1px solid var(--up-line);
}

.b-space-tabs button {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 24px;
  border: 0;
  border-right: 1px solid var(--up-line);
  background: transparent;
  cursor: pointer;
  color: var(--up-muted);
}

.b-space-tabs button:first-child {
  border-left: 1px solid var(--up-line);
}

.b-space-tabs button span {
  color: var(--up-ink);
  font-size: 18px;
  font-weight: 800;
}

.b-space-tabs button small {
  font-size: 11px;
}

.b-space-tabs button[aria-selected="true"] {
  background: var(--up-dark);
  color: #b8c0ce;
}

.b-space-tabs button[aria-selected="true"] span {
  color: #fff;
}

.b-space-stage {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: #29303a;
}

.b-space-stage > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.b-space-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 14, 24, 0.52);
}

.b-space-stage__inner {
  position: relative;
  z-index: 2;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 68px;
}

.b-space-stage__copy {
  max-width: 650px;
  color: #fff;
}

.b-space-stage__copy > p {
  margin-bottom: 12px;
  color: var(--up-accent);
  font-size: 13px;
  font-weight: 800;
}

.b-space-stage__copy h3 {
  margin-bottom: 16px;
  font-size: 42px;
}

.b-space-stage__copy > span {
  display: block;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
}

.b-space-stage__copy a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 800;
}

.b-product-list {
  border-top: 1px solid var(--up-ink);
}

.b-product-row {
  min-height: 146px;
  display: grid;
  grid-template-columns: 1.05fr 1fr 1.55fr 44px;
  align-items: center;
  gap: 32px;
  padding: 26px 0;
  border-bottom: 1px solid var(--up-line);
}

.b-product-row__distance,
.b-product-row__name {
  display: flex;
  flex-direction: column;
}

.b-product-row__distance strong {
  color: var(--up-primary);
  font-family: "Manrope", sans-serif;
  font-size: 26px;
}

.b-product-row__distance span,
.b-product-row__name span {
  color: var(--up-muted);
  font-size: 11px;
}

.b-product-row__name h3 {
  margin: 2px 0 0;
  font-size: 24px;
}

.b-product-row > p {
  margin-bottom: 0;
  color: #475467;
  font-size: 14px;
}

.b-products__action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 30px;
}

.b-products__action p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
  color: var(--up-muted);
  font-size: 13px;
}

.b-products__action svg {
  color: var(--up-primary);
}

.b-process__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
  gap: 84px;
}

.b-process__media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

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

.b-process__media span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border-radius: 4px;
  background: rgba(16, 24, 40, 0.84);
  color: #fff;
  font-size: 10px;
}

.b-process__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.b-process__copy h2 {
  margin-bottom: 38px;
  font-size: 42px;
}

.b-process__copy ol {
  margin: 0 0 22px;
  padding: 0;
  border-top: 1px solid var(--up-line);
  list-style: none;
  counter-reset: up-process;
}

.b-process__copy li {
  min-height: 116px;
  display: grid;
  grid-template-columns: 62px 1fr;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--up-line);
}

.b-process__copy li > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--up-line);
  border-radius: 50%;
  color: var(--up-primary);
  font-size: 11px;
  font-weight: 800;
}

.b-process__copy h3 {
  margin-bottom: 5px;
  font-size: 18px;
}

.b-process__copy li p {
  margin-bottom: 0;
  color: var(--up-muted);
  font-size: 13px;
}

.b-channel {
  background: #fff;
}

.b-channel__layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
}

.b-channel__feature {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  background: #e8ebef;
}

.b-channel__feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 14, 24, 0.25);
}

.b-channel__feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.b-channel__feature:hover img {
  transform: scale(1.025);
}

.b-channel__feature > span {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

.b-channel__feature > span svg {
  width: 42px;
  height: 42px;
  padding: 11px;
  border-radius: 50%;
  background: #fff;
  color: var(--up-ink);
}

.b-channel__links {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  border-top: 1px solid var(--up-line);
}

.b-channel__links a {
  display: grid;
  grid-template-columns: 1fr 24px;
  align-items: center;
  gap: 18px;
  padding: 24px 30px;
  border-bottom: 1px solid var(--up-line);
}

.b-channel__links a > span {
  display: flex;
  flex-direction: column;
}

.b-channel__links small {
  margin-bottom: 8px;
  color: var(--up-primary);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.b-channel__links strong {
  font-size: 17px;
}

.b-support__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 86px;
}

.b-support__intro h2 {
  margin-bottom: 20px;
  font-size: 42px;
}

.b-support__intro > p:not(.up-kicker) {
  max-width: 490px;
  margin-bottom: 30px;
  color: #b8c0ce;
}

.b-support__topics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.b-support__topics a {
  min-height: 150px;
  display: grid;
  grid-template-columns: 30px 1fr 18px;
  align-items: center;
  gap: 14px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.b-support__topics a > svg:first-child {
  color: #9cc2ff;
}

.b-support__topics span {
  display: flex;
  flex-direction: column;
}

.b-support__topics strong {
  font-size: 14px;
}

.b-support__topics small {
  margin-top: 4px;
  color: #98a2b3;
  font-size: 11px;
}

.b-final {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #303742;
  color: #fff;
}

.b-final > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.b-final__shade {
  position: absolute;
  inset: 0;
  background: rgba(8, 14, 24, 0.64);
}

.b-final__inner {
  position: relative;
  z-index: 2;
}

.b-final__inner > p {
  margin-bottom: 14px;
  color: var(--up-accent);
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.b-final h2 {
  margin-bottom: 30px;
  font-size: 46px;
}

.up-footer--b {
  background: var(--up-dark);
  border-top: 0;
  color: #fff;
}

.up-footer--b .up-brand__text small,
.up-footer--b .up-footer__channels a,
.up-footer--b .up-footer__bottom {
  color: #98a2b3;
}

.up-footer--b .up-footer__bottom {
  border-top-color: rgba(255, 255, 255, 0.15);
}

/* Concept comparison */
.concept-index {
  min-height: 100vh;
  background: var(--up-bg);
}

.concept-index__header {
  padding: 34px 0 28px;
  border-bottom: 1px solid var(--up-line);
  background: #fff;
}

.concept-index__header .up-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.concept-index__title p {
  margin-bottom: 6px;
  color: var(--up-primary);
  font-size: 12px;
  font-weight: 800;
}

.concept-index__title h1 {
  margin-bottom: 0;
  font-size: 28px;
}

.concept-index__date {
  color: var(--up-muted);
  font-size: 12px;
}

.concept-index__main {
  padding: 54px 0 70px;
}

.concept-index__intro {
  max-width: 700px;
  margin-bottom: 34px;
  color: #475467;
  font-size: 15px;
}

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

.concept-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--up-line);
  border-radius: var(--up-radius);
  background: #fff;
}

.concept-card__preview {
  position: relative;
  aspect-ratio: 1.48;
  overflow: hidden;
  background: #e8ebef;
}

.concept-card__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 400ms ease;
}

.concept-card--a .concept-card__preview {
  background: #eef1f5;
}

.concept-card--a .concept-card__preview img {
  width: 74%;
  height: 74%;
  margin: 7% auto 0;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.concept-card:hover .concept-card__preview img {
  transform: scale(1.015);
}

.concept-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 7px 9px;
  border-radius: 4px;
  background: var(--up-accent);
  color: #493a00;
  font-size: 10px;
  font-weight: 800;
}

.concept-card__body {
  padding: 24px;
}

.concept-card__body > p:first-child {
  margin-bottom: 7px;
  color: var(--up-primary);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.concept-card h2 {
  margin-bottom: 10px;
  font-size: 24px;
}

.concept-card__body > p:not(:first-child) {
  min-height: 52px;
  color: var(--up-muted);
  font-size: 13px;
}

.concept-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 18px 0 22px;
}

.concept-card__meta span {
  padding: 6px 8px;
  border: 1px solid var(--up-line);
  border-radius: 4px;
  color: #475467;
  font-size: 10px;
  font-weight: 700;
}

.concept-card .up-button {
  width: 100%;
}

.concept-index__note {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 24px;
  padding: 18px 0;
  border-top: 1px solid var(--up-line);
  color: var(--up-muted);
  font-size: 12px;
}

.concept-index__note svg {
  width: 17px;
  height: 17px;
  margin-top: 1px;
  color: var(--up-primary);
}

@media (max-width: 1024px) {
  .up-header__inner {
    gap: 22px;
  }

  .up-nav {
    gap: 18px;
  }

  .up-header__cta {
    display: none;
  }

  .a-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
    gap: 38px;
  }

  .a-hero__copy h1 {
    font-size: 44px;
  }

  .a-product-stage {
    min-height: 440px;
  }

  .a-product-stage > img {
    max-height: 370px;
  }

  .a-scene-panel {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .a-scene-panel__copy {
    padding: 36px 28px;
  }

  .a-proof__grid,
  .b-process__grid {
    gap: 44px;
  }

  .a-support__grid,
  .b-support__grid {
    gap: 50px;
  }

  .b-hero h1 {
    font-size: 70px;
  }

  .b-product-row {
    grid-template-columns: 0.9fr 0.9fr 1.2fr 44px;
    gap: 20px;
  }
}

@media (max-width: 820px) {
  .up-section {
    padding: 84px 0;
  }

  .up-header__inner {
    height: 66px;
  }

  .up-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    padding: 10px 20px 18px;
    border-bottom: 1px solid var(--up-line);
    background: #fff;
    box-shadow: 0 14px 28px rgba(18, 24, 38, 0.1);
  }

  .up-nav.is-open {
    display: grid;
  }

  .up-nav a {
    padding: 5px 2px;
    color: var(--up-ink) !important;
  }

  .up-menu-button {
    display: inline-flex;
  }

  .b-header .up-menu-button {
    border-color: rgba(255, 255, 255, 0.5);
    background: transparent;
    color: #fff;
  }

  .up-section-heading h2,
  .a-proof__copy h2,
  .a-support h2,
  .b-process__copy h2,
  .b-support__intro h2 {
    font-size: 34px;
  }

  .up-section-heading--split {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .up-section-heading--split > p {
    max-width: 620px;
  }

  .a-hero {
    padding: 38px 0 44px;
  }

  .a-hero__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .a-hero__copy {
    max-width: 680px;
  }

  .a-product-stage {
    min-height: 300px;
  }

  .a-product-stage > img {
    max-height: 255px;
  }

  .a-quick__grid > a {
    grid-template-columns: 32px 1fr 18px;
    padding: 18px 16px;
  }

  .a-scene-panel {
    grid-template-columns: 1fr;
  }

  .a-scene-panel__media {
    min-height: 420px;
  }

  .a-selector__controls {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .a-selector__result {
    grid-template-columns: 54px 1fr;
  }

  .a-selector__result .up-button {
    grid-column: 1 / -1;
  }

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

  .a-product-card:last-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    column-gap: 22px;
  }

  .a-product-card:last-child .a-product-card__top,
  .a-product-card:last-child > a {
    grid-column: 1 / -1;
  }

  .a-proof__grid {
    grid-template-columns: 1fr;
  }

  .a-support__grid,
  .b-support__grid {
    grid-template-columns: 1fr;
  }

  .a-final__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .b-hero,
  .b-hero__inner {
    min-height: 700px;
  }

  .b-hero h1 {
    font-size: 62px;
  }

  .b-hero__meta {
    right: auto;
    left: 0;
  }

  .b-intro__grid,
  .b-intro__visual {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .b-intro__features {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: none;
    border-top: 1px solid var(--up-line);
    border-left: 0;
  }

  .b-intro__features li {
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border-right: 1px solid var(--up-line);
    border-bottom: 0;
  }

  .b-space-stage,
  .b-space-stage__inner {
    min-height: 560px;
  }

  .b-product-row {
    grid-template-columns: 1fr 1fr 44px;
  }

  .b-product-row > p {
    grid-column: 1 / 3;
    grid-row: 2;
  }

  .b-product-row > a {
    grid-column: 3;
    grid-row: 1 / 3;
  }

  .b-process__grid {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .b-process__media {
    min-height: 560px;
  }

  .b-channel__layout {
    grid-template-columns: 1fr;
  }

  .b-channel__feature {
    min-height: 420px;
  }

  .b-channel__links {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: none;
  }

  .b-channel__links a {
    min-height: 150px;
    padding: 20px;
    border-top: 1px solid var(--up-line);
    border-right: 1px solid var(--up-line);
  }

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

@media (max-width: 600px) {
  body {
    font-size: 15px;
  }

  .up-container {
    width: min(calc(100% - 32px), 1200px);
  }

  .up-notice__inner {
    justify-content: center;
  }

  .up-notice__inner > span {
    display: none;
  }

  .up-header__inner {
    gap: 12px;
  }

  .up-brand__mark {
    width: 34px;
    height: 34px;
    font-size: 20px;
  }

  .up-brand__text strong {
    font-size: 15px;
  }

  .up-header__actions {
    margin-left: auto;
  }

  .up-header__actions > .up-icon-button:first-child {
    display: none;
  }

  .up-section {
    padding: 70px 0;
  }

  .up-section-heading {
    margin-bottom: 30px;
  }

  .up-section-heading h2,
  .a-proof__copy h2,
  .a-support h2,
  .b-process__copy h2,
  .b-support__intro h2 {
    font-size: 29px;
  }

  .up-section-heading > p,
  .up-section-heading > div + p {
    font-size: 15px;
  }

  .up-button-row {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .up-button-row .up-button {
    width: 100%;
  }

  .a-hero {
    padding: 26px 0 28px;
  }

  .a-hero__copy h1 {
    font-size: 38px;
  }

  .a-hero__lead {
    font-size: 16px;
  }

  .a-hero__facts {
    display: none;
  }

  .a-product-stage {
    min-height: 170px;
  }

  .a-product-stage > img {
    max-height: 155px;
  }

  .a-product-stage__note {
    display: none;
  }

  .a-hero .up-button-row {
    align-items: stretch;
    flex-direction: row;
  }

  .a-hero .up-button-row .up-button {
    width: auto;
    flex: 1 1 auto;
    padding-right: 12px;
    padding-left: 12px;
    font-size: 13px;
  }

  .a-quick__grid {
    grid-template-columns: 1fr;
  }

  .a-quick__grid > a,
  .a-quick__grid > a:first-child {
    min-height: 76px;
    border-right: 1px solid var(--up-line);
    border-bottom: 1px solid var(--up-line);
    border-left: 1px solid var(--up-line);
  }

  .a-quick__grid > a:last-child {
    border-bottom: 0;
  }

  .a-scene-tabs {
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .a-scene-tabs button {
    flex: 0 0 auto;
  }

  .a-scene-panel__media {
    min-height: 280px;
  }

  .a-scene-panel__copy {
    padding: 28px 22px;
  }

  .a-scene-panel__copy h3 {
    font-size: 24px;
  }

  .a-selector {
    padding: 22px 16px;
  }

  .up-segmented,
  .up-segmented--distance {
    grid-template-columns: 1fr;
  }

  .a-selector__result {
    grid-template-columns: 46px 1fr;
    padding: 18px 14px;
  }

  .a-selector__icon {
    width: 44px;
    height: 44px;
  }

  .a-selector__result h3 {
    display: block;
    margin: 0;
    font-size: 20px;
  }

  .a-product-grid {
    grid-template-columns: 1fr;
  }

  .a-product-card:last-child {
    grid-column: auto;
    display: block;
  }

  .a-product-card:last-child .a-product-card__top,
  .a-product-card:last-child > a {
    grid-column: auto;
  }

  .a-product-card p {
    min-height: 0;
  }

  .a-proof__gallery {
    grid-template-columns: 1fr;
  }

  .a-proof__gallery figure {
    min-height: 300px;
  }

  .a-support__grid {
    gap: 38px;
  }

  .a-final {
    padding: 48px 0;
  }

  .a-final h2 {
    font-size: 27px;
  }

  .b-header.is-scrolled,
  .b-header {
    position: absolute;
  }

  .b-header.is-scrolled {
    background: rgba(255, 255, 255, 0.97);
  }

  .b-hero,
  .b-hero__inner {
    min-height: 690px;
  }

  .b-hero__inner {
    justify-content: flex-start;
    padding-top: 150px;
    padding-bottom: 150px;
  }

  .b-hero__backdrop {
    background-position: 62% center;
  }

  .b-hero h1 {
    font-size: 50px;
  }

  .b-hero__copy > p:not(.b-hero__label) {
    font-size: 17px;
  }

  .b-hero__meta {
    right: 16px;
    bottom: 38px;
    left: 16px;
  }

  .b-hero__meta span {
    min-width: 0;
    flex: 1;
    padding: 11px 10px;
  }

  .b-hero__caption {
    display: none;
  }

  .b-intro {
    padding: 72px 0;
  }

  .b-intro__grid {
    gap: 6px;
  }

  .b-intro__title h2 {
    font-size: 31px;
  }

  .b-intro__body {
    padding-top: 20px;
  }

  .b-intro__visual {
    margin-top: 42px;
  }

  .b-intro__image {
    min-height: 340px;
  }

  .b-intro__features {
    grid-template-columns: 1fr;
  }

  .b-intro__features li {
    min-height: 94px;
    display: grid;
    grid-template-columns: 34px 1fr;
    border-right: 0;
    border-bottom: 1px solid var(--up-line);
  }

  .b-space-tabs button {
    min-height: 68px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 12px;
  }

  .b-space-tabs button span {
    font-size: 15px;
  }

  .b-space-stage,
  .b-space-stage__inner {
    min-height: 500px;
  }

  .b-space-stage__inner {
    padding-bottom: 44px;
  }

  .b-space-stage__copy h3 {
    font-size: 31px;
  }

  .b-product-row {
    min-height: 174px;
    grid-template-columns: 1fr 44px;
    gap: 14px;
    padding: 22px 0;
  }

  .b-product-row__name {
    grid-column: 1;
  }

  .b-product-row > p {
    grid-column: 1;
    grid-row: auto;
  }

  .b-product-row > a {
    grid-column: 2;
    grid-row: 1 / 4;
  }

  .b-product-row__distance strong {
    font-size: 23px;
  }

  .b-products__action {
    align-items: stretch;
    flex-direction: column;
  }

  .b-process__grid {
    grid-template-columns: 1fr;
  }

  .b-process__media {
    min-height: 400px;
  }

  .b-process__copy h2 {
    margin-bottom: 28px;
  }

  .b-channel__feature {
    min-height: 330px;
  }

  .b-channel__links {
    grid-template-columns: 1fr;
  }

  .b-channel__links a {
    min-height: 104px;
    border-right: 0;
  }

  .b-support__topics {
    grid-template-columns: 1fr;
  }

  .b-support__topics a {
    min-height: 104px;
  }

  .b-final {
    min-height: 500px;
  }

  .b-final h2 {
    font-size: 35px;
  }

  .up-footer {
    padding-bottom: 104px;
  }

  .up-footer__top,
  .up-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .up-footer__channels {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }

  .up-mobile-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 200;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 8px max(10px, env(safe-area-inset-right)) max(8px, env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
    border-top: 1px solid var(--up-line);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 -8px 26px rgba(18, 24, 38, 0.12);
  }

  .up-mobile-bar a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid var(--up-line);
    font-size: 13px;
    font-weight: 800;
  }

  .up-mobile-bar a:first-child {
    border-radius: 6px 0 0 6px;
    background: #fff;
  }

  .up-mobile-bar a:last-child {
    border-color: var(--up-primary);
    border-radius: 0 6px 6px 0;
    background: var(--up-primary);
    color: #fff;
  }

  .concept-index__header .up-container {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .concept-index__main {
    padding: 38px 0 50px;
  }

  .concept-card__preview {
    aspect-ratio: 1.15;
  }

  .concept-card__body > p:not(:first-child) {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .up-reveal {
    opacity: 1;
    transform: none;
  }
}
