@font-face {
  font-family: 'Suit';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Suit';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'Suit';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: 'Suit';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Heavy.woff2') format('woff2');
  font-weight: 900;
  font-display: swap;
}

:root {
  --orange: #ff4b16;
  --orange-2: #ff6a2a;
  --orange-soft: #fff0e8;
  --cream: #fff8f2;
  --cream-2: #fff3e9;
  --black: #111820;
  --text: #2f3437;
  --muted: #667085;
  --line: #f0e7de;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(32, 24, 18, 0.08);
  --shadow-strong: 0 32px 80px rgba(32, 24, 18, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Suit', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 6%, rgba(255, 75, 22, 0.08), transparent 22%),
    radial-gradient(circle at 90% 18%, rgba(255, 75, 22, 0.08), transparent 18%),
    linear-gradient(180deg, #fffaf5 0%, #fbf5ef 100%);
  overflow-x: hidden;
}

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

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

main {
  width: 100%;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  z-index: 9999;
  width: min(1180px, calc(100% - 48px));
  margin: 18px auto 0;
  min-height: 72px;
  padding: 0 20px 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 42px rgba(28, 24, 19, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--black);
}

.brand-icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
  object-position: center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 15px;
  font-weight: 800;
  color: var(--black);
}

.nav-cta {
  padding: 13px 22px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 12px 28px rgba(255, 75, 22, 0.24);
}

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

.hero {
  position: relative;
  padding: 80px 0 56px;
}

.hero-bg-shape {
  position: absolute;
  left: 50%;
  bottom: -90px;
  width: 140vw;
  height: 360px;
  transform: translateX(-50%);
  background: var(--orange);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  opacity: 0.06;
  pointer-events: none;
}

.hero-inner,
.feature-inner,
.report-inner,
.problem-grid,
.flow-grid,
.fit-grid,
.final-card,
.footer-inner,
.section-head {
  width: min(1120px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 42px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hero-copy h1,
.section-head h2,
.feature-copy h2,
.report-copy h2,
.final-card h2 {
  margin: 0;
  color: var(--black);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.07em;
}

.hero-copy h1 {
  font-size: clamp(40px, 5.2vw, 64px);
}

.hero-copy h1 span {
  color: var(--orange);
}

.hero-desc,
.section-head p,
.feature-copy p,
.report-copy p,
.final-card p {
  color: var(--muted);
  font-size: 21px;
  line-height: 1.65;
  letter-spacing: -0.035em;
}

.hero-desc {
  margin: 24px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn-primary,
.btn-secondary,
.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 18px 36px rgba(255, 75, 22, 0.24);
}

.btn-secondary {
  color: var(--black);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(32, 24, 18, 0.06);
}

.btn-dark {
  color: #fff;
  background: var(--black);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-points span {
  padding: 11px 14px;
  border-radius: 999px;
  color: #5a4a42;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 800;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.phone-stage {
  position: relative;
  width: min(430px, 78vw);
  padding: 18px;
}

.phone-stage::before {
  content: '';
  position: absolute;
  inset: 44px -28px 30px;
  z-index: 0;
  border-radius: 48px;
  background: radial-gradient(circle at 40% 35%, #fff, var(--cream-2));
  box-shadow: var(--shadow);
}

.phone-shot {
  position: relative;
  z-index: 1;
  width: 100%;
  filter: drop-shadow(0 32px 36px rgba(0, 0, 0, 0.13));
}

.mascot-card {
  position: absolute;
  z-index: 2;
  right: -42px;
  bottom: 132px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 192px;
  padding: 14px 16px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 22px 42px rgba(32, 24, 18, 0.12);
}

.mascot-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.mascot-card strong {
  color: var(--black);
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: -0.04em;
}

.section-head {
  max-width: 880px;
  text-align: center;
  margin-bottom: 34px;
}

.section-head h2 {
  font-size: clamp(30px, 4.2vw, 48px);
}

.section-head p {
  margin: 18px 0 0;
}

.problem-grid,
.flow-grid,
.fit-grid {
  display: grid;
  gap: 20px;
}

.problem-grid {
  grid-template-columns: repeat(3, 1fr);
}

.flow-grid {
  grid-template-columns: repeat(4, 1fr);
}

.mini-card,
.flow-card,
.fit-card,
.stat-grid>div {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.mini-card {
  padding: 28px;
}

.icon-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border-radius: 17px;
  color: var(--orange);
  background: var(--orange-soft);
  font-weight: 900;
}

.mini-card h3,
.flow-card h3 {
  margin: 0 0 10px;
  color: var(--black);
  font-size: 26px;
  line-height: 1.22;
  letter-spacing: -0.055em;
}

.mini-card p,
.flow-card p,
.fit-card {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: -0.035em;
}

.flow-card {
  padding: 26px;
}

.flow-card span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--orange);
  font-size: 20px;
  font-weight: 900;
}

.feature {
  position: relative;
}

.feature-inner,
.report-inner {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  align-items: center;
  gap: 48px;
  padding: 46px 52px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.feature-inner.reverse {
  grid-template-columns: 0.78fr 1fr;
}

.feature-inner.reverse .feature-copy {
  order: 2;
}

.feature-inner.reverse .feature-phone {
  order: 1;
}

.feature-copy h2,
.report-copy h2,
.final-card h2 {
  font-size: clamp(30px, 4vw, 46px);
}

.feature-copy p,
.report-copy p {
  margin: 18px 0 0;
}

.feature-phone,
.report-phone {
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-phone img,
.report-phone img {
  width: min(100%, 348px);
  filter: drop-shadow(0 28px 32px rgba(0, 0, 0, 0.10));
}

.check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 12px 16px 12px 38px;
  border-radius: 999px;
  color: var(--black);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 24px rgba(32, 24, 18, 0.05);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 50%;
  width: 13px;
  height: 13px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: inset 0 0 0 4px #fff;
  outline: 2px solid var(--orange);
}

.report-inner {
  grid-template-columns: 1fr 0.78fr;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.stat-grid>div {
  padding: 20px 12px;
  text-align: center;
}

.stat-grid strong {
  display: block;
  color: var(--orange);
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.stat-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.fit-grid {
  grid-template-columns: repeat(4, 1fr);
}

.fit-card {
  min-height: 160px;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  text-align: center;
  font-size: 20px;
  font-weight: 900;
}

.final-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 270px;
  padding: 46px 52px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 82% 70%, rgba(255, 75, 22, 0.18), transparent 28%),
    linear-gradient(135deg, #fff1e5 0%, #ffe4d2 100%);
  border: 1px solid rgba(255, 177, 125, 0.45);
  box-shadow: var(--shadow);
}

.final-card>div,
.final-card>a {
  position: relative;
  z-index: 2;
}

.final-card p {
  margin: 18px 0 0;
  max-width: 720px;
}

.final-card .btn-dark {
  align-self: end;
  white-space: nowrap;
}

.final-mascot {
  position: absolute;
  right: 24px;
  bottom: -82px;
  width: 230px;
  opacity: 0.92;
  pointer-events: none;
}

footer {
  padding: 36px 0 64px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 34px;
  border-radius: 0;
  background: #141414;
  color: rgba(255, 255, 255, 0.72);
}

.footer-logo {
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.footer-copy {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 13px;
}

.footer-contact h5 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 15px;
}

.footer-contact p {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
}

.footer-contact a {
  color: #ffb498;
}

.policy {
  display: flex;
  gap: 12px;
  margin-top: 14px !important;
}

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

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

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

.reveal-delay-4 {
  transition-delay: 0.32s;
}

@media (max-width: 1040px) {

  .hero-inner,
  .feature-inner,
  .feature-inner.reverse,
  .report-inner {
    grid-template-columns: 1fr;
  }

  .feature-inner.reverse .feature-copy,
  .feature-inner.reverse .feature-phone {
    order: initial;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-actions,
  .hero-points {
    justify-content: center;
  }

  .problem-grid,
  .flow-grid,
  .fit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .final-card {
    grid-template-columns: 1fr;
    padding-right: 230px;
  }
}

@media (max-width: 760px) {
  .site-header {
    width: calc(100% - 24px);
    min-height: 64px;
    margin-top: 10px;
  }

  .brand {
    font-size: 18px;
  }

  .brand-icon {
    width: 30px;
    height: 30px;
  }

  .site-nav {
    display: none;
  }

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

  .hero {
    padding-top: 48px;
  }

  .hero-inner,
  .feature-inner,
  .report-inner,
  .problem-grid,
  .flow-grid,
  .fit-grid,
  .final-card,
  .footer-inner,
  .section-head {
    width: calc(100% - 28px);
  }

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

  .hero-desc,
  .section-head p,
  .feature-copy p,
  .report-copy p,
  .final-card p {
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary,
  .btn-dark {
    width: 100%;
  }

  .phone-stage {
    width: min(360px, 92vw);
    padding: 8px;
  }

  .mascot-card {
    right: 0;
    bottom: 42px;
    min-width: 160px;
    padding: 12px;
  }

  .mascot-card img {
    width: 38px;
    height: 38px;
  }

  .mascot-card strong {
    font-size: 14px;
  }

  .problem-grid,
  .flow-grid,
  .fit-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .feature-inner,
  .report-inner,
  .final-card {
    padding: 28px 22px;
    border-radius: 26px;
  }

  .feature-copy h2,
  .report-copy h2,
  .final-card h2,
  .section-head h2 {
    font-size: 30px;
  }

  .feature-phone img,
  .report-phone img {
    width: min(100%, 300px);
  }

  .final-card {
    padding-bottom: 190px;
  }

  .final-mascot {
    right: 50%;
    bottom: -80px;
    transform: translateX(50%);
    width: 220px;
  }

  .footer-inner {
    flex-direction: column;
  }
}


/* Launch pending state */
.nav-cta-disabled,
.btn-disabled {
  cursor: not-allowed;
  pointer-events: none;
  user-select: none;
}

.nav-cta-disabled {
  background: #1f2933;
  box-shadow: none;
  opacity: 0.92;
}

.btn-disabled {
  background: #1f2933;
  color: #ffffff;
  box-shadow: none;
}

.launch-note {
  display: inline-flex;
  margin-top: 14px !important;
  padding: 10px 14px;
  border-radius: 999px;
  color: #7a3a20 !important;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 120, 60, 0.22);
  font-size: 15px !important;
  font-weight: 900;
  line-height: 1.2 !important;
}


/* Header z-layer fix */
.site-header {
  z-index: 9999;
  isolation: isolate;
}

.site-nav {
  position: relative;
  z-index: 10000;
}

.nav-cta,
.nav-cta-disabled {
  position: relative;
  z-index: 10001;
}

.hero,
.hero-visual,
.phone-stage,
.mascot-card,
.final-mascot {
  z-index: auto;
}


/* Final CTA mascot/button stacking fix */
.final-card .btn-dark,
.final-card .btn-disabled {
  position: relative;
  z-index: 5;
}

.final-mascot {
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 1040px) {
  .final-card {
    padding-right: 52px;
  }

  .final-mascot {
    right: 18px;
    bottom: -96px;
    width: 190px;
    opacity: 0.42;
  }
}

@media (max-width: 760px) {
  .final-card {
    padding-right: 22px;
    padding-bottom: 190px;
  }

  .final-mascot {
    right: 50%;
    bottom: -80px;
    width: 220px;
    opacity: 0.92;
  }
}


/* Final layout fixes */
.problem.section-pad {
  padding-top: 96px;
}

.phone-stage {
  padding-bottom: 34px;
  padding-top: 44px;
}

.mascot-card {
  z-index: 20;
}

.footer-inner {
  border-radius: 0;
}

/* ── 스토어 다운로드 버튼 (2026-08-11) ────────────────────────────
   공식 배지 이미지를 쓰지 않고 «직접 제작» 한다.
   이유: 두 공식 배지는 폰트(Google Sans vs SF Pro)·글자 크기·문구
   (「다운로드」 vs 「다운로드 하기」)·테두리 유무가 모두 달라, 나란히 놓으면
   짝이 맞지 않는다. 로고만 각 스토어 공식 에셋에서 가져오고 나머지는
   SUIT 폰트로 통일했다. */
@font-face {
  font-family: 'SUIT';
  src: url('fonts/SUIT-Medium.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'SUIT';
  src: url('fonts/SUIT-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-sizing: border-box;
  height: 56px;
  min-width: 196px;   /* 두 버튼 폭을 맞춘다 — 문구 길이가 달라도 짝이 맞게 */
  padding: 0 18px;
  border-radius: 12px;
  background: #000;
  border: 1px solid #a6a6a6;
  color: #fff;
  text-decoration: none;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.store-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.store-btn:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.store-btn-logo {
  display: block;
  width: auto;
  height: 22px;      /* 플레이 삼각형은 정사각에 가까워 같은 높이면 더 커 보인다 */
  flex: none;
}

.store-btn-logo.apple {
  height: 23px;       /* 애플 마크는 세로가 길어 같은 높이면 더 커 보인다 */
  margin-top: -2px;   /* 잎사귀 때문에 시각 중심이 위로 뜬다 */
}

.store-btn-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: 'SUIT', 'Malgun Gothic', sans-serif;
  letter-spacing: -0.02em;
  line-height: 1;          /* 자식이 각자 line-height 를 갖도록 초기화 */
}

.store-btn-sub {
  font-size: 10.5px;
  font-weight: 500;
  line-height: 1.45;
  opacity: 0.82;
}

.store-btn-main {
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.3;
}

.hero-sublinks {
  margin: 18px 0 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--muted, #6b6b6b);
}

.hero-sublinks a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero-sublinks span {
  margin: 0 8px;
  opacity: 0.5;
}

.final-badges {
  margin-top: 26px;
}

@media (max-width: 760px) {
  .store-badges {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .store-btn {
    width: 250px;
    height: 48px;
  }

  /* 모바일은 「Google Play에서 다운로드」 한 줄로 — 두 줄이면 버튼이 필요 이상 두껍다 */
  .store-btn-text {
    flex-direction: row;
    align-items: baseline;
    gap: 5px;
  }

  .store-btn-sub {
    font-size: 14px;
  }

  .store-btn-main {
    font-size: 14px;
  }
}



