:root {
  --green: #22b84b;
  --green-dark: #119037;
  --green-soft: #edf9f0;
  --green-pale: #f5fcf6;
  --ink: #1c2024;
  --muted: #5f676c;
  --soft-text: #7a8288;
  --line: #e7e9e8;
  --surface: #ffffff;
  --soft-surface: #f7f8f7;
  --dark: #202426;
  --shadow: 0 30px 80px rgba(29, 46, 34, .13);
  --max: 1200px;
  --font-display: "Outfit", "Pretendard", "Pretendard Variable", "Noto Sans KR", sans-serif;
  --font-body: "Pretendard Variable", "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
}

/* English site: Latin-first typography (ProPresenter-like Inter stack) */
html[lang="en"] {
  --font-display: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

html[lang="en"] body {
  font-feature-settings: "ss01" on, "cv11" on;
  letter-spacing: 0;
  font-synthesis: none;
}

html[lang="en"] h1,
html[lang="en"] h2,
html[lang="en"] h3,
html[lang="en"] h4,
html[lang="en"] .brand-mark,
html[lang="en"] .logo span,
html[lang="en"] .section-label,
html[lang="en"] .button,
html[lang="en"] .eyebrow,
html[lang="en"] .hero-lead,
html[lang="en"] .hero-meta,
html[lang="en"] .check-list li,
html[lang="en"] .value-row b,
html[lang="en"] .value-row p,
html[lang="en"] .feature-points b,
html[lang="en"] .feature-points span,
html[lang="en"] p,
html[lang="en"] li,
html[lang="en"] summary,
html[lang="en"] label,
html[lang="en"] input,
html[lang="en"] textarea,
html[lang="en"] button,
html[lang="en"] a {
  letter-spacing: 0 !important;
  font-synthesis: none;
}

/* English titles: medium weight — Inter at large sizes looks heavy above 500 */
html[lang="en"] h1,
html[lang="en"] h2 {
  font-weight: 500 !important;
}
html[lang="en"] .hero h1 {
  font-weight: 600 !important;
}
html[lang="en"] h3,
html[lang="en"] .value-row b,
html[lang="en"] .feature-points b,
html[lang="en"] .download-card h3,
html[lang="en"] .board-toolbar h2,
html[lang="en"] .pain-card h3,
html[lang="en"] .change-step h3,
html[lang="en"] .koa-points h3,
html[lang="en"] .story-steps h3 {
  font-weight: 500 !important;
}
html[lang="en"] .brand-mark { font-weight: 600 !important; }
html[lang="en"] .eyebrow { font-weight: 500 !important; }
html[lang="en"] .section-label { font-weight: 600 !important; }
html[lang="en"] .logo strong { font-weight: 600 !important; }
html[lang="en"] .check-list li,
html[lang="en"] .hero-meta,
html[lang="en"] .hero-lead,
html[lang="en"] .mode-copy .check-list li {
  font-weight: 400 !important;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
.page-top-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  pointer-events: none;
}
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3 {
  letter-spacing: 0 !important;
}
button { font: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.section-space { padding: 120px 0; }
.center { text-align: center; }
.narrow { max-width: 820px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(231,233,232,.88);
}
.header-inner {
  width: min(calc(100% - 48px), var(--max));
  height: 80px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: .06em;
  font-size: 17px;
}
.logo strong { color: var(--green); }
.desktop-nav {
  display: flex;
  gap: 32px;
  font-size: 16px;
  font-weight: 600;
  color: #4f565b;
}
.desktop-nav a, .text-link { transition: color .2s; }
.desktop-nav a:hover, .text-link:hover { color: var(--green-dark); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 16px;
  font-weight: 600;
}
.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  padding: 8px;
  background: transparent;
}
.mobile-menu-button span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--ink);
  border-radius: 2px;
}
.mobile-nav {
  display: none;
  padding: 8px 24px 24px;
  border-top: 1px solid var(--line);
  background: white;
}
.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 700;
}

.button {
  min-height: 56px;
  padding: 0 28px;
  border-radius: 6px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  transition: transform .2s, box-shadow .2s, background .2s, border-color .2s;
}
.button:hover { transform: translateY(-2px); }
.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.button-small { min-height: 44px; padding: 0 18px; font-size: 15px; }
.button-green {
  color: white;
  background: var(--green);
  box-shadow: 0 14px 28px rgba(34,184,75,.22);
}
.button-green:hover { background: var(--green-dark); }
.button-outline {
  border-color: #d5dad6;
  background: #fff;
}
.button-outline:hover { border-color: #a8b0aa; }
.button-dark { color: white; background: var(--dark); }
.button-white { color: var(--ink); background: white; }

.eyebrow {
  margin: 10px 0 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--green-dark, #1f7a45);
}
.lang-switch {
  font-weight: 600;
  white-space: nowrap;
}
.brand-mark {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1.1;
}
.brand-mark em {
  color: var(--green);
  font-style: normal;
}
.brand-mark.light { color: rgba(255,255,255,.92); }
.brand-mark.light em { color: #d8ffe2; }

.section-label {
  color: var(--green-dark);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 100px;
  background: linear-gradient(180deg, #fff 0%, #f8fbf8 55%, #f3f7f3 100%);
}
.hero-orbs {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-orb {
  position: absolute;
  box-sizing: border-box;
  border-radius: 50%;
  background: transparent;
  will-change: transform;
}
/* 원래처럼 도넛(링) 형태 — 크기·위치만 다르게 */
.hero-orb-a {
  width: 520px;
  height: 520px;
  border: 92px solid rgba(34, 184, 75, .055);
  right: -150px;
  top: -40px;
  animation: hero-float-a 16s ease-in-out infinite;
}
.hero-orb-b {
  width: 380px;
  height: 380px;
  border: 72px solid rgba(34, 184, 75, .05);
  left: -120px;
  top: 60px;
  animation: hero-float-b 18s ease-in-out infinite;
}
.hero-orb-c {
  width: 260px;
  height: 260px;
  border: 52px solid rgba(34, 184, 75, .048);
  left: 22%;
  bottom: 40px;
  animation: hero-float-c 13s ease-in-out infinite;
}
.hero-orb-d {
  width: 180px;
  height: 180px;
  border: 36px solid rgba(34, 184, 75, .06);
  right: 18%;
  top: 38%;
  animation: hero-float-d 11s ease-in-out infinite;
}
.hero-orb-e {
  width: 300px;
  height: 300px;
  border: 58px solid rgba(34, 184, 75, .042);
  left: 48%;
  top: -70px;
  animation: hero-float-e 15s ease-in-out infinite;
}
.hero-orb-f {
  width: 140px;
  height: 140px;
  border: 28px solid rgba(34, 184, 75, .055);
  right: 6%;
  bottom: 14%;
  animation: hero-float-f 12s ease-in-out infinite;
}
.hero-orb-g {
  width: 420px;
  height: 420px;
  border: 78px solid rgba(34, 184, 75, .04);
  left: -80px;
  bottom: -120px;
  animation: hero-float-g 20s ease-in-out infinite;
}
.hero-layout {
  display: grid;
  gap: 56px;
  position: relative;
  z-index: 2;
}
.hero-copy {
  max-width: 760px;
  text-align: center;
  margin-inline: auto;
}
.hero-title-wrap {
  position: relative;
  display: inline-block;
  max-width: 100%;
  margin: 18px 0 22px;
}
.hero-title-wrap h1 {
  margin: 0;
}
.hero-free-badge-wrap {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-130%, -42%) rotate(-14deg);
  perspective: 700px;
  z-index: 2;
  pointer-events: none;
}
.hero-free-badge {
  display: block;
  width: clamp(92px, 12vw, 128px);
  height: auto;
  filter: drop-shadow(0 12px 20px rgba(17, 144, 55, .32));
  transform-origin: center center;
  transform-style: preserve-3d;
  backface-visibility: visible;
  animation: hero-badge-coin 9s ease-in-out infinite;
  user-select: none;
}
.hero h1 {
  margin: 18px 0 22px;
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 84px);
  line-height: 1.05;
  letter-spacing: -.055em;
  font-weight: 900;
}
.hero-h1-accent {
  color: var(--green);
}
.hero-title-wrap .hero-free-badge + h1,
.hero-title-wrap h1 {
  margin: 0;
}
.hero-lead {
  max-width: 560px;
  margin: 0 auto;
  font-size: 20px;
  color: var(--muted);
  line-height: 1.55;
}
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-meta {
  list-style: none;
  padding: 0;
  margin: 28px auto 0;
  max-width: 720px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 28px;
  color: #5c6469;
  font-size: 16px;
  font-weight: 650;
}
.hero-meta li {
  position: relative;
}
.hero-meta li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c5ccc7;
  transform: translateY(-50%);
}
.hero-visual {
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
}
.screenshot-frame {
  overflow: hidden;
  border: 1px solid #dfe4df;
  border-radius: 12px;
  background: #f2f4f3;
  box-shadow: var(--shadow);
}
.hero-frame {
  animation: rise-in .9s ease both;
}
.browser-bar {
  height: 46px;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.browser-dots { display: flex; gap: 7px; }
.browser-dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d6dad7;
}
.browser-title {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .12em;
  font-weight: 700;
  color: #616864;
}
.browser-status {
  justify-self: end;
  color: var(--green-dark);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
}
.browser-status.live { color: #ec4c43; }
.screenshot-frame img,
.screenshot-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #eef1ef;
  display: block;
  border: 0;
  vertical-align: top;
}
.screenshot-frame.plain {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.screenshot-frame.plain img {
  aspect-ratio: auto;
  height: auto;
  object-fit: contain;
  background: transparent;
}
/* 데모 영상: 원본 비율 유지 (16:9 강제 크롭 제거) */
.screenshot-frame video.hero-demo-video,
.screenshot-frame video.mode-demo-video {
  aspect-ratio: auto;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center top;
  background: #161e2d;
  pointer-events: none;
}

.quick-values { border-block: 1px solid var(--line); }
.value-row {
  min-height: 128px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.value-row article {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 28px 22px;
  border-right: 1px solid var(--line);
}
.value-row article:last-child { border-right: 0; }
.value-icon {
  color: var(--green);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .1em;
}
.value-row b, .value-row p { display: block; margin: 0; }
.value-row b {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 750;
  letter-spacing: -.02em;
}
.value-row p {
  margin-top: 4px;
  color: var(--soft-text);
  font-size: 15px;
  line-height: 1.4;
}

.mode-section { padding: 120px 0; }
.mode-section:nth-child(odd) { background: #fff; }
.mode-section.alternate { background: var(--soft-surface); }
.mode-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 80px;
  align-items: center;
}
.alternate .mode-grid { grid-template-columns: .85fr 1.15fr; }
.mode-copy { position: relative; }
.mode-number {
  position: absolute;
  right: 0;
  top: -36px;
  color: #e8ebe8;
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 900;
  line-height: 1;
  z-index: 0;
  transition: color .45s ease, transform .45s ease;
}
.mode-section.is-active .mode-number {
  color: rgba(34, 184, 75, .58);
  transform: scale(1.03);
}
.mode-copy .section-label,
.mode-copy h2,
.mode-copy .check-list { position: relative; z-index: 1; }
.mode-copy h2 {
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.15;
  letter-spacing: -.045em;
  font-weight: 800;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}
.check-list li {
  position: relative;
  padding: 14px 0 14px 34px;
  border-bottom: 1px solid var(--line);
  font-size: 18px;
  font-weight: 650;
}
.check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}
.dark-frame { border-color: #2d3335; }
.dark-frame .browser-bar {
  background: #222729;
  color: white;
  border-color: #363c3d;
}
.dark-frame .browser-dots i { background: #596062; }
.dark-frame .browser-title { color: #d0d5d3; }

.feature-band {
  padding: 110px 0;
  color: white;
  background:
    radial-gradient(circle at 90% 20%, rgba(34,184,75,.18), transparent 28%),
    var(--dark);
  overflow: hidden;
}
.feature-band-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 72px;
  align-items: stretch;
}
.light-label { color: #79df91; }
.feature-band-copy {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.feature-band h2 {
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.15;
  letter-spacing: -.045em;
  font-weight: 800;
}
.feature-points {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0;
  min-height: 0;
}
.feature-points li {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.feature-points li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.feature-points b {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 750;
}
.feature-points span {
  color: #b4bbb8;
  font-size: 17px;
  line-height: 1.5;
}
.bilingual-card {
  min-height: 0;
  border-radius: 10px;
  border: 1px solid #4a5152;
  overflow: hidden;
  background: #12262e;
  box-shadow: 0 30px 65px rgba(0,0,0,.26);
}
.bilingual-top {
  height: 54px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.16);
  color: #c7d0cc;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: .12em;
  font-weight: 700;
}
.bilingual-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #0d1a1f;
}
.bilingual-content { padding: 72px 52px; }
.bilingual-content h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1.28;
  letter-spacing: -.035em;
  font-weight: 750;
}
.bilingual-rule {
  width: 100px;
  margin: 28px 0 22px;
  border-top: 1px solid rgba(255,255,255,.48);
}
.bilingual-content p {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.45;
  color: rgba(255,255,255,.88);
}

.download-section { background: var(--green-pale); }
.download-heading { text-align: center; }
.download-heading h2 {
  margin: 14px 0 14px;
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  letter-spacing: -.045em;
  font-weight: 800;
}
.download-heading p {
  color: var(--muted);
  margin: 0;
  font-size: 19px;
}
.download-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 52px;
  align-items: start;
}
.download-windows,
.download-mac {
  display: grid;
  gap: 12px;
}
.download-warning {
  margin: 0;
  padding: 0 4px;
  color: #2563eb;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
}
.download-card {
  min-height: 168px;
  padding: 32px;
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 20px;
  align-items: center;
  border: 1px solid #dfe9e1;
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(27,56,35,.045);
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.download-card:hover {
  transform: translateY(-4px);
  border-color: #a7dcb1;
  box-shadow: 0 20px 45px rgba(27,56,35,.09);
}
.download-card:not(.coming-soon) {
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 14px 36px rgba(34, 184, 75, .28);
}
.download-card:not(.coming-soon):hover {
  border-color: var(--green-dark);
  background: var(--green-dark);
  box-shadow: 0 20px 45px rgba(17, 144, 55, .32);
}
.download-card:not(.coming-soon) .platform-icon {
  background: rgba(255, 255, 255, .2);
  color: #fff;
}
.download-card:not(.coming-soon) span,
.download-card:not(.coming-soon) h3,
.download-card:not(.coming-soon) p,
.download-card:not(.coming-soon) .download-meta {
  color: #fff;
}
.download-card:not(.coming-soon) .download-meta span:not(:last-child)::after {
  color: rgba(255, 255, 255, .55);
}
.download-card:not(.coming-soon) .download-action {
  background: #fff;
  color: var(--green-dark);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .12);
}
.download-card:not(.coming-soon):hover .download-action {
  background: #fff;
  color: var(--green-dark);
}
.download-card.coming-soon {
  cursor: default;
  opacity: .88;
  background: #fbfcfb;
}
.download-card.coming-soon:hover {
  transform: none;
  border-color: #dfe9e1;
  box-shadow: 0 10px 30px rgba(27,56,35,.045);
}
.download-card.coming-soon h3 { color: #4f5752; }
.download-badge {
  align-self: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eef3ef;
  color: #5f6a63;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  white-space: nowrap;
}
.platform-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 30px;
}
.platform-icon.apple { font-size: 24px; }
.download-card span {
  color: var(--green-dark);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
}
.download-card h3 {
  margin: 6px 0;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 750;
  letter-spacing: -.02em;
}
.download-card p {
  margin: 0;
  color: var(--soft-text);
  font-size: 16px;
}
.download-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 0;
  margin: 0;
  color: var(--soft-text);
  font-size: 15px;
  line-height: 1.45;
}
.download-meta span:not(:last-child)::after {
  content: "·";
  margin: 0 8px;
  color: #b0b7b2;
}
.download-arrow {
  color: var(--green);
  font-size: 28px;
  font-weight: 400;
}
.download-action {
  align-self: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .02em;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(34, 184, 75, .28);
  transition: background .2s, box-shadow .2s, transform .2s;
}
.download-card:hover .download-action {
  background: var(--green-dark);
  box-shadow: 0 14px 28px rgba(17, 144, 55, .32);
}
.download-note {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 22px;
  color: #6f7771;
  font-size: 15px;
  font-weight: 600;
}

.donate-section { padding: 112px 0; }
.donate-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 72px;
  align-items: center;
}
.donate-visual { display: grid; place-items: center; }
.coffee-image {
  width: min(380px, 82vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 36px rgba(40, 48, 42, .12));
}
.donate-copy h2 {
  margin: 14px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(36px, 4.4vw, 54px);
  line-height: 1.15;
  letter-spacing: -.045em;
  font-weight: 800;
}
.donate-copy > p {
  color: var(--muted);
  max-width: 560px;
  margin: 0;
  font-size: 19px;
}
.donate-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}
.donate-option {
  display: grid;
  gap: 8px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  text-align: left;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.donate-option-stripe {
  color: white;
  background: var(--dark);
  border-color: var(--dark);
}
.donate-option-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--green-dark);
}
.donate-option-stripe .donate-option-label { color: #79df91; }
.donate-option strong {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 750;
  letter-spacing: -.02em;
}
.donate-option-desc {
  color: var(--soft-text);
  font-size: 15px;
}
.donate-option-stripe .donate-option-desc {
  color: rgba(255,255,255,.72);
}
.donate-stripe-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.button-on-dark {
  border-color: rgba(255,255,255,.28);
  background: transparent;
  color: white;
}
.button-on-dark:hover {
  border-color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.06);
}
.bank-account {
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 8px;
  background: var(--green-pale);
  border: 1px solid #d7ebd9;
}
.bank-name {
  display: block;
  color: var(--soft-text);
  font-size: 14px;
  margin-bottom: 2px;
}
.bank-account b {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 750;
  letter-spacing: .02em;
  font-variant-numeric: tabular-nums;
}
.copy-account {
  flex-shrink: 0;
  min-height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 6px;
  background: var(--green);
  color: white;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
  transition: background .2s;
}
.copy-account:hover { background: var(--green-dark); }
.donate-copy small {
  display: block;
  margin-top: 18px;
  color: var(--soft-text);
  font-size: 15px;
}

.supporters { background: var(--soft-surface); }
.supporter-heading {
  max-width: 720px;
  margin-bottom: 28px;
}
.supporter-heading h2 {
  margin: 14px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(36px, 4.4vw, 54px);
  letter-spacing: -.045em;
  font-weight: 800;
}
.supporter-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}
.supporter-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-bottom: 28px;
  color: #5f6762;
  font-size: 15px;
  font-weight: 650;
}
.supporter-legend .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border-radius: 50%;
  vertical-align: middle;
  background: #d5dbd6;
}
.supporter-legend .dot.special { background: var(--green); }
.supporter-legend .dot.monthly {
  background: transparent;
  box-shadow: inset 0 0 0 2px var(--green-dark);
}
.supporter-names {
  list-style: none;
  margin: 0;
  padding: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  border: 1px solid #dfe3df;
  border-radius: 12px;
  background: white;
}
.supporter-names li {
  padding: 10px 16px;
  border-radius: 999px;
  background: #f3f5f3;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}
.supporter-names li.special {
  background: var(--green-soft);
  color: var(--green-dark);
  box-shadow: inset 0 0 0 1px #b7dfc0;
}
.supporter-names li.monthly {
  background: #fff;
  color: var(--green-dark);
  box-shadow: inset 0 0 0 1.5px var(--green);
}
.supporter-names li.waiting {
  background: transparent;
  color: #8a918c;
  border: 1px dashed #c5ccc7;
  font-weight: 650;
}

.faq-container {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 80px;
}
.faq-heading h2 {
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-size: clamp(36px, 4.4vw, 52px);
  letter-spacing: -.045em;
  font-weight: 800;
}
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary {
  list-style: none;
  padding: 28px 2px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 19px;
  font-weight: 750;
}
summary::-webkit-details-marker { display: none; }
summary span {
  color: #a3a9a5;
  font-size: 26px;
  line-height: 1;
  transition: transform .2s, color .2s;
}
details[open] summary span { transform: rotate(45deg); color: var(--green); }
details p {
  margin: 0;
  padding: 0 0 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.faq-list a {
  color: var(--green-dark);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.closing-section {
  padding: 96px 0;
  color: white;
  background:
    radial-gradient(circle at 15% 80%, rgba(255,255,255,.12), transparent 30%),
    var(--green);
}
.closing-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.closing-inner .section-label { margin-bottom: 14px; }
.closing-inner h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
  letter-spacing: -.04em;
  font-weight: 800;
}
.closing-lead {
  margin: 16px 0 0;
  max-width: 560px;
  color: rgba(255,255,255,.88);
  font-size: 18px;
  line-height: 1.55;
}

footer { padding: 72px 0 32px; background: #fff; }
.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
.footer-main p {
  color: var(--soft-text);
  font-size: 16px;
  margin: 16px 0 0;
  line-height: 1.55;
}
.footer-columns { display: flex; gap: 80px; }
.footer-columns div { display: grid; gap: 12px; }
.footer-columns b {
  color: #7f8782;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: .12em;
  margin-bottom: 4px;
}
.footer-columns a {
  color: #4f5752;
  font-size: 16px;
  font-weight: 600;
}
.footer-columns a:hover { color: var(--green-dark); }
.footer-bottom {
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  color: #7a827d;
  font-size: 14px;
}
.footer-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 600;
}
.footer-stats b {
  color: var(--green-dark);
  font-family: var(--font-display);
  font-weight: 800;
}
.footer-copy {
  display: grid;
  gap: 4px;
  text-align: right;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 60;
  transform: translate(-50%, 24px);
  opacity: 0;
  padding: 14px 20px;
  border-radius: 6px;
  color: white;
  background: #202426;
  box-shadow: 0 15px 45px rgba(0,0,0,.22);
  font-size: 15px;
  font-weight: 700;
  transition: .25s;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .12s; }

@keyframes hero-badge-coin {
  /* 대부분 정지 → 가끔 한 바퀴 회전 */
  0%, 78% { transform: rotateY(0deg); }
  88% { transform: rotateY(360deg); }
  100% { transform: rotateY(360deg); }
}
@keyframes hero-float-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40% { transform: translate(-120px, 90px) scale(1.18); }
  75% { transform: translate(-50px, -70px) scale(.88); }
}
@keyframes hero-float-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  35% { transform: translate(110px, 70px) scale(1.15); }
  70% { transform: translate(40px, -90px) scale(.9); }
}
@keyframes hero-float-c {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(80px, -100px) scale(1.22); }
}
@keyframes hero-float-d {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-90px, -60px) scale(1.3); }
  66% { transform: translate(70px, 80px) scale(.85); }
}
@keyframes hero-float-e {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-100px, 110px) rotate(18deg); }
}
@keyframes hero-float-f {
  0%, 100% { transform: translate(0, 0) scale(1); }
  45% { transform: translate(-130px, -80px) scale(1.35); }
  80% { transform: translate(40px, 60px) scale(.8); }
}
@keyframes hero-float-g {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  40% { transform: translate(130px, -80px) rotate(-12deg) scale(1.12); }
  75% { transform: translate(50px, 40px) rotate(8deg) scale(.92); }
}
@keyframes rise-in {
  from { opacity: 0; transform: translateY(28px) scale(.985); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-orb,
  .hero-free-badge {
    animation: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .story-hero-inner .section-label,
  .story-hero-inner h1,
  .story-hero-inner .hero-lead {
    opacity: 1;
    animation: none;
  }
}

@media (max-width: 980px) {
  .desktop-nav, .text-link { display: none; }
  .mobile-menu-button { display: block; }
  .mobile-nav.open { display: block; }
  .value-row { grid-template-columns: repeat(2, 1fr); }
  .value-row article:nth-child(2n) { border-right: 0; }
  .value-row article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .mode-grid, .alternate .mode-grid { grid-template-columns: 1fr; gap: 48px; }
  .alternate .mode-copy { order: 2; }
  .alternate .mode-media { order: 1; }
  .feature-band-grid, .donate-grid, .faq-container { grid-template-columns: 1fr; }
  .faq-container { gap: 12px; }
  .download-grid { grid-template-columns: 1fr; }
}

@media (max-width: 650px) {
  body { font-size: 17px; }
  .value-row {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .value-row article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 14px 6px;
    gap: 12px;
  }
  .value-row article:nth-child(2n) { border-right: 0; }
  .value-row article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .value-row article:last-child { border-bottom: 0; }
  .value-row b { font-size: 18px; }
  .value-row p { font-size: 14px; margin-top: 2px; }
  .container, .header-inner { width: calc(100% - 32px); }
  .header-inner { height: 70px; }
  .header-actions .button { display: none; }
  .section-space { padding: 88px 0; }
  .hero-orb-c,
  .hero-orb-d,
  .hero-orb-e,
  .hero-orb-f {
    display: none;
  }
  .hero-orb-a {
    width: 340px;
    height: 340px;
    border-width: 64px;
    right: -120px;
    top: -30px;
  }
  .hero-orb-b {
    width: 260px;
    height: 260px;
    border-width: 48px;
    left: -100px;
    top: 80px;
  }
  .hero-orb-g {
    width: 280px;
    height: 280px;
    border-width: 52px;
    left: auto;
    right: -90px;
    bottom: -80px;
  }
  .hero { padding: 56px 0 72px; }
  .hero h1 { font-size: 40px; }
  .hero-title-wrap {
    margin: 14px auto 18px;
    padding-left: 64px;
    max-width: 100%;
    box-sizing: border-box;
  }
  .hero-free-badge-wrap {
    left: 0;
    transform: translate(-38%, -36%) rotate(-12deg);
  }
  .hero-free-badge {
    width: clamp(72px, 20vw, 96px);
  }
  .hero-lead { font-size: 18px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .button { width: 100%; }
  .hero-meta li:not(:last-child)::after { display: none; }
  .hero-meta { gap: 10px 18px; font-size: 15px; }
  .browser-bar { height: 40px; }
  .browser-title, .browser-status { font-size: 11px; }
  .mode-section { padding: 48px 0 24px; }
  .mode-sections .mode-section:first-child {
    padding-top: 40px;
  }
  .mode-copy h2, .feature-band h2, .download-heading h2,
  .donate-copy h2, .supporter-heading h2, .faq-heading h2 { font-size: 34px; }
  .mode-number { font-size: 84px; top: -22px; }
  .check-list li { font-size: 17px; }
  .bilingual-card { min-height: 0; }
  .bilingual-content { padding: 48px 28px; }
  .bilingual-content h3 { font-size: 30px; }
  .bilingual-content p { font-size: 18px; }
  .download-card {
    position: relative;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px 14px;
    padding: 20px 52px 20px 18px;
    min-height: 0;
    align-items: start;
  }
  .download-card > div:nth-child(2) {
    min-width: 0;
  }
  .download-card span {
    font-size: 12px;
    letter-spacing: .08em;
    white-space: nowrap;
  }
  .download-card h3 {
    font-size: 18px;
    line-height: 1.3;
    word-break: keep-all;
    overflow-wrap: normal;
  }
  .download-card p {
    font-size: 14px;
    word-break: keep-all;
  }
  .platform-icon {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }
  .download-arrow,
  .download-action {
    position: absolute;
    top: 22px;
    right: 16px;
    margin: 0;
  }
  .download-action {
    top: 18px;
    right: 14px;
    padding: 10px 14px;
    font-size: 13px;
  }
  .download-badge {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 4px;
  }
  .download-warning {
    font-size: 13px;
    text-align: left;
  }
  .download-note { display: grid; gap: 6px; text-align: center; }
  .faq.section-space {
    padding: 48px 0 56px;
  }
  .faq-container {
    gap: 0;
  }
  .faq-heading .section-label {
    margin-bottom: 0;
  }
  .faq-heading h2 {
    margin: 8px 0 0;
    font-size: 30px;
  }
  .faq-list {
    margin-top: 0;
  }
  .summary {
    padding: 18px 2px;
    font-size: 16px;
  }
  .details p,
  details p {
    padding-bottom: 18px;
    font-size: 16px;
  }
  .donate-section { padding: 56px 0 32px; }
  .donate-grid { gap: 28px; }
  .donate-options { grid-template-columns: 1fr; }
  .supporters.section-space {
    padding-top: 48px;
    padding-bottom: 72px;
  }
  .bank-account b { font-size: 18px; }
  .coffee-image { width: min(260px, 72vw); }
  .supporter-names { padding: 20px; gap: 10px; }
  .supporter-names li { font-size: 15px; }
  .summary, summary { font-size: 17px; }
  .closing-inner { display: block; }
  .closing-inner h2 { font-size: 32px; }
  .closing-lead { margin-bottom: 28px; }
  .closing-inner .button { width: 100%; }
  .footer-main { display: block; }
  .footer-columns { margin-top: 36px; gap: 56px; }
  .footer-bottom {
    display: grid;
    gap: 16px;
    justify-content: stretch;
  }
  .footer-stats { gap: 12px 16px; }
  .footer-copy { text-align: left; }
  .footer-bottom span { display: block; margin: 0; }
}

/* WHY PAGE */
.desktop-nav a.active,
.mobile-nav a.active {
  color: var(--green-dark);
  font-weight: 800;
}

.why-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 110px;
  background:
    radial-gradient(circle at 86% 18%, rgba(34,184,75,.12), transparent 28%),
    radial-gradient(circle at 8% 88%, rgba(34,184,75,.05), transparent 24%),
    linear-gradient(180deg, #fff 0%, #f8fcf9 100%);
}
.why-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 72px;
  align-items: center;
}
.why-hero-copy h1 {
  margin: 16px 0 22px;
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.1;
  letter-spacing: -.05em;
  font-weight: 900;
}
.why-hero-copy .hero-lead {
  max-width: 540px;
  margin: 0;
  text-align: left;
  font-size: 19px;
}
.why-hero-copy .hero-buttons {
  justify-content: flex-start;
  margin-top: 32px;
}
.why-orb { position: absolute; border-radius: 50%; pointer-events: none; }
.why-orb-one {
  width: 400px;
  height: 400px;
  right: -130px;
  top: 40px;
  border: 80px solid rgba(34,184,75,.045);
  animation: drift 12s ease-in-out infinite;
}
.why-orb-two {
  width: 140px;
  height: 140px;
  left: 42%;
  bottom: 48px;
  background: rgba(34,184,75,.05);
  animation: drift 10s ease-in-out infinite reverse;
}
.why-hero-visual { position: relative; }
.workload-window {
  overflow: hidden;
  border: 1px solid #dfe4df;
  border-radius: 12px;
  background: white;
  box-shadow: 0 34px 90px rgba(29,46,34,.15);
  animation: rise-in .9s ease both;
}
.workload-top {
  min-height: 50px;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.workload-top b {
  font-family: var(--font-display);
  font-size: 12px;
  color: #616864;
  letter-spacing: .1em;
}
.workload-status {
  justify-self: end;
  color: #ec655d;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 750;
}
.workload-body { padding: 28px; background: #f5f7f6; }
.prep-list { display: grid; gap: 12px; }
.prep-row {
  min-height: 80px;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 14px;
  border: 1px solid #e2e6e3;
  border-radius: 8px;
  background: #fff;
}
.prep-row > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #7a8288;
  background: #f1f3f2;
  font-size: 14px;
  font-weight: 800;
}
.prep-row p, .prep-row b, .prep-row small { margin: 0; display: block; }
.prep-row b { font-size: 17px; font-weight: 750; }
.prep-row small {
  margin-top: 4px;
  color: #6f7771;
  font-size: 15px;
}
.prep-row.done { opacity: .65; }
.prep-row.done > span { color: var(--green-dark); background: var(--green-soft); }
.prep-row.active {
  border-color: #a9deb4;
  box-shadow: 0 10px 28px rgba(34,184,75,.09);
}
.prep-row.active > span { color: white; background: var(--green); }
.prep-alert {
  margin-top: 18px;
  padding: 18px 20px;
  display: grid;
  gap: 6px;
  border-left: 4px solid #e15b53;
  background: #fff5f4;
}
.prep-alert strong { color: #bc453f; font-size: 17px; }
.prep-alert span { color: #8c6966; font-size: 16px; line-height: 1.45; }

.why-snapshot { border-block: 1px solid var(--line); background: white; }
.why-snapshot-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.why-snapshot-grid > div {
  min-height: 132px;
  padding: 28px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-right: 1px solid var(--line);
}
.why-snapshot-grid > div:last-child { border-right: 0; }
.why-snapshot strong {
  color: var(--green);
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: .1em;
}
.why-snapshot span {
  font-size: 18px;
  font-weight: 750;
  line-height: 1.35;
}

.pain-section { padding: 100px 0 120px; }
.pain-heading {
  max-width: 720px;
  margin-bottom: 48px;
}
.pain-heading h2 {
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  letter-spacing: -.02em;
  font-weight: 800;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.pain-card {
  min-height: 280px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.pain-card:hover {
  transform: translateY(-4px);
  border-color: #b5dfbd;
  box-shadow: 0 22px 50px rgba(27,56,35,.08);
}
.pain-card-top { display: flex; justify-content: space-between; align-items: center; }
.pain-number {
  color: var(--green);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .1em;
}
.pain-tag {
  color: #8a918c;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}
.pain-card h3 {
  margin: 28px 0 auto;
  font-family: var(--font-display);
  font-size: clamp(26px, 2.8vw, 34px);
  line-height: 1.25;
  letter-spacing: -.005em;
  font-weight: 650;
}
.pain-answer {
  margin-top: 28px;
  padding-top: 24px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
  border-top: 1px solid var(--line);
}
.pain-answer span {
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  color: white;
  background: var(--green);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}
.pain-answer b {
  font-size: 16px;
  line-height: 1.55;
  font-weight: 650;
}

.why-statement {
  padding: 110px 0;
  color: white;
  background:
    radial-gradient(circle at 85% 30%, rgba(34,184,75,.16), transparent 30%),
    var(--dark);
}
.why-statement-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.why-statement h2 {
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.18;
  letter-spacing: -.045em;
  font-weight: 800;
}
.why-statement-text {
  padding-top: 28px;
  border-top: 1px solid #454b4c;
}
.why-statement-text p {
  margin: 0 0 20px;
  color: #c2c8c5;
  font-size: 18px;
  line-height: 1.7;
}
.why-statement-text p:last-child { margin-bottom: 0; }

.change-heading { max-width: 720px; }
.change-heading h2 {
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-size: clamp(36px, 4.4vw, 54px);
  letter-spacing: -.045em;
  font-weight: 800;
  line-height: 1.15;
}
.change-flow {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
}
.change-step {
  min-height: 260px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}
.change-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green-dark);
  background: var(--green-soft);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
}
.change-step > span {
  color: var(--green-dark);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
}
.change-step h3 {
  margin: 12px 0 12px;
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -.03em;
  font-weight: 750;
}
.change-step p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}
.change-arrow {
  color: #b6bcb8;
  font-size: 28px;
  display: grid;
  place-items: center;
}

.data-section {
  padding: 112px 0;
  background: var(--green-pale);
}
.data-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.data-copy h2 {
  margin: 14px 0 28px;
  font-family: var(--font-display);
  font-size: clamp(36px, 4.4vw, 54px);
  letter-spacing: -.045em;
  font-weight: 800;
  line-height: 1.15;
}
.data-copy small {
  display: block;
  margin-top: 22px;
  color: #6f7771;
  font-size: 14px;
}
.data-visual {
  position: relative;
  min-height: 500px;
}
.data-source {
  position: absolute;
  left: 0;
  width: 230px;
  padding: 20px 22px;
  border: 1px solid #dbe7dd;
  border-radius: 8px;
  background: white;
  box-shadow: 0 14px 35px rgba(27,56,35,.07);
}
.data-source b, .data-source span { display: block; }
.data-source b { font-size: 16px; font-weight: 750; }
.data-source span {
  margin-top: 4px;
  color: #7a8288;
  font-size: 13px;
  letter-spacing: .04em;
}
.source-one { top: 60px; }
.source-two { top: 200px; left: 40px; }
.source-three { top: 340px; }
.data-core {
  position: absolute;
  right: 10px;
  top: 110px;
  width: 250px;
  height: 250px;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  color: white;
  background: var(--dark);
  box-shadow: 0 30px 70px rgba(20,35,25,.22);
}
.data-core img { width: 56px; margin-bottom: 12px; }
.data-core strong {
  text-align: center;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: .06em;
}
.data-core span {
  margin-top: 12px;
  color: #8ddd9d;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
}
.data-lines { position: absolute; inset: 0; pointer-events: none; }
.data-lines i {
  position: absolute;
  left: 220px;
  width: 150px;
  height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, #aacfb0, #6ac77c);
}
.data-lines i:after {
  content: "";
  position: absolute;
  right: -2px;
  top: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}
.data-lines i:nth-child(1) { top: 100px; transform: rotate(17deg); }
.data-lines i:nth-child(2) { top: 240px; left: 255px; width: 108px; transform: rotate(0deg); }
.data-lines i:nth-child(3) { top: 380px; transform: rotate(-17deg); }

.why-mission { background: white; }
.mission-card {
  position: relative;
  overflow: hidden;
  padding: 64px 68px;
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 64px;
  align-items: end;
  border: 1px solid #dfe5e0;
  border-radius: 10px;
  background:
    radial-gradient(circle at 100% 0%, rgba(34,184,75,.14), transparent 32%),
    linear-gradient(145deg, #fff, #f8fcf9);
  box-shadow: 0 28px 75px rgba(27,56,35,.08);
}
.mission-mark {
  position: absolute;
  right: 40px;
  top: -48px;
  color: rgba(34,184,75,.1);
  font-family: Georgia, serif;
  font-size: 240px;
  line-height: 1;
}
.mission-copy { position: relative; z-index: 2; }
.mission-copy h2 {
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -.04em;
  font-weight: 800;
  line-height: 1.18;
}
.mission-points {
  position: relative;
  z-index: 2;
  display: grid;
  border-top: 1px solid var(--line);
}
.mission-points span {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 100px 1fr;
  border-bottom: 1px solid var(--line);
  color: #555c58;
  font-size: 16px;
  font-weight: 650;
}
.mission-points b {
  color: var(--green-dark);
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .1em;
}
.why-closing {
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.14), transparent 28%),
    linear-gradient(135deg, var(--green), #159a3b);
}
.closing-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.closing-text-link {
  color: white;
  font-size: 16px;
  font-weight: 750;
  border-bottom: 1px solid rgba(255,255,255,.55);
  padding-bottom: 2px;
}

@media (max-width: 980px) {
  .why-hero-grid, .why-statement-grid, .data-grid { grid-template-columns: 1fr; }
  .why-hero-grid { gap: 56px; }
  .why-hero-copy { text-align: center; }
  .why-hero-copy .hero-lead {
    margin-inline: auto;
    text-align: center;
  }
  .why-hero-copy .hero-buttons { justify-content: center; }
  .why-hero-visual { max-width: 720px; margin: auto; }
  .why-snapshot-grid { grid-template-columns: repeat(2, 1fr); }
  .why-snapshot-grid > div:nth-child(2) { border-right: 0; }
  .why-snapshot-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .pain-grid { grid-template-columns: 1fr; }
  .why-statement-grid { gap: 40px; }
  .change-flow { grid-template-columns: 1fr; }
  .change-arrow { transform: rotate(90deg); }
  .change-step { min-height: auto; }
  .data-visual { width: min(100%, 620px); margin: auto; }
  .mission-card { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 650px) {
  .why-hero { padding: 60px 0 80px; }
  .why-hero-copy h1 { font-size: 38px; }
  .why-hero-copy .hero-lead { font-size: 17px; }
  .why-hero-copy .hero-buttons { flex-direction: column; }
  .why-hero-copy .button { width: 100%; }
  .workload-body { padding: 18px; }
  .prep-row { min-height: 72px; padding: 12px 14px; }
  .prep-row b { font-size: 16px; }
  .why-snapshot-grid { grid-template-columns: repeat(2, 1fr); }
  .why-snapshot-grid > div {
    min-height: 84px;
    padding: 16px 14px;
    gap: 12px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .why-snapshot-grid > div:nth-child(2n) { border-right: 0; }
  .why-snapshot-grid > div:nth-child(n+3) { border-bottom: 0; }
  .why-snapshot-grid > div:last-child { border-bottom: 0; }
  .why-snapshot span { font-size: 15px; }
  .pain-section { padding: 56px 0 36px; }
  .pain-card { min-height: auto; padding: 28px; }
  .pain-card h3 { font-size: 26px; margin: 22px 0 0; }
  .why-statement { padding: 48px 0; }
  .why-statement h2 { font-size: 32px; }
  .why-statement-text p { font-size: 17px; }
  .change-flow { margin-top: 28px; gap: 14px; }
  .change-step {
    position: relative;
    padding: 18px 18px 20px;
    min-height: auto;
  }
  .change-icon {
    position: absolute;
    top: 14px;
    right: 14px;
    margin: 0;
    width: 44px;
    height: 44px;
    font-size: 13px;
  }
  .change-step > span {
    display: block;
    padding-right: 56px;
  }
  .change-step h3 {
    font-size: 22px;
    margin: 8px 0 8px;
    padding-right: 56px;
  }
  .data-section { padding: 48px 0 56px; }
  .data-grid { gap: 20px; }
  .data-copy h2 { margin-bottom: 16px; }
  .data-copy small { margin-top: 12px; }
  .data-visual {
    min-height: 340px;
    transform: scale(.9);
    transform-origin: center top;
    margin-top: 4px;
    margin-bottom: 0;
  }
  .data-source { width: 180px; padding: 16px; }
  .source-two { left: 20px; }
  .data-core { width: 210px; height: 210px; right: -8px; top: 140px; }
  .data-lines i { display: none; }
  .mission-card { padding: 40px 28px; }
  .mission-mark { right: 8px; top: -20px; font-size: 160px; }
  .mission-points span { grid-template-columns: 90px 1fr; font-size: 15px; }
  .why-closing .closing-actions { display: grid; justify-items: start; gap: 18px; }
}

/* STORY PAGE */
.story-hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 100px;
  background:
    linear-gradient(105deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.82) 42%, rgba(255,255,255,.35) 68%, rgba(255,255,255,.18) 100%),
    url("assets/story-hero-bg.svg") right center / cover no-repeat,
    linear-gradient(180deg, #fff 0%, #f7fbf8 100%);
}
.story-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
}
.story-hero-inner .section-label,
.story-hero-inner h1,
.story-hero-inner .hero-lead {
  opacity: 0;
  animation: rise-in .9s cubic-bezier(.22, 1, .36, 1) forwards;
}
.story-hero-inner .section-label { animation-delay: .12s; }
.story-hero-inner h1 { animation-delay: .32s; }
.story-hero-inner .hero-lead { animation-delay: .52s; }
.story-hero h1 {
  margin: 16px 0 22px;
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.08;
  letter-spacing: -.05em;
  font-weight: 900;
}
.story-hero .hero-lead {
  margin: 0;
  max-width: 620px;
  font-size: 20px;
  color: var(--muted);
}
.story-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.story-orb-one {
  width: 360px;
  height: 360px;
  right: -120px;
  top: 40px;
  border: 72px solid rgba(34,184,75,.045);
  animation: drift 12s ease-in-out infinite;
}
.story-orb-two {
  width: 140px;
  height: 140px;
  left: 48%;
  bottom: 36px;
  background: rgba(34,184,75,.05);
  animation: drift 10s ease-in-out infinite reverse;
}

.story-intro-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 72px;
  align-items: center;
}
.story-portrait-card {
  padding: 40px 36px;
  border: 1px solid #dfe5e0;
  border-radius: 14px;
  background:
    radial-gradient(circle at 100% 0%, rgba(34,184,75,.12), transparent 40%),
    #fff;
  box-shadow: 0 24px 60px rgba(27,56,35,.08);
}
.story-portrait-card img {
  width: 72px;
  height: 72px;
  margin-bottom: 22px;
}
.story-portrait-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -.03em;
}
.story-portrait-card > span {
  display: block;
  margin-top: 8px;
  color: var(--green-dark);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
}
.story-portrait-card p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}
.story-intro-copy h2 {
  margin: 14px 0 22px;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.2vw, 52px);
  letter-spacing: -.045em;
  font-weight: 800;
  line-height: 1.18;
}
.story-intro-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}
.story-intro-copy p:last-child { margin-bottom: 0; }

.story-name { background: var(--green-pale); }
.story-name-heading {
  max-width: 720px;
  margin-bottom: 48px;
}
.story-name-heading h2 {
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 54px);
  letter-spacing: -.045em;
  font-weight: 800;
  line-height: 1.15;
}
.koa-breakdown {
  padding: 36px 40px;
  margin-bottom: 28px;
  border: 1px solid #d7ebd9;
  border-radius: 14px;
  background: #fff;
}
.koa-letters {
  display: flex;
  flex-wrap: nowrap;
  gap: 4px;
  align-items: baseline;
  margin-bottom: 18px;
}
.koa-letter {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: #c5ccc7;
  letter-spacing: -.02em;
}
.koa-letter.accent {
  color: var(--green-dark);
  font-size: clamp(36px, 5vw, 56px);
}
.koa-gap { width: 14px; }
.koa-caption {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}
.koa-caption strong {
  color: var(--green-dark);
  font-family: var(--font-display);
}
.koa-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.koa-points article {
  padding: 32px 28px;
  border: 1px solid #d7ebd9;
  border-radius: 12px;
  background: #fff;
}
.koa-points span {
  color: var(--green);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .1em;
}
.koa-points h3 {
  margin: 14px 0 12px;
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -.03em;
  font-weight: 800;
}
.koa-points p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}
.koa-points em {
  font-style: normal;
  color: var(--green-dark);
  font-weight: 800;
}

.story-timeline { background: var(--soft-surface); }
.story-timeline-heading {
  max-width: 760px;
  margin-bottom: 56px;
}
.story-timeline-heading h2 {
  margin: 14px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 54px);
  letter-spacing: -.045em;
  font-weight: 800;
  line-height: 1.15;
}
.story-timeline-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.story-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}
.story-steps li {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 28px;
  padding: 36px 40px;
  border: 1px solid #dfe3df;
  border-radius: 12px;
  background: #fff;
}
.story-step-num {
  color: var(--green);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: .04em;
}
.story-steps h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: -.03em;
  font-weight: 800;
}
.story-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.story-belief {
  padding: 110px 0;
  color: white;
  background:
    radial-gradient(circle at 88% 24%, rgba(34,184,75,.16), transparent 30%),
    var(--dark);
}
.story-belief-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 72px;
  align-items: start;
}
.story-belief h2 {
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.2vw, 52px);
  letter-spacing: -.045em;
  font-weight: 800;
  line-height: 1.18;
}
.story-belief-text {
  padding-top: 28px;
  border-top: 1px solid #454b4c;
}
.story-belief-text p {
  margin: 0 0 20px;
  color: #c2c8c5;
  font-size: 18px;
  line-height: 1.75;
}
.story-belief-text p:last-child { margin-bottom: 0; }

.story-close-inner {
  max-width: 760px;
  text-align: center;
  margin-inline: auto;
}
.story-close-inner h2 {
  margin: 14px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 52px);
  letter-spacing: -.045em;
  font-weight: 800;
  line-height: 1.18;
}
.story-close-inner > p {
  margin: 0 auto 32px;
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.story-close-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 980px) {
  .story-intro-grid,
  .story-belief-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-portrait-card { max-width: 480px; }
  .koa-points { grid-template-columns: 1fr; }
  .story-steps li {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 28px;
  }
}

@media (max-width: 650px) {
  .story-hero {
    padding: 72px 0 20px;
    background:
      linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.88) 55%, rgba(255,255,255,.55) 100%),
      url("assets/story-hero-bg.svg") center 30% / cover no-repeat,
      linear-gradient(180deg, #fff 0%, #f7fbf8 100%);
  }
  .story-hero h1 { font-size: 40px; }
  .story-hero .hero-lead { font-size: 18px; }
  .story-intro.section-space {
    padding-top: 12px;
    padding-bottom: 28px;
  }
  .story-name.section-space {
    padding-top: 32px;
    padding-bottom: 28px;
  }
  .story-name-heading { margin-bottom: 18px; }
  .story-timeline.section-space {
    padding-top: 32px;
  }
  .story-timeline-heading { margin-bottom: 28px; }
  .story-intro-copy h2,
  .story-timeline-heading h2,
  .story-name-heading h2,
  .story-belief h2,
  .story-close-inner h2 { font-size: 34px; }
  .koa-breakdown { padding: 20px 14px; margin-bottom: 16px; }
  .koa-letters {
    flex-wrap: nowrap;
    gap: 0;
    margin-bottom: 12px;
    overflow: hidden;
  }
  .koa-letter {
    font-size: clamp(17px, 4.8vw, 26px);
    letter-spacing: -.04em;
  }
  .koa-letter.accent {
    font-size: clamp(20px, 5.6vw, 32px);
  }
  .koa-gap { width: 6px; flex-shrink: 0; }
  .story-steps h3 { font-size: 22px; }
  .story-close-actions { flex-direction: column; }
  .story-close-actions .button { width: 100%; }
  .story-belief { padding: 80px 0; }
}

/* ===== Board ===== */
.board-hero {
  padding: 88px 0 40px;
  background: linear-gradient(180deg, #f7fbf8 0%, #fff 100%);
}
.board-hero-inner { max-width: 720px; }
.board-hero h1 {
  margin: 14px 0 16px;
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -.04em;
  font-weight: 850;
}
.board-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  max-width: 620px;
}
.board-section { padding: 24px 0 110px; }
.board-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, .85fr);
  gap: 28px;
  align-items: start;
}
.board-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.board-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f7faf8;
}
.board-tab {
  flex: 1;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #5f676c;
  font: inherit;
  font-size: 15px;
  font-weight: 750;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.board-tab.active {
  background: #fff;
  color: var(--green-dark);
  box-shadow: 0 6px 18px rgba(27, 56, 35, .08);
}
.board-badge {
  display: inline-block;
  margin-right: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #e8f7ec;
  color: var(--green-dark);
  font-family: var(--font-display);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .04em;
  vertical-align: middle;
}
.board-item.notice {
  background: #fbfefc;
}
.board-toolbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.board-toolbar h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
}
.board-list,
.board-detail,
.board-panel {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(27, 56, 35, .05);
}
.board-compose {
  padding: 28px;
}
.board-compose-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 4px;
}
.board-list { padding: 8px; }
.board-item {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  border-radius: 10px;
  padding: 18px 16px;
  cursor: pointer;
  transition: background .2s;
}
.board-item:hover { background: var(--green-soft); }
.board-item + .board-item { border-top: 1px solid var(--line); }
.board-item-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
}
.board-item-top strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 750;
}
.board-item-top span,
.board-item-meta,
.board-post-meta {
  color: var(--soft-text);
  font-size: 13px;
  font-weight: 650;
}
.board-item p {
  margin: 8px 0 10px;
  color: #5f676c;
  font-size: 15px;
  line-height: 1.5;
}
.board-item-meta,
.board-post-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.board-empty {
  margin: 0;
  padding: 28px 20px;
  color: var(--soft-text);
  text-align: center;
}
.board-detail { padding: 24px; }
.board-back { margin-bottom: 18px; }
.board-post h3 {
  margin: 10px 0 16px;
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -.03em;
  font-weight: 800;
}
.board-post-body {
  margin: 0;
  color: #3d4448;
  font-size: 17px;
  line-height: 1.7;
  white-space: pre-wrap;
}
.board-post-actions {
  display: flex;
  gap: 10px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.board-danger {
  color: #b42318 !important;
  border-color: #f0c2bd !important;
}
.board-danger:hover {
  border-color: #e39b93 !important;
  background: #fff7f6 !important;
}
.board-replies { margin-top: 28px; }
.board-replies h4 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 18px;
}
.board-reply {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-bottom: 10px;
  background: #fafbfa;
}
.board-reply.staff {
  border-color: #b8e4c2;
  background: #f3faf5;
}
.board-reply p {
  margin: 8px 0 0;
  line-height: 1.6;
  color: #3d4448;
}
.board-reply-form { margin-top: 18px; }
.board-aside { display: grid; gap: 18px; }
.board-panel { padding: 24px; }
.board-panel h3 {
  margin: 10px 0 8px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
}
.board-panel > p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
}
.board-form {
  display: grid;
  gap: 14px;
}
.board-form[hidden],
#guestAuth[hidden],
#accountBox[hidden],
#composePanel[hidden],
#postDetail[hidden],
#postList[hidden],
#newPostBtn[hidden],
#cancelComposeBtn[hidden],
.board-user-chip[hidden] {
  display: none !important;
}
.board-form label {
  display: grid;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #4f5752;
}
.board-form input,
.board-form textarea {
  width: 100%;
  border: 1px solid #d7ddd8;
  border-radius: 8px;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--ink);
  background: #fff;
}
.board-form input:focus,
.board-form textarea:focus {
  outline: 2px solid rgba(34, 184, 75, .28);
  border-color: #8fd49d;
}
.board-check {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600 !important;
  grid-template-columns: none;
}
.board-check input {
  width: auto;
  margin-top: 3px;
}
.board-switch {
  justify-self: start;
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
}
.board-user-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 750;
}
.board-account-name {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
}
.board-account-email {
  margin: 0 0 16px;
  color: var(--soft-text);
  font-size: 14px;
}
.board-member-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 16px 0 18px;
}
.board-member-summary > div {
  text-align: center;
  padding: 12px 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7faf8;
}
.board-member-summary b {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1.1;
}
.board-member-summary span {
  display: block;
  margin-top: 6px;
  color: var(--soft-text);
  font-size: 12px;
  font-weight: 700;
}
.board-member-list {
  display: grid;
  gap: 10px;
  max-height: 420px;
  overflow: auto;
}
.board-member-item {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.board-member-item strong {
  display: block;
  font-size: 15px;
  font-weight: 750;
}
.board-member-item > div > span {
  display: block;
  margin-top: 4px;
  color: var(--soft-text);
  font-size: 13px;
}
.board-member-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 8px;
  color: #7a8288;
  font-size: 12px;
  font-weight: 650;
}
#membersPanel[hidden] {
  display: none !important;
}
.board-auth-trigger {
  border: 0;
  background: none;
  cursor: pointer;
  padding: 0;
}

@media (max-width: 980px) {
  .board-layout { grid-template-columns: 1fr; }
  .board-hero { padding-top: 72px; }
}

@media (max-width: 650px) {
  .board-hero {
    padding: 56px 0 12px;
  }
  .board-hero h1 {
    margin: 10px 0 10px;
  }
  .board-section {
    padding: 4px 0 56px;
  }
  .board-tabs {
    margin-bottom: 14px;
  }
  .board-toolbar {
    margin-bottom: 12px;
  }
  .board-aside {
    gap: 12px;
    margin-top: 4px;
  }
  .board-panel {
    padding: 18px;
  }
}
