:root {
  --bg: #fbf7f0;
  --bg-soft: #fffdf9;
  --text: #111111;
  --muted: #676767;
  --line: rgba(17, 17, 17, 0.08);
  --line-strong: rgba(17, 17, 17, 0.14);
  --card: rgba(255, 255, 255, 0.78);
  --primary: #111111;
  --primary-contrast: #ffffff;
  --soft-shadow: 0 20px 60px rgba(17, 17, 17, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  position: relative;
}

.bgAura {
  position: fixed;
  width: 540px;
  height: 540px;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.45;
  pointer-events: none;
  z-index: -1;
}

.bgAuraOne {
  top: -120px;
  right: -120px;
  background: rgba(255, 198, 221, 0.6);
}

.bgAuraTwo {
  bottom: -180px;
  left: -150px;
  background: rgba(218, 239, 255, 0.6);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(var(--container), calc(100vw - 32px));
  margin: 0 auto;
}

.row { display: flex; }
.between { justify-content: space-between; }
.center { align-items: center; }
.wrap { flex-wrap: wrap; }
.gap-sm { gap: 8px; }
.gap-lg { gap: 18px; }

.siteHeader {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(251, 247, 240, 0.82);
  border-bottom: 1px solid var(--line);
}

.siteHeader .container { min-height: 88px; }

.logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 6px 0 6px 2px;
  transition: transform 140ms ease, opacity 140ms ease;
}

.logo::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 50%;
  width: 76px;
  height: 76px;
  transform: translateY(-50%);
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 236, 207, 0.92) 0%, rgba(255, 236, 207, 0) 58%),
    radial-gradient(circle at 72% 72%, rgba(238, 221, 255, 0.9) 0%, rgba(238, 221, 255, 0) 62%);
  filter: blur(14px);
  opacity: 0.95;
  pointer-events: none;
  z-index: 0;
}

.logo:hover {
  transform: translateY(-1px);
}

.logo > * {
  position: relative;
  z-index: 1;
}

.logoMark {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff0d7 0%, #f2ddff 100%);
  display: inline-grid;
  place-items: center;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.06);
  font-size: 22px;
  flex: none;
}

.logoMarkImage {
  width: 56px;
  height: 56px;
  display: block;
  flex: none;
  filter: drop-shadow(0 14px 26px rgba(195, 156, 184, 0.2));
  transform: translateZ(0);
}

.logo strong {
  display: block;
  font-size: 18px;
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 700;
}

.logo em {
  display: block;
  margin-top: 2px;
  font-style: normal;
  font-size: 12px;
  line-height: 1.2;
  color: var(--muted);
  letter-spacing: -0.01em;
}

.mainNav {
  display: inline-flex;
  gap: 24px;
  font-size: 15px;
  color: #2d2d2d;
}

.headerActions { display: inline-flex; gap: 10px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease, background 140ms ease;
}

.button:hover { transform: translateY(-1px); }

.buttonPrimary {
  background: var(--primary);
  color: var(--primary-contrast);
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.18);
}

.buttonGhost {
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line-strong);
  color: var(--text);
}

.buttonDark { background: #222; color: #fff; }
.buttonWide { width: 100%; }

.section { padding: 72px 0; }
.sectionSoft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.38) 0%, rgba(255, 255, 255, 0.62) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero { padding: 84px 0 52px; }
.heroGrid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 28px;
  align-items: center;
}

.heroCopy h1,
.pageHead h1,
.panel h1,
.prose h1 {
  font-size: clamp(42px, 7vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  margin: 12px 0 18px;
}

.heroText, .muted.wide, .lead {
  font-size: 18px;
  line-height: 1.65;
  color: #333;
  max-width: 760px;
}

.heroActions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 32px;
}

.heroStats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.statBox, .heroCard, .stepCard, .storyCard, .panel, .dreamCard, .supportBox, .emptyState {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(12px);
}

.statBox { padding: 18px; border-radius: 18px; }
.statBox strong { display: block; font-size: 24px; line-height: 1.1; }
.statBox span { display: block; color: var(--muted); margin-top: 6px; font-size: 14px; }

.heroCards { display: grid; gap: 16px; }

.heroCard { padding: 26px; border-radius: var(--radius-xl); }
.heroCardSoft { background: linear-gradient(180deg, rgba(255,255,255,0.86) 0%, rgba(255,242,222,0.72) 100%); }

.heroCard h2, .sectionHead h2, .pageHead h1, .panel h2, .panel h3, .prose h1, .prose h2, .authGrid h1, .authGrid h2, .supportTitle {
  margin: 0 0 10px;
  letter-spacing: -0.04em;
}

.heroCard p, .stepCard p, .storyCard p, .panel p, .prose p, .prose li, .muted {
  color: var(--muted);
  line-height: 1.68;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #666;
}

.sectionHead, .pageHead {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 24px;
}

.pageHead { flex-direction: column; align-items: start; }

.cardsGrid, .storyGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.howGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.stepCard { padding: 24px; border-radius: var(--radius-lg); }
.stepCard strong {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff1d7 0%, #efdfff 100%);
  margin-bottom: 14px;
}

.storyCard { padding: 24px; border-radius: var(--radius-lg); }
.storyNumbers { display: flex; gap: 12px; align-items: baseline; margin: 14px 0; }
.storyNumbers strong { font-size: 28px; line-height: 1; }

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: #111;
  color: white;
  font-size: 13px;
  font-weight: 600;
}

.chipSoft {
  background: rgba(17, 17, 17, 0.06);
  color: var(--text);
}

.chipSuccess {
  background: linear-gradient(135deg, #dff7e8 0%, #eefbf2 100%);
  color: #215c37;
}

.dreamCard {
  display: grid;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.dreamCoverLink, .dreamDetailCover {
  position: relative;
  min-height: 240px;
  background: #f3ede4;
}

.dreamCoverImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dreamCoverFallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 26px;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #222;
}

.dreamBody {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.dreamTitle { font-size: 26px; line-height: 1.05; margin: 0; letter-spacing: -0.04em; }
.dreamText { margin: 0; color: var(--muted); }

.progressWrap { display: flex; align-items: center; gap: 10px; }
.progressTrack {
  flex: 1;
  height: 12px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.08);
  overflow: hidden;
}
.progressFill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #111111 0%, #555555 100%);
}
.progressValue { font-size: 13px; color: var(--muted); }

.dreamNumbers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.dreamNumbers.twoCols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.dreamNumbers div { display: grid; gap: 4px; }
.dreamNumbers strong { font-size: 22px; line-height: 1; }
.dreamNumbers span, .dreamBy, .footerLinks a, .footerTitle, .supporterItem p, .timelineItem span { color: var(--muted); }

.dreamBottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.textLink { color: #111; font-weight: 600; }

.field {
  display: grid;
  gap: 8px;
}

.field span {
  font-size: 14px;
  color: #353535;
  font-weight: 600;
}

.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  outline: none;
  transition: border-color 140ms ease, box-shadow 140ms ease;
}

.field input:focus, .field select:focus, .field textarea:focus {
  border-color: rgba(17, 17, 17, 0.32);
  box-shadow: 0 0 0 4px rgba(17, 17, 17, 0.06);
}

.notice {
  padding: 14px 16px;
  border-radius: 16px;
  background: #eef7ff;
  color: #18486d;
  margin: 18px 0 0;
  border: 1px solid rgba(24, 72, 109, 0.08);
}

.flashStack { padding-top: 18px; display: grid; gap: 12px; }
.noticeError {
  background: #fff0f0;
  color: #7d2424;
  border-color: rgba(125, 36, 36, 0.1);
}

.authGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.panel, .supportBox, .emptyState {
  border-radius: var(--radius-xl);
  padding: 28px;
}

.panelSoft {
  background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(255,243,228,0.82) 100%);
}

.panelTop { margin-bottom: 18px; }

.filters {
  display: grid;
  grid-template-columns: 2fr 1fr auto;
  gap: 12px;
  margin-bottom: 22px;
  align-items: end;
}

.emptyState { text-align: center; }

.dreamPageGrid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 24px;
  align-items: start;
}

.dreamMain, .dreamSide { display: grid; gap: 20px; }

.dreamHeroCard {
  overflow: hidden;
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--line);
  border-radius: 36px;
  box-shadow: var(--soft-shadow);
}

.dreamDetailBody {
  display: grid;
  gap: 16px;
  padding: 26px 26px 30px;
}

.readable { white-space: pre-line; }

.supportBox {
  position: sticky;
  top: 100px;
}

.supportTitle {
  font-size: 28px;
  line-height: 1.04;
}

.amountGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 6px;
}

.amountChip {
  min-height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: rgba(255,255,255,0.82);
  font: inherit;
  cursor: pointer;
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease;
}

.amountChip:hover { transform: translateY(-1px); }

.amountChipActive {
  background: #111;
  color: white;
  border-color: #111;
}

.checkLine {
  display: flex;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 14px;
}

.checkLine input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.supporters { display: grid; gap: 12px; }
.supporterItem { padding: 14px 0; border-top: 1px solid var(--line); }

.timeline { display: grid; gap: 16px; }
.timelineItem {
  padding-left: 18px;
  border-left: 2px solid rgba(17, 17, 17, 0.12);
}
.timelineItem strong { display: block; margin-bottom: 4px; }

.gridCols, .profileGrid, .footerGrid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 20px;
}

.footerGrid { grid-template-columns: 1.4fr 1fr 1fr; }
.profileGrid { align-items: start; }

.siteFooter {
  padding: 36px 0 60px;
  border-top: 1px solid var(--line);
  margin-top: 64px;
}

.footerBrand {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.04em;
}

.footerTitle {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
}

.footerLinks { display: grid; gap: 10px; }

.prose {
  max-width: 860px;
}

.prose h2 { margin-top: 28px; font-size: 28px; }
.prose ul {
  padding-left: 22px;
  line-height: 1.75;
  color: var(--muted);
}

.centerBox {
  text-align: center;
  justify-items: center;
}

.lineCard {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.lineCardColumn { display: grid; align-items: start; }

.adminActions { display: flex; flex-wrap: wrap; gap: 10px; }
.tiny { font-size: 13px; }

@media (max-width: 1024px) {
  .heroGrid, .cardsGrid, .storyGrid, .howGrid, .authGrid, .filters, .dreamPageGrid, .gridCols, .profileGrid, .footerGrid {
    grid-template-columns: 1fr;
  }
  .supportBox { position: static; }
  .heroStats, .dreamNumbers { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mainNav { display: none; }
}

@media (max-width: 700px) {
  .siteHeader .container { min-height: 76px; }
  .hero { padding-top: 48px; }
  .section { padding: 54px 0; }
  .heroStats, .dreamNumbers, .amountGrid { grid-template-columns: 1fr; }
  .panel, .supportBox, .emptyState, .heroCard, .statBox, .dreamBody { padding: 20px; }
  .headerActions .buttonGhost { display: none; }

  .logo {
    gap: 10px;
    padding-left: 0;
  }

  .logo::before {
    width: 64px;
    height: 64px;
    left: -4px;
    filter: blur(12px);
  }

  .logoMark,
  .logoMarkImage {
    width: 48px;
    height: 48px;
  }

  .logo em { display: none; }
}

.stack {
  display: grid;
  gap: 14px;
}

.chipInfo {
  background: rgba(17, 17, 17, 0.08);
  color: #333;
}

.chipWarn {
  background: linear-gradient(135deg, #fff1d6 0%, #fff8ef 100%);
  color: #8b5b06;
}

.trustBox {
  background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(241,246,255,0.86) 100%);
}

.trustList {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.7;
}

.reportPanel {
  background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(255,247,239,0.88) 100%);
}

.miniNote {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--line);
}

.miniNote strong {
  font-size: 14px;
  letter-spacing: -0.02em;
}

.miniNote p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}


.panelHeading {
  margin: 0;
  letter-spacing: -0.04em;
}

.panelHeadingLarge {
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.02;
}

.pageHeadCompact {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.emptyStateCompact {
  padding: 28px;
  border-radius: 24px;
}

.sectionSubheading {
  margin-top: 28px;
}

.categoryAccentStudy {
  background: linear-gradient(135deg, #ffd6e8 0%, #fff7ce 100%);
}

.categoryAccentWork {
  background: linear-gradient(135deg, #d8f1ff 0%, #e9fff4 100%);
}

.categoryAccentPet {
  background: linear-gradient(135deg, #ffe7cf 0%, #fffaf0 100%);
}

.categoryAccentHome {
  background: linear-gradient(135deg, #efe4ff 0%, #f8f6ff 100%);
}