@font-face{font-family:Heebo;src:url('/brand/heebo-400.ttf') format('truetype');font-weight:400;font-display:swap}
@font-face{font-family:Heebo;src:url('/brand/heebo-700.ttf') format('truetype');font-weight:700;font-display:swap}
@font-face{font-family:Heebo;src:url('/brand/heebo-800.ttf') format('truetype');font-weight:800;font-display:swap}

:root {
  --ink: #103b36;
  --paper: #f7f5ed;
  --sun: #f6cf70;
  --line: #d7ddd2;
  --muted: #56716b;
  --lime: #d9edb2;
  --night: #082b29;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Heebo, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
img {
  display: block;
  max-width: 100%;
  object-fit: contain;
  height: auto;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -0.045em;
  font-weight: 800;
}
h1 {
  font-size: clamp(3.2rem, 5.3vw, 6.6rem);
}
h2 {
  font-size: clamp(2.25rem, 3.5vw, 4rem);
}
h3 {
  font-size: 1.6rem;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #b46421;
  outline-offset: 6px;
  border-radius: 6px;
}
section[id] {
  scroll-margin-top: 100px;
}
.section {
  padding: 100px max(6vw, 24px);
}
.eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.micro {
  font-size: 13px;
  color: #57746e;
  margin-top: 18px;
}
.spark {
  font-size: 25px;
  color: #b4792c;
}
.skip {
  position: fixed;
  top: -100px;
  right: 20px;
  z-index: 100;
  background: var(--sun);
  padding: 10px 20px;
}
.skip:focus {
  top: 10px;
}
.header {
  height: 94px;
  max-width: 1600px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(4vw, 20px);
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}
.brand img {
  width: 46px;
  height: 46px;
}
.brand-en {
  display: block;
  font-size: 9px;
  letter-spacing: 0.24em;
  text-align: center;
  margin-top: 7px;
}
.header nav {
  display: flex;
  gap: 32px;
  font-size: 15px;
  font-weight: 600;
}
.header nav a:hover,
.footer nav a:hover {
  text-decoration: underline;
  text-underline-offset: 6px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 16px 25px;
  min-height: 54px;
  background: var(--ink);
  color: white;
  border-radius: 100px;
  font-weight: 700;
  font-size: 16px;
  border: 1px solid transparent;
  transition:
    transform 0.2s,
    background 0.2s;
}
.button:hover {
  transform: translateY(-3px);
  background: #235a49;
}
.button span {
  font-size: 23px;
  line-height: 1;
}
.button.small {
  font-size: 14px;
  min-height: 46px;
  padding: 10px 20px;
  gap: 20px;
}
.button.sun {
  background: var(--sun);
  color: var(--ink);
  box-shadow: 0 3px 0 #ceac53;
}
.button.sun:hover {
  background: #ffdf90;
}
.button.outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.button.light {
  background: var(--paper);
  color: var(--ink);
}
.text-link {
  display: inline-flex;
  gap: 15px;
  align-items: center;
  border-bottom: 1px solid currentColor;
  padding: 6px 0;
  font-size: 15px;
  font-weight: 600;
}
.text-link:hover {
  opacity: 0.7;
}
.hero {
  min-height: 750px;
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.06fr 1fr;
  align-items: center;
  padding: 35px max(5vw, 24px) 65px;
  gap: 30px;
  overflow: hidden;
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 30px;
}
.hero h1 em {
  font-style: normal;
  color: #54846c;
  position: relative;
  white-space: nowrap;
}
.hero h1 em:after {
  content: '';
  position: absolute;
  height: 3px;
  bottom: -2px;
  left: 5%;
  right: 1%;
  background: #ddb353;
  border-radius: 2px;
}
.hero-description {
  font-size: clamp(17px, 1.5vw, 21px);
  max-width: 490px;
  margin: 30px 0;
  line-height: 1.8;
}
.cta-row {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}
.hero-art {
  height: 640px;
  position: relative;
  min-width: 0;
  isolation: isolate;
  margin-inline-start: 8px;
}
.arch {
  position: absolute;
  inset: 10px 2% 20px 3%;
  border-radius: 48% 48% 7% 7%;
  overflow: hidden;
  background: var(--night);
  box-shadow: 0 28px 70px #163e3728;
}
.arch .forest {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
  transform: scale(1.02);
}
.forest-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 65%, #052725e0);
}
.hero-nuri {
  position: absolute;
  width: 49%;
  height: 420px !important;
  object-fit: contain;
  left: -11%;
  bottom: -33px;
  filter: drop-shadow(8px 10px 14px #001e2660);
  animation: nuri-breathe 5s ease-in-out infinite;
  z-index: 3;
}
.floating {
  position: absolute;
  background: #fffef5;
  box-shadow: 0 16px 45px #001b2733;
  border: 1px solid #ffffff90;
  border-radius: 18px;
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 18px 22px;
  z-index: 2;
}
.success {
  top: 43%;
  left: 9%;
  right: 9%;
}
.floating strong {
  display: block;
  font-size: 19px;
}
.floating div > span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 3px;
}
.check {
  border-radius: 50%;
  background: var(--lime);
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  font-size: 23px;
  flex-shrink: 0;
}
.leaf {
  color: #69854b;
  margin-inline-start: auto;
}
.world-tag {
  position: absolute;
  bottom: 38px;
  right: 28px;
  color: #fff9d9;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
}
.light-dot {
  width: 7px;
  height: 7px;
  background: #fae39d;
  border-radius: 50%;
  box-shadow: 0 0 14px #fae39d;
}
.handnote {
  position: absolute;
  bottom: -8px;
  right: 17%;
  font-size: 15px;
  font-weight: 600;
}
.orbit {
  position: absolute;
  left: 0;
  top: 55px;
  font-size: 58px;
  color: #bd8e3f;
}
.promise-strip {
  padding: 24px;
  display: flex;
  gap: 5vw;
  justify-content: center;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 19px;
  font-weight: 600;
}
.promise-strip i {
  color: #ad893e;
  font-size: 18px;
  font-style: normal;
}
.intro {
  text-align: center;
  padding-bottom: 70px;
}
.intro .eyebrow {
  justify-content: center;
}
.intro > p:last-child {
  max-width: 660px;
  margin: 30px auto 0;
  font-size: 20px;
  line-height: 1.8;
}
.underline {
  text-decoration: underline;
  text-decoration-color: #dec279;
  text-underline-offset: 10px;
  text-decoration-thickness: 3px;
}
.section-heading {
  margin-bottom: 45px;
}
.how {
  padding-top: 45px;
}
.how-layout {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 7vw;
  align-items: center;
}
.steps {
  display: flex;
  flex-direction: column;
}
.step {
  display: flex;
  gap: 22px;
  text-align: right;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  color: var(--muted);
  align-items: flex-start;
}
.step-index {
  font-size: 15px;
  direction: ltr;
  min-width: 25px;
  padding-top: 5px;
}
.step strong {
  display: block;
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}
.step span span {
  display: block;
  font-size: 16px;
  max-width: 360px;
}
.step b {
  font-size: 28px;
  margin-inline-start: auto;
  opacity: 0;
}
.step.active {
  color: var(--ink);
}
.step.active .step-index {
  color: #a47729;
  font-weight: 800;
}
.step.active b {
  opacity: 1;
}
.scene-stage {
  background: #e7eadb;
  min-height: 455px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.scene {
  padding: 36px 38px;
  min-height: 455px;
  position: relative;
}
.scene[hidden] {
  display: none;
}
.scene-kicker {
  font-size: 14px;
  display: block;
  text-align: center;
  margin-bottom: 35px;
  color: #526b52;
}
.paper-task {
  padding: 25px;
  background: #fffef7;
  border-radius: 14px;
  box-shadow: 0 12px 24px #31573610;
  position: relative;
  margin-bottom: 18px;
  border-bottom: 3px solid #d8dec8;
}
.paper-task h3 {
  font-size: 24px;
  margin: 13px 0 10px;
}
.paper-task > span:not(.pill):not(.task-tick) {
  font-size: 14px;
  color: var(--muted);
}
.pill {
  display: inline-flex;
  border-radius: 40px;
  background: #e6eedc;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  gap: 5px;
}
.pill.gold {
  background: #fcf0c8;
}
.task-tick {
  position: absolute;
  left: 20px;
  top: 22px;
  color: #749759;
  font-size: 25px;
}
.scene-caption {
  display: block;
  text-align: center;
  font-size: 13px;
  margin-top: 28px;
  color: var(--muted);
}
.photo-frame {
  height: 260px;
  border-radius: 18px;
  background: #cad7bd;
  position: relative;
  display: grid;
  place-items: center;
}
.proof-prop {
  height: 195px !important;
  width: 180px;
}
.photo-frame strong {
  position: absolute;
  bottom: 18px;
  font-size: 17px;
}
.camera-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 2px solid #ffffffb0;
}
.c1 {
  right: 25px;
  top: 22px;
  border-left: 0;
  border-bottom: 0;
}
.c2 {
  left: 25px;
  bottom: 22px;
  border-right: 0;
  border-top: 0;
}
.waiting {
  position: relative;
  margin: -6px 14px 0;
}
.waiting strong {
  font-size: 17px;
}
.approval-orb {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: #fff5bd;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow:
    0 0 0 18px #fff4bf38,
    0 0 0 40px #fff4bf1c;
}
.approval-orb > span:first-child {
  font-size: 40px;
  color: #a77527;
}
.approval-orb strong {
  font-size: 48px;
}
.approval-orb > span:last-child {
  font-size: 14px;
}
.scene-nuri {
  position: absolute;
  width: 145px;
  height: 210px !important;
  left: 5px;
  bottom: 20px;
}
.responsibility {
  background: var(--ink);
  color: var(--paper);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 9vw;
}
.responsibility .eyebrow {
  color: var(--sun);
}
.responsibility h2 {
  margin-bottom: 28px;
}
.responsibility p {
  font-size: 18px;
  color: #ccdcd0;
}
.responsibility-path {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.responsibility-path > div {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  padding: 25px 0;
  border-bottom: 1px solid #ffffff20;
}
.responsibility-path > div:last-child {
  border: 0;
}
.path-number {
  width: 36px;
  height: 36px;
  border: 1px solid #f7f5ed70;
  display: grid;
  place-items: center;
  border-radius: 50%;
  flex-shrink: 0;
  color: var(--sun);
}
.responsibility-path strong {
  display: block;
  font-size: 21px;
  color: var(--paper);
  margin-bottom: 8px;
}
.responsibility-path p span {
  display: block;
  font-size: 15px;
}
.responsibility-path .pill {
  color: var(--ink);
  margin-inline-start: auto;
  flex-shrink: 0;
}
.worlds {
  background: var(--night);
  color: var(--paper);
  overflow: hidden;
}
.worlds-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding-bottom: 60px;
  gap: 40px;
}
.worlds-top > p {
  max-width: 425px;
  color: #b9d1c4;
  font-size: 19px;
}
.worlds .eyebrow {
  color: var(--sun);
}
.world-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 0 28px;
}
.world-panel {
  margin: 0;
  height: 490px;
  position: relative;
  overflow: hidden;
  border-radius: 120px 120px 12px 12px;
}
.world-panel:nth-child(even) {
  margin-top: 60px;
}
.world-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s;
}
.world-panel:hover img {
  transform: scale(1.05);
}
.world-panel:after {
  content: '';
  position: absolute;
  inset: 30% 0 0;
  background: linear-gradient(transparent, #001d22f5);
}
.world-panel figcaption {
  position: absolute;
  bottom: 30px;
  right: 28px;
  left: 20px;
  z-index: 1;
}
.world-panel figcaption > span {
  font-size: 12px;
  color: #e2d7ac;
}
.world-panel h3 {
  font-size: 28px;
  margin: 14px 0 8px;
}
.world-panel p {
  font-size: 14px;
  color: #d4e2d4;
}
.worlds-bottom {
  padding-top: 50px;
  padding-bottom: 65px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #b9d1c4;
  font-size: 14px;
}
.together {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  padding-top: 130px;
  padding-bottom: 130px;
}
.together h2 {
  font-size: clamp(2rem, 3vw, 3.3rem);
  margin-bottom: 25px;
}
.together p:not(.eyebrow) {
  max-width: 440px;
}
.parent-approval {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 35px;
}
.mini-mark {
  font-size: 25px;
  background: #d7e4c9;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
}
.parent-approval strong,
.parent-approval div > span {
  display: block;
  font-size: 14px;
}
.parent-approval div > span {
  color: var(--muted);
}
.child-side {
  border-right: 1px solid var(--line);
  padding-right: 6vw;
  position: relative;
  padding-top: 100px;
}
.together-nuri {
  position: absolute;
  top: -15px;
  left: 5%;
  width: 110px;
  height: 150px !important;
}
.trust {
  background: #e6ecd9;
  display: grid;
  grid-template-columns: auto 1fr 1.05fr;
  gap: 40px;
  align-items: center;
}
.trust-symbol {
  font-size: 85px;
  font-weight: 300;
  color: #718559;
}
.trust h2 {
  font-size: clamp(2rem, 3vw, 3.3rem);
}
.trust-detail p {
  margin-bottom: 20px;
}
.centered {
  text-align: center;
}
.centered .eyebrow {
  justify-content: center;
}
.centered > p:last-child {
  max-width: 540px;
  margin: 25px auto 0;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1050px;
  margin: 55px auto 0;
  gap: 24px;
  align-items: stretch;
}
.price-plan {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  background: #fffdf7;
}
.price-plan.premium {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.plan-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  margin-bottom: 24px;
}
.premium .plan-label {
  color: var(--sun);
}
.price-plan h3 {
  font-size: 27px;
}
.price {
  flex-wrap: wrap;
  display: flex;
  align-items: baseline;
  gap: 15px;
  margin-top: 37px;
}
.price bdi {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.05em;
}
.price > span {
  font-size: 14px;
}
.price-plan ul {
  list-style: none;
  padding: 0;
  margin: 35px 0;
  flex: 1;
}
.price-plan li {
  padding: 10px 25px 10px 0;
  position: relative;
  font-size: 16px;
}
.price-plan li:before {
  content: '✓';
  position: absolute;
  right: 0;
  color: #9b873b;
}
.premium li:before {
  color: var(--sun);
}
.price-plan small {
  text-align: center;
  font-size: 12px;
  margin-top: 15px;
  opacity: 0.8;
}
.billing-toggle {
  display: flex;
  gap: 3px;
  align-self: flex-start;
  background: #ffffff10;
  padding: 3px;
  border-radius: 40px;
  margin-top: 22px;
}
.billing-toggle button {
  border: 0;
  background: none;
  color: #dbe5da;
  border-radius: 30px;
  padding: 6px 20px;
  font-size: 13px;
  min-height: 38px;
}
.billing-toggle [aria-pressed='true'] {
  background: var(--paper);
  color: var(--ink);
}
.premium .price {
  margin-top: 18px;
}
.price-note {
  font-size: 13px;
  color: #c5d5c4;
  min-height: 24px;
  margin-top: 6px;
}
.faq {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 9vw;
  padding-top: 40px;
}
.faq h2 {
  font-size: clamp(2.1rem, 3vw, 3.4rem);
  margin-bottom: 28px;
}
.questions details {
  border-bottom: 1px solid var(--line);
  padding: 23px 0;
}
.questions details:first-child {
  border-top: 1px solid var(--line);
}
summary {
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  gap: 25px;
}
summary::-webkit-details-marker {
  display: none;
}
summary span {
  font-size: 0;
  font-weight: 400;
}
summary span::before {
  content: '+';
  font-size: 24px;
}
details[open] summary span::before {
  content: '−';
}
details p {
  padding-top: 20px;
  color: var(--muted);
  font-size: 16px;
}
.closing {
  background: #dde8c6;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8vw;
  padding-top: 75px;
  padding-bottom: 75px;
  overflow: hidden;
}
.closing h2 {
  margin-bottom: 32px;
}
.closing .text-link {
  display: block;
  width: fit-content;
  margin-top: 20px;
}
.closing-nuri {
  width: 250px;
  height: 340px !important;
  filter: drop-shadow(15px 10px 20px #203e341a);
}
.footer {
  background: #072b28;
  color: #d7e3d7;
  padding: 65px max(6vw, 24px) 28px;
}
.footer .brand {
  color: #f4f3de;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-top p {
  font-size: 20px;
  line-height: 1.6;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  flex-wrap: wrap;
  border-top: 1px solid #ffffff20;
  padding-top: 25px;
  font-size: 12px;
}
.footer nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.document {
  max-width: 1200px;
  margin: auto;
  padding-top: 65px;
  min-height: 65vh;
}
.breadcrumb {
  font-size: 14px;
  color: var(--muted);
}
.document-heading {
  padding: 45px 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 45px;
  max-width: 900px;
}
.document h1 {
  font-size: clamp(2.8rem, 4.5vw, 4.8rem);
  margin-bottom: 25px;
}
.document-heading > p:last-child {
  font-size: 21px;
  max-width: 730px;
}
.document-body {
  max-width: 760px;
}
.document-body h2 {
  font-size: 26px;
  margin: 38px 0 18px;
}
.document-body p {
  margin: 15px 0;
  line-height: 1.9;
}
.document-body a:not(.button) {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.document-body .button {
  margin: 15px 0 25px;
}
.document-body ul {
  padding-right: 22px;
}
.download-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.callout {
  padding: 25px;
  border-right: 3px solid #b79142;
  background: #e9eddf;
  margin: 30px 0;
}
.legal-links {
  display: flex;
  gap: 25px;
  margin-top: 40px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@keyframes nuri-breathe {
  50% {
    transform: translateY(-7px);
  }
}
@media (min-width: 1600px) {
  .section,
  .footer {
    padding-right: max(calc((100vw - 1400px) / 2), 6vw);
    padding-left: max(calc((100vw - 1400px) / 2), 6vw);
  }
}
@media (max-width: 1100px) {
  .header nav {
    gap: 18px;
  }
  .header-actions {
    gap: 15px;
  }
  .hero {
    min-height: 660px;
    gap: 15px;
  }
  .hero-art {
    height: 555px;
  }
  .hero-nuri {
    height: 350px !important;
  }
  .cta-row {
    gap: 17px;
  }
  .hero .button {
    font-size: 14px;
    gap: 12px;
  }
  .hero .text-link {
    font-size: 14px;
  }
  .world-panel {
    height: 400px;
  }
  .world-panel figcaption {
    right: 18px;
  }
  .world-panel h3 {
    font-size: 23px;
  }
  .trust {
    gap: 25px;
  }
  .trust-symbol {
    display: none;
  }
  .trust {
    grid-template-columns: 1fr 1fr;
  }
  .price-plan {
    padding: 30px;
  }
  .how-layout {
    gap: 4vw;
  }
  .scene {
    padding: 32px 25px;
  }
}
@media (max-width: 800px) {
  .header {
    height: 82px;
    gap: 15px;
  }
  .header nav {
    display: none;
  }
  .hero {
    padding-top: 35px;
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
    min-height: 0;
  }
  .hero-copy {
    padding: 0;
  }
  .hero .eyebrow,
  .cta-row {
    justify-content: center;
  }
  .hero h1 {
    font-size: clamp(3rem, 9vw, 5.4rem);
  }
  .hero-description {
    margin: 25px auto;
    font-size: 18px;
    max-width: 490px;
  }
  .hero-art {
    max-width: 470px;
    width: 85%;
    height: 520px;
    margin: 0 auto;
  }
  .hero-nuri {
    width: 47%;
    height: 345px !important;
    left: -10%;
    bottom: -22px;
  }
  .handnote {
    bottom: -5px;
    right: 12%;
  }
  .hero {
    padding-bottom: 60px;
  }
  .promise-strip {
    font-size: 15px;
    gap: 4vw;
  }
  .promise-strip i {
    font-size: 12px;
  }
  .section {
    padding: 70px 28px;
  }
  .intro > p:last-child {
    font-size: 18px;
  }
  .how-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .steps {
    flex-direction: row;
    gap: 18px;
  }
  .step {
    flex: 1;
    display: block;
    border-bottom: 2px solid var(--line);
    padding: 15px 0;
  }
  .step span span {
    display: none;
  }
  .step b {
    display: none;
  }
  .step strong {
    font-size: 19px;
    margin-top: 8px;
  }
  .step.active {
    border-color: #b99446;
  }
  .scene-stage {
    max-width: 560px;
    width: 100%;
    margin: auto;
  }
  .responsibility {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .responsibility-path > div {
    padding: 24px 0;
  }
  .worlds-top {
    display: block;
  }
  .worlds-top > p {
    margin-top: 30px;
    max-width: 520px;
  }
  .world-gallery {
    display: flex;
    gap: 15px;
    padding: 0 28px;
    overflow: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    padding-bottom: 25px;
  }
  .world-panel {
    min-width: 65vw;
    height: 500px;
    scroll-snap-align: center;
  }
  .world-panel:nth-child(even) {
    margin-top: 35px;
  }
  .worlds-bottom {
    display: block;
    padding-top: 20px;
    padding-bottom: 55px;
  }
  .worlds-bottom span {
    display: block;
    margin-top: 12px;
  }
  .together {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .child-side {
    border-right: 0;
    border-top: 1px solid var(--line);
    padding: 75px 0 0;
  }
  .together-nuri {
    top: 20px;
    left: 0;
    width: 85px;
    height: 125px !important;
  }
  .child-side h2 {
    max-width: 85%;
  }
  .trust {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
  .price-plan {
    padding: 35px;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .closing {
    position: relative;
    justify-content: start;
    padding-bottom: 70px;
  }
  .closing h2 {
    font-size: clamp(2rem, 6vw, 3rem);
  }
  .closing > div {
    position: relative;
    z-index: 1;
  }
  .closing-nuri {
    position: absolute;
    width: 150px;
    height: 220px !important;
    left: 0;
    bottom: -70px;
    opacity: 0.55;
  }
  .closing .text-link {
    max-width: 240px;
  }
  .footer-top {
    align-items: start;
    flex-wrap: wrap;
    gap: 30px;
  }
  .footer-top p {
    font-size: 18px;
  }
  .footer-top .button {
    width: 100%;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .footer nav {
    gap: 18px;
  }
  .document {
    padding-top: 35px;
  }
  .document-heading {
    padding-top: 30px;
  }
  .document-heading .eyebrow {
    font-size: 13px;
  }
}
@media (max-width: 380px) {
  .header {
    padding: 0 18px;
  }
  .brand {
    font-size: 23px;
    gap: 5px;
  }
  .brand img {
    width: 36px;
    height: 36px;
  }
  .header-actions {
    gap: 10px;
  }
  .login {
    font-size: 12px;
  }
  .header .button {
    padding: 8px 14px;
    gap: 10px;
  }
  .hero {
    padding-inline: 20px;
  }
  .hero h1 {
    font-size: 2.9rem;
  }
  .hero-art {
    height: 420px;
    width: 92%;
  }
  .hero-nuri {
    height: 280px !important;
  }
  .success {
    padding: 13px;
    gap: 10px;
    left: 5%;
    right: 5%;
  }
  .floating strong {
    font-size: 16px;
  }
  .floating div > span {
    font-size: 12px;
  }
  .section {
    padding-inline: 22px;
  }
  .step strong {
    font-size: 17px;
  }
  .scene {
    padding: 28px 22px;
  }
  .paper-task h3 {
    font-size: 21px;
  }
  .paper-task {
    padding: 21px;
  }
  .scene-stage,
  .scene {
    min-height: 430px;
  }
  .world-panel {
    height: 430px;
    min-width: 75vw;
  }
  .price-plan {
    padding: 27px;
  }
  .price bdi {
    font-size: 48px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
@media (max-width: 480px) {
  .header-actions .button {
    display: none;
  }
  .header-actions .login {
    white-space: nowrap;
    display: flex;
    align-items: center;
    min-height: 44px;
    font-size: 14px;
  }
  .brand {
    flex-shrink: 0;
  }
  .price-plan .button {
    gap: 12px;
    padding-inline: 15px;
    font-size: 15px;
  }
}
