@import url("reset.css");

:root {
  --ink: #2c2a2a;
  --muted: #766c69;
  --soft-text: #9a8780;
  --ivory: #fffdfb;
  --paper: #fbf8f5;
  --paper-deep: #f5efeb;
  --line: #eaded8;
  --coral: #e78989;
  --coral-deep: #df7476;
  --coral-soft: #f9e4e3;
  --green: #5d8580;
  --green-deep: #29524e;
  --green-soft: #e6efeb;
  --lilac: #ece8fb;
  --shadow: 0 28px 70px rgba(81, 59, 54, 0.13);
  --content: min(1280px, calc(100% - 300px));
}

body {
  min-width: 320px;
  color: var(--ink);
  background: var(--ivory);
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont,
    "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
  line-height: 1.6;
  word-break: keep-all;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: #fff;
  background: var(--coral);
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 20px;
  z-index: 999;
  padding: 12px 18px;
  border-radius: 10px;
  color: #fff;
  background: var(--green-deep);
  transition: top 0.2s ease;
}

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

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  height: 76px;
}

.header-inner {
  width: var(--content);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.brand {
  display: block;
  width: 118px;
  margin-right: auto;
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  font-size: 15px;
  font-weight: 650;
  color: var(--green-deep);
}

.desktop-nav a,
.footer-links a {
  position: relative;
}

.desktop-nav a::after,
.footer-links a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

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

.header-download {
  padding: 10px 19px;
  border: 1px solid rgba(41, 82, 78, 0.32);
  border-radius: 999px;
  color: var(--green-deep);
  font-size: 14px;
  font-weight: 700;
  transition: 0.2s ease;
}

.header-download:hover,
.header-download:focus-visible {
  color: #fff;
  background: var(--green-deep);
}

.menu-button,
.mobile-nav {
  display: none;
}

.hero {
  min-height: 760px;
  height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 11% 85%, rgba(236, 232, 251, 0.7) 0 7%, transparent 7.1%),
    linear-gradient(135deg, #fffdfb 0%, #fbf8f5 58%, #f4eee9 100%);
}

.hero-inner {
  width: var(--content);
  height: 100%;
  margin: 0 auto;
  padding-top: 76px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 0.85fr);
  gap: 7%;
  align-items: center;
}

.eyebrow,
.section-number {
  color: var(--coral-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.hero-copy h1 {
  margin: 28px 0 30px;
  color: var(--green-deep);
  font-size: clamp(52px, 4vw, 72px);
  font-weight: 760;
  line-height: 1.2;
  letter-spacing: -0.045em;
}

.hero-description {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.85;
  letter-spacing: -0.02em;
}

.store-buttons {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.store-buttons a {
  display: block;
  width: 158px;
  border-radius: 9px;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.store-buttons a:hover,
.store-buttons a:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.store-buttons img {
  width: 100%;
  height: auto;
}

.hero-note {
  margin-top: 16px;
  color: var(--soft-text);
  font-size: 14px;
}

.hero-visual {
  position: relative;
  height: min(680px, 76vh);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-orb {
  position: absolute;
  width: min(540px, 42vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255,255,255,0.75), transparent 34%),
    linear-gradient(145deg, #b9cec4, #6f9587);
  box-shadow: inset -20px -30px 60px rgba(41, 82, 78, 0.18);
}

.hero-leaves {
  position: absolute;
  right: 4%;
  bottom: 8%;
  z-index: 1;
  width: 175px;
  height: 310px;
  border-left: 5px solid rgba(54, 91, 68, 0.58);
  border-radius: 50%;
  transform: rotate(18deg);
}

.hero-leaves i {
  position: absolute;
  width: 75px;
  height: 31px;
  border-radius: 100% 0 100% 0;
  background: linear-gradient(135deg, #799f83, #3f765a);
  box-shadow: 0 6px 14px rgba(41, 82, 78, 0.16);
  opacity: 0.82;
}

.hero-leaves i:nth-child(1) { top: 32px; left: -4px; transform: rotate(21deg); }
.hero-leaves i:nth-child(2) { top: 88px; left: -73px; transform: scaleX(-1) rotate(20deg); }
.hero-leaves i:nth-child(3) { top: 142px; left: -2px; transform: rotate(17deg); }
.hero-leaves i:nth-child(4) { top: 202px; left: -69px; transform: scaleX(-1) rotate(16deg); }
.hero-leaves i:nth-child(5) { top: 250px; left: 0; transform: rotate(12deg); }

.phone {
  position: relative;
  z-index: 2;
  width: 286px;
  aspect-ratio: 0.49;
  padding: 11px;
  border: 3px solid #252422;
  border-radius: 47px;
  background: linear-gradient(120deg, #6e6c67, #252422 25%, #9a958d 70%, #252422);
  box-shadow: 16px 28px 42px rgba(44, 42, 42, 0.25);
  transform: rotate(7deg) translateX(-8px);
}

.phone::after {
  position: absolute;
  top: 105px;
  right: -6px;
  width: 4px;
  height: 66px;
  border-radius: 4px;
  background: #44413c;
  content: "";
}

.phone-speaker {
  position: absolute;
  top: 19px;
  left: 50%;
  z-index: 5;
  width: 82px;
  height: 23px;
  border-radius: 20px;
  background: #171717;
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 36px;
  background:
    radial-gradient(circle at 100% 0, #f7dedd 0 18%, transparent 18.2%),
    radial-gradient(circle at 0 100%, #ece8fb 0 14%, transparent 14.2%),
    #fffdfb;
}

.phone-status {
  height: 43px;
  padding: 12px 20px 0;
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  font-weight: 750;
}

.preview-setting {
  position: absolute;
  top: 50px;
  right: 15px;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  color: #766c69;
  background: rgba(255,255,255,0.8);
  box-shadow: 0 4px 12px rgba(44,42,42,0.08);
  font-size: 12px;
}

.preview-setting svg,
.preview-gear svg {
  width: 14px;
  height: 14px;
  margin: auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.start-preview-content {
  height: calc(100% - 106px);
  padding: 77px 19px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.start-preview-content > img {
  width: 70px;
  margin-bottom: 9px;
}

.start-preview-content h2 {
  font-size: 18px;
  font-weight: 580;
}

.sprout {
  width: 34px;
  margin: 72px 0 30px;
  overflow: visible;
  fill: none;
  stroke: #a4bcb2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.sprout-coral {
  stroke: #ff9293;
}

.start-preview-content p {
  font-size: 12px;
}

.preview-primary {
  width: 78%;
  margin-top: 26px;
  padding: 12px;
  border-radius: 15px;
  color: #fff;
  background: var(--coral);
  box-shadow: 0 8px 22px rgba(231, 137, 137, 0.28);
  font-size: 13px;
  font-weight: 750;
}

.preview-bottom-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 63px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #eee4df;
  background: rgba(255,253,251,0.94);
}

.preview-bottom-nav span {
  padding-top: 9px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #786e6b;
  font-size: 14px;
}

.preview-bottom-nav svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.preview-bottom-nav b {
  margin-top: 1px;
  font-size: 9px;
}

.preview-bottom-nav .active {
  color: var(--coral-deep);
}

.section-pad {
  padding: 130px 0;
}

.intro-section {
  text-align: center;
  background: var(--ivory);
}

.narrow-copy {
  width: min(800px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow-copy h2,
.feature-copy h2,
.principle-card h2,
.faq-heading h2,
.download-content h2 {
  color: var(--green-deep);
  font-size: clamp(38px, 3.2vw, 56px);
  font-weight: 720;
  line-height: 1.3;
  letter-spacing: -0.045em;
}

.narrow-copy h2 {
  margin: 24px 0 26px;
}

.narrow-copy > p:last-child {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
}

.feature-section {
  position: relative;
  background: var(--paper);
}

.feature-soft {
  background: linear-gradient(180deg, #edf3ef 0%, #f7f7f3 100%);
}

.feature-inner {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}

.feature-visual {
  grid-column: 1 / span 5;
}

.feature-copy {
  grid-column: 7 / span 6;
  max-width: 610px;
}

.feature-reverse .feature-copy {
  grid-column: 1 / span 5;
  grid-row: 1;
}

.feature-reverse .feature-visual {
  grid-column: 7 / span 6;
  grid-row: 1;
}

.feature-copy h2 {
  margin: 22px 0 28px;
}

.feature-copy > p:not(.section-number):not(.privacy-note) {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
}

.feature-copy > .record-principle {
  margin-top: 14px;
  color: var(--ink);
  font-weight: 650;
}

.flow-tags {
  margin-top: 36px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.flow-tags span {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green-deep);
  background: var(--ivory);
  font-size: 14px;
  font-weight: 720;
}

.flow-tags i {
  color: var(--coral);
  font-style: normal;
}

.privacy-note {
  margin-top: 18px;
  color: var(--soft-text);
  font-size: 13px;
}

.feature-list {
  margin-top: 34px;
  display: grid;
  gap: 14px;
}

.feature-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 15px;
}

.feature-list li::before {
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.app-preview {
  position: relative;
  width: min(100%, 470px);
  min-height: 570px;
  padding: 30px 28px 34px;
  overflow: hidden;
  border: 1px solid rgba(234, 222, 216, 0.92);
  border-radius: 44px;
  background:
    radial-gradient(circle at 100% 0, rgba(249, 228, 227, 0.94) 0 19%, transparent 19.2%),
    radial-gradient(circle at 0 100%, rgba(236, 232, 251, 0.92) 0 14%, transparent 14.2%),
    var(--ivory);
  box-shadow: var(--shadow);
}

.feature-reverse .app-preview {
  margin-left: auto;
}

.preview-topline {
  height: 34px;
  display: flex;
  justify-content: space-between;
  color: #807573;
}

.preview-back,
.preview-gear {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.82);
  box-shadow: 0 4px 13px rgba(44,42,42,0.07);
}

.preview-back {
  font-size: 24px;
  line-height: 1;
}

.preview-gear {
  font-size: 13px;
}

.preview-heading {
  margin-top: 38px;
  text-align: center;
}

.preview-heading > span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
}

.preview-heading h3 {
  margin: 4px 0 10px;
  font-size: 29px;
  font-weight: 700;
}

.preview-heading p {
  color: var(--soft-text);
  font-size: 13px;
}

.record-steps {
  width: 92%;
  margin: 38px auto 0;
  display: grid;
  gap: 12px;
}

.record-steps div {
  min-height: 52px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #f0dfd7;
  border-radius: 14px;
  background: rgba(255, 251, 247, 0.82);
  box-shadow: 0 5px 15px rgba(94, 65, 56, 0.04);
}

.record-steps span {
  font-size: 15px;
  font-weight: 750;
}

.record-steps b {
  color: var(--soft-text);
  font-size: 12px;
  font-weight: 550;
}

.record-steps .is-done {
  border-color: rgba(231,137,137,0.35);
  background: var(--coral-soft);
}

.record-steps .is-done b {
  color: var(--coral-deep);
}

.calendar-preview {
  width: min(100%, 560px);
  min-height: 590px;
  padding: 34px 34px 30px;
}

.calendar-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  text-align: center;
}

.calendar-head button {
  color: var(--soft-text);
  font-size: 28px;
}

.calendar-head div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.calendar-head span {
  color: var(--soft-text);
  font-size: 12px;
}

.calendar-head strong {
  font-size: 20px;
}

.weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
}

.weekdays {
  margin: 34px 0 18px;
  color: #ad9e99;
  font-size: 11px;
}

.calendar-grid {
  row-gap: 18px;
  font-size: 13px;
}

.calendar-grid > span {
  position: relative;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 570;
}

.calendar-grid .has-records {
  font-weight: 780;
}

.tiny-dots {
  position: absolute;
  bottom: 3px;
  display: flex;
  gap: 2px;
}

.tiny-dots b {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #e9b8b8;
}

.tiny-dots b:nth-child(2n) { background: #c8c0e8; }
.tiny-dots b:nth-child(3n) { background: #b9d3e4; }

.calendar-grid .today-cell {
  min-height: 88px;
  margin: -22px -3px;
  padding: 22px 6px;
  flex-direction: column;
  border-radius: 17px;
  background: var(--coral-soft);
}

.today-cell > strong {
  position: relative;
  z-index: 2;
  margin: auto 0;
  font-size: 22px;
  line-height: 1;
}

.status-icons {
  position: absolute;
  top: 8px;
  display: grid;
  grid-template-columns: repeat(4, 12px);
  gap: 2px;
}

.status-icons svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: var(--coral);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.status-icons svg:nth-child(2) { stroke: #9f928e; }
.status-icons svg:nth-child(3) { fill: var(--coral); }
.status-icons svg:nth-child(4) { stroke: #d5aa54; }

.emotion-dots {
  position: absolute;
  bottom: 7px;
  width: 52px;
  display: grid;
  grid-template-columns: repeat(5, 6px);
  justify-content: center;
  gap: 2px 4px;
}

.emotion-dots b {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e9b1b1;
}

.emotion-dots b:nth-child(2n) { background: #c9c2e8; }
.emotion-dots b:nth-child(3n) { background: #b9d4e7; }
.emotion-dots b:nth-child(4n) { background: #d7d5cf; }
.emotion-dots b:nth-child(5n) { background: #efc5a9; }

.pattern-preview {
  min-height: 610px;
}

.pattern-title {
  margin: 27px 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pattern-title span {
  font-size: 27px;
  font-weight: 730;
}

.pattern-title small {
  margin-top: 7px;
  color: var(--soft-text);
  font-size: 12px;
}

.pattern-periods {
  margin-bottom: 10px;
  padding: 5px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 13px;
  background: #f3eeeb;
}

.pattern-periods span {
  padding: 7px 2px;
  border-radius: 9px;
  color: var(--soft-text);
  text-align: center;
  font-size: 10px;
}

.pattern-periods .active {
  color: var(--coral-deep);
  background: #fff;
  box-shadow: 0 3px 9px rgba(66, 46, 41, 0.08);
  font-weight: 750;
}

.pattern-tabs {
  padding: 5px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-radius: 13px;
  background: #f3eeeb;
}

.pattern-tabs span {
  padding: 7px 2px;
  border-radius: 9px;
  color: var(--soft-text);
  text-align: center;
  font-size: 10px;
}

.pattern-tabs .active {
  color: var(--coral-deep);
  background: #fff;
  box-shadow: 0 3px 9px rgba(66, 46, 41, 0.08);
  font-weight: 750;
}

.pattern-lock {
  min-height: 360px;
  margin-top: 22px;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 253, 251, 0.88);
  text-align: center;
}

.pattern-lock-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--coral-deep);
  background: #f5e7e3;
}

.pattern-lock-icon svg {
  width: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pattern-lock strong {
  color: #544b48;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.65;
}

.pattern-lock-count {
  min-width: 154px;
  padding: 9px 16px;
  border-radius: 999px;
  color: var(--soft-text);
  background: #f3eeeb;
  font-size: 13px;
}

.pattern-lock-count b {
  color: var(--coral-deep);
  font-size: 16px;
  font-weight: 750;
}

.pattern-cards {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.pattern-cards article {
  min-height: 92px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,253,251,0.9);
}

.pattern-cards article.wide {
  grid-column: 1 / -1;
}

.pattern-cards header {
  display: flex;
  justify-content: space-between;
  color: var(--soft-text);
  font-size: 10px;
}

.pattern-cards header b {
  color: #6e6461;
  font-size: 13px;
}

.pattern-cards p {
  margin: 11px 0 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #6e6461;
  font-size: 11px;
}

.pattern-cards p strong {
  margin-right: 0;
  color: var(--coral-deep);
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}

.pattern-cards > article > i {
  display: block;
  height: 5px;
  overflow: hidden;
  border-radius: 99px;
  background: #f0e9e5;
}

.pattern-cards > article > i b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--coral);
}

.principle-section {
  padding-top: 100px;
  padding-bottom: 100px;
  background: var(--ivory);
}

.principle-card {
  width: min(1000px, calc(100% - 40px));
  margin: 0 auto;
  padding: 74px 9%;
  border: 1px solid var(--line);
  border-radius: 30px;
  text-align: center;
  background:
    radial-gradient(circle at 0 100%, rgba(236,232,251,0.75) 0 18%, transparent 18.2%),
    radial-gradient(circle at 100% 0, rgba(249,228,227,0.75) 0 22%, transparent 22.2%),
    var(--paper);
}

.principle-card h2 {
  margin: 20px 0 24px;
  font-size: clamp(32px, 2.6vw, 46px);
}

.principle-card > p:last-child {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.faq-section {
  border-top: 1px solid var(--line);
  background: var(--ivory);
}

.faq-inner {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.faq-heading {
  grid-column: 1 / span 4;
  position: sticky;
  top: 70px;
}

.faq-heading h2 {
  margin: 22px 0 20px;
  font-size: clamp(36px, 3vw, 52px);
}

.faq-heading > p:last-child {
  color: var(--muted);
  font-size: 16px;
}

.faq-list {
  grid-column: 6 / span 7;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  min-height: 86px;
  padding: 22px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
}

.faq-question span {
  font-size: 18px;
  font-weight: 670;
}

.faq-question i {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green-deep);
  background: var(--green-soft);
  font-style: normal;
  font-size: 20px;
  transition: transform 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-answer p {
  min-height: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.active .faq-answer p {
  padding: 0 54px 28px 4px;
}

.faq-item.active .faq-question i {
  color: #fff;
  background: var(--coral);
  transform: rotate(45deg);
}

.download-section {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.download-section > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.download-content {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 40px));
  padding: 90px 20px;
  text-align: center;
}

.download-content h2 {
  margin: 22px 0 24px;
  font-size: clamp(37px, 3.4vw, 56px);
}

.download-content > p:not(.eyebrow):not(.store-status) {
  color: var(--muted);
  font-size: 18px;
}

.store-buttons-center {
  justify-content: center;
}

.store-status {
  min-height: 24px;
  margin-top: 15px;
  color: var(--soft-text);
  font-size: 13px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--ivory);
}

.footer-inner {
  width: var(--content);
  min-height: 190px;
  margin: 0 auto;
  padding: 42px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
}

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

.footer-brand p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 13px;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #aa9b96;
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

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

@media (max-width: 1200px) {
  :root {
    --content: calc(100% - 64px);
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.8fr);
    gap: 3%;
  }

  .hero-copy h1 {
    font-size: 54px;
  }

  .hero-description {
    font-size: 18px;
  }

  .hero-orb {
    width: min(500px, 48vw);
  }

  .feature-inner,
  .faq-inner {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .feature-visual { grid-column: 1 / span 4; }
  .feature-copy { grid-column: 5 / span 4; }
  .feature-reverse .feature-copy { grid-column: 1 / span 4; }
  .feature-reverse .feature-visual { grid-column: 5 / span 4; }
  .faq-heading { grid-column: 1 / span 3; }
  .faq-list { grid-column: 4 / span 5; }
}

@media (max-width: 900px) {
  .desktop-nav,
  .header-download {
    display: none;
  }

  .menu-button {
    width: 34px;
    height: 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
  }

  .menu-button span {
    width: 24px;
    height: 2px;
    margin-left: auto;
    border-radius: 2px;
    background: var(--green-deep);
    transition: 0.22s ease;
  }

  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: -1;
    width: min(320px, 84vw);
    height: 100vh;
    padding: 110px 34px 40px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-left: 1px solid var(--line);
    background: rgba(255,253,251,0.98);
    box-shadow: -20px 0 50px rgba(44,42,42,0.1);
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .mobile-nav.active {
    z-index: 40;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .mobile-nav a {
    padding: 16px 8px;
    border-bottom: 1px solid var(--line);
    color: var(--green-deep);
    font-size: 17px;
    font-weight: 700;
  }

  .hero {
    height: auto;
    min-height: 100svh;
  }

  .hero-inner {
    min-height: 880px;
    padding: 130px 0 80px;
    grid-template-columns: 1fr 380px;
    gap: 0;
  }

  .hero-copy h1 {
    font-size: 46px;
  }

  .hero-description br {
    display: none;
  }

  .hero-visual {
    height: 610px;
  }

  .hero-orb {
    width: 400px;
  }

  .hero-leaves {
    right: -10%;
    transform: scale(0.75) rotate(18deg);
  }

  .phone {
    width: 248px;
  }

  .section-pad {
    padding: 105px 0;
  }

  .feature-inner {
    display: flex;
    flex-direction: column;
    gap: 70px;
  }

  .feature-copy,
  .feature-visual {
    width: min(680px, 100%);
    max-width: none;
  }

  .feature-copy {
    order: 1;
  }

  .feature-visual {
    order: 2;
  }

  .app-preview,
  .feature-reverse .app-preview {
    margin: 0 auto;
  }

  .faq-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .faq-heading,
  .faq-list {
    grid-column: auto;
  }

  .faq-heading {
    position: static;
  }
}

@media (max-width: 768px) {
  :root {
    --content: calc(100% - 40px);
  }

  .site-header {
    height: 66px;
  }

  .brand {
    width: 104px;
  }

  .hero-inner {
    min-height: 100svh;
    padding: 122px 0 86px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-copy {
    position: relative;
    z-index: 3;
  }

  .hero-copy h1 {
    margin: 20px 0 24px;
    font-size: clamp(39px, 11.2vw, 54px);
  }

  .hero-description {
    font-size: 16px;
    line-height: 1.8;
  }

  .store-buttons {
    margin-top: 30px;
  }

  .store-buttons a {
    width: min(145px, calc(50% - 6px));
  }

  .hero-visual {
    height: 570px;
    margin-top: 20px;
  }

  .hero-orb {
    width: min(420px, 108vw);
  }

  .phone {
    width: 238px;
    transform: rotate(5deg);
  }

  .hero-leaves {
    right: -3%;
    bottom: 4%;
  }

  .section-pad {
    padding: 88px 0;
  }

  .narrow-copy h2,
  .feature-copy h2,
  .principle-card h2,
  .faq-heading h2,
  .download-content h2 {
    font-size: 36px;
  }

  .narrow-copy > p:last-child {
    font-size: 16px;
  }

  .narrow-copy br {
    display: none;
  }

  .feature-inner {
    gap: 54px;
  }

  .feature-copy > p:not(.section-number):not(.privacy-note) {
    font-size: 16px;
  }

  .flow-tags {
    gap: 8px;
  }

  .flow-tags span {
    padding: 7px 11px;
    font-size: 12px;
  }

  .app-preview {
    min-height: 520px;
    padding: 24px 20px 28px;
    border-radius: 32px;
  }

  .record-steps {
    width: 100%;
  }

  .calendar-preview {
    min-height: 525px;
    padding: 28px 18px;
  }

  .calendar-grid {
    row-gap: 13px;
  }

  .calendar-grid .today-cell {
    margin-right: -5px;
    margin-left: -5px;
  }

  .pattern-preview {
    min-height: 560px;
  }

  .principle-card {
    padding: 60px 24px;
    border-radius: 24px;
  }

  .principle-card > p:last-child {
    font-size: 15px;
  }

  .faq-question {
    min-height: 76px;
  }

  .faq-question span {
    font-size: 16px;
  }

  .download-section {
    min-height: 570px;
  }

  .download-content {
    padding: 75px 0;
  }

  .download-content > p:not(.eyebrow):not(.store-status) {
    font-size: 16px;
  }

  .footer-inner {
    width: var(--content);
    min-height: 0;
    padding: 44px 0 32px;
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 13px 20px;
  }

  .copyright {
    grid-column: auto;
  }
}

@media (max-width: 420px) {
  .hero-copy h1 {
    font-size: 38px;
  }

  .hero-visual {
    height: 535px;
  }

  .phone {
    width: 218px;
  }

  .sprout {
    margin-top: 55px;
  }

  .app-preview {
    min-height: 500px;
  }

  .preview-heading {
    margin-top: 28px;
  }

  .record-steps {
    margin-top: 28px;
    gap: 9px;
  }

  .record-steps div {
    min-height: 47px;
    padding: 0 14px;
  }

  .calendar-preview {
    min-height: 500px;
  }

  .calendar-head {
    gap: 16px;
  }

  .weekdays {
    margin-top: 28px;
  }

  .calendar-grid {
    font-size: 12px;
    row-gap: 11px;
  }

  .calendar-grid .today-cell {
    min-height: 82px;
  }

  .pattern-cards article {
    padding: 14px;
  }

  .flow-tags i {
    display: none;
  }
}

/* 최종 소개사이트 조정: 원본 히어로와 FAQ의 차분한 글자 체계를 연결합니다. */
.hero {
  min-height: 720px;
  height: 100vh;
  background-color: #fbf8f5;
  background-image: url("../img/hero-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-inner {
  display: block;
  padding-top: 0;
}

.hero-copy {
  width: 54%;
  height: 100%;
  padding-top: clamp(160px, 18vh, 220px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.hero-copy h1 {
  margin: 42px 0 46px;
  color: #625d5b;
  font-size: clamp(48px, 4.15vw, 76px);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.hero-copy h1 > span:first-child {
  display: block;
}

.hero-title-line {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
}

.hero-title-line img {
  width: clamp(160px, 13vw, 245px);
  height: auto;
  flex: 0 0 auto;
}

.hero-title-line b {
  font-weight: inherit;
}

.hero-description {
  color: #2f2b2a;
  font-size: clamp(18px, 1.35vw, 24px);
  line-height: 1.8;
}

.section-pad {
  padding-top: 118px;
  padding-bottom: 118px;
}

.narrow-copy h2,
.feature-copy h2,
.principle-card h2,
.faq-heading h2,
.download-content h2 {
  font-size: clamp(36px, 2.85vw, 50px);
  font-weight: 720;
  line-height: 1.34;
}

.narrow-copy > p:last-child,
.feature-copy > p:not(.section-number):not(.privacy-note) {
  font-size: 17px;
  line-height: 1.95;
}

.feature-list li {
  font-size: 14px;
  line-height: 1.8;
}

.faq-section {
  min-height: 760px;
  display: flex;
  align-items: center;
}

.faq-heading {
  position: static;
  padding-top: 8px;
}

.faq-heading h2 {
  margin: 42px 0 54px;
  color: var(--green-deep);
  font-size: clamp(42px, 3.5vw, 62px);
  font-weight: 760;
  line-height: 1.34;
}

.faq-heading h2 span {
  color: var(--ink);
}

.faq-heading > p:last-of-type {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.faq-guide {
  margin-top: 92px;
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--ink);
  font-size: 13px;
}

.faq-guide i {
  width: 108px;
  height: 1px;
  background: #aca39f;
}

.faq-list {
  border-color: #bdb3af;
}

.faq-item {
  border-color: #bdb3af;
}

.faq-question {
  min-height: 92px;
  padding: 18px 18px 18px 22px;
}

.faq-question > span {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  font-size: 18px;
  font-weight: 520;
}

.faq-question > span b {
  color: var(--muted);
  font-size: 13px;
  font-weight: 560;
}

.faq-question > span em {
  color: var(--ink);
  font-style: normal;
}

.faq-question > i {
  width: 46px;
  height: 46px;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  background: transparent;
  font-size: 27px;
  font-weight: 300;
}

.faq-item.active .faq-answer p {
  padding-right: 82px;
  padding-left: 88px;
}

.download-section {
  min-height: 600px;
}

.download-content h2 {
  margin-top: 30px;
  margin-bottom: 82px;
  font-size: clamp(40px, 3vw, 56px);
  font-weight: 540;
}

.download-content > p:not(.eyebrow):not(.store-status) {
  color: #665f5c;
  font-size: clamp(20px, 1.65vw, 29px);
  line-height: 1.55;
}

.download-content > p strong {
  color: var(--green-deep);
  font-weight: 650;
}

.download-content .store-buttons {
  margin-top: 38px;
}

@media (max-width: 1200px) {
  .hero-copy {
    width: 58%;
  }

  .hero-copy h1 {
    font-size: 52px;
  }

  .hero-title-line img {
    width: 168px;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: 900px;
    height: auto;
    background-position: 58% bottom;
    background-size: auto 62%;
  }

  .hero-inner {
    min-height: 900px;
    padding: 0;
  }

  .hero-copy {
    width: 100%;
    height: auto;
    padding-top: 132px;
  }

  .hero-copy h1 {
    margin: 28px 0 30px;
    font-size: clamp(40px, 7vw, 54px);
  }

  .hero-description {
    font-size: 17px;
  }

  .faq-section {
    min-height: 0;
  }

  .faq-heading h2 {
    margin-bottom: 30px;
  }

  .faq-guide {
    margin-top: 38px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 940px;
    background-position: 62% bottom;
    background-size: auto 54%;
  }

  .hero-inner {
    min-height: 940px;
  }

  .hero-copy {
    padding-top: 112px;
  }

  .hero-copy h1 {
    margin: 24px 0 28px;
    font-size: clamp(36px, 10.3vw, 46px);
  }

  .hero-title-line {
    gap: 10px;
  }

  .hero-title-line img {
    width: clamp(112px, 32vw, 150px);
  }

  .hero-description {
    font-size: 15px;
    line-height: 1.72;
  }

  .hero .store-buttons {
    margin-top: 24px;
  }

  .section-pad {
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .narrow-copy h2,
  .feature-copy h2,
  .principle-card h2,
  .download-content h2 {
    font-size: 34px;
  }

  .faq-heading h2 {
    font-size: 38px;
  }

  .faq-guide {
    display: none;
  }

  .faq-question {
    min-height: 78px;
    padding-right: 4px;
    padding-left: 4px;
  }

  .faq-question > span {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 8px;
    font-size: 15px;
  }

  .faq-question > i {
    width: 36px;
    height: 36px;
    font-size: 22px;
  }

  .faq-item.active .faq-answer p {
    padding: 0 40px 24px 46px;
  }

  .download-content h2 {
    margin-bottom: 48px;
  }

  .download-content > p:not(.eyebrow):not(.store-status) {
    font-size: 18px;
  }
}

@media (max-width: 420px) {
  .hero {
    min-height: 880px;
    background-position: 64% bottom;
    background-size: auto 49%;
  }

  .hero-inner {
    min-height: 880px;
  }

  .hero-copy h1 {
    font-size: 35px;
  }

  .hero-title-line img {
    width: 108px;
  }

  .hero-title-line b {
    font-size: 0.88em;
  }
}

/* ==================================================
   FAQ 원본 복원
   사용자가 만든 FAQ의 글자 크기·두 칸 배치·행 간격·버튼 이미지를 그대로 사용합니다.
================================================== */
.faq_section {
  width: 100%;
  height: 80vh;
  min-height: 650px;
  padding: 0;
  border-top: 1px solid #66615f;
  border-bottom: 1px solid #66615f;
  display: flex;
  align-items: center;
  background-color: #fffdfb;
}

.faq_wrap {
  width: var(--content);
  max-width: 1620px;
  height: 80%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 24px;
  align-items: center;
}

.faq_info {
  width: auto;
  grid-column: 1 / span 5;
}

.faq_badge {
  color: #e58989;
  font-size: 14px;
}

.faq_title_wrap {
  margin: 40px 0;
}

.faq_title h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.faq_title h2:first-child {
  margin-bottom: 10px;
  color: #2c2a2a;
}

.faq_title h2:last-child {
  margin-bottom: 50px;
  color: #29524e;
}

.faq_title_wrap h6 {
  margin: 0;
  color: #66615f;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
}

.guide_text {
  margin-top: 80px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.guide_line {
  width: 100px;
  height: 1px;
  flex: 0 0 auto;
  background-color: #66615f;
}

.guide_text p {
  margin: 0;
  color: #2c2a2a;
  font-size: 14px;
}

.faq_list {
  width: auto;
  grid-column: 7 / span 6;
}

.faq_item {
  border-top: 1px solid #b4aaa7;
}

.faq_item:last-child {
  border-bottom: 1px solid #b4aaa7;
}

.faq_question {
  width: 100%;
  min-height: 76px;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  border: 0;
  color: inherit;
  background-color: transparent;
  text-align: left;
}

.faq_number {
  width: 30px;
  flex: 0 0 auto;
  color: #66615f;
  font-size: 13px;
}

.faq_question_title {
  min-width: 0;
  flex: 1;
  margin: 0 20px;
}

.faq_question_title h5 {
  margin: 0;
  color: #2c2a2a;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}

.faq_icon {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
}

.faq_icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.faq_answer {
  display: none;
}

.faq_answer_inner {
  padding: 0 68px 30px;
}

.faq_answer_inner p {
  margin: 0;
  color: #66615f;
  font-size: 15px;
  line-height: 1.8;
}

.faq_item.active {
  background-color: #f8f4f2;
}

.faq_item.active .faq_answer {
  display: block;
}

.faq_item.active .faq_number,
.faq_item.active .faq_question_title h5 {
  color: #29524e;
}

@media (max-width: 1200px) {
  .faq_wrap {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .faq_info {
    grid-column: 1 / span 3;
  }

  .faq_list {
    grid-column: 5 / span 4;
  }

  .faq_question_title h5 {
    font-size: 18px;
  }

  .guide_text {
    margin-top: 50px;
  }

  .faq_answer_inner {
    padding: 0 68px 25px;
  }
}

@media (max-width: 900px) {
  .faq_section {
    height: auto;
    min-height: 0;
    padding: 90px 0;
    align-items: flex-start;
  }

  .faq_wrap {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 60px;
  }

  .faq_info,
  .faq_list {
    width: 100%;
  }

  .faq_info {
    text-align: center;
  }

  .faq_title_wrap {
    margin: 25px 0;
  }

  .faq_title h2:first-child {
    margin-bottom: 8px;
  }

  .faq_title h2:last-child {
    margin-bottom: 30px;
  }

  .faq_title_wrap h6 {
    line-height: 1.8;
  }

  .guide_text {
    margin-top: 35px;
    justify-content: center;
  }

  .guide_line {
    width: 50px;
  }

  .faq_question {
    min-height: 70px;
    padding: 15px 8px;
  }

  .faq_number {
    width: 25px;
  }

  .faq_question_title {
    margin: 0 12px;
  }

  .faq_icon {
    width: 32px;
    height: 32px;
  }

  .faq_answer_inner {
    padding: 0 45px 25px;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .faq_section {
    padding: 72px 0;
  }

  .faq_wrap {
    gap: 46px;
  }

  .faq_title h2 {
    font-size: 32px;
    line-height: 1.3;
  }

  .faq_title_wrap h6 {
    font-size: 14px;
  }

  .faq_question_title h5 {
    font-size: 14px;
    line-height: 1.5;
  }

  .faq_answer_inner {
    padding: 0 38px 24px;
  }

  .faq_answer_inner p {
    font-size: 13px;
  }

  .faq_answer_inner br {
    display: none;
  }
}

/* 2026-08-28 최종 가독성·날씨·공통 푸터 조정 */
.section-pad {
  padding-top: 132px;
  padding-bottom: 132px;
}

.feature-copy h2 {
  margin-bottom: 32px;
}

.feature-copy > p:not(.section-number):not(.privacy-note) {
  max-width: 610px;
  line-height: 1.95;
}

.feature-list {
  gap: 16px;
}

.feature-list li {
  line-height: 1.75;
}

.calendar-preview {
  min-height: 675px;
}

.weather-summary {
  width: calc(100% - 38px);
  min-height: 70px;
  margin: 22px auto 0;
  padding: 12px 16px;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(234, 222, 216, 0.95);
  border-radius: 16px;
  background: rgba(255, 253, 251, 0.92);
  box-shadow: 0 5px 16px rgba(44, 42, 42, 0.05);
}

.weather-symbol {
  color: #708b89;
  font-size: 26px;
  text-align: center;
}

.weather-summary div {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.weather-summary b {
  color: var(--ink);
  font-size: 14px;
}

.weather-summary small {
  overflow: hidden;
  color: var(--soft-text);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.weather-summary > strong {
  color: var(--green-deep);
  font-size: 14px;
  white-space: nowrap;
}

.faq_section {
  height: auto;
  min-height: 820px;
  padding: 112px 0;
  align-items: flex-start;
}

.faq_wrap {
  height: auto;
  align-items: start;
}

.faq_question {
  min-height: 84px;
  padding-top: 19px;
  padding-bottom: 19px;
}

.faq_question_title h5 {
  line-height: 1.5;
}

.faq_answer_inner {
  padding-top: 2px;
  padding-bottom: 34px;
}

.footer-logo-link {
  display: inline-flex;
}

.site-footer .footer-inner {
  min-height: 230px;
  padding-top: 54px;
  padding-bottom: 44px;
  row-gap: 34px;
}

.footer-links {
  flex-wrap: wrap;
  gap: 16px 24px;
}

@media (max-width: 900px) {
  .section-pad {
    padding-top: 102px;
    padding-bottom: 102px;
  }

  .calendar-preview {
    min-height: 610px;
  }

  .faq_section {
    min-height: 0;
    padding: 96px 0;
  }
}

@media (max-width: 480px) {
  .section-pad {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .calendar-preview {
    min-height: 575px;
  }

  .weather-summary {
    width: 100%;
    grid-template-columns: 30px minmax(0, 1fr) auto;
    gap: 9px;
    padding: 11px 12px;
  }

  .weather-summary small {
    max-width: 150px;
  }

  .faq_section {
    padding: 82px 0;
  }

  .faq_question {
    min-height: 76px;
    padding-top: 17px;
    padding-bottom: 17px;
  }

  .site-footer .footer-inner {
    padding-top: 46px;
    padding-bottom: 36px;
  }
}
