@font-face {
  font-family: Pretendard;
  src: url("Pretendard-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Pretendard;
  src: url("Pretendard-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: Pretendard;
  src: url("Pretendard-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: Pretendard;
  src: url("Pretendard-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-display: swap;
}
:root {
  --blue: #115ef9;
  --ink: #191f28;
  --muted: #6b7684;
  --soft: #f5f8ff;
  --air: #edf6ff;
  --line: #eef0f3;
  --white: #fff;
  --radius: 32px;
  --page: 1200px;
  --header-height: 88px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family:
    Pretendard,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
  overflow-wrap: break-word;
}
body,
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
button,
a,
summary {
  -webkit-touch-callout: default;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 6px;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  letter-spacing: -0.045em;
}
h2 {
  font-size: 48px;
  line-height: 1.3;
  font-weight: 800;
}
h3 {
  font-weight: 700;
}
.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
/* Decorative orbit and floating objects may extend beyond the viewport. */
main {
  overflow-x: clip;
}
#screen-zoom {
  border: 0;
  background: transparent;
  padding: 5px 3px;
  font: inherit;
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
#screen-dialog {
  border: 0;
  border-radius: 24px;
  padding: 0;
  width: min(520px, calc(100% - 32px));
  max-height: 88dvh;
  color: var(--ink);
  box-shadow: 0 30px 100px #0003;
}
#screen-dialog::backdrop {
  background: #191f2899;
  backdrop-filter: blur(7px);
}
.dialog-header {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  background: #fffffff2;
  z-index: 2;
}
.dialog-header h2 {
  font-size: 16px;
  font-weight: 700;
}
.dialog-header form {
  margin: 0;
}
.dialog-close {
  width: 36px;
  height: 36px;
  background: var(--soft);
  border: 0;
  border-radius: 50%;
  font-size: 25px;
  color: var(--ink);
}
#dialog-screen {
  width: 100%;
  height: auto;
}
body:has(#screen-dialog[open]) {
  overflow: hidden;
}
.section-shell {
  width: min(var(--page), calc(100% - 80px));
  margin-inline: auto;
}
.section-space {
  padding-block: 112px;
}
.eyebrow {
  font-size: 12px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.13em;
  color: var(--blue);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 16px 22px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}
.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px #191f2814;
}
.button svg {
  width: 23px;
  height: 23px;
}
.button .button-arrow {
  width: 17px;
  height: 17px;
  margin-left: 9px;
}
.button-blue {
  background: var(--blue);
  color: white;
}
.button-ink {
  background: var(--ink);
  color: white;
}
.button-outline {
  border: 1px solid #d1d6db;
  background: white;
  color: var(--ink);
}
.button-white {
  background: white;
  color: var(--ink);
}
.button-small {
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 14px;
}
.button-small svg {
  width: 17px;
  height: 17px;
}
.store-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  padding: 14px;
  background: var(--ink);
  color: #fff;
  z-index: 100;
}
.skip-link:focus {
  top: 12px;
}
.mobile-only {
  display: none;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #fffffff2;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid #eef0f380;
}
.nav-shell {
  width: min(var(--page), calc(100% - 80px));
  height: var(--header-height);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: block;
  flex-shrink: 0;
}
.brand img {
  width: 148px;
  height: auto;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 600;
  color: #4e5968;
}
.desktop-nav a {
  padding-block: 18px;
  transition: color 0.2s;
}
.desktop-nav a:hover {
  color: var(--blue);
}
.menu-toggle {
  display: none;
}
.mobile-nav[hidden] {
  display: none;
}
.hero {
  min-height: 715px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: center;
  padding-block: 52px 38px;
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 22px;
}
.hero-eyebrow {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  background: var(--soft);
  padding: 9px 14px;
  border-radius: 30px;
  font-size: 13px;
  letter-spacing: -0.015em;
}
.blue-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}
h1 {
  font-size: clamp(48px, 5.1vw, 70px);
  line-height: 1.2;
  font-weight: 800;
  margin-block: 24px;
}
h1 span {
  color: var(--blue);
}
.hero-description {
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}
.hero-people {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 31px;
}
.avatar-stack {
  display: flex;
  padding-left: 0;
}
.avatar-stack img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid white;
  background: #e7effe;
  object-fit: cover;
}
.avatar-stack img + img {
  margin-left: -10px;
}
.hero-people p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}
.hero-people strong {
  font-weight: 600;
  color: #4e5968;
}
.hero-scene {
  height: 600px;
  position: relative;
  isolation: isolate;
}
.scene-circle {
  position: absolute;
  width: 490px;
  height: 490px;
  border-radius: 50%;
  background: var(--air);
  top: 68px;
  left: 28px;
  z-index: -2;
}
.scene-orbit {
  position: absolute;
  inset: 30px 0 35px -4px;
  border: 1px dashed #cfdffe;
  border-radius: 50%;
  transform: rotate(-20deg);
  z-index: -1;
}
.phone {
  position: relative;
  padding: 7px;
  background: #fff;
  border: 1px solid #d7dfea;
  border-radius: 36px;
  box-shadow:
    0 30px 60px -25px #19396940,
    0 2px 3px #191f280d;
  overflow: hidden;
}
.phone > img {
  width: 100%;
  border-radius: 28px;
  display: block;
}
.phone-speaker {
  position: absolute;
  width: 25%;
  height: 12px;
  background: #191f28;
  left: 37.5%;
  top: 12px;
  border-radius: 10px;
  z-index: 2;
}
.hero-phone {
  position: absolute;
  top: 29px;
  right: 35px;
  width: 265px;
  transform: rotate(8deg);
  z-index: 2;
  box-shadow:
    16px 26px 56px -10px #283f6729,
    -2px 0 0 2px #f2f4f6;
}
.hero-mascot {
  position: absolute;
  width: 390px;
  max-width: none;
  bottom: 4px;
  left: -63px;
  z-index: 3;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.floating-icon {
  position: absolute;
  object-fit: contain;
  z-index: 3;
  filter: drop-shadow(0 15px 12px #115ef915);
}
.hero-check {
  left: 55px;
  top: 45px;
  width: 108px;
  transform: rotate(-13deg);
  animation: float-check 6s ease-in-out infinite;
}
.hero-calendar {
  right: -18px;
  bottom: 109px;
  width: 114px;
  transform: rotate(12deg);
  animation: float-calendar 7s ease-in-out infinite;
}
.scene-spark {
  position: absolute;
  color: var(--blue);
  font-size: 27px;
  font-weight: 400;
}
.spark-one {
  left: 23px;
  top: 235px;
  transform: rotate(15deg);
}
.spark-two {
  right: 10px;
  top: 40px;
  font-size: 26px;
}
.scene-note {
  position: absolute;
  z-index: 5;
  bottom: 4px;
  right: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 17px;
  background: #fff;
  padding: 16px 19px;
  box-shadow: 0 12px 36px #19396912;
  transform: rotate(-4deg);
  min-width: 248px;
}
.scene-note strong {
  display: block;
  font-size: 14px;
  letter-spacing: -0.025em;
}
.scene-note div > span {
  font-size: 11px;
  color: var(--muted);
  display: block;
  margin-top: 5px;
}
.scene-note > span:last-child {
  color: var(--blue);
  font-size: 22px;
  margin-left: auto;
}
.note-check {
  width: 34px;
  height: 34px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.note-check svg {
  width: 20px;
}
.scene-caption {
  position: absolute;
  right: 90px;
  bottom: -31px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: #8b95a1;
}
.store-types {
  padding: 38px 0 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  gap: 30px;
}
.store-types > p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}
.store-types > div {
  display: flex;
  gap: 36px;
  align-items: center;
  font-size: 17px;
  font-weight: 600;
  color: #8b95a1;
}
.store-types > div > span:last-child {
  color: #4e5968;
}
.section-intro {
  text-align: center;
  margin-bottom: 42px;
}
.section-intro h2 {
  margin-block: 16px;
}
.section-intro > p:last-child {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
}
.feature-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}
.feature-tabs button {
  border: 0;
  background: transparent;
  color: #6b7684;
  border-radius: 14px;
  padding: 15px 22px;
  font-size: 15px;
  font-weight: 600;
  transition:
    background 0.2s,
    color 0.2s;
}
.feature-tabs button span {
  font-size: 10px;
  letter-spacing: 0.02em;
  font-weight: 700;
  margin-right: 6px;
  opacity: 0.65;
}
.feature-tabs button[aria-selected="true"] {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 5px 14px #115ef920;
}
.feature-tabs button:hover:not([aria-selected="true"]) {
  background: var(--soft);
}
.feature-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 623px;
  overflow: hidden;
  background: var(--soft);
  border-radius: var(--radius);
  transition: background 0.3s;
}
.feature-copy {
  padding: 66px 18px 65px 64px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.feature-index {
  font-size: 11px;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.1em;
}
.feature-copy h3 {
  font-size: 39px;
  line-height: 1.35;
  margin-top: 22px;
  font-weight: 800;
}
.feature-copy > p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  margin-top: 19px;
}
.feature-copy ul {
  list-style: none;
  margin: 26px 0 35px;
  padding: 0;
  display: grid;
  gap: 13px;
}
.feature-copy li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  line-height: 1.6;
}
.feature-copy li svg {
  color: var(--blue);
  width: 16px;
  height: 16px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  padding: 6px 0;
}
.text-link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s;
}
.text-link:hover svg {
  transform: translateX(4px);
}
.feature-visual {
  position: relative;
  min-height: 623px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 30px 35px 0;
}
.feature-halo {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: #e7effe;
  position: absolute;
  top: 112px;
  left: 50%;
  transform: translateX(-50%);
}
.feature-phone {
  width: 240px;
  z-index: 2;
  transform: rotate(5deg);
  border-radius: 32px;
}
.feature-phone > img {
  border-radius: 25px;
}
.feature-object {
  position: absolute;
  left: 20px;
  bottom: 72px;
  width: 124px;
  height: auto;
  transform: rotate(-13deg);
  z-index: 3;
  filter: drop-shadow(0 12px 20px #115ef913);
}
.feature-visual figcaption {
  position: absolute;
  bottom: 18px;
  font-size: 10px;
  color: #6b7684;
  letter-spacing: 0.02em;
  left: 0;
  right: 0;
  text-align: center;
}
.feature-panel.is-changing .feature-phone {
  animation: screen-in 0.36s ease both;
}
.no-script {
  text-align: center;
  padding: 20px;
  font-size: 14px;
}
.no-script a {
  text-decoration: underline;
}
.more-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: -80px;
  padding-bottom: 108px;
}
.small-feature {
  background: #f2f4f6;
  border-radius: 24px;
  padding: 35px 32px 32px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.small-feature:nth-child(2) {
  background: #fff6f7;
}
.small-feature:nth-child(3) {
  background: #f5f8ff;
}
.small-feature > img {
  height: 102px;
  width: 115px;
  object-fit: contain;
  align-self: flex-end;
  margin-bottom: 6px;
}
.small-feature > .eyebrow {
  font-size: 10px;
  letter-spacing: 0.04em;
  margin-bottom: 11px;
}
.small-feature h3 {
  font-size: 24px;
  line-height: 1.4;
}
.small-feature > p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
  margin-top: 13px;
}
.philosophy {
  background: #f8faff;
  position: relative;
  padding-bottom: 86px;
}
.philosophy-top {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 25px;
}
.philosophy-copy {
  position: relative;
  z-index: 2;
}
.philosophy-copy h2 {
  font-size: 39px;
  line-height: 1.4;
  margin: 18px 0 24px;
}
.philosophy-copy h2 span {
  color: var(--blue);
}
.philosophy-copy > p:last-child {
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
}
.philosophy-art {
  width: 570px;
  max-width: 110%;
  mix-blend-mode: multiply;
}
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 62px;
  padding-top: 42px;
  border-top: 1px solid #e3eaf4;
}
.principle-number {
  font-size: 11px;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.05em;
}
.principles h3 {
  font-size: 18px;
  line-height: 1.5;
  margin: 15px 0 12px;
}
.principles p {
  font-size: 13px;
  line-height: 1.85;
  color: var(--muted);
}
.faq {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 70px;
}
.faq-intro h2 {
  font-size: 38px;
  margin-block: 18px;
}
.faq-intro > p:last-of-type {
  font-size: 14px;
  color: var(--muted);
}
.faq-intro > img {
  width: 85px;
  height: 85px;
  object-fit: contain;
  margin-top: 28px;
  transform: rotate(-12deg);
}
.faq-list {
  border-top: 1px solid #d1d6db;
}
.faq details {
  border-bottom: 1px solid #e5e8eb;
  padding: 0;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 25px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary svg {
  width: 19px;
  height: 19px;
  transition: transform 0.2s;
  color: #6b7684;
}
.faq details[open] summary svg {
  transform: rotate(45deg);
}
.faq details[open] summary {
  color: var(--blue);
}
.faq details > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
  padding: 0 35px 26px 0;
}
.download-section {
  background: var(--blue);
  color: white;
  overflow: hidden;
}
.download-inner {
  text-align: center;
  position: relative;
  padding-block: 86px 75px;
  isolation: isolate;
}
.download-inner > .eyebrow {
  color: #cfdffe;
  font-size: 11px;
}
.download-inner h2 {
  margin-block: 18px 20px;
  font-size: 46px;
  line-height: 1.3;
}
.download-inner > p:not(.eyebrow):not(.download-note) {
  color: #e7effe;
  font-size: 15px;
  line-height: 1.7;
}
.download-inner .store-buttons {
  justify-content: center;
  margin-top: 32px;
  gap: 12px;
}
.download-note {
  font-size: 11px;
  color: #cfdffe;
  margin-top: 22px;
}
.download-check {
  position: absolute;
  left: 32px;
  top: 97px;
  transform: rotate(-18deg);
  width: 125px;
  z-index: -1;
}
.download-heart {
  position: absolute;
  right: 45px;
  bottom: 105px;
  transform: rotate(17deg);
  width: 135px;
  z-index: -1;
  filter: brightness(1.2);
}
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding-block: 45px 42px;
}
.site-footer .brand img {
  width: 120px;
}
.site-footer > div > p {
  font-size: 11px;
  color: var(--muted);
  margin-top: 12px;
}
.footer-right {
  text-align: right;
}
.footer-right nav {
  display: flex;
  gap: 22px;
  font-size: 12px;
  color: #4e5968;
}
.footer-right nav a:first-child {
  font-weight: 700;
}
.footer-right nav a:hover {
  color: var(--blue);
}
.site-footer .footer-right > p {
  font-size: 10px;
  color: #8b95a1;
  margin-top: 18px;
}
.reveal {
  opacity: 1;
}
.revealed {
  animation: reveal-in 0.65s ease both;
}
@keyframes reveal-in {
  from {
    opacity: 0.5;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float-check {
  0%,
  100% {
    transform: translateY(0) rotate(-13deg);
  }
  50% {
    transform: translateY(-10px) rotate(-9deg);
  }
}
@keyframes float-calendar {
  0%,
  100% {
    transform: translateY(0) rotate(12deg);
  }
  50% {
    transform: translateY(8px) rotate(16deg);
  }
}
@keyframes screen-in {
  from {
    opacity: 0.4;
    transform: translateY(10px) rotate(5deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(5deg);
  }
}
@media (min-width: 1440px) {
  .hero {
    min-height: 745px;
  }
  .hero-scene {
    transform: translateX(10px);
  }
  h1 {
    font-size: 72px;
  }
}
@media (max-width: 1100px) {
  :root {
    --header-height: 78px;
  }
  .section-shell,
  .nav-shell {
    width: calc(100% - 64px);
  }
  .desktop-nav {
    gap: 22px;
  }
  .hero {
    min-height: 660px;
    gap: 0;
  }
  .hero-scene {
    height: 550px;
    transform: scale(0.86);
    transform-origin: center right;
    width: 510px;
    justify-self: end;
  }
  .hero-copy {
    margin-right: -35px;
  }
  h1 {
    font-size: 56px;
  }
  .hero-description {
    font-size: 15px;
  }
  .hero .button {
    padding-inline: 17px;
    font-size: 14px;
  }
  .hero .button-arrow {
    display: none;
  }
  .scene-caption {
    bottom: -25px;
  }
  .store-types > div {
    gap: 25px;
  }
  .feature-copy {
    padding-left: 40px;
  }
  .feature-copy h3 {
    font-size: 34px;
  }
  .feature-copy > p br {
    display: none;
  }
  .feature-object {
    left: 0;
  }
  .small-feature {
    padding: 26px;
    min-height: 330px;
  }
  .small-feature h3 {
    font-size: 22px;
  }
  .philosophy-copy h2 {
    font-size: 34px;
  }
  .principles {
    gap: 28px;
  }
  .principles h3 {
    font-size: 16px;
  }
  .faq {
    gap: 45px;
  }
  .download-check {
    left: 0;
    width: 100px;
  }
  .download-heart {
    right: 5px;
    width: 100px;
  }
}
@media (max-width: 800px) {
  :root {
    --header-height: 72px;
  }
  .section-shell,
  .nav-shell {
    width: calc(100% - 40px);
  }
  .desktop-nav {
    display: none;
  }
  .nav-shell {
    gap: 14px;
  }
  .nav-download {
    margin-left: auto;
  }
  .brand img {
    width: 128px;
  }
  .menu-toggle {
    display: flex;
    width: 36px;
    height: 40px;
    padding: 11px 5px;
    border: 0;
    background: transparent;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
  }
  .menu-toggle span {
    height: 2px;
    width: 22px;
    background: var(--ink);
    transition: transform 0.2s;
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 10px 24px 20px;
    border-top: 1px solid var(--line);
    gap: 3px;
    background: #fff;
  }
  .mobile-nav a {
    padding: 13px 0;
    font-size: 15px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 44px;
    padding-bottom: 40px;
    gap: 24px;
    text-align: center;
  }
  .hero-copy {
    padding: 0;
    margin: 0;
  }
  .hero-eyebrow {
    font-size: 12px;
  }
  h1 {
    font-size: 54px;
    margin-block: 20px;
  }
  .hero-description {
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 24px;
  }
  .hero .store-buttons {
    justify-content: center;
  }
  .hero .button {
    min-height: 52px;
    padding: 14px 20px;
    font-size: 15px;
  }
  .hero-people {
    justify-content: center;
    margin-top: 22px;
    text-align: left;
  }
  .hero-scene {
    transform: none;
    transform-origin: center;
    width: 520px;
    max-width: 100%;
    height: 545px;
    justify-self: center;
    margin-top: 12px;
  }
  .scene-circle {
    left: 30px;
    top: 57px;
    width: 430px;
    height: 430px;
  }
  .scene-orbit {
    inset: 30px 5px 30px;
  }
  .hero-phone {
    width: 233px;
    top: 14px;
    right: 60px;
  }
  .hero-mascot {
    width: 348px;
    left: -24px;
    bottom: 6px;
  }
  .hero-check {
    left: 55px;
    top: 35px;
    width: 91px;
  }
  .hero-calendar {
    right: 15px;
    bottom: 120px;
    width: 100px;
  }
  .spark-one {
    left: 17px;
    top: 207px;
  }
  .spark-two {
    right: 24px;
    top: 20px;
  }
  .scene-note {
    right: 22px;
    bottom: 5px;
    min-width: 224px;
    padding: 13px 17px;
    text-align: left;
  }
  .scene-note strong {
    font-size: 13px;
  }
  .scene-caption {
    bottom: -21px;
    right: 97px;
  }
  .store-types {
    padding-block: 28px;
    flex-direction: column;
    gap: 19px;
    text-align: center;
  }
  .store-types > div {
    gap: 31px;
    font-size: 15px;
  }
  .section-space {
    padding-block: 76px;
  }
  h2 {
    font-size: 37px;
  }
  .section-intro {
    margin-bottom: 28px;
  }
  .section-intro h2 {
    margin: 14px 0;
  }
  .section-intro > p:last-child {
    font-size: 14px;
  }
  .feature-tabs {
    gap: 5px;
    margin-bottom: 20px;
  }
  .feature-tabs button {
    padding: 13px 15px;
    font-size: 13px;
  }
  .feature-tabs button span {
    display: none;
  }
  .feature-panel {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 26px;
  }
  .feature-copy {
    padding: 36px 32px 18px;
    align-items: center;
    text-align: center;
  }
  .feature-index {
    font-size: 10px;
  }
  .feature-copy h3 {
    font-size: 32px;
    margin-top: 14px;
  }
  .feature-copy > p {
    font-size: 14px;
    margin-top: 14px;
    max-width: 365px;
  }
  .feature-copy ul {
    gap: 9px;
    margin: 20px 0 21px;
    align-self: center;
    text-align: left;
  }
  .feature-copy li {
    font-size: 12px;
  }
  .feature-visual {
    min-height: 554px;
    padding: 16px 0 40px;
  }
  .feature-phone {
    width: 224px;
  }
  .feature-object {
    left: calc(50% - 182px);
    bottom: 88px;
    width: 104px;
  }
  .feature-halo {
    width: 350px;
    height: 350px;
    top: 90px;
  }
  .feature-visual figcaption {
    bottom: 17px;
  }
  .more-features {
    margin-top: -52px;
    gap: 12px;
    padding-bottom: 76px;
  }
  .small-feature {
    padding: 24px 20px;
    min-height: 300px;
  }
  .small-feature > img {
    width: 84px;
    height: 85px;
    margin-bottom: 9px;
  }
  .small-feature h3 {
    font-size: 19px;
  }
  .small-feature > p {
    font-size: 12px;
  }
  .philosophy-top {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: center;
  }
  .philosophy-copy h2 {
    font-size: 32px;
    margin: 14px 0 19px;
  }
  .philosophy-copy > p:last-child {
    font-size: 14px;
  }
  .philosophy-art {
    width: 480px;
    max-width: 100%;
    margin: 0 auto;
  }
  .principles {
    margin-top: 18px;
    padding-top: 30px;
    gap: 22px;
  }
  .principles h3 {
    font-size: 15px;
  }
  .principles p {
    font-size: 12px;
  }
  .principles p br {
    display: none;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .faq-intro {
    position: relative;
  }
  .faq-intro h2 {
    font-size: 32px;
    margin: 14px 0;
  }
  .faq-intro > img {
    position: absolute;
    right: 18px;
    top: 18px;
    width: 82px;
    height: 82px;
    margin: 0;
  }
  .faq summary {
    font-size: 15px;
    padding-block: 22px;
  }
  .faq details > p {
    font-size: 13px;
  }
  .download-inner {
    padding-block: 65px 55px;
  }
  .download-inner h2 {
    font-size: 36px;
  }
  .download-inner > p:not(.eyebrow):not(.download-note) {
    font-size: 14px;
  }
  .download-inner .button {
    font-size: 14px;
    padding: 15px 17px;
    min-height: 53px;
  }
  .download-inner .button-arrow {
    display: none;
  }
  .download-check {
    width: 66px;
    top: 54px;
    left: -4px;
    opacity: 0.8;
  }
  .download-heart {
    width: 76px;
    right: -12px;
    bottom: 80px;
    opacity: 0.5;
  }
  .site-footer {
    align-items: flex-start;
    padding-block: 32px;
    gap: 25px;
  }
  .footer-right nav {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-end;
    font-size: 11px;
  }
}
@media (max-width: 520px) {
  .nav-shell {
    gap: 10px;
  }
  .nav-download {
    font-size: 11px;
    padding: 11px 13px;
    min-height: 38px;
    border-radius: 10px;
    gap: 7px;
  }
  .nav-download svg {
    width: 14px;
    height: 14px;
  }
  .brand img {
    width: 119px;
  }
  .menu-toggle {
    width: 28px;
    padding-inline: 3px;
  }
  .hero {
    padding-top: 35px;
    gap: 20px;
  }
  h1 {
    font-size: 46px;
    line-height: 1.22;
  }
  .hero-description {
    font-size: 13px;
    line-height: 1.85;
  }
  .hero-eyebrow {
    font-size: 11px;
    padding: 8px 12px;
  }
  .hero .button {
    font-size: 13px;
    min-height: 49px;
    padding: 13px 18px;
    border-radius: 13px;
  }
  .hero .button svg {
    width: 20px;
    height: 20px;
  }
  .hero .store-buttons {
    gap: 10px;
  }
  .hero-people p {
    font-size: 10px;
  }
  .avatar-stack img {
    width: 33px;
    height: 33px;
  }
  .hero-people {
    gap: 10px;
    margin-top: 20px;
  }
  .hero-scene {
    height: 425px;
    width: 360px;
    margin-top: 12px;
  }
  .scene-circle {
    width: 323px;
    height: 323px;
    left: 18px;
    top: 45px;
  }
  .scene-orbit {
    inset: 13px 0 32px;
  }
  .hero-phone {
    width: 184px;
    right: 30px;
    top: 5px;
    border-radius: 29px;
    padding: 5px;
  }
  .hero-phone > img {
    border-radius: 23px;
  }
  .hero-phone .phone-speaker {
    height: 9px;
    top: 9px;
  }
  .hero-mascot {
    width: 268px;
    left: -43px;
    bottom: 12px;
  }
  .hero-check {
    width: 75px;
    left: 22px;
    top: 27px;
  }
  .hero-calendar {
    width: 79px;
    right: -5px;
    bottom: 110px;
  }
  .spark-one {
    left: 2px;
    top: 170px;
    font-size: 21px;
  }
  .spark-two {
    right: 2px;
    top: 4px;
    font-size: 21px;
  }
  .scene-note {
    right: 7px;
    bottom: 14px;
    min-width: 190px;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 14px;
  }
  .scene-note strong {
    font-size: 11px;
  }
  .scene-note div > span {
    font-size: 9px;
    margin-top: 4px;
  }
  .note-check {
    width: 28px;
    height: 28px;
  }
  .note-check svg {
    width: 16px;
  }
  .scene-note > span:last-child {
    font-size: 16px;
  }
  .scene-caption {
    font-size: 8px;
    right: 40px;
    bottom: -8px;
  }
  .store-types {
    padding-block: 24px;
    gap: 17px;
  }
  .store-types > p {
    font-size: 11px;
  }
  .store-types > div {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
  }
  .section-space {
    padding-block: 62px;
  }
  .eyebrow {
    font-size: 10px;
  }
  .section-intro h2 {
    font-size: 31px;
    line-height: 1.4;
  }
  .section-intro > p:last-child {
    font-size: 13px;
  }
  .feature-tabs {
    gap: 4px;
    justify-content: space-between;
  }
  .feature-tabs button {
    font-size: 11px;
    padding: 12px 10px;
    border-radius: 11px;
    flex: 1;
    white-space: nowrap;
  }
  .feature-copy {
    padding: 31px 22px 10px;
  }
  .feature-copy h3 {
    font-size: 29px;
  }
  .feature-copy > p {
    font-size: 12px;
  }
  .feature-copy li {
    font-size: 11px;
  }
  .feature-copy ul {
    margin-block: 18px;
  }
  .text-link {
    font-size: 12px;
  }
  .feature-visual {
    min-height: 515px;
    padding-top: 16px;
  }
  .feature-phone {
    width: 209px;
    border-radius: 29px;
    padding: 6px;
  }
  .feature-phone > img {
    border-radius: 23px;
  }
  .feature-halo {
    width: 290px;
    height: 290px;
    top: 105px;
  }
  .feature-object {
    width: 81px;
    left: calc(50% - 152px);
    bottom: 99px;
  }
  .feature-visual figcaption {
    font-size: 9px;
  }
  .more-features {
    grid-template-columns: 1fr;
    margin-top: -44px;
    padding-bottom: 62px;
    gap: 12px;
  }
  .small-feature {
    min-height: 190px;
    padding: 26px;
    display: block;
  }
  .small-feature > img {
    position: absolute;
    right: 19px;
    top: 42px;
    width: 95px;
    height: 95px;
  }
  .small-feature > .eyebrow {
    display: block;
    margin: 0 0 10px;
  }
  .small-feature h3 {
    font-size: 21px;
    max-width: calc(100% - 93px);
  }
  .small-feature > p {
    font-size: 12px;
    margin-top: 11px;
    max-width: calc(100% - 90px);
  }
  .philosophy-copy h2 {
    font-size: 28px;
    line-height: 1.45;
  }
  .philosophy-copy > p:last-child {
    font-size: 13px;
  }
  .philosophy-art {
    margin-block: 12px -3px;
    max-width: 110%;
    width: calc(100% + 20px);
    margin-left: -10px;
  }
  .principles {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 26px;
    margin-top: 13px;
  }
  .principles article {
    display: grid;
    grid-template-columns: 28px 1fr;
    column-gap: 13px;
  }
  .principle-number {
    grid-row: 1 / 3;
    padding-top: 3px;
  }
  .principles h3 {
    font-size: 16px;
    margin: 0 0 8px;
  }
  .principles p {
    font-size: 12px;
    line-height: 1.8;
    grid-column: 2;
  }
  .faq {
    gap: 26px;
  }
  .faq-intro h2 {
    font-size: 29px;
  }
  .faq-intro > p:last-of-type {
    font-size: 12px;
  }
  .faq-intro > img {
    right: 4px;
    top: 30px;
    width: 70px;
    height: 70px;
  }
  .faq summary {
    font-size: 13px;
    padding-block: 21px;
    gap: 16px;
  }
  .faq summary svg {
    width: 17px;
    height: 17px;
  }
  .faq details > p {
    padding-right: 8px;
    font-size: 12px;
  }
  .download-inner {
    padding-block: 57px 49px;
  }
  .download-inner h2 {
    font-size: 31px;
    margin: 14px 0 17px;
  }
  .download-inner > p:not(.eyebrow):not(.download-note) {
    font-size: 12px;
  }
  .download-inner .store-buttons {
    margin-top: 25px;
    gap: 10px;
  }
  .download-inner .button {
    font-size: 11px;
    padding: 13px 13px;
    min-height: 49px;
    gap: 6px;
    border-radius: 13px;
  }
  .download-inner .button svg {
    width: 20px;
    height: 20px;
  }
  .download-note {
    font-size: 10px;
    margin-top: 17px;
  }
  .download-check {
    width: 50px;
    top: 15px;
    left: -13px;
    opacity: 0.65;
  }
  .download-heart {
    width: 60px;
    right: -19px;
    bottom: 20px;
    opacity: 0.65;
  }
  .site-footer {
    flex-direction: column;
    gap: 25px;
    padding-bottom: 28px;
  }
  .site-footer .brand img {
    width: 111px;
  }
  .site-footer > div > p {
    font-size: 10px;
    margin-top: 10px;
  }
  .footer-right {
    text-align: left;
  }
  .footer-right nav {
    justify-content: flex-start;
    gap: 20px;
    font-size: 10px;
  }
  .site-footer .footer-right > p {
    font-size: 9px;
    margin-top: 14px;
  }
}
@media (max-width: 360px) {
  h1 {
    font-size: 41px;
  }
  .hero-scene {
    width: 320px;
    height: 388px;
    transform: scale(0.91);
    transform-origin: top center;
    margin-bottom: -28px;
  }
  .hero-phone {
    right: 13px;
  }
  .scene-circle {
    left: 0;
  }
  .hero-mascot {
    left: -52px;
  }
  .hero-check {
    left: 11px;
  }
  .scene-note {
    right: -6px;
  }
  .feature-tabs button {
    padding-inline: 6px;
    font-size: 10px;
  }
  .small-feature {
    padding: 24px 20px;
  }
  .small-feature h3 {
    font-size: 19px;
  }
  .download-inner .button {
    font-size: 10px;
    padding-inline: 11px;
  }
  .footer-right nav {
    gap: 15px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .motion-ready .reveal:not(.revealed) {
    opacity: 1;
    transform: none;
  }
}
