@font-face {
  font-family: "Pretendard";
  font-style: normal;
  font-weight: 45 920;
  src: url("/assets/fonts/PretendardVariable.ttf") format("truetype");
  font-display: swap;
}

:root {
  --ink: #111312;
  --ink-soft: #484d49;
  --ivory: #f6f1e9;
  --paper: #fbf8f2;
  --sage: #92aaa0;
  --sage-pale: #dce5e0;
  --terra: #d77a56;
  --line: rgb(17 19 18 / 15%);
  --max-width: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  background: var(--ivory);
  color: var(--ink);
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: -0.025em;
  line-height: 1.6;
  margin: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  color: inherit;
  font: inherit;
}

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

::selection {
  background: var(--sage);
  color: var(--ink);
}

.skip-link {
  background: var(--ink);
  color: white;
  left: 16px;
  padding: 10px 16px;
  position: fixed;
  top: -80px;
  z-index: 200;
}

.skip-link:focus {
  top: 16px;
}

.scroll-progress {
  bottom: 24px;
  height: 110px;
  position: fixed;
  right: 18px;
  width: 2px;
  z-index: 110;
}

.scroll-progress::before,
.scroll-progress span {
  content: "";
  inset: 0;
  position: absolute;
}

.scroll-progress::before {
  background: rgb(17 19 18 / 15%);
}

.scroll-progress span {
  background: var(--terra);
  transform: scaleY(var(--scroll-progress, 0));
  transform-origin: top;
}

.site-header {
  align-items: center;
  background: rgb(246 241 233 / 88%);
  border-bottom: 1px solid transparent;
  display: flex;
  height: 82px;
  justify-content: space-between;
  left: 0;
  padding: 0 max(24px, calc((100vw - var(--max-width)) / 2));
  position: fixed;
  right: 0;
  top: 0;
  transition: border-color 180ms ease, background 180ms ease;
  z-index: 100;
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgb(246 241 233 / 96%);
}

.header-brand {
  display: block;
  width: 138px;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: 34px;
}

.desktop-nav a {
  font-size: 13px;
  font-weight: 650;
  position: relative;
}

.desktop-nav a::after {
  background: var(--terra);
  bottom: -7px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
  width: 100%;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  height: 44px;
  padding: 0;
  position: relative;
  width: 44px;
  z-index: 120;
}

.menu-button span {
  background: var(--ink);
  height: 1.5px;
  left: 9px;
  position: absolute;
  transition: transform 180ms ease, top 180ms ease;
  width: 26px;
}

.menu-button span:first-child {
  top: 17px;
}

.menu-button span:last-child {
  top: 26px;
}

.menu-button[aria-expanded="true"] span:first-child {
  top: 22px;
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  top: 22px;
  transform: rotate(-45deg);
}

.mobile-menu {
  background: var(--ivory);
  display: none;
  inset: 0;
  padding: 120px 20px calc(32px + env(safe-area-inset-bottom));
  position: fixed;
  z-index: 90;
}

.mobile-menu[hidden] {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  margin: 0 auto;
  max-width: 1600px;
  min-height: 820px;
  padding: 132px 40px 52px;
}

.hero-copy {
  align-self: center;
  padding: 40px clamp(24px, 5vw, 88px) 40px 0;
}

.eyebrow {
  color: var(--terra);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin: 0 0 26px;
}

.hero h1 {
  font-size: clamp(52px, 5.15vw, 82px);
  font-weight: 720;
  letter-spacing: -0.07em;
  line-height: 1.08;
  margin: 0;
  word-break: keep-all;
}

.hero h1 span {
  color: #647b72;
}

.hero-description {
  color: var(--ink-soft);
  font-size: 17px;
  margin: 32px 0 0;
  max-width: 610px;
  word-break: keep-all;
}

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

.button {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.button-dark:hover {
  background: #303431;
}

.button-line {
  border-color: var(--line);
}

.button-line:hover {
  background: var(--paper);
  border-color: rgb(17 19 18 / 30%);
}

.release-note {
  align-items: flex-start;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 11px;
  margin-top: 42px;
  max-width: 550px;
  padding-top: 18px;
}

.release-note > span {
  background: var(--terra);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgb(215 122 86 / 13%);
  flex: 0 0 auto;
  height: 7px;
  margin-top: 8px;
  width: 7px;
}

.release-note p {
  color: #6b6e6b;
  font-size: 11px;
  margin: 0;
}

.release-note strong {
  color: var(--ink);
  margin-right: 8px;
}

.hero-visual {
  align-self: stretch;
  margin: 0;
  min-height: 630px;
  overflow: hidden;
  position: relative;
}

.hero-visual picture,
.hero-visual img {
  height: 100%;
  width: 100%;
}

.hero-visual img {
  object-fit: cover;
  object-position: 54% center;
}

.hero-visual::after {
  border: 1px solid rgb(255 255 255 / 44%);
  content: "";
  inset: 14px;
  pointer-events: none;
  position: absolute;
}

.hero-visual figcaption {
  align-items: center;
  background: var(--paper);
  bottom: 0;
  display: flex;
  gap: 18px;
  min-height: 88px;
  padding: 16px 28px;
  position: absolute;
  right: 0;
  width: min(330px, 62%);
}

.hero-visual figcaption span {
  color: var(--terra);
  font-size: 10px;
  font-weight: 800;
}

.hero-visual figcaption p {
  font-size: 12px;
  font-weight: 650;
  line-height: 1.45;
  margin: 0;
}

.phone-mockup {
  bottom: 42px;
  left: 28px;
  position: absolute;
  transform: translate3d(0, var(--phone-shift, 0), 0) rotate(-4deg);
  width: clamp(150px, 13vw, 202px);
  z-index: 3;
}

.phone-hardware {
  background: #0f1110;
  border: 1px solid rgb(255 255 255 / 45%);
  border-radius: 34px;
  box-shadow: 0 28px 60px rgb(17 19 18 / 32%);
  padding: 8px;
  position: relative;
}

.phone-speaker {
  background: #0f1110;
  border-radius: 999px;
  height: 18px;
  left: 50%;
  position: absolute;
  top: 13px;
  transform: translateX(-50%);
  width: 58px;
  z-index: 2;
}

.phone-screen {
  align-items: center;
  aspect-ratio: 9 / 19.5;
  background: var(--paper);
  border-radius: 27px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 22px;
}

.phone-screen .phone-app-icon {
  border-radius: 22%;
  height: auto;
  width: 58%;
}

.phone-screen .phone-wordmark {
  aspect-ratio: 1346 / 399;
  height: auto;
  margin-top: 25px;
  object-fit: contain;
  width: 92%;
}

.phone-screen p {
  color: #747975;
  font-size: clamp(5px, 0.5vw, 8px);
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 17px 0 9px;
}

.phone-screen > span {
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: clamp(6px, 0.55vw, 9px);
  font-weight: 700;
  padding: 6px 12px;
}

.principle-strip {
  align-items: center;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(180px, 0.5fr) minmax(0, 1.5fr);
  margin: 0 auto;
  max-width: var(--max-width);
  min-height: 104px;
  padding: 22px 0;
}

.principle-strip > p {
  color: #7a7e7a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin: 0;
}

.principle-strip ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
}

.principle-strip li {
  border-left: 1px solid var(--line);
  font-size: 13px;
  font-weight: 650;
  padding: 5px 24px;
}

.principle-strip li span {
  color: var(--terra);
  font-size: 9px;
  margin-right: 13px;
}

.section {
  margin: 0 auto;
  max-width: var(--max-width);
  padding: 148px 0;
}

.section-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 58px;
}

.section h2 {
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 690;
  letter-spacing: -0.065em;
  line-height: 1.1;
  margin: 0;
  word-break: keep-all;
}

.section h2 span {
  color: #748b82;
}

.method-grid {
  align-items: stretch;
  display: grid;
  gap: clamp(42px, 6vw, 96px);
  grid-template-columns: minmax(0, 1.1fr) minmax(390px, 0.9fr);
}

.method-visual {
  margin: 0;
  min-height: 600px;
  overflow: hidden;
}

.method-visual picture,
.method-visual img {
  height: 100%;
  width: 100%;
}

.method-visual img {
  object-fit: cover;
  transform: scale(1.07) translate3d(0, var(--image-shift, 0), 0);
  will-change: transform;
}

.method-list {
  align-self: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.method-list li {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 20px;
  grid-template-columns: 40px 1fr;
  padding: 30px 0;
}

.method-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.method-list > li > span {
  color: var(--terra);
  font-size: 10px;
  font-weight: 800;
  padding-top: 4px;
}

.method-list h3 {
  font-size: 20px;
  letter-spacing: -0.04em;
  margin: 0;
}

.method-list p {
  color: var(--ink-soft);
  font-size: 14px;
  margin: 8px 0 0;
  max-width: 460px;
  word-break: keep-all;
}

.journey {
  background: var(--ink);
  color: white;
  max-width: none;
  padding-left: max(24px, calc((100vw - var(--max-width)) / 2));
  padding-right: max(24px, calc((100vw - var(--max-width)) / 2));
}

.journey-head {
  align-items: end;
  display: grid;
  gap: 80px;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  margin: 0 auto 70px;
  max-width: var(--max-width);
}

.journey-head > p {
  color: #aeb4b0;
  font-size: 15px;
  margin: 0;
  max-width: 510px;
  word-break: keep-all;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  max-width: var(--max-width);
}

.journey-grid article {
  border-left: 1px solid rgb(255 255 255 / 17%);
  display: flex;
  flex-direction: column;
  min-height: 410px;
  padding: 28px 32px 30px;
}

.journey-grid article:last-child {
  border-right: 1px solid rgb(255 255 255 / 17%);
}

.journey-index {
  color: var(--terra);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.journey-body {
  margin-top: auto;
}

.journey-body > p:first-child {
  color: #777d79;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.journey-body h3 {
  font-size: 26px;
  letter-spacing: -0.045em;
  margin: 11px 0;
}

.journey-body > p:last-child {
  color: #aeb4b0;
  font-size: 13px;
  margin: 0;
  max-width: 340px;
  word-break: keep-all;
}

.journey-grid article > strong {
  border-top: 1px solid rgb(255 255 255 / 17%);
  font-size: 11px;
  margin-top: 32px;
  padding-top: 16px;
}

.journey-planned {
  opacity: 0.72;
}

.status {
  display: grid;
  gap: clamp(60px, 8vw, 130px);
  grid-template-columns: minmax(320px, 0.75fr) minmax(520px, 1.25fr);
}

.status-copy {
  align-self: center;
}

.status-copy h2 {
  font-size: clamp(38px, 4.4vw, 62px);
}

.status-copy > p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 14px;
  margin: 26px 0;
  max-width: 530px;
  word-break: keep-all;
}

.text-link {
  border-bottom: 1px solid var(--ink);
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  gap: 18px;
  padding-bottom: 4px;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
}

.status-grid > div {
  border-left: 1px solid var(--line);
  min-height: 250px;
  padding: 26px 30px;
}

.status-grid > div:nth-child(-n + 2) {
  border-bottom: 1px solid var(--line);
}

.status-grid > div:nth-child(2n) {
  border-right: 1px solid var(--line);
}

.status-grid dt {
  color: #6f746f;
  font-size: 11px;
  font-weight: 700;
}

.status-grid dd {
  font-size: clamp(54px, 6vw, 82px);
  font-weight: 650;
  letter-spacing: -0.07em;
  line-height: 1;
  margin: 70px 0 8px;
}

.status-grid p {
  color: #777c78;
  font-size: 10px;
  margin: 0;
}

.docs-callout {
  align-items: center;
  background: var(--sage);
  display: grid;
  gap: 90px;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  max-width: 1600px;
  overflow: hidden;
  padding-left: clamp(30px, 6vw, 100px);
  padding-right: clamp(30px, 8vw, 130px);
}

.docs-mark {
  align-items: center;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.docs-mark span {
  color: rgb(246 241 233 / 68%);
  font-size: clamp(140px, 15vw, 245px);
  font-weight: 800;
  letter-spacing: -0.35em;
  line-height: 1;
}

.docs-mark span:nth-child(2) {
  color: var(--terra);
  transform: translateY(22%);
}

.docs-copy .eyebrow {
  color: #293b34;
}

.docs-copy h2 {
  max-width: 790px;
}

.docs-copy > p:not(.eyebrow) {
  color: #293b34;
  font-size: 15px;
  margin: 26px 0 0;
  max-width: 660px;
  word-break: keep-all;
}

.docs-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 34px;
}

.button-light {
  background: var(--paper);
}

.docs-links > a:not(.button) {
  border-bottom: 1px solid #293b34;
  font-size: 12px;
  font-weight: 700;
}

.closing {
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.closing img {
  width: min(680px, 88vw);
}

.closing p {
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 640;
  letter-spacing: -0.055em;
  line-height: 1.25;
  margin: 48px 0 30px;
  word-break: keep-all;
}

.closing > span {
  color: #777c78;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

footer {
  align-items: end;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr auto auto;
  margin: 0 auto;
  max-width: var(--max-width);
  padding: 52px 0 calc(44px + env(safe-area-inset-bottom));
}

.footer-brand img {
  width: 118px;
}

.footer-brand p,
.copyright {
  color: #747975;
  font-size: 10px;
  margin: 12px 0 0;
}

footer nav {
  display: flex;
  gap: 26px;
}

footer nav a {
  font-size: 11px;
  font-weight: 650;
}

.copyright {
  margin: 0;
  white-space: nowrap;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--terra);
  outline-offset: 4px;
}

.has-js [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 650ms cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.has-js [data-reveal][data-reveal-delay="1"] {
  transition-delay: 100ms;
}

.has-js [data-reveal][data-reveal-delay="2"] {
  transition-delay: 200ms;
}

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

@media (max-width: 1490px) {
  .principle-strip,
  .section:not(.journey):not(.docs-callout),
  footer {
    margin-left: 32px;
    margin-right: 32px;
  }
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(410px, 0.9fr);
    min-height: 720px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero h1 {
    font-size: clamp(44px, 5.7vw, 64px);
  }

  .method-grid,
  .status {
    gap: 54px;
  }

  .method-grid {
    grid-template-columns: 1fr 0.88fr;
  }

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

  .docs-callout {
    gap: 40px;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 78px;
  }

  .site-header {
    height: 68px;
    padding: 0 16px 0 20px;
  }

  .header-brand {
    width: 118px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .mobile-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .mobile-menu nav {
    border-top: 1px solid var(--line);
  }

  .mobile-menu nav a {
    align-items: center;
    border-bottom: 1px solid var(--line);
    display: flex;
    font-size: clamp(28px, 9vw, 40px);
    font-weight: 660;
    justify-content: space-between;
    letter-spacing: -0.055em;
    min-height: 76px;
  }

  .mobile-menu nav span {
    color: var(--terra);
    font-size: 10px;
    letter-spacing: 0;
  }

  .mobile-menu > p {
    color: #747975;
    font-size: 12px;
    margin: 0;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 118px 20px 32px;
  }

  .hero-copy {
    padding: 0;
  }

  .eyebrow {
    font-size: 9px;
    margin-bottom: 20px;
  }

  .hero h1 {
    font-size: clamp(39px, 11.3vw, 54px);
    line-height: 1.12;
  }

  .hero h1 br {
    display: none;
  }

  .hero-description {
    font-size: 15px;
    margin-top: 24px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .button {
    min-height: 52px;
    width: 100%;
  }

  .release-note {
    margin-top: 28px;
  }

  .release-note p {
    line-height: 1.55;
  }

  .release-note strong {
    display: block;
    margin: 0 0 2px;
  }

  .hero-visual {
    aspect-ratio: 0.88;
    margin-top: 36px;
    min-height: 0;
  }

  .hero-visual img {
    object-position: 62% center;
  }

  .hero-visual figcaption {
    min-height: 76px;
    padding: 12px 18px;
    width: 72%;
  }

  .phone-mockup {
    bottom: 55px;
    left: 15px;
    width: 142px;
  }

  .phone-hardware {
    border-radius: 27px;
    padding: 6px;
  }

  .phone-screen {
    border-radius: 21px;
    padding: 18px;
  }

  .phone-speaker {
    height: 14px;
    top: 10px;
    width: 48px;
  }

  .phone-screen p {
    font-size: 6px;
  }

  .phone-screen > span {
    font-size: 7px;
  }

  .principle-strip {
    display: block;
    margin: 0 20px;
    padding: 26px 0;
  }

  .principle-strip > p {
    margin-bottom: 18px;
  }

  .principle-strip ol {
    display: block;
  }

  .principle-strip li {
    align-items: center;
    border-left: 0;
    border-top: 1px solid var(--line);
    display: flex;
    min-height: 52px;
    padding: 8px 0;
  }

  .section,
  .section:not(.journey):not(.docs-callout) {
    margin-left: 20px;
    margin-right: 20px;
    padding: 92px 0;
  }

  .section h2 {
    font-size: clamp(37px, 10.6vw, 48px);
  }

  .section-heading {
    display: block;
    margin-bottom: 34px;
  }

  .method-grid {
    display: flex;
    flex-direction: column;
    gap: 34px;
  }

  .method-visual {
    aspect-ratio: 0.9;
    min-height: 0;
  }

  .method-visual img {
    object-position: center;
  }

  .method-list li {
    gap: 12px;
    grid-template-columns: 30px 1fr;
    padding: 24px 0;
  }

  .method-list h3 {
    font-size: 18px;
  }

  .method-list p {
    font-size: 13px;
  }

  .journey {
    margin: 0;
    padding: 92px 20px;
  }

  .journey-head {
    display: block;
    margin-bottom: 42px;
  }

  .journey-head > p {
    font-size: 13px;
    margin-top: 24px;
  }

  .journey-grid {
    display: block;
  }

  .journey-grid article {
    border-left: 0;
    border-top: 1px solid rgb(255 255 255 / 17%);
    min-height: 340px;
    padding: 24px 0;
  }

  .journey-grid article:last-child {
    border-bottom: 1px solid rgb(255 255 255 / 17%);
    border-right: 0;
  }

  .journey-body h3 {
    font-size: 24px;
  }

  .status {
    display: block;
  }

  .status-copy h2 {
    font-size: clamp(35px, 9.5vw, 44px);
  }

  .status-grid {
    margin-top: 50px;
  }

  .status-grid > div {
    min-height: 190px;
    padding: 20px 16px;
  }

  .status-grid > div:nth-child(odd) {
    padding-left: 0;
  }

  .status-grid > div:nth-child(even) {
    padding-right: 0;
  }

  .status-grid dd {
    font-size: 52px;
    margin-top: 48px;
  }

  .status-grid dt {
    font-size: 10px;
  }

  .status-grid p {
    font-size: 9px;
  }

  .docs-callout {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 0 20px;
    padding: 58px 24px;
  }

  .docs-mark {
    aspect-ratio: 1.7;
    width: 100%;
  }

  .docs-mark span {
    font-size: clamp(100px, 35vw, 150px);
  }

  .docs-copy > p:not(.eyebrow) {
    font-size: 13px;
  }

  .docs-links {
    align-items: stretch;
    flex-direction: column;
  }

  .docs-links > a:not(.button) {
    align-self: flex-start;
  }

  .closing img {
    width: 100%;
  }

  .closing p {
    font-size: 27px;
    margin-top: 38px;
  }

  footer {
    align-items: start;
    display: flex;
    flex-direction: column;
    margin: 0 20px;
    padding-top: 38px;
  }

  footer nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
}

@media (max-width: 374px) {
  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .principle-strip,
  .section,
  .section:not(.journey):not(.docs-callout),
  footer {
    margin-left: 16px;
    margin-right: 16px;
  }

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

  .status-grid > div,
  .status-grid > div:nth-child(2n) {
    border-bottom: 1px solid var(--line);
    border-left: 0;
    border-right: 0;
    min-height: 150px;
    padding: 20px 0;
  }

  .status-grid dd {
    margin-top: 30px;
  }
}

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

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

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

  .method-visual img,
  .phone-mockup {
    transform: none;
  }
}
