:root {
  --cream: #fbf3e7;
  --cream-strong: #f2dfc3;
  --ink: #3d2418;
  --muted: #765d50;
  --orange: #e67e22;
  --orange-dark: #bd5e16;
  --brown: #6d351d;
  --paper: rgba(255, 252, 246, 0.82);
  --line: rgba(95, 50, 28, 0.15);
  --shadow: 0 24px 70px rgba(78, 39, 20, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 20%, rgba(230, 126, 34, 0.11), transparent 28rem),
    radial-gradient(circle at 90% 15%, rgba(109, 53, 29, 0.08), transparent 24rem),
    linear-gradient(135deg, #fffaf2 0%, var(--cream) 52%, #f7e7cf 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.38;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
}

.page-shell {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header { padding: 28px 0; }
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.blog-link:hover {
  background: rgba(255, 255, 255, 0.58);
  transform: translateY(-2px);
}


.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 1.08rem;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(85, 44, 23, 0.15);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(230, 126, 34, 0.12);
  animation: pulse 2.4s ease-in-out infinite;
}

.hero {
  min-height: 660px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
  padding: 54px 0 76px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 { font-size: clamp(3.25rem, 7vw, 6.4rem); }
h1 em { color: var(--orange-dark); font-style: normal; }

.hero-text {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.7vw, 1.22rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 15px;
  background: var(--ink);
  color: #fff8ef;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(61, 36, 24, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-button:hover {
  transform: translateY(-3px);
  background: #28170f;
  box-shadow: 0 18px 40px rgba(61, 36, 24, 0.28);
}

.secondary-link {
  color: var(--ink);
  font-weight: 700;
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
}

.microcopy {
  margin: 22px 0 0;
  color: #9a7e6f;
  font-size: 0.9rem;
}

.mascot-stage {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.mascot-card {
  position: relative;
  z-index: 2;
  width: min(390px, 82vw);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 34px;
  background: var(--paper);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
  animation: float 5s ease-in-out infinite;
}

.mascot-card img {
  display: block;
  width: 100%;
  border-radius: 24px;
  aspect-ratio: 1;
  object-fit: cover;
}

.tiny-label {
  position: absolute;
  top: 38px;
  left: 38px;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(61, 36, 24, 0.86);
  color: #fff7ec;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.mascot-note {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 4px 2px;
  align-items: end;
}

.mascot-note strong { font-size: 1.02rem; }
.mascot-note span { color: var(--muted); font-size: 0.88rem; text-align: right; }

.orbit {
  position: absolute;
  border: 1px solid rgba(109, 53, 29, 0.17);
  border-radius: 50%;
}

.orbit-one { width: 480px; height: 480px; }
.orbit-two { width: 370px; height: 370px; border-style: dashed; animation: spin 28s linear infinite; }

.floating-chip {
  position: absolute;
  z-index: 3;
  padding: 10px 14px;
  border: 1px solid rgba(95, 50, 28, 0.12);
  border-radius: 14px;
  background: rgba(255, 251, 244, 0.88);
  box-shadow: 0 12px 30px rgba(78, 39, 20, 0.12);
  backdrop-filter: blur(8px);
  color: var(--brown);
  font-size: 0.82rem;
  font-weight: 700;
}

.chip-one { top: 13%; right: 1%; transform: rotate(5deg); }
.chip-two { bottom: 18%; left: -2%; transform: rotate(-6deg); }
.chip-three { bottom: 6%; right: 6%; transform: rotate(3deg); }

.manifesto {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 9vw, 130px);
  align-items: end;
  padding: 72px;
  margin: 0 0 56px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(255, 252, 246, 0.64);
  backdrop-filter: blur(12px);
}

.manifesto h2 { font-size: clamp(2.4rem, 5vw, 4.6rem); }
.manifesto p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.06rem;
}

.site-footer {
  padding: 22px 0 36px;
  border-top: 1px solid var(--line);
  color: #8a7063;
  font-size: 0.82rem;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.8); opacity: 0.6; }
}

@keyframes float {
  0%, 100% { transform: rotate(2deg) translateY(0); }
  50% { transform: rotate(0.5deg) translateY(-12px); }
}

@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 42px; }
  .hero-copy { text-align: center; }
  .hero-text { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .mascot-stage { min-height: 470px; }
  .manifesto { grid-template-columns: 1fr; padding: 44px; }
}

@media (max-width: 560px) {
  .page-shell { width: min(100% - 24px, 1180px); }
  .site-header { padding-top: 18px; }
  .brand span { display: none; }
  .header-actions { gap: 6px; }
  .blog-link { padding: 0 10px; }
  .hero { padding-top: 30px; }
  h1 { font-size: clamp(2.85rem, 15vw, 4.5rem); }
  .hero-actions { flex-direction: column; }
  .primary-button { width: 100%; }
  .mascot-stage { min-height: 390px; }
  .orbit-one { width: 340px; height: 340px; }
  .orbit-two { width: 280px; height: 280px; }
  .chip-one { right: 0; }
  .chip-two { left: 0; }
  .chip-three { display: none; }
  .manifesto { padding: 30px 24px; border-radius: 24px; }
  .site-footer { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
