@font-face {
  font-family: DdonggleJua;
  src: url('./jua-ddongle.woff2') format('woff2');
  font-display: swap;
  unicode-range: U+B625, U+AE00;
}
:root {
  --cream: #fff9f3;
  --apricot: #fff4e6;
  --orange: #ffb86b;
  --deep: #b5732a;
  --link: #955619;
  --ink: #3d352f;
  --muted: #766a60;
  --line: #eaded1;
  --white: #fff;
  --shadow: 0 18px 48px #71451d12;
  --cta: linear-gradient(150deg, #ffb663, #fca44a 48%, #f5983a);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family:
    'Pretendard Variable',
    Pretendard,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  line-height: 1.65;
  word-break: normal;
  overflow-wrap: anywhere;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
select {
  font: inherit;
}
button,
a,
select {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
svg {
  flex: none;
}
button:disabled {
  cursor: default;
}
a:focus-visible,
button:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--deep);
  outline-offset: 5px;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.2;
  letter-spacing: -0.045em;
  text-wrap: balance;
}
p {
  word-break: keep-all;
}
h1 {
  font-size: clamp(40px, 4.65vw, 66px);
  font-weight: 800;
}
h2 {
  font-size: clamp(30px, 3.7vw, 48px);
  font-weight: 800;
}
h3 {
  font-size: 25px;
}
button {
  color: inherit;
}
.container {
  width: min(1180px, calc(100% - 72px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  inset: 12px auto auto 16px;
  padding: 10px 18px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
  z-index: 100;
}
.skip-link:focus {
  transform: none;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #fff9f3f2;
  border-bottom: 1px solid #eaded175;
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand img {
  width: 42px;
  height: 42px;
  border-radius: 13px;
}
.wordmark {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -1.2px;
  color: var(--deep);
}
:lang(ko) .wordmark {
  font-family: DdonggleJua, 'Pretendard Variable', sans-serif;
  font-size: 31px;
  font-weight: 400;
  letter-spacing: 0;
}
.header-nav {
  display: flex;
  gap: 30px;
  margin-inline: auto;
  font-size: 14px;
  font-weight: 650;
}
.header-nav a:hover {
  color: var(--deep);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-inline-start: auto;
}
.language-switch {
  display: flex;
  align-items: center;
  gap: 6px;
}
.language-switch select {
  border: 0;
  background: transparent;
  color: var(--ink);
  max-width: 113px;
  padding: 10px 2px;
  min-height: 44px;
  cursor: pointer;
  font-size: 13px;
}
.mini-cta {
  background: var(--apricot);
  border: 1px solid #edc79d;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 750;
  font-size: 14px;
}
.hero {
  padding: 68px 0 80px;
  display: grid;
  grid-template-columns: 1.04fr 1fr;
  gap: 36px;
  align-items: center;
  min-height: 810px;
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 20px;
}
.hero-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  color: var(--link);
  font-size: 14px;
  font-weight: 700;
}
.hero-brand .tiny-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--deep);
}
.hero-description {
  font-size: 18px;
  line-height: 1.85;
  color: var(--muted);
  max-width: 470px;
  margin-top: 27px;
}
.store-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 62px;
  padding: 15px 23px;
  border-radius: 40px;
  border: 0;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 750;
  text-align: start;
  word-break: keep-all;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.store-button.apple,
.store-button.available {
  background: var(--cta);
  color: white;
  text-shadow: 0 1px 2px #9b4b2480;
  box-shadow: 0 9px 22px #de842536;
}
.store-button.apple:hover,
.store-button.available:hover {
  box-shadow: 0 12px 26px #de842548;
  transform: translateY(-2px);
}
.store-button.android {
  background: transparent;
  border: 1.5px solid #d9c8b8;
  color: #776457;
  box-shadow: none;
}
.store-button.android.available {
  border: 0;
  color: white;
  background: var(--cta);
}
.store-button svg {
  width: 25px;
  height: 27px;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 24px;
  font-size: 12px;
  color: var(--muted);
}
.trust-row span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.trust-row svg {
  color: var(--deep);
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px 20px;
  min-width: 0;
}
.hero-blob {
  position: absolute;
  z-index: 0;
  width: 116%;
  aspect-ratio: 1;
  background: #ffdfb5;
  border-radius: 45% 55% 48% 52% / 52% 42% 58% 48%;
  transform: rotate(-14deg);
  inset-inline-start: -2%;
  top: 8%;
}
.hero-blob:after {
  content: '';
  position: absolute;
  inset: 30px;
  border: 1px solid #fff9f380;
  border-radius: inherit;
}
.phone {
  position: relative;
  background: var(--cream);
  border: 7px solid white;
  border-radius: 37px;
  box-shadow:
    0 2px 0 1px #e5d7c7,
    0 28px 66px #6d48152b;
  overflow: hidden;
  line-height: 0;
  max-width: 100%;
  width: 290px;
}
.phone img {
  width: 100%;
  aspect-ratio: 1242/2688;
  object-fit: cover;
}
.hero-phone {
  width: 306px;
  transform: rotate(4deg);
  z-index: 1;
}
.mascot-sticker {
  position: absolute;
  left: 0;
  bottom: 28px;
  width: 106px;
  aspect-ratio: 1;
  z-index: 2;
  transform: rotate(-10deg);
  border: 7px solid #fff;
  border-radius: 31px;
  box-shadow: 0 10px 28px #a87a3926;
  background: var(--apricot);
}
.sample-note {
  margin-top: 22px;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}
.hero-sample {
  position: absolute;
  inset: auto 0 -15px;
  transform: none;
}
.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--link);
  margin-top: 36px;
  font-weight: 600;
}
.scroll-cue svg {
  width: 17px;
  height: 17px;
}
.features-intro {
  padding: 50px 0 40px;
  text-align: center;
}
.features-intro h2 {
  max-width: 720px;
  margin: auto;
}
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  margin-top: 80px;
  margin-bottom: 110px;
}
.feature-copy {
  max-width: 465px;
}
.feature-copy p {
  font-size: 18px;
  line-height: 1.9;
  color: var(--muted);
  margin-top: 24px;
}
.feature-copy .quiet-detail {
  font-size: 14px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.feature-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 26px;
  border-radius: 48px;
  background: #f6e7d6;
  min-width: 0;
}
.feature.record .feature-visual {
  background: #f8e6d0;
}
.feature.record .phone {
  transform: rotate(-3deg);
}
.feature.report .feature-visual {
  background: #f0eddf;
}
.feature.report .phone {
  transform: rotate(3deg);
}
.feature-symbol {
  width: 52px;
  height: 52px;
  background: var(--apricot);
  border: 1px solid #efcfaa;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: var(--deep);
  margin-bottom: 28px;
}
.feature-symbol svg {
  width: 25px;
  height: 25px;
}
.calendar-feature {
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 38px 44px;
  background: var(--apricot);
  border-radius: 30px;
  margin-top: -30px;
  margin-bottom: 110px;
}
.calendar-feature .feature-symbol {
  margin: 0;
  background: #fff9f3;
  flex: none;
}
.calendar-feature h3 {
  font-size: 24px;
  min-width: 230px;
}
.calendar-feature p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 490px;
  margin-inline-start: auto;
}
.little-things {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 0 44px 90px;
}
.little-things article {
  display: flex;
  align-items: flex-start;
  gap: 22px;
}
.little-things .feature-symbol {
  flex: none;
}
.little-things h3 {
  font-size: 23px;
  margin: 6px 0 14px;
}
.little-things p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.9;
  max-width: 340px;
}
.faq-section {
  background: #fffdf9;
  padding: 86px 0 92px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 80px;
}
.faq-layout h2 {
  font-size: 36px;
  max-width: 300px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list details:first-child {
  border-top: 1px solid var(--line);
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 38px 24px 0;
  position: relative;
  font-weight: 650;
  font-size: 17px;
  line-height: 1.6;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary:after {
  content: '+';
  position: absolute;
  right: 2px;
  top: 24px;
  font-size: 23px;
  font-weight: 400;
  color: var(--deep);
}
.faq-list details[open] summary:after {
  content: '−';
}
.faq-list details p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
  padding: 0 36px 25px 0;
}
.final-section {
  position: relative;
  text-align: center;
  overflow: hidden;
  padding: 90px 20px 76px;
}
.final-section .final-icon {
  margin: 0 auto 26px;
  width: 86px;
  height: 86px;
  border-radius: 26px;
  box-shadow: 0 10px 25px #a9772620;
}
.final-section h2 {
  max-width: 720px;
  margin: auto;
}
.final-section > p {
  color: var(--muted);
  font-size: 17px;
  max-width: 520px;
  margin: 22px auto 0;
}
.final-section .store-buttons {
  justify-content: center;
}
.android-note {
  font-size: 13px !important;
  max-width: 550px !important;
  margin-top: 20px !important;
  line-height: 1.8;
}
.share-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  padding: 12px;
  font-size: 14px;
  font-weight: 650;
  color: var(--link);
  margin-top: 24px;
}
.share-status {
  display: block;
  font-size: 13px;
  min-height: 24px;
}
.site-footer {
  border-top: 1px solid var(--line);
  padding: 32px 0 36px;
}
.footer-top {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
}
.footer-top p {
  font-size: 12px;
  color: var(--muted);
}
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 12px;
}
.medical-note {
  margin-top: 19px;
  font-size: 11px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 680px;
}
.language-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  font-size: 11px;
  color: var(--muted);
  margin-top: 22px;
  max-width: 850px;
}
.language-links a {
  padding: 2px 0;
}
.language-links a[aria-current] {
  color: var(--link);
  font-weight: 700;
}
.install-dock {
  position: fixed;
  inset: auto 0 0;
  z-index: 35;
  background: #fffdfaf5;
  backdrop-filter: blur(18px);
  border-top: 1px solid var(--line);
  padding: 12px 24px max(12px, env(safe-area-inset-bottom));
  box-shadow: 0 -8px 35px #6c421009;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  transition:
    transform 0.25s,
    opacity 0.25s,
    visibility 0.25s;
}
.install-dock.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.dock-inner {
  max-width: 1120px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}
.dock-inner > img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}
.dock-copy {
  font-size: 14px;
  font-weight: 650;
  margin-inline-end: auto;
}
.dock-inner .store-buttons {
  margin: 0;
  gap: 10px;
  flex-wrap: nowrap;
}
.dock-inner .store-button {
  min-height: 46px;
  padding: 10px 20px;
  font-size: 13px;
}
.dock-inner .store-button svg {
  width: 20px;
  height: 22px;
}
.dock-inner .store-button.android {
  display: none;
}
.hero-copy {
  animation: enter-soft 0.52s ease-out both;
}
.hero-visual {
  animation: enter-soft 0.6s 0.12s ease-out both;
}
@keyframes enter-soft {
  from {
    opacity: 0;
    translate: 0 15px;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}
@media (min-width: 1000px) {
  .store-buttons {
    flex-wrap: nowrap;
  }
  .hero-copy .store-button {
    flex: 1;
    max-width: 245px;
    padding-inline: 18px;
  }
  .hero-visual {
    margin-left: 25px;
  }
  .hero-blob {
    left: -8%;
  }
}
@media (max-width: 1000px) {
  .header-nav {
    display: none;
  }
  .hero {
    gap: 22px;
  }
  .hero-visual {
    padding: 0 5px 15px;
  }
  .hero-phone {
    width: 270px;
  }
  .hero {
    min-height: 740px;
  }
  .mascot-sticker {
    width: 80px;
    left: -6px;
  }
  .hero-description {
    font-size: 17px;
  }
  .feature {
    gap: 55px;
  }
  .feature-visual {
    padding: 42px 20px;
  }
  .calendar-feature {
    padding: 30px;
    gap: 24px;
  }
  .calendar-feature h3 {
    min-width: 180px;
  }
  .faq-layout {
    gap: 42px;
  }
  .hero-copy .store-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-copy .store-button {
    min-width: 235px;
  }
  .little-things {
    padding-inline: 0;
    gap: 34px;
  }
}
@media (max-width: 700px) {
  html {
    scroll-padding-top: 82px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .header-inner {
    min-height: 70px;
    gap: 12px;
  }
  .brand {
    gap: 8px;
  }
  .brand img {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }
  .wordmark {
    font-size: 22px;
  }
  :lang(ko) .wordmark {
    font-size: 27px;
  }
  .header-actions {
    gap: 8px;
  }
  .mini-cta {
    display: none;
  }
  .language-switch select {
    max-width: 98px;
    font-size: 12px;
  }
  .language-switch svg {
    width: 16px;
  }
  .hero {
    display: flex;
    flex-direction: column;
    padding: 42px 0 40px;
    min-height: auto;
    gap: 38px;
    text-align: center;
  }
  .hero-copy {
    padding: 0;
    width: 100%;
  }
  .hero-brand {
    justify-content: center;
    margin-bottom: 20px;
    font-size: 12px;
  }
  h1 {
    font-size: clamp(34px, 8.6vw, 47px);
    line-height: 1.25;
    letter-spacing: -0.045em;
  }
  .hero-description {
    font-size: 15px;
    line-height: 1.85;
    max-width: 370px;
    margin: 22px auto 0;
  }
  .hero-copy .store-buttons {
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 9px;
    margin-top: 27px;
  }
  .hero-copy .store-button {
    min-width: 0;
    flex: 1;
    max-width: 220px;
    min-height: 64px;
    padding: 13px 14px;
    font-size: 12px;
    gap: 8px;
  }
  .hero-copy .store-button svg {
    width: 22px;
    height: 24px;
  }
  .trust-row {
    justify-content: center;
    gap: 8px 16px;
    margin-top: 19px;
    font-size: 12px;
  }
  .scroll-cue {
    display: none;
  }
  .hero-visual {
    width: 100%;
    padding: 22px 20px 10px;
    max-width: 460px;
  }
  .hero-blob {
    width: 107%;
    left: -5%;
    top: 14%;
    transform: none;
  }
  .hero-phone {
    width: 260px;
    transform: rotate(3deg);
  }
  .phone {
    border-width: 6px;
    border-radius: 32px;
  }
  .mascot-sticker {
    width: 77px;
    left: 0;
    bottom: 35px;
    border-width: 5px;
    border-radius: 24px;
  }
  .hero-sample {
    bottom: -28px;
    font-size: 10px;
  }
  .features-intro {
    padding: 80px 0 12px;
  }
  .features-intro h2 {
    font-size: 29px;
  }
  .feature {
    display: flex;
    flex-direction: column;
    gap: 34px;
    margin-top: 47px;
    margin-bottom: 66px;
  }
  .feature-copy {
    order: 0;
    text-align: center;
    max-width: 400px;
  }
  .feature-visual {
    order: 1;
    width: 100%;
    padding: 34px 30px;
    border-radius: 36px;
  }
  .feature-copy h2 {
    font-size: 32px;
  }
  .feature-copy p {
    font-size: 15px;
    line-height: 1.85;
    margin-top: 18px;
  }
  .feature-copy .quiet-detail {
    font-size: 12px;
    margin-top: 18px;
    padding-top: 17px;
  }
  .feature-symbol {
    width: 45px;
    height: 45px;
    border-radius: 15px;
    margin: 0 auto 18px;
  }
  .feature-symbol svg {
    width: 22px;
    height: 22px;
  }
  .feature .phone {
    width: 243px;
  }
  .calendar-feature {
    display: block;
    padding: 30px 26px;
    text-align: center;
    margin: 0 0 60px;
    border-radius: 30px;
  }
  .calendar-feature .feature-symbol {
    margin: 0 auto 17px;
  }
  .calendar-feature h3 {
    font-size: 24px;
    min-width: 0;
  }
  .calendar-feature p {
    font-size: 14px;
    margin-top: 16px;
    line-height: 1.85;
  }
  .little-things {
    display: flex;
    flex-direction: column;
    gap: 27px;
    padding: 0 4px 56px;
  }
  .little-things article {
    gap: 18px;
  }
  .little-things .feature-symbol {
    margin: 0;
  }
  .little-things h3 {
    font-size: 21px;
    margin: 2px 0 10px;
  }
  .little-things p {
    font-size: 14px;
    max-width: none;
  }
  .faq-section {
    padding: 52px 0;
  }
  .faq-layout {
    display: block;
  }
  .faq-layout h2 {
    font-size: 29px;
    max-width: none;
    margin-bottom: 30px;
  }
  .faq-list summary {
    font-size: 15px;
    padding-block: 20px;
  }
  .faq-list summary:after {
    top: 17px;
  }
  .faq-list details p {
    font-size: 14px;
    padding-right: 15px;
  }
  .final-section {
    padding: 65px 22px 48px;
  }
  .final-section h2 {
    font-size: 32px;
  }
  .final-section > p {
    font-size: 15px;
  }
  .final-section .store-buttons {
    gap: 10px;
  }
  .final-section .store-button {
    font-size: 14px;
    flex: 1;
    max-width: 225px;
    padding-inline: 14px;
    gap: 8px;
  }
  .final-section .store-button svg {
    width: 22px;
  }
  .android-note {
    font-size: 12px !important;
  }
  .footer-top {
    display: block;
  }
  .footer-links {
    margin-top: 18px;
    gap: 16px;
  }
  .site-footer {
    padding-bottom: 105px;
  }
  .install-dock {
    padding-inline: 15px;
  }
  .dock-inner {
    gap: 10px;
  }
  .dock-inner > img {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }
  .dock-copy {
    font-size: 12px;
    line-height: 1.4;
    max-width: 130px;
  }
  .dock-inner .store-button {
    font-size: 11px;
    padding: 10px 14px;
    min-height: 45px;
    gap: 7px;
  }
  .dock-inner .store-button svg {
    width: 18px;
  }
  .dock-inner .store-buttons {
    margin-left: auto;
    min-width: 0;
  }
  .language-links {
    font-size: 12px;
  }
  .sample-note {
    font-size: 10px;
  }
}
@media (max-width: 360px) {
  .container {
    width: calc(100% - 32px);
  }
  .hero-copy .store-buttons,
  .final-section .store-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-copy .store-button,
  .final-section .store-button {
    max-width: none;
    min-height: 52px;
    font-size: 13px;
  }
  .hero {
    padding-top: 34px;
  }
  .hero-phone {
    width: 226px;
  }
  .hero-description {
    font-size: 14px;
  }
  .dock-copy {
    display: none;
  }
  .dock-inner .store-buttons {
    flex: 1;
  }
  .dock-inner .store-button {
    flex: 1;
    justify-content: center;
  }
  .feature-visual {
    padding-inline: 25px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .hero-copy,
  .hero-visual {
    opacity: 1;
    translate: none;
  }
}
