:root {
  --paper: #f6f1e6;
  --paper-soft: #e7f0e5;
  --ink: #22302a;
  --muted: #6d756a;
  --line: rgba(34, 48, 42, 0.12);
  --sage: #759173;
  --tea: #d69d58;
  --coral: #d17862;
  --sky: #98c5cf;
  --mint: #d8eadf;
  --peach: #f6d7bd;
  --butter: #f8e9ad;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(63, 78, 67, 0.12);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    repeating-linear-gradient(90deg, rgba(34, 48, 42, 0.018) 0 1px, transparent 1px 76px),
    linear-gradient(180deg, #f7efd8 0, #edf4e8 36rem, #e8f2f2 74rem, var(--paper) 100%);
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem clamp(1rem, 4vw, 4rem);
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 16px rgba(42, 46, 36, 0.24);
}

.brand {
  font-size: 1rem;
  font-weight: 750;
  transform: rotate(-1deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(58, 74, 65, 0.2);
  box-shadow: 0 10px 30px rgba(28, 50, 47, 0.12);
  backdrop-filter: blur(16px);
}

.site-nav a {
  display: inline-flex;
  min-height: 2rem;
  align-items: center;
  justify-content: center;
  padding: 0 0.78rem;
  border-radius: 999px;
  font-size: 0.9rem;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  outline: none;
}

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  align-items: end;
  padding: 7.5rem clamp(1.25rem, 5vw, 5rem) 6.4rem;
  color: var(--white);
  background: #9ec9cb;
}

.hero-canvas,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-canvas {
  z-index: -4;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(38, 49, 42, 0.6), rgba(38, 49, 42, 0.2) 46%, rgba(38, 49, 42, 0.02)),
    linear-gradient(180deg, rgba(38, 49, 42, 0.04), rgba(31, 48, 43, 0.48));
}

.hero-inner {
  width: min(48rem, 100%);
  transform: rotate(-0.4deg);
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.9rem;
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: 0;
}

.eyebrow {
  color: rgba(255, 248, 225, 0.8);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 1.15rem;
  font-size: 5.8rem;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 12px 40px rgba(32, 42, 35, 0.22);
}

.hero-copy {
  max-width: 39rem;
  margin-bottom: 2rem;
  font-size: 1.35rem;
  line-height: 1.65;
  color: rgba(255, 250, 236, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 2.9rem;
  align-items: center;
  justify-content: center;
  padding: 0 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  font-size: 0.98rem;
  font-weight: 720;
  white-space: nowrap;
  overflow: hidden;
  transition:
    transform 260ms ease,
    background 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.button::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0));
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.2);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px) rotate(-0.3deg);
  outline: none;
}

.button:active {
  transform: translateY(1px) scale(0.99);
}

.button-primary {
  background: #fff7df;
  color: var(--ink);
  border-color: #fff7df;
  box-shadow: 0 14px 34px rgba(50, 68, 56, 0.18);
}

.button-quiet {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.scroll-cue {
  position: absolute;
  right: clamp(1.25rem, 5vw, 5rem);
  bottom: 2rem;
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.scroll-cue span {
  width: 0.62rem;
  height: 0.62rem;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg) translate(-1px, -1px);
}

.section {
  width: min(72rem, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 5rem 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.45fr);
  gap: 2rem;
  align-items: center;
}

.section-kicker {
  color: var(--sage);
}

h2 {
  margin-bottom: 0;
  font-size: 2.6rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.section-copy {
  max-width: 45rem;
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.9;
}

.now-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  margin-top: 2.4rem;
  align-items: start;
}

.status-card,
.daily-card {
  --paper-rotate: 0deg;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 252, 240, 0.78);
  box-shadow: var(--shadow);
  transition:
    transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 520ms ease,
    border-color 520ms ease;
  transform: rotate(var(--paper-rotate));
}

.status-card {
  min-height: 13rem;
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.status-card:nth-child(1) {
  background: rgba(255, 247, 214, 0.82);
  --paper-rotate: -0.6deg;
}

.status-card:nth-child(2) {
  margin-top: 1.2rem;
  background: rgba(219, 237, 226, 0.86);
  --paper-rotate: 0.5deg;
}

.status-card:nth-child(3) {
  margin-top: 0.35rem;
  background: rgba(237, 225, 247, 0.64);
  --paper-rotate: -0.25deg;
}

.status-card p {
  margin-bottom: 1.4rem;
  color: var(--sage);
  font-size: 0.9rem;
  font-weight: 760;
}

.status-card strong {
  display: block;
  margin-bottom: 0.8rem;
  font-size: 1.42rem;
  line-height: 1.24;
}

.status-card span {
  margin-top: auto;
  color: var(--muted);
  line-height: 1.75;
}

.daily-section {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(18rem, 1.25fr);
  gap: 3.2rem;
  align-items: start;
  border-top: 1px dashed rgba(34, 48, 42, 0.18);
}

.daily-lead {
  position: sticky;
  top: 6rem;
}

.daily-lead p:not(.section-kicker) {
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.85;
}

.daily-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
  align-items: start;
}

.daily-card {
  min-height: 14rem;
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.daily-card::before {
  content: "";
  position: absolute;
  top: 0.75rem;
  left: 50%;
  width: 4.4rem;
  height: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 3px;
  background: rgba(255, 239, 186, 0.62);
  box-shadow: 0 3px 10px rgba(72, 59, 38, 0.08);
  transform: translateX(-50%) rotate(-2deg);
}

.daily-card::after {
  content: "";
  position: absolute;
  left: 1.3rem;
  bottom: 1rem;
  width: 3.6rem;
  height: 0.38rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(117, 145, 115, 0), rgba(117, 145, 115, 0.36), rgba(117, 145, 115, 0));
  opacity: 0;
  pointer-events: none;
  transform: translateX(-0.4rem);
}

.daily-card-large {
  grid-column: 1 / -1;
  min-height: 18rem;
  background: rgba(255, 249, 226, 0.88);
  --paper-rotate: -0.35deg;
}

.daily-card:not(.daily-card-large):nth-child(2) {
  margin-top: 0.85rem;
  background: rgba(225, 241, 239, 0.86);
  --paper-rotate: 0.45deg;
}

.holiday-card {
  background: rgba(248, 226, 211, 0.8);
  --paper-rotate: -0.35deg;
}

.daily-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.35rem;
  padding-top: 0.6rem;
}

.daily-card-head p,
.daily-card-head span {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 760;
}

.daily-card-head p {
  color: #6f896b;
}

.daily-card-head span {
  color: #c56c58;
  white-space: nowrap;
}

.daily-card h3 {
  margin: 0 0 0.85rem;
  font-size: 1.45rem;
  line-height: 1.35;
}

.daily-card p:not(.daily-quote),
.daily-quote {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.75;
}

.daily-quote {
  margin-top: auto;
  font-size: 1.18rem;
  color: var(--ink);
}

.holiday-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: auto;
  padding-top: 1.3rem;
}

.holiday-chips span {
  min-height: 2.25rem;
  display: inline-flex;
  align-items: center;
  padding: 0 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 252, 240, 0.7);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.daily-card h3,
.daily-card p,
.daily-card span,
.holiday-chips span {
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    filter 220ms ease;
}

.site-footer {
  width: min(72rem, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 1.5rem 0 2.25rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

@keyframes lazyDrop {
  from {
    opacity: 0;
    transform: translateY(-0.8rem);
  }

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

@keyframes lazyRise {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(1.4rem) rotate(-0.6deg);
  }

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

@keyframes sleepyCue {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(0.35rem);
  }
}

@keyframes tapeBreath {
  0%,
  100% {
    opacity: 0.7;
    transform: translateX(-50%) rotate(-2deg) scale(1);
  }

  50% {
    opacity: 0.95;
    transform: translateX(-50%) rotate(-1deg) scale(1.03);
  }
}

@keyframes paperNap {
  0%,
  100% {
    box-shadow: var(--shadow);
  }

  50% {
    box-shadow: 0 24px 58px rgba(63, 78, 67, 0.15);
  }
}

@keyframes loadingLine {
  0% {
    opacity: 0;
    transform: translateX(-0.5rem) scaleX(0.75);
  }

  45% {
    opacity: 0.8;
  }

  100% {
    opacity: 0;
    transform: translateX(2.2rem) scaleX(1);
  }
}

@keyframes lazyTap {
  0% {
    opacity: 0.65;
    transform: translate(-50%, -50%) scale(0.2);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(9);
  }
}

@keyframes freshText {
  0% {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(0.45rem);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .motion-ready .site-header {
    animation: lazyDrop 900ms ease both;
  }

  .motion-ready .hero-inner .eyebrow,
  .motion-ready .hero-inner h1,
  .motion-ready .hero-copy,
  .motion-ready .hero-actions {
    animation: lazyRise 1100ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .motion-ready .hero-inner h1 {
    animation-delay: 120ms;
  }

  .motion-ready .hero-copy {
    animation-delay: 260ms;
  }

  .motion-ready .hero-actions {
    animation-delay: 420ms;
  }

  .motion-ready .scroll-cue {
    animation: sleepyCue 3.4s ease-in-out infinite;
  }

  .motion-ready .reveal-item {
    opacity: 0;
    filter: blur(5px);
    transform: translate3d(0, 1.6rem, 0) rotate(var(--paper-rotate));
    transition:
      opacity 980ms ease,
      filter 980ms ease,
      transform 980ms cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--reveal-delay, 0ms);
  }

  .motion-ready .reveal-item.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) rotate(var(--paper-rotate));
  }

  .daily-card::before {
    animation: tapeBreath 4.6s ease-in-out infinite;
  }

  .daily-grid.is-fetching .daily-card {
    animation: paperNap 3.2s ease-in-out infinite;
  }

  .daily-grid.is-fetching .daily-card:nth-child(2) {
    animation-delay: 220ms;
  }

  .daily-grid.is-fetching .daily-card:nth-child(3) {
    animation-delay: 420ms;
  }

  .daily-grid.is-fetching .daily-card::after {
    animation: loadingLine 2.2s ease-in-out infinite;
  }

  .button.is-tapped::after {
    animation: lazyTap 620ms ease-out;
  }

  .daily-card .is-changing {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(0.35rem);
  }

  .daily-card .is-fresh {
    animation: freshText 620ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .status-card.is-visible:hover,
  .daily-card.is-visible:hover {
    border-color: rgba(34, 48, 42, 0.18);
    box-shadow: 0 24px 62px rgba(63, 78, 67, 0.16);
    transform: translateY(-0.25rem) rotate(var(--paper-rotate));
  }
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    padding: 0.9rem 1rem;
  }

  .site-nav {
    gap: 0.1rem;
  }

  .site-nav a {
    padding: 0 0.55rem;
    font-size: 0.84rem;
  }

  .hero {
    min-height: 84svh;
    padding: 7rem 1.25rem 4.75rem;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(38, 49, 42, 0.2), rgba(31, 48, 43, 0.62)),
      linear-gradient(90deg, rgba(38, 49, 42, 0.52), rgba(38, 49, 42, 0.08));
  }

  h1 {
    font-size: 4.2rem;
  }

  .hero-copy {
    font-size: 1.12rem;
  }

  .scroll-cue {
    right: 1.25rem;
    bottom: 1.4rem;
  }

  .section {
    width: min(100% - 2rem, 72rem);
    padding: 4.2rem 0;
  }

  .section-heading,
  .daily-section {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .daily-lead {
    position: static;
  }

  h2 {
    font-size: 2.2rem;
  }

  .now-grid {
    grid-template-columns: 1fr;
  }

  .status-card {
    min-height: 10rem;
  }

  .status-card:nth-child(1),
  .status-card:nth-child(2),
  .status-card:nth-child(3),
  .daily-card-large,
  .daily-card:not(.daily-card-large):nth-child(2),
  .holiday-card {
    --paper-rotate: 0deg;
    margin-top: 0;
    transform: none;
  }

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

@media (max-width: 480px) {
  .brand {
    font-size: 0.95rem;
  }

  .site-nav {
    max-width: 12rem;
    overflow-x: auto;
  }

  h1 {
    font-size: 3.4rem;
  }

  .hero-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .daily-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
