:root {
  --up-bg: #f4f4f1;
  --up-surface: #ffffff;
  --up-ink: #111111;
  --up-muted: #676767;
  --up-line: #d8d8d2;
  --up-soft: #e9e9e4;
  --up-accent: #5b4bff;
  --up-accent-dark: #4031dc;
  --up-dark: #151515;
  --up-white: #ffffff;
}

*,
*::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", "Apple SD Gothic Neo", sans-serif;
  line-height: 1.65;
  letter-spacing: 0;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  font-size: 16px;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  color: inherit;
  font: inherit;
}

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

svg {
  display: block;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  transform: translateY(-140%);
  border-radius: 4px;
  background: var(--up-accent);
  color: var(--up-white);
}

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

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

.site-header {
  position: absolute;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  padding-top: 18px;
}

.nav-shell {
  position: relative;
  min-height: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 8px 10px 8px 18px;
  border-radius: 18px;
  background: rgba(17, 17, 17, 0.96);
  color: var(--up-white);
}

.wordmark,
.footer-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  font-weight: 800;
}

.wordmark__symbol {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--up-accent);
  color: var(--up-white);
  font-size: 16px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 10px;
  color: #bdbdbd;
  font-size: 14px;
  font-weight: 600;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  background: #2a2a2a;
  color: var(--up-white);
}

.nav-tools {
  display: flex;
  justify-content: flex-end;
  gap: 4px;
}

.icon-button {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--up-white);
  cursor: pointer;
  line-height: 0;
}

.icon-button:hover,
.icon-button:focus-visible {
  background: #2a2a2a;
}

.icon-button > svg {
  width: 20px;
  height: 20px;
  margin: 0;
}

.menu-button {
  display: none;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--up-muted);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
}

.section-pad {
  padding-block: 140px;
}

.section-heading h2 {
  margin: 0;
  font-size: 50px;
  font-weight: 600;
  line-height: 1.18;
}

.section-heading > p:last-child,
.section-heading__aside > p {
  color: var(--up-muted);
}

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

.section-heading--wide > p:last-child {
  max-width: 610px;
  margin: 30px 0 0;
  font-size: 18px;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: end;
  gap: 80px;
}

.section-heading__aside {
  padding-bottom: 4px;
}

.section-heading__aside > p {
  margin: 0 0 24px;
  font-size: 17px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button-stack {
  display: grid;
  gap: 10px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button > svg,
.text-link > svg,
.inline-links a > svg,
.support-card__link > svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.button--dark {
  background: var(--up-dark);
  color: var(--up-white);
}

.button--dark:hover,
.button--dark:focus-visible {
  background: #333333;
}

.button--light {
  border-color: var(--up-line);
  background: var(--up-surface);
}

.button--light:hover,
.button--light:focus-visible {
  border-color: var(--up-ink);
}

.button--accent {
  background: var(--up-accent);
  color: var(--up-white);
}

.button--accent:hover,
.button--accent:focus-visible {
  background: var(--up-accent-dark);
}

.button--outline-dark {
  border-color: #515151;
  color: var(--up-white);
}

.button--outline-dark:hover,
.button--outline-dark:focus-visible {
  border-color: var(--up-white);
  background: var(--up-white);
  color: var(--up-ink);
}

.button--wide {
  width: 100%;
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid var(--up-ink);
  font-size: 14px;
  font-weight: 700;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--up-accent);
  border-color: var(--up-accent);
}

.text-link--light {
  border-color: var(--up-white);
  color: var(--up-white);
}

.home-hero {
  height: min(760px, calc(100svh - 40px));
  min-height: 650px;
  padding-top: 106px;
  background: var(--up-surface);
  overflow: hidden;
}

.home-hero__grid {
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  align-items: center;
  gap: 48px;
  padding-block: 20px 26px;
}

.home-hero__copy {
  position: relative;
  z-index: 2;
}

.home-hero h1 {
  margin: 0;
  font-size: 70px;
  font-weight: 600;
  line-height: 1.08;
}

.hero-statement {
  margin: 26px 0 0;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.4;
}

.hero-lead {
  max-width: 470px;
  margin: 20px 0 32px;
  color: var(--up-muted);
  font-size: 17px;
}

.home-hero__visual {
  position: relative;
  margin: 0;
  align-self: stretch;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  background: #eeeeeb;
}

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

.home-hero__visual figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 14px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--up-muted);
  font-size: 11px;
  font-weight: 600;
}

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

.fact-list {
  margin-top: 84px;
  border-top: 1px solid var(--up-line);
}

.fact-row {
  min-height: 132px;
  display: grid;
  grid-template-columns: 72px 1fr 52px;
  align-items: center;
  gap: 26px;
  border-bottom: 1px solid var(--up-line);
}

.fact-row__index {
  color: var(--up-muted);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.fact-row strong {
  font-size: 24px;
  font-weight: 600;
}

.fact-row p {
  margin: 7px 0 0;
  color: var(--up-muted);
}

.fact-row > svg {
  width: 28px;
  height: 28px;
}

.demo-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 56px;
  border: 1px solid var(--up-line);
  background: var(--up-surface);
}

.demo-strip span {
  min-height: 104px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px;
  border-right: 1px solid var(--up-line);
  color: var(--up-muted);
  font-size: 14px;
}

.demo-strip span:last-child {
  border-right: 0;
}

.demo-strip b {
  color: var(--up-accent);
  font-size: 28px;
  font-weight: 700;
}

.featured {
  background: var(--up-surface);
}

.featured-product {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  margin-top: 70px;
  background: var(--up-bg);
}

.featured-product__image {
  min-height: 600px;
  overflow: hidden;
}

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

.featured-product__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px;
}

.status-label {
  margin: 0 0 26px;
  padding: 10px 12px;
  border: 1px solid var(--up-line);
  border-radius: 4px;
  color: var(--up-muted);
  font-size: 12px;
}

.featured-product h3 {
  margin: 0;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.25;
}

.source-label {
  display: inline-block;
  color: var(--up-muted);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.check-list {
  display: grid;
  gap: 16px;
  margin: 38px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--up-muted);
  font-size: 15px;
}

.check-list svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--up-accent);
}

.field-proof {
  background: var(--up-dark);
  color: var(--up-white);
}

.field-proof__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(380px, 1.15fr) minmax(220px, 0.48fr);
  align-items: end;
  gap: 20px;
}

.field-proof__copy {
  align-self: center;
  padding-right: 28px;
}

.field-proof__copy .eyebrow {
  color: #9a9a9a;
}

.field-proof__copy h2 {
  margin: 0;
  font-size: 46px;
  font-weight: 600;
  line-height: 1.2;
}

.field-proof__copy > p:not(.eyebrow) {
  margin: 28px 0;
  color: #b8b8b8;
}

.field-proof figure {
  margin: 0;
  overflow: hidden;
}

.field-proof__main {
  aspect-ratio: 4 / 3;
}

.field-proof__detail {
  aspect-ratio: 3 / 4;
}

.field-proof figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.support-preview {
  background: var(--up-bg);
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 70px;
  border-top: 1px solid var(--up-line);
  border-left: 1px solid var(--up-line);
}

.link-card {
  position: relative;
  min-height: 276px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-right: 1px solid var(--up-line);
  border-bottom: 1px solid var(--up-line);
  background: var(--up-surface);
  transition: background-color 180ms ease;
}

.link-card:hover,
.link-card:focus-visible {
  background: var(--up-soft);
}

.link-card__icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--up-bg);
  line-height: 0;
}

.link-card__icon > svg {
  width: 20px;
  height: 20px;
  margin: 0;
}

.link-card strong {
  margin-top: 60px;
  font-size: 20px;
}

.link-card p {
  margin: 8px 30px 0 0;
  color: var(--up-muted);
  font-size: 14px;
}

.link-card__arrow {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 20px;
  height: 20px;
}

.closing-cta,
.support-contact {
  padding-block: 110px;
  background: var(--up-dark);
  color: var(--up-white);
}

.closing-cta__inner,
.support-contact__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
}

.closing-cta .eyebrow,
.support-contact .eyebrow {
  color: #999999;
}

.closing-cta h2,
.support-contact h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.18;
}

.site-footer {
  padding: 62px 0 28px;
  background: #090909;
  color: var(--up-white);
}

.site-footer__top,
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.footer-wordmark {
  font-size: 28px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #b3b3b3;
  font-size: 13px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--up-white);
}

.site-footer__bottom {
  margin-top: 64px;
  padding-top: 22px;
  border-top: 1px solid #2c2c2c;
  color: #777777;
  font-size: 11px;
}

.site-footer__bottom p {
  margin: 0;
}

.demo-notice {
  margin: 0;
  padding: 13px 24px;
  background: #050505;
  color: #777777;
  font-size: 10px;
  text-align: center;
}

/* Product */
.product-page {
  padding-top: 106px;
}

.product-hero {
  padding: 58px 0 44px;
  background: var(--up-surface);
}

.product-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: 84px;
  align-items: center;
}

.product-gallery__main {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--up-bg);
}

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

.product-gallery > span {
  display: block;
  margin-top: 10px;
  color: var(--up-muted);
  font-size: 11px;
}

.product-summary h1 {
  margin: 0;
  font-size: 54px;
  font-weight: 600;
  line-height: 1.15;
}

.product-summary__id {
  margin: 18px 0 0;
  color: var(--up-muted);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.product-summary__lead {
  margin: 30px 0;
  color: var(--up-muted);
  font-size: 17px;
}

.pending-data {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  margin-bottom: 30px;
  border-top: 1px solid var(--up-line);
}

.pending-data span,
.pending-data strong {
  padding: 13px 0;
  border-bottom: 1px solid var(--up-line);
  font-size: 13px;
}

.pending-data span {
  color: var(--up-muted);
}

.pending-data strong {
  text-align: right;
}

.decision-band {
  background: var(--up-dark);
  color: var(--up-white);
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.decision-grid article {
  position: relative;
  min-height: 340px;
  padding: 46px 38px;
  border-right: 1px solid #333333;
}

.decision-grid article:first-child {
  border-left: 1px solid #333333;
}

.decision-grid article > span {
  color: #777777;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.decision-grid article > svg {
  width: 28px;
  height: 28px;
  margin-top: 72px;
  color: var(--up-accent);
}

.decision-grid h2 {
  margin: 18px 0 10px;
  font-size: 23px;
  font-weight: 600;
}

.decision-grid p {
  margin: 0;
  color: #a9a9a9;
  font-size: 14px;
}

.product-story {
  background: var(--up-bg);
}

.story-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.5fr);
  gap: 20px;
  margin-top: 70px;
}

.story-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.story-gallery__wide {
  aspect-ratio: 4 / 3;
}

.story-gallery__tall {
  aspect-ratio: 3 / 4;
}

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

.story-gallery figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 14px;
  border-radius: 4px;
  background: rgba(17, 17, 17, 0.86);
  color: var(--up-white);
  font-size: 11px;
}

.story-gallery figcaption span {
  color: #bbbbbb;
}

.spec-section {
  background: var(--up-surface);
}

.spec-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 100px;
}

.spec-grid .section-heading h2 {
  font-size: 40px;
}

.spec-grid .section-heading > p:last-child {
  margin-top: 26px;
  color: var(--up-muted);
}

.spec-table {
  border-top: 1px solid var(--up-ink);
}

.spec-table > div {
  min-height: 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--up-line);
}

.spec-table span {
  color: var(--up-muted);
  font-size: 14px;
}

.spec-table strong {
  font-size: 14px;
  text-align: right;
}

.install-flow {
  background: var(--up-bg);
}

.install-flow h2 span {
  color: var(--up-accent);
}

.step-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 70px 0 0;
  padding: 0;
  border-top: 1px solid var(--up-line);
  border-left: 1px solid var(--up-line);
  list-style: none;
}

.step-list li {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-right: 1px solid var(--up-line);
  border-bottom: 1px solid var(--up-line);
  background: var(--up-surface);
}

.step-list li > span {
  color: var(--up-accent);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.step-list strong {
  display: block;
  font-size: 20px;
}

.step-list p {
  margin: 8px 0 0;
  color: var(--up-muted);
  font-size: 13px;
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 28px;
}

.inline-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
}

.inline-links a:hover,
.inline-links a:focus-visible {
  color: var(--up-accent);
}

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

.faq-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.62fr) minmax(0, 1.38fr);
  gap: 100px;
}

.faq-grid .section-heading h2 {
  font-size: 40px;
}

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

.accordion-item {
  overflow: hidden;
  border-bottom: 1px solid var(--up-line);
}

.accordion-item button {
  width: 100%;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.accordion-item button > svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.accordion-item button[aria-expanded="true"] > svg {
  transform: rotate(45deg);
}

.accordion-panel {
  padding: 0 42px 26px 0;
}

.accordion-panel p {
  margin: 0;
  color: var(--up-muted);
  font-size: 14px;
}

.purchase-bar {
  position: fixed;
  z-index: 25;
  right: 18px;
  bottom: 18px;
  left: 18px;
  max-width: 1164px;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-inline: auto;
  padding: 10px 12px 10px 22px;
  border: 1px solid #333333;
  border-radius: 8px;
  background: rgba(17, 17, 17, 0.96);
  color: var(--up-white);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.purchase-bar > div {
  display: flex;
  flex-direction: column;
}

.purchase-bar span {
  font-size: 13px;
}

.purchase-bar strong {
  color: #939393;
  font-size: 11px;
}

.site-footer--with-bar,
.demo-notice--with-bar {
  padding-bottom: 105px;
}

/* Brand */
.brand-hero {
  position: relative;
  height: min(800px, calc(100svh - 40px));
  min-height: 650px;
  padding-top: 106px;
  overflow: hidden;
  background: var(--up-dark);
  color: var(--up-white);
}

.brand-hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(0, 0, 0, 0.56);
  content: "";
}

.brand-hero__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 18px;
}

.brand-hero__inner .eyebrow {
  color: #c6c6c6;
}

.brand-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: 62px;
  font-weight: 600;
  line-height: 1.14;
}

.brand-hero__inner > p:last-child {
  max-width: 520px;
  margin: 34px 0 0;
  color: #d0d0d0;
  font-size: 18px;
}

.brand-hero__media {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

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

.brand-principle {
  background: var(--up-dark);
  color: var(--up-white);
}

.brand-principle__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.brand-principle .eyebrow {
  color: #929292;
}

.brand-principle__copy {
  max-width: 520px;
  padding-top: 42px;
  color: #b6b6b6;
  font-size: 18px;
}

.brand-principle__copy p {
  margin: 0 0 28px;
}

.brand-system {
  background: var(--up-bg);
}

.system-list {
  display: grid;
  gap: 130px;
}

.system-list article {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.88fr);
  align-items: center;
  gap: 90px;
}

.system-list article:nth-child(even) .system-list__visual {
  order: 2;
}

.system-list__visual {
  height: 590px;
  overflow: hidden;
  background: var(--up-soft);
}

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

.system-list__visual--product img {
  object-fit: cover;
}

.system-list__copy > span {
  color: var(--up-accent);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.system-list__copy h2 {
  margin: 22px 0 24px;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
}

.system-list__copy p {
  margin: 0 0 28px;
  color: var(--up-muted);
  font-size: 17px;
}

/* Support */
.support-hero {
  padding: 196px 0 100px;
  background: var(--up-surface);
}

.support-hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 80px;
}

.support-hero h1 {
  margin: 0;
  font-size: 64px;
  font-weight: 600;
  line-height: 1.14;
}

.support-hero__grid > p {
  max-width: 460px;
  margin: 0 0 8px;
  color: var(--up-muted);
  font-size: 18px;
}

.support-directory {
  background: var(--up-bg);
}

.support-directory__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}

.support-directory__head > p {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
}

.support-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--up-line);
  border-left: 1px solid var(--up-line);
}

.support-card {
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: 36px;
  border-right: 1px solid var(--up-line);
  border-bottom: 1px solid var(--up-line);
  background: var(--up-surface);
  transition: background-color 180ms ease;
}

.support-card:hover,
.support-card:focus-visible {
  background: var(--up-soft);
}

.support-card__icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--up-bg);
  line-height: 0;
}

.support-card__icon > svg {
  width: 22px;
  height: 22px;
  margin: 0;
}

.support-card__num {
  position: absolute;
  top: 36px;
  right: 36px;
  color: var(--up-muted);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.support-card h2 {
  margin: 54px 0 10px;
  font-size: 27px;
  font-weight: 600;
}

.support-card p {
  max-width: 390px;
  margin: 0;
  color: var(--up-muted);
}

.support-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-size: 13px;
  font-weight: 700;
}

.support-path {
  background: var(--up-surface);
}

.support-path__grid {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 100px;
}

.support-path__grid .section-heading h2 {
  font-size: 40px;
}

.support-path ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--up-ink);
  list-style: none;
}

.support-path li {
  min-height: 88px;
  display: grid;
  grid-template-columns: 110px 1fr 44px;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--up-line);
}

.support-path li > span {
  color: var(--up-muted);
  font-size: 13px;
}

.support-path li > strong {
  font-size: 16px;
}

.support-path li > a {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 0;
}

.support-path li > a:hover,
.support-path li > a:focus-visible {
  background: var(--up-bg);
}

.support-path li > a > svg {
  width: 18px;
  height: 18px;
  margin: 0;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .section-pad {
    padding-block: 104px;
  }

  .section-heading h2 {
    font-size: 42px;
  }

  .home-hero {
    min-height: 640px;
  }

  .home-hero__grid {
    height: 100%;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 28px;
  }

  .home-hero h1 {
    font-size: 56px;
  }

  .hero-statement {
    font-size: 22px;
  }

  .home-hero__visual {
    min-height: 0;
  }

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

  .featured-product__image {
    min-height: 500px;
  }

  .featured-product__content {
    padding: 40px;
  }

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

  .field-proof__copy {
    grid-column: 1 / -1;
    max-width: 620px;
    padding: 0 0 32px;
  }

  .field-proof__detail {
    aspect-ratio: 4 / 3;
  }

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

  .product-hero__grid {
    gap: 46px;
  }

  .product-summary h1 {
    font-size: 44px;
  }

  .decision-grid article {
    min-height: 310px;
    padding: 38px 28px;
  }

  .decision-grid article > svg {
    margin-top: 54px;
  }

  .spec-grid,
  .faq-grid,
  .brand-principle__grid,
  .support-path__grid {
    gap: 56px;
  }

  .system-list article {
    gap: 54px;
  }

  .system-list__visual {
    height: 500px;
  }

  .brand-hero h1,
  .support-hero h1 {
    font-size: 52px;
  }
}

@media (max-width: 720px) {
  body,
  button,
  a {
    font-size: 15px;
  }

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

  .site-header {
    padding-top: 12px;
  }

  .nav-shell {
    min-height: 58px;
    grid-template-columns: 1fr auto;
    padding: 7px 7px 7px 13px;
    border-radius: 15px;
  }

  .wordmark {
    font-size: 15px;
  }

  .wordmark__symbol {
    width: 32px;
    height: 32px;
  }

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

  .nav-links {
    position: absolute;
    top: 66px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 10px;
    border-radius: 12px;
    background: var(--up-dark);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    min-height: 48px;
  }

  .section-pad {
    padding-block: 78px;
  }

  .section-heading h2,
  .field-proof__copy h2,
  .closing-cta h2,
  .support-contact h2 {
    font-size: 36px;
  }

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

  .section-heading--wide > p:last-child {
    margin-top: 24px;
    font-size: 16px;
  }

  .button-row {
    align-items: stretch;
  }

  .button-row .button {
    flex: 1 1 160px;
  }

  .home-hero {
    position: relative;
    height: calc(100svh - 28px);
    min-height: 620px;
    padding-top: 90px;
  }

  .home-hero__grid {
    position: relative;
    display: block;
    height: 100%;
    padding-block: 28px 18px;
  }

  .home-hero__copy {
    width: 82%;
  }

  .home-hero h1 {
    font-size: 46px;
  }

  .hero-statement {
    margin-top: 18px;
    font-size: 20px;
  }

  .hero-lead {
    max-width: 300px;
    margin: 14px 0 20px;
    font-size: 15px;
  }

  .home-hero__visual {
    position: absolute;
    z-index: 1;
    right: -16px;
    bottom: 0;
    width: 60%;
    height: 45%;
    min-height: 0;
    background: transparent;
  }

  .home-hero__visual img {
    object-fit: cover;
  }

  .home-hero__visual figcaption {
    display: none;
  }

  .home-hero__copy .button-row {
    position: relative;
    z-index: 2;
    max-width: 310px;
  }

  .home-hero__copy .button {
    flex: 0 1 auto;
  }

  .fact-list {
    margin-top: 52px;
  }

  .fact-row {
    min-height: 138px;
    grid-template-columns: 36px 1fr 30px;
    gap: 12px;
  }

  .fact-row strong {
    font-size: 19px;
  }

  .fact-row p {
    font-size: 13px;
  }

  .fact-row > svg {
    width: 22px;
    height: 22px;
  }

  .demo-strip {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .demo-strip span {
    min-height: 76px;
    border-right: 0;
    border-bottom: 1px solid var(--up-line);
  }

  .demo-strip span:last-child {
    border-bottom: 0;
  }

  .demo-strip b {
    font-size: 24px;
  }

  .featured-product {
    grid-template-columns: 1fr;
    margin-top: 46px;
  }

  .featured-product__image {
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .featured-product__content {
    padding: 30px 22px 36px;
  }

  .featured-product h3 {
    font-size: 29px;
  }

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

  .field-proof__copy {
    grid-column: auto;
  }

  .field-proof__main,
  .field-proof__detail {
    aspect-ratio: 4 / 3;
  }

  .link-grid {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .link-card {
    min-height: 230px;
  }

  .link-card strong {
    margin-top: 38px;
  }

  .closing-cta,
  .support-contact {
    padding-block: 78px;
  }

  .closing-cta__inner,
  .support-contact__inner {
    align-items: stretch;
    flex-direction: column;
  }

  .site-footer {
    padding-top: 48px;
  }

  .site-footer__top,
  .site-footer__bottom {
    flex-direction: column;
  }

  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px 18px;
  }

  .site-footer__bottom {
    margin-top: 36px;
  }

  .demo-notice {
    padding-inline: 16px;
    text-align: left;
  }

  .product-page {
    padding-top: 90px;
  }

  .product-hero {
    padding-top: 44px;
  }

  .product-hero__grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .product-summary h1 {
    font-size: 42px;
  }

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

  .decision-grid article,
  .decision-grid article:first-child {
    min-height: 240px;
    border-right: 1px solid #333333;
    border-bottom: 1px solid #333333;
    border-left: 1px solid #333333;
  }

  .decision-grid article > svg {
    margin-top: 34px;
  }

  .story-gallery {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .story-gallery__wide,
  .story-gallery__tall {
    aspect-ratio: 4 / 3;
  }

  .story-gallery figcaption {
    font-size: 9px;
  }

  .spec-grid,
  .faq-grid,
  .brand-principle__grid,
  .support-path__grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .spec-grid .section-heading h2,
  .faq-grid .section-heading h2,
  .support-path__grid .section-heading h2 {
    font-size: 34px;
  }

  .step-list {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .step-list li {
    min-height: 180px;
  }

  .purchase-bar {
    right: 10px;
    bottom: 10px;
    left: 10px;
    min-height: 70px;
    padding-left: 14px;
  }

  .purchase-bar span {
    font-size: 11px;
  }

  .purchase-bar .button {
    min-height: 48px;
    padding-inline: 14px;
    white-space: nowrap;
  }

  .brand-hero {
    height: calc(100svh - 28px);
    min-height: 620px;
    padding-top: 90px;
  }

  .brand-hero__inner {
    display: flex;
    padding-block: 28px 34px;
  }

  .brand-hero__inner .eyebrow {
    margin-bottom: 18px;
  }

  .brand-hero h1,
  .support-hero h1 {
    font-size: 42px;
  }

  .brand-hero__inner > p:last-child,
  .support-hero__grid > p {
    font-size: 16px;
  }

  .brand-hero__media {
    width: 100%;
    height: 100%;
  }

  .brand-principle__copy {
    padding-top: 0;
    font-size: 16px;
  }

  .system-list {
    gap: 82px;
  }

  .system-list article {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .system-list article:nth-child(even) .system-list__visual {
    order: 0;
  }

  .system-list__visual {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .system-list__copy h2 {
    font-size: 34px;
  }

  .support-hero {
    padding: 150px 0 76px;
  }

  .support-hero__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .support-card {
    min-height: 300px;
    padding: 28px;
  }

  .support-card__num {
    top: 28px;
    right: 28px;
  }

  .support-path li {
    grid-template-columns: 72px 1fr 44px;
    gap: 10px;
  }

  .support-path li > strong {
    font-size: 14px;
  }
}
