:root {
  --ivory: #f8f2ea;
  --linen: #eee3d6;
  --mist: #f4e8e7;
  --ink: #241f1b;
  --muted: #675c52;
  --soft: rgba(255, 251, 246, 0.72);
  --strong: rgba(255, 250, 243, 0.9);
  --line: rgba(74, 58, 43, 0.14);
  --gold: #8c6a3f;
  --rose: #b77d87;
  --sage: #60766c;
  --shadow: 0 22px 70px rgba(60, 43, 28, 0.12);
  --radius: 8px;
  --max-width: 1180px;
  --font-display: "Cormorant Garamond", "Noto Serif SC", "Songti SC", "STSong", serif;
  --font-body: "Noto Sans SC", "Manrope", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --font-serif-cn: "Noto Serif SC", "Songti SC", "STSong", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(246, 228, 228, 0.28) 44%, rgba(229, 231, 220, 0.34)),
    linear-gradient(180deg, var(--ivory), var(--linen));
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(36, 31, 27, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(36, 31, 27, 0.025) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 72%);
}

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

.scene-shell {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.scene-canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.scene-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(248, 242, 234, 0.92) 0%, rgba(248, 242, 234, 0.68) 38%, rgba(248, 242, 234, 0.2) 100%),
    linear-gradient(180deg, rgba(248, 242, 234, 0.18), rgba(238, 227, 214, 0.42));
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding-bottom: 48px;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 12px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 243, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand-lockup {
  display: flex;
  align-items: baseline;
  gap: 10px;
  white-space: nowrap;
}

.brand-mark,
.brand-subtitle,
h1,
h2,
h3 {
  font-family: var(--font-display);
}

.brand-mark {
  font-size: 2rem;
  font-weight: 400;
}

.brand-subtitle {
  font-family: var(--font-serif-cn);
  color: var(--muted);
  font-weight: 300;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 300;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(280px, 0.56fr);
  gap: 42px;
  align-items: center;
  min-height: 78vh;
  padding: 88px 0 54px;
  animation: rise-in 800ms ease both;
}

.hero-inner {
  max-width: 820px;
}

.hero-illustration {
  justify-self: end;
  width: min(100%, 430px);
  border: 0;
  background: transparent;
  box-shadow: none;
  transform: translateY(18px);
  opacity: 0.9;
  mask-image: radial-gradient(circle at 55% 50%, #000 0%, #000 58%, rgba(0, 0, 0, 0.72) 74%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle at 55% 50%, #000 0%, #000 58%, rgba(0, 0, 0, 0.72) 74%, transparent 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: 5.3rem;
  line-height: 0.95;
  font-weight: 300;
}

h2 {
  margin: 0;
  font-size: 3.2rem;
  line-height: 1.04;
  font-weight: 300;
}

h3 {
  margin: 0;
  font-size: 1.72rem;
  line-height: 1.08;
  font-weight: 400;
}

p {
  margin: 0;
}

.hero-text {
  max-width: 760px;
  margin-top: 26px;
  color: var(--ink);
  font-size: 1.16rem;
  line-height: 1.95;
  font-family: var(--font-serif-cn);
  font-weight: 300;
}

.hero-subtext {
  max-width: 690px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
}

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

.metric-pill {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 243, 0.64);
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: #fffaf3;
  background: linear-gradient(135deg, #6f5533, #9b7645);
  box-shadow: 0 16px 34px rgba(111, 85, 51, 0.18);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 250, 243, 0.64);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.proof-strip p {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  background: rgba(255, 250, 243, 0.76);
  color: var(--muted);
  text-align: center;
  font-size: 0.92rem;
}

.section {
  padding: 92px 0;
}

.section-kicker {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 34px;
}

.section-kicker .eyebrow {
  margin-bottom: 0;
}

.compact-heading {
  display: block;
  max-width: 760px;
}

.compact-heading .eyebrow {
  margin-bottom: 14px;
}

.compact-heading > p:not(.eyebrow) {
  max-width: 700px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.9;
}

.character-section {
  overflow: hidden;
}

.character-marquee {
  position: relative;
  width: 100%;
  margin-top: 30px;
  overflow: hidden;
  padding: 16px 0 22px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.character-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: character-scroll 44s linear infinite;
}

.character-marquee:hover .character-track {
  animation-play-state: paused;
}

.character-card {
  position: relative;
  overflow: hidden;
  width: 286px;
  min-height: 568px;
  padding: 18px 18px 22px;
  border: 1px solid rgba(140, 106, 63, 0.18);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.98), rgba(255, 250, 243, 0.5) 44%, transparent 68%),
    radial-gradient(ellipse at 50% 74%, rgba(193, 125, 143, 0.2), transparent 42%),
    linear-gradient(180deg, rgba(255, 250, 243, 0.76), rgba(238, 227, 214, 0.42));
  box-shadow: 0 24px 80px rgba(60, 43, 28, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.character-card::after {
  content: "";
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 132px;
  height: 34px;
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(92, 65, 43, 0.18), transparent 68%);
  filter: blur(8px);
}

.character-spotlight {
  position: absolute;
  inset: 10px 24px 128px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.96), rgba(244, 220, 188, 0.34) 50%, transparent 74%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent);
  filter: blur(1px);
}

.character-card img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 426px;
  object-fit: contain;
  object-position: center bottom;
  transform: scale(1.08) translateY(8px);
  filter: drop-shadow(0 28px 30px rgba(60, 43, 28, 0.2));
}

.character-copy {
  position: relative;
  z-index: 3;
  min-height: 112px;
  margin-top: -2px;
  padding: 15px 16px 16px;
  border: 1px solid rgba(74, 58, 43, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.82), rgba(246, 232, 220, 0.6)),
    rgba(255, 250, 243, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.character-copy h3 {
  font-family: var(--font-serif-cn);
  font-size: 1.42rem;
}

.character-copy p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.product-section {
  position: relative;
  padding-bottom: 58px;
}

.product-heading {
  max-width: 920px;
  margin-bottom: 30px;
}

.product-heading h2 {
  max-width: 880px;
}

.product-heading p:last-child {
  max-width: 690px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.9;
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.68fr);
  gap: 28px;
  align-items: stretch;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 250, 243, 0.84), rgba(255, 250, 243, 0.56)),
    radial-gradient(circle at 78% 22%, rgba(183, 125, 135, 0.12), transparent 36%);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.product-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 296px;
  padding: 8px 12px 8px 22px;
  border-left: 2px solid var(--gold);
}

.product-copy span {
  margin-bottom: 22px;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 400;
  text-transform: uppercase;
}

.product-copy p {
  max-width: 660px;
  color: var(--muted);
  font-family: var(--font-serif-cn);
  font-size: 1.12rem;
  line-height: 2;
  font-weight: 300;
}

.product-copy p + p {
  margin-top: 18px;
}

.definition-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.notion-illustration,
.service-art {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 243, 0.72);
  box-shadow: 0 18px 54px rgba(60, 43, 28, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.notion-illustration img,
.service-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-illustration {
  display: flex;
  align-items: center;
  aspect-ratio: 1.45;
  min-height: 236px;
}

.product-showcase .product-illustration {
  border: 0;
  background: transparent;
  min-height: 296px;
  box-shadow: none;
  opacity: 0.92;
  mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 100%);
}

.day-illustration {
  border: 0;
  background: transparent;
  box-shadow: none;
  max-width: 520px;
  margin-bottom: 22px;
  aspect-ratio: 1.6;
  opacity: 0.92;
  mask-image: radial-gradient(circle at 50% 50%, #000 0%, #000 66%, rgba(0, 0, 0, 0.6) 84%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 0%, #000 66%, rgba(0, 0, 0, 0.6) 84%, transparent 100%);
}

.service-art {
  align-self: stretch;
  aspect-ratio: 1.28;
  min-height: 154px;
}

.definition-points article,
.service-item,
.pricing-card,
.closing-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.definition-points article {
  padding: 20px;
}

.definition-points span,
.tier-badge {
  display: block;
  margin-bottom: 8px;
  color: var(--sage);
  font-size: 0.76rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.definition-points strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
}

.service-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.services-section {
  padding-top: 58px;
}

.service-item {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  margin-top: 14px;
  min-height: 176px;
  padding: 32px 330px 32px 24px;
  background:
    linear-gradient(90deg, rgba(255, 250, 243, 0.86) 0%, rgba(255, 250, 243, 0.78) 58%, rgba(255, 250, 243, 0.34) 100%),
    var(--soft);
}

.service-item > span,
.service-item > div {
  position: relative;
  z-index: 2;
}

.service-number {
  color: var(--rose);
  font-family: var(--font-display);
  font-size: 2.3rem;
  line-height: 1;
}

.service-item p,
.day-copy p,
.pricing-card p,
.closing-panel p,
.footnote {
  color: var(--muted);
  line-height: 1.9;
}

.service-item p {
  margin-top: 10px;
  max-width: 820px;
}

.service-item .service-art {
  position: absolute;
  top: 50%;
  right: 24px;
  z-index: 1;
  width: 280px;
  height: calc(100% - 34px);
  min-height: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  box-shadow: none;
  opacity: 0.92;
  transform: translateY(-50%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.72) 18%, #000 42%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.72) 18%, #000 42%);
}

.service-item .service-art img {
  transform: scale(1.16);
  transform-origin: center;
}

.day-section {
  position: relative;
}

.day-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 28px;
}

.day-copy {
  padding-top: 8px;
}

.day-copy p {
  font-size: 1.05rem;
}

.day-copy p + p {
  margin-top: 18px;
}

.day-steps {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.day-steps div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 72px;
  padding: 16px;
  background: rgba(255, 250, 243, 0.7);
}

.day-steps span {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.day-steps p {
  color: var(--ink);
  line-height: 1.55;
}

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

.pricing-card {
  padding: 24px;
}

.featured {
  background: var(--strong);
  border-color: rgba(140, 106, 63, 0.28);
}

.tier-name {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--ink);
}

.tier-price {
  margin: 0;
  color: var(--ink);
  font-size: 1.9rem;
  font-weight: 400;
}

.tier-price span {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 300;
}

.tier-copy {
  margin-top: 12px;
}

.pricing-card ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.5;
}

.closing-section {
  padding-bottom: 20px;
}

.closing-panel {
  max-width: 880px;
  margin: 0 auto;
  padding: 38px;
  text-align: center;
  background: var(--strong);
}

.closing-panel .hero-actions {
  justify-content: center;
}

.footnote {
  margin-top: 18px;
  font-size: 0.86rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: start;
  margin-top: 56px;
  padding: 28px 0 8px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer .brand-mark {
  color: var(--ink);
}

.site-footer p {
  margin-top: 8px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  font-size: 0.92rem;
}

.site-footer .footnote {
  grid-column: 1 / -1;
  max-width: 760px;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes character-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

@media (max-width: 980px) {
  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 70px 0 42px;
  }

  .hero-illustration {
    justify-self: start;
    width: min(100%, 430px);
    transform: none;
  }

  .proof-strip,
  .product-showcase,
  .day-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .definition-points {
    grid-template-columns: 1fr;
  }

  .character-card {
    width: 250px;
    min-height: 526px;
  }

  .character-card img {
    height: 386px;
  }

  .section-kicker {
    display: block;
  }

  .section-kicker .eyebrow {
    margin-bottom: 14px;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
  }

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

  .site-nav {
    gap: 14px;
  }

  h1 {
    font-size: 3.1rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .section {
    padding: 68px 0;
  }

  .definition-lead,
  .product-showcase,
  .service-item,
  .pricing-card,
  .closing-panel {
    padding: 20px;
  }

  .product-copy {
    min-height: auto;
    padding: 4px 0 4px 16px;
  }

  .product-copy p {
    font-size: 1rem;
  }

  .product-showcase .product-illustration {
    min-height: auto;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: auto;
    padding: 20px;
  }

  .hero-illustration {
    width: min(100%, 240px);
  }

  .service-item .service-art {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: 180px;
    margin-top: 10px;
    opacity: 0.9;
    transform: none;
    mask-image: linear-gradient(180deg, #000 0%, #000 78%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 78%, transparent 100%);
  }

  .day-steps div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
