:root {
  color-scheme: light;
  --paper: #faf8f3;
  --linen: #f1ece4;
  --ink: #132827;
  --moss: #596b68;
  --teal: #195d5b;
  --teal-bright: #2d7a75;
  --coral: #d76652;
  --coral-text: #a94335;
  --plum: #765f7c;
  --border: #d9d5cc;
  --white: #ffffff;
  --content: min(1180px, calc(100vw - 40px));
  --radius-lg: 40px;
  --radius-md: 28px;
  --shadow: 0 28px 80px rgba(19, 40, 39, 0.12);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", "Noto Sans KR", "Noto Sans JP", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::selection {
  background: rgba(215, 102, 82, 0.24);
}

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

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

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

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

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

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  padding: max(12px, env(safe-area-inset-top)) 20px 0;
  pointer-events: none;
}

.nav-shell {
  width: var(--content);
  min-height: 66px;
  margin: 0 auto;
  padding: 10px 12px 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(217, 213, 204, 0.74);
  border-radius: 22px;
  background: rgba(250, 248, 243, 0.76);
  box-shadow: 0 12px 40px rgba(19, 40, 39, 0.07);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 780;
  letter-spacing: 0.18em;
}

.brand img {
  border-radius: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 42px);
  font-size: 14px;
  font-weight: 620;
}

.nav-links a,
.footer-links a {
  color: var(--moss);
  transition: color 180ms ease;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--coral);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border-radius: 12px;
  background: rgba(25, 93, 91, 0.08);
}

.language-switcher button {
  min-width: 44px;
  min-height: 44px;
  padding: 0 8px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--moss);
  font: inherit;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.06em;
  cursor: pointer;
}

.language-switcher button[aria-pressed="true"] {
  background: var(--white);
  color: var(--teal);
  box-shadow: 0 2px 10px rgba(19, 40, 39, 0.1);
}

.section-pad {
  width: var(--content);
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding-top: clamp(150px, 18vh, 220px);
  padding-bottom: 54px;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(440px, 1.07fr);
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 48px;
  isolation: isolate;
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero-glow-one {
  width: 42vw;
  height: 42vw;
  right: -10vw;
  top: 16vh;
  background: radial-gradient(circle, rgba(215, 102, 82, 0.16), rgba(215, 102, 82, 0) 70%);
}

.hero-glow-two {
  width: 30vw;
  height: 30vw;
  left: -16vw;
  bottom: 5vh;
  background: radial-gradient(circle, rgba(118, 95, 124, 0.13), rgba(118, 95, 124, 0) 70%);
}

.eyebrow {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 6px rgba(215, 102, 82, 0.12);
}

.hero h1,
.statement h2,
.section-heading h2,
.safety h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(52px, 6.4vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 780;
}

em {
  color: var(--coral);
  font-style: normal;
}

.hero-lede {
  max-width: 590px;
  margin: 34px 0 0;
  color: var(--moss);
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.app-store-button {
  min-height: 62px;
  padding: 9px 22px 10px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(19, 40, 39, 0.18);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.app-store-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(19, 40, 39, 0.24);
}

.app-store-button .apple-mark {
  font-size: 33px;
  line-height: 1;
}

.app-store-button span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.04;
}

.app-store-button small {
  font-size: 9px;
}

.app-store-button strong {
  margin-top: 3px;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.store-link {
  min-height: 54px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(19, 40, 39, 0.16);
  border-radius: 16px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(19, 40, 39, 0.16);
  font-size: 15px;
  font-weight: 720;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.store-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(19, 40, 39, 0.22);
}

.text-link,
.light-link {
  color: var(--teal);
  font-size: 15px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(25, 93, 91, 0.25);
  text-underline-offset: 5px;
}

.store-status {
  margin: 13px 0 0;
  color: var(--moss);
  font-size: 12px;
}

.hero-product {
  position: relative;
  min-height: 590px;
  display: grid;
  place-items: center;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(25, 93, 91, 0.14);
  border-radius: 50%;
}

.orbit-outer {
  width: 540px;
  height: 540px;
  animation: spin 40s linear infinite;
}

.orbit-outer::before,
.orbit-inner::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: -5px;
  left: 50%;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 10px rgba(215, 102, 82, 0.08);
}

.orbit-inner {
  width: 390px;
  height: 390px;
  border-style: dashed;
  animation: spin 28s linear infinite reverse;
}

.orbit-inner::before {
  width: 8px;
  height: 8px;
  background: var(--plum);
  box-shadow: 0 0 0 9px rgba(118, 95, 124, 0.08);
}

.icon-stage {
  width: 260px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 62px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  transform: rotate(-3deg);
  animation: breathe 7s ease-in-out infinite;
}

.icon-stage img {
  border-radius: 50px;
}

.floating-card,
.floating-pill {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 45px rgba(19, 40, 39, 0.12);
  backdrop-filter: blur(18px) saturate(140%);
}

.floating-card {
  width: 260px;
  padding: 20px;
  border-radius: 24px;
}

.floating-card strong,
.floating-card span {
  display: block;
}

.card-profile {
  top: 48px;
  right: -14px;
  animation: float 8s ease-in-out infinite;
}

.card-profile strong {
  margin: 8px 0 6px;
  font-size: 17px;
  line-height: 1.35;
}

.card-profile > span:last-child {
  color: var(--moss);
  font-size: 12px;
}

.mini-label {
  color: var(--coral-text);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.card-chat {
  left: 8px;
  bottom: 52px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  animation: float 9s 800ms ease-in-out infinite reverse;
}

.bubble {
  width: fit-content;
  padding: 9px 13px;
  border-radius: 14px 14px 14px 4px;
  background: var(--linen);
  font-size: 12px;
}

.bubble-accent {
  align-self: flex-end;
  border-radius: 14px 14px 4px;
  background: var(--teal);
  color: var(--white);
}

.floating-pill {
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 720;
}

.pill-safe {
  left: 12px;
  top: 120px;
}

.pill-language {
  right: 24px;
  bottom: 130px;
  color: var(--plum);
}

.hero-footnote {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 56px minmax(0, 600px);
  align-items: start;
  gap: 20px;
}

.hero-footnote span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 760;
}

.hero-footnote p {
  margin: 0;
  color: var(--moss);
  font-size: 14px;
}

.statement,
.experience,
.journey,
.language-story,
.final-cta {
  padding-top: clamp(110px, 14vw, 190px);
  padding-bottom: clamp(110px, 14vw, 190px);
}

.section-kicker {
  margin-bottom: 54px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.18em;
}

.rule {
  height: 1px;
  background: var(--border);
}

.statement-grid,
.section-heading,
.safety-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(46px, 8vw, 120px);
}

.statement h2,
.section-heading h2,
.safety h2,
.final-cta h2 {
  font-size: clamp(43px, 5.5vw, 78px);
}

.statement-copy,
.section-heading > p {
  color: var(--moss);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.7;
}

.statement-copy p:first-child {
  margin-top: 0;
}

.principles {
  margin-top: 88px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
}

.principle {
  min-height: 250px;
  padding: 28px 32px 18px 0;
  border-right: 1px solid var(--border);
}

.principle + .principle {
  padding-left: 32px;
}

.principle:last-child {
  border-right: 0;
}

.principle-number {
  color: var(--coral-text);
  font-size: 12px;
  font-weight: 760;
}

.principle h3,
.bento-card h3 {
  margin: 48px 0 12px;
  font-size: clamp(25px, 2.4vw, 34px);
  line-height: 1.24;
  letter-spacing: -0.04em;
}

.principle p,
.bento-card p {
  margin: 0;
  color: var(--moss);
}

.experience {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100vw - 1180px) / 2));
  padding-right: max(20px, calc((100vw - 1180px) / 2));
  background: var(--linen);
}

.experience .section-heading {
  margin-bottom: 72px;
}

.section-heading > p {
  align-self: end;
  margin: 0 0 4px;
}

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

.bento-card {
  position: relative;
  min-width: 0;
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid rgba(217, 213, 204, 0.82);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  overflow: hidden;
  box-shadow: 0 20px 55px rgba(19, 40, 39, 0.06);
}

.bento-card::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  right: -150px;
  bottom: -160px;
  background: rgba(215, 102, 82, 0.09);
  pointer-events: none;
}

.bento-daily {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: 60px;
}

.tag {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(25, 93, 91, 0.09);
  color: var(--teal);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.08em;
}

.profile-sheet {
  width: min(100%, 440px);
  min-height: 350px;
  justify-self: center;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 34px;
  background: linear-gradient(155deg, #f8f4ed, #e8dfd5);
  box-shadow: 0 26px 55px rgba(19, 40, 39, 0.14);
  transform: rotate(2deg);
}

.sheet-top {
  width: 100%;
  margin-bottom: 18px;
  display: flex;
  justify-content: space-between;
  color: var(--moss);
  font-size: 11px;
  font-weight: 700;
}

.avatar-type {
  width: 106px;
  height: 106px;
  margin: 12px 0 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: var(--paper);
  font-size: 50px;
  font-weight: 700;
}

.profile-sheet strong {
  font-size: 24px;
}

.profile-sheet > span {
  color: var(--moss);
  font-size: 14px;
}

.chip-row {
  margin-top: 22px;
  display: flex;
  gap: 8px;
}

.chip-row i {
  padding: 6px 11px;
  border: 1px solid rgba(25, 93, 91, 0.14);
  border-radius: 999px;
  color: var(--teal);
  font-size: 11px;
  font-style: normal;
}

.request-note {
  margin-top: 42px;
  padding: 24px;
  border-radius: 22px;
  background: var(--paper);
}

.request-note > span {
  color: var(--coral);
  font-family: Georgia, serif;
  font-size: 42px;
  line-height: 0.7;
}

.request-note p {
  margin-top: 12px;
  color: var(--ink);
  font-size: 15px;
}

.bento-chat {
  background: var(--teal);
  color: var(--paper);
}

.bento-chat::after {
  background: rgba(215, 102, 82, 0.18);
}

.bento-chat p {
  color: rgba(250, 248, 243, 0.72);
}

.tag-light {
  background: rgba(250, 248, 243, 0.1);
  color: var(--paper);
}

.chat-stack {
  margin-top: 38px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-stack span {
  width: fit-content;
  max-width: 92%;
  padding: 12px 16px;
  border-radius: 18px 18px 18px 5px;
  background: rgba(250, 248, 243, 0.1);
  font-size: 14px;
}

.chat-stack span:nth-child(2) {
  align-self: flex-end;
  border-radius: 18px 18px 5px;
  background: var(--coral);
  color: var(--white);
}

.chat-stack small {
  align-self: flex-end;
  color: rgba(250, 248, 243, 0.58);
  font-size: 11px;
}

.yeon-balance {
  margin-top: 38px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  color: var(--teal);
}

.yeon-balance strong {
  font-size: 84px;
  line-height: 1;
  letter-spacing: -0.07em;
}

.yeon-balance span {
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.journey h2 {
  margin: 0 0 70px;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.journey-steps {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  border-top: 1px solid var(--border);
}

.journey-steps li {
  position: relative;
  padding: 28px 26px 0 0;
}

.journey-steps li + li {
  padding-left: 26px;
  border-left: 1px solid var(--border);
}

.journey-steps li::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  top: -5px;
  left: -1px;
  border-radius: 50%;
  background: var(--coral);
}

.journey-steps span {
  color: var(--coral-text);
  font-size: 11px;
  font-weight: 760;
}

.journey-steps strong {
  margin: 42px 0 10px;
  display: block;
  font-size: 19px;
  line-height: 1.3;
}

.journey-steps p {
  margin: 0;
  color: var(--moss);
  font-size: 14px;
}

.safety {
  position: relative;
  width: 100%;
  max-width: none;
  padding-top: clamp(110px, 13vw, 180px);
  padding-bottom: clamp(110px, 13vw, 180px);
  padding-left: max(20px, calc((100vw - 1180px) / 2));
  padding-right: max(20px, calc((100vw - 1180px) / 2));
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}

.safety-orb {
  position: absolute;
  z-index: -1;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.18;
}

.safety-orb-one {
  top: -220px;
  right: 0;
  background: var(--coral);
}

.safety-orb-two {
  bottom: -240px;
  left: -140px;
  background: var(--plum);
}

.section-kicker-light {
  color: rgba(250, 248, 243, 0.7);
}

.section-kicker-light .rule {
  background: rgba(250, 248, 243, 0.15);
}

.safety h2 em {
  color: #f08c75;
}

.safety-lede {
  max-width: 530px;
  margin: 30px 0;
  color: rgba(250, 248, 243, 0.65);
  font-size: 19px;
}

.light-link {
  color: var(--paper);
  text-decoration-color: rgba(250, 248, 243, 0.28);
}

.safety-list {
  border-top: 1px solid rgba(250, 248, 243, 0.16);
}

.safety-list article {
  padding: 28px 0;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  border-bottom: 1px solid rgba(250, 248, 243, 0.16);
}

.safety-list article > span {
  color: #f08c75;
  font-size: 11px;
  font-weight: 760;
}

.safety-list h3 {
  margin: 0 0 7px;
  font-size: 20px;
}

.safety-list p {
  margin: 0;
  color: rgba(250, 248, 243, 0.6);
  font-size: 14px;
}

.language-story {
  text-align: center;
}

.language-line {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 50px);
  font-size: clamp(40px, 7vw, 106px);
  font-weight: 760;
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.language-line span:nth-child(2) {
  color: var(--coral);
  font-weight: 300;
}

.language-copy {
  max-width: 720px;
  margin: 70px auto 0;
}

.language-copy > span {
  color: var(--teal);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.18em;
}

.language-copy h2 {
  margin: 18px 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.language-copy p {
  color: var(--moss);
}

.final-cta {
  margin-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #ece5db 0%, #f7f3ed 52%, #eaded9 100%);
  text-align: center;
  overflow: hidden;
}

.final-icon {
  margin-bottom: 30px;
  border-radius: 30px;
  box-shadow: 0 24px 45px rgba(19, 40, 39, 0.17);
}

.final-cta .eyebrow {
  justify-content: center;
}

.final-cta > p:not(.eyebrow, .store-status) {
  max-width: 620px;
  margin: 28px 0 32px;
  color: var(--moss);
  font-size: 18px;
}

.site-footer {
  width: var(--content);
  margin: 0 auto;
  padding: 70px 0 max(28px, env(safe-area-inset-bottom));
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.footer-brand p {
  margin-top: 16px;
  color: var(--moss);
  font-size: 14px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 70px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links strong {
  margin-bottom: 5px;
  font-size: 12px;
}

.footer-links a {
  font-size: 13px;
}

.footer-bottom {
  margin-top: 70px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--border);
  color: var(--moss);
  font-size: 11px;
}

/* Information and legal pages */
.subpage-main {
  width: min(900px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 180px 0 120px;
}

.subpage-hero {
  margin-bottom: 72px;
}

.subpage-hero .eyebrow {
  margin-bottom: 20px;
}

.subpage-hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(48px, 7vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.subpage-hero p:last-child {
  max-width: 720px;
  margin: 26px 0 0;
  color: var(--moss);
  font-size: 19px;
}

.prelaunch-notice {
  margin-bottom: 48px;
  padding: 20px 22px;
  border: 1px solid rgba(197, 122, 34, 0.32);
  border-radius: 18px;
  background: rgba(197, 122, 34, 0.08);
  color: #80511c;
  font-size: 14px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  align-items: start;
  gap: 60px;
}

.legal-aside {
  position: sticky;
  top: 112px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.48);
}

.legal-aside strong {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
}

.legal-aside p,
.legal-aside a {
  margin: 0;
  color: var(--moss);
  font-size: 12px;
}

.legal-aside a {
  margin-top: 12px;
  display: inline-block;
  color: var(--teal);
  font-weight: 700;
}

.legal-content h2 {
  margin: 64px 0 15px;
  padding-top: 6px;
  font-size: 28px;
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin: 26px 0 8px;
  font-size: 18px;
}

.legal-content p,
.legal-content li {
  color: #3f5552;
  font-size: 15px;
  line-height: 1.78;
}

.legal-content ul,
.legal-content ol {
  padding-left: 1.2em;
}

.legal-content a {
  color: var(--teal);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content .callout {
  margin: 32px 0;
  padding: 22px;
  border-radius: 18px;
  background: var(--linen);
}

.legal-content .callout p {
  margin: 0;
}

.anchor-target {
  scroll-margin-top: 120px;
}

[data-lang-section][hidden] {
  display: none !important;
}

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

.support-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.56);
}

.support-card h2 {
  margin: 0 0 10px;
  font-size: 22px;
}

.support-card p {
  margin: 0;
  color: var(--moss);
  font-size: 14px;
}

.support-card a {
  margin-top: 18px;
  display: inline-block;
  color: var(--teal);
  font-size: 14px;
  font-weight: 700;
}

.support-steps {
  margin-top: 54px;
  padding: 34px;
  border-radius: 28px;
  background: var(--teal);
  color: var(--paper);
}

.support-steps h2 {
  margin-top: 0;
}

.support-steps ol {
  margin-bottom: 0;
}

.support-steps li {
  margin: 10px 0;
  color: rgba(250, 248, 243, 0.78);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms cubic-bezier(0.2, 0.75, 0.25, 1), transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes breathe {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50% { transform: rotate(0deg) translateY(-10px); }
}

@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -13px, 0); }
}

@media (max-width: 960px) {
  :root { --content: min(100% - 32px, 760px); }

  .nav-links { display: none; }

  .hero {
    min-height: auto;
    padding-top: 150px;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    text-align: center;
  }

  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-product { min-height: 570px; }
  .hero-footnote { grid-column: 1; text-align: left; }
  .statement-grid, .section-heading, .safety-grid { grid-template-columns: 1fr; }
  .statement-copy { max-width: 700px; }
  .bento-daily { grid-template-columns: 1fr; }
  .journey-steps { grid-template-columns: repeat(2, 1fr); row-gap: 48px; }
  .journey-steps li:nth-child(3) { border-left: 0; }
  .legal-layout { grid-template-columns: 1fr; gap: 28px; }
  .legal-aside { position: static; }
}

@media (max-width: 680px) {
  :root {
    --content: calc(100% - 28px);
    --radius-lg: 30px;
  }

  body { font-size: 16px; }
  .site-header { padding-left: 10px; padding-right: 10px; }
  .nav-shell { width: 100%; min-height: 60px; padding-left: 12px; gap: 8px; }
  .brand { letter-spacing: 0.12em; }
  .brand img { width: 34px; height: 34px; border-radius: 9px; }
  .language-switcher button { min-width: 44px; min-height: 44px; padding: 0 5px; }

  .hero { padding-top: 130px; gap: 20px; }
  .hero h1 { font-size: clamp(48px, 15vw, 70px); }
  .hero-lede { font-size: 17px; }
  .hero-actions { flex-direction: column; }
  .hero-product { min-height: 470px; transform: scale(0.82); margin: -35px -60px; }
  .orbit-outer { width: 470px; height: 470px; }
  .orbit-inner { width: 330px; height: 330px; }
  .icon-stage { width: 218px; border-radius: 54px; }
  .icon-stage img { border-radius: 43px; }
  .card-profile { right: 0; }
  .card-chat { left: 0; }
  .hero-footnote { grid-template-columns: 34px 1fr; }

  .statement, .experience, .journey, .language-story, .final-cta { padding-top: 96px; padding-bottom: 96px; }
  .section-kicker { margin-bottom: 38px; }
  .statement h2, .section-heading h2, .safety h2, .final-cta h2 { font-size: 42px; }
  .principles { grid-template-columns: 1fr; margin-top: 58px; }
  .principle, .principle + .principle { min-height: 0; padding: 26px 0 34px; border-right: 0; border-bottom: 1px solid var(--border); }
  .principle h3 { margin-top: 30px; }

  .bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .bento-daily { grid-column: 1; gap: 40px; }
  .bento-card { min-height: 380px; padding: 30px; }
  .profile-sheet { min-height: 300px; }
  .yeon-balance strong { font-size: 68px; }
  .journey-steps { grid-template-columns: 1fr; row-gap: 0; }
  .journey-steps li, .journey-steps li + li { padding: 26px 0 42px; border-left: 0; }
  .journey-steps li + li { border-top: 1px solid var(--border); }
  .journey-steps li::before { display: none; }
  .journey-steps strong { margin-top: 24px; }
  .safety { padding-left: 20px; padding-right: 20px; }
  .language-line { flex-direction: column; gap: 8px; font-size: 48px; }
  .language-copy { margin-top: 52px; }
  .final-cta { border-radius: 30px; }

  .footer-main { flex-direction: column; }
  .footer-links { gap: 36px; }
  .footer-bottom { flex-direction: column; }

  .subpage-main { width: calc(100vw - 32px); padding-top: 140px; }
  .subpage-hero h1 { font-size: 48px; }
  .support-grid { grid-template-columns: 1fr; }
  .support-steps { padding: 28px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (prefers-contrast: more) {
  .nav-shell,
  .bento-card,
  .support-card,
  .legal-aside { border-color: var(--ink); }
  .nav-links a,
  .footer-links a,
  .legal-content p,
  .legal-content li { color: var(--ink); }
}
