:root {
  --skin: #d99f7d;
  --skin-light: #f1c7ad;
  --skin-deep: #aa694e;
  --ink: #241410;
  --muted: #75564a;
  --paper: #f6eadf;
  --paper-2: #efdaca;
  --line: rgba(58, 29, 21, .22);
  --white: #fffaf4;
  --shadow: 0 24px 70px rgba(93, 53, 39, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 15%, rgba(217,159,125,.25), transparent 28%),
    radial-gradient(circle at 90% 35%, rgba(170,105,78,.14), transparent 24%),
    linear-gradient(180deg, #f8eee6 0%, #f2dfd1 50%, #f8eee6 100%);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  opacity: .24;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(80,45,34,.03) 3px 4px),
    repeating-linear-gradient(90deg, transparent 0 5px, rgba(80,45,34,.025) 5px 6px);
  mix-blend-mode: multiply;
}

#hairField {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
  opacity: .38;
}

::selection { background: var(--ink); color: var(--paper); }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.page-frame {
  width: min(1460px, calc(100% - 32px));
  margin: 16px auto;
  border: 1px solid var(--line);
  background: rgba(255,248,242,.68);
  backdrop-filter: blur(9px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.site-header {
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 0 30px;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  font-size: clamp(1.45rem, 2vw, 2.15rem);
  font-weight: 1000;
  text-decoration: none;
  width: max-content;
}

.flesh-word {
  color: var(--skin);
  letter-spacing: -.065em;
  text-shadow:
    0 1px 0 #f4c3a8,
    0 2px 0 #9a5e46,
    1px 1px 0 #7a4737,
    -1px 1px 0 #7a4737,
    0 5px 16px rgba(81,40,29,.22);
  -webkit-text-stroke: 1px rgba(67,35,27,.78);
}

.top-nav { display: flex; gap: 22px; }
.top-nav a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: .72rem;
  letter-spacing: .16em;
  font-weight: 900;
  padding: 9px 4px;
  border-bottom: 1px solid transparent;
}
.top-nav a:hover { border-color: currentColor; }

.header-copy {
  justify-self: end;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 8px 8px 8px 13px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .13em;
}
.header-copy strong {
  color: var(--ink);
  background: var(--skin-light);
  padding: 6px 9px;
  border-radius: 999px;
}

.hero {
  position: relative;
  padding: 54px 40px 0;
  text-align: center;
  overflow: hidden;
}

.hero::before, .hero::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  border: 1px solid var(--line);
  border-radius: 50%;
  z-index: -1;
}
.hero::before { top: 88px; left: -70px; }
.hero::after { top: 260px; right: -80px; width: 230px; height: 230px; }

.hero-stamp {
  position: absolute;
  right: 38px;
  top: 34px;
  transform: rotate(7deg);
  width: 110px;
  height: 110px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 16px;
  font-size: .68rem;
  font-weight: 1000;
  line-height: 1.15;
  letter-spacing: .1em;
  background: rgba(242,199,173,.45);
}

.hero-kicker, .eyebrow {
  margin: 0;
  font-size: .72rem;
  letter-spacing: .2em;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-title-wrap { position: relative; z-index: 3; }
.hero-title {
  margin: 8px 0 0;
  font-size: clamp(5.7rem, 13.5vw, 12.8rem);
  line-height: .78;
  font-weight: 1000;
  text-transform: uppercase;
}
.hero-title span { display: inline-block; transform: translateY(.08em); }

.mascot-stage {
  width: min(890px, 94vw);
  height: clamp(390px, 50vw, 650px);
  position: relative;
  margin: -32px auto -20px;
  display: grid;
  place-items: center;
}

.mascot {
  width: min(720px, 78vw);
  max-height: 590px;
  object-fit: contain;
  position: relative;
  z-index: 4;
  filter: drop-shadow(0 26px 34px rgba(94,47,32,.18));
  transform: translateY(10px) rotate(-1deg);
  animation: hover 5s ease-in-out infinite;
}

@keyframes hover {
  0%,100% { transform: translateY(10px) rotate(-1deg); }
  50% { transform: translateY(-4px) rotate(1deg); }
}

.orbit {
  position: absolute;
  border: 1px solid rgba(46,25,20,.25);
  border-radius: 50%;
  pointer-events: none;
}
.orbit-one { width: 76%; height: 62%; transform: rotate(-9deg); }
.orbit-two { width: 55%; height: 88%; transform: rotate(67deg); border-style: dashed; opacity: .55; }

.skin-blob {
  position: absolute;
  border-radius: 45% 55% 65% 35% / 55% 43% 57% 45%;
  background: linear-gradient(145deg, rgba(240,188,157,.55), rgba(196,125,91,.18));
  filter: blur(.2px);
}
.blob-a { width: 390px; height: 260px; left: 7%; bottom: 12%; transform: rotate(12deg); }
.blob-b { width: 250px; height: 330px; right: 7%; top: 9%; transform: rotate(-17deg); }

.mascot-note {
  position: absolute;
  z-index: 5;
  margin: 0;
  font-size: .68rem;
  line-height: 1.1;
  letter-spacing: .15em;
  font-weight: 1000;
  text-align: left;
}
.note-left { left: 4%; bottom: 24%; transform: rotate(-8deg); }
.note-right { right: 4%; top: 30%; transform: rotate(9deg); }

.social-grid {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 1080px;
  margin: 0 auto;
}

.social-card {
  text-decoration: none;
  border: 1px solid var(--ink);
  min-height: 88px;
  background: rgba(255,250,245,.58);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.social-card:hover {
  transform: translateY(-5px);
  background: var(--skin-light);
  box-shadow: 6px 7px 0 var(--ink);
}
.icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink);
  display: grid;
  place-items: center;
}
.icon-wrap img { width: 25px; height: 25px; object-fit: contain; filter: brightness(0) invert(1); }
.social-copy { display: grid; text-align: left; gap: 2px; }
.social-copy small { font-size: .62rem; text-transform: uppercase; letter-spacing: .14em; opacity: .62; font-weight: 800; }
.social-copy strong { font-size: 1.05rem; }
.arrow { font-size: 1.25rem; }

.contract-bar {
  width: min(1080px, 100%);
  margin: 12px auto 42px;
  min-height: 60px;
  display: grid;
  grid-template-columns: auto minmax(0,1fr) auto;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  padding: 8px 8px 8px 17px;
}
.contract-label { display: flex; align-items: center; gap: 9px; font-size: .68rem; font-weight: 950; letter-spacing: .14em; }
.pulse-dot { width: 9px; height: 9px; background: var(--skin-light); border-radius: 50%; box-shadow: 0 0 0 0 rgba(241,199,173,.6); animation: pulse 1.7s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(241,199,173,0); } }
.contract-bar code { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; text-align: left; font-size: .86rem; color: #f4d5c2; }
.copy-ca { border: 0; background: var(--skin-light); color: var(--ink); font-weight: 1000; padding: 13px 18px; cursor: pointer; }

.ticker { overflow: hidden; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); background: var(--skin); }
.ticker-track {
  width: max-content;
  display: flex;
  gap: 25px;
  align-items: center;
  padding: 12px 0;
  animation: ticker 24s linear infinite;
  font-size: .85rem;
  font-weight: 1000;
  letter-spacing: .12em;
}
.ticker-track i { font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

.story-grid {
  display: grid;
  grid-template-columns: 1.7fr .95fr .95fr;
  border-bottom: 1px solid var(--line);
}
.story-card { min-height: 330px; padding: 38px; position: relative; border-right: 1px solid var(--line); }
.story-card:last-child { border-right: 0; }
.card-index { position: absolute; top: 22px; right: 24px; font: 800 .74rem/1 ui-monospace, SFMono-Regular, Menlo, monospace; opacity: .55; }
.story-main h2 { max-width: 720px; margin: 14px 0 20px; font-size: clamp(2.5rem, 5vw, 5.8rem); line-height: .92; letter-spacing: -.055em; }
.story-main h2 em { font-family: Georgia, serif; font-weight: 500; }
.story-main > p:last-child { max-width: 650px; margin: 0; color: var(--muted); font-size: 1.05rem; line-height: 1.65; }
.quote-card { display: flex; align-items: flex-end; background: rgba(217,159,125,.2); }
.quote-card blockquote { margin: 0; font-family: Georgia, serif; font-style: italic; font-size: clamp(2rem, 3.7vw, 4.1rem); line-height: .98; letter-spacing: -.04em; }
.mini-card { display: flex; flex-direction: column; justify-content: flex-end; }
.mini-card ul { list-style: none; padding: 0; margin: 18px 0 0; }
.mini-card li { border-top: 1px solid var(--ink); padding: 12px 0; font-size: 1.15rem; font-weight: 850; }

.faq-section { display: grid; grid-template-columns: .75fr 1.25fr; min-height: 560px; border-bottom: 1px solid var(--line); }
.section-head { padding: 52px 40px; border-right: 1px solid var(--line); }
.section-head h2 { margin: 14px 0 0; font-size: clamp(4.6rem, 10vw, 9rem); line-height: .85; }
.faq-list { padding: 22px 40px 38px; }
.faq-list details { border-bottom: 1px solid var(--ink); }
.faq-list summary { cursor: pointer; list-style: none; padding: 24px 0; font-size: clamp(1.05rem, 2vw, 1.55rem); font-weight: 900; display: flex; gap: 18px; align-items: baseline; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { font-size: .68rem; font-family: ui-monospace, monospace; opacity: .55; }
.faq-list p { margin: -4px 0 24px 42px; max-width: 680px; color: var(--muted); line-height: 1.65; }

.disclaimer-section {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 46px;
  align-items: start;
  padding: 56px 40px;
  background: #2a1712;
  color: var(--paper);
}
.warning-stamp {
  width: 150px; height: 150px; border: 2px solid var(--skin-light); border-radius: 50%; display: grid; place-items: center; color: var(--skin-light); font-size: 1rem; font-weight: 1000; letter-spacing: .13em; transform: rotate(-8deg);
}
.disclaimer-section h2 { margin: 10px 0 18px; color: var(--skin-light); font-size: clamp(2.2rem, 5vw, 5rem); line-height: .92; letter-spacing: -.05em; }
.disclaimer-section p:last-child { max-width: 960px; margin: 0; color: #dbc0b0; line-height: 1.65; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 25px 30px;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 850;
}
.site-footer strong { font-size: 1.6rem; letter-spacing: -.04em; }
.site-footer span:last-child { text-align: right; }

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 30px);
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--skin-light);
  padding: 12px 18px;
  opacity: 0;
  pointer-events: none;
  transition: .2s ease;
  z-index: 50;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .top-nav { display: none; }
  .hero { padding-inline: 22px; }
  .hero-stamp { display: none; }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid { grid-template-columns: 1fr 1fr; }
  .story-main { grid-column: 1 / -1; border-bottom: 1px solid var(--line); }
  .faq-section { grid-template-columns: 1fr; }
  .section-head { border-right: 0; border-bottom: 1px solid var(--line); }
  .disclaimer-section { grid-template-columns: 1fr; }
  .warning-stamp { width: 110px; height: 110px; }
}

@media (max-width: 640px) {
  .page-frame { width: calc(100% - 14px); margin: 7px auto; }
  .site-header { min-height: 68px; padding: 0 14px; }
  .wordmark { font-size: 1.45rem; }
  .header-copy span { display: none; }
  .header-copy { padding-left: 7px; }
  .hero { padding: 35px 12px 0; }
  .hero-title { font-size: clamp(4.15rem, 23vw, 7rem); }
  .hero-kicker { font-size: .58rem; }
  .mascot-stage { height: 350px; margin-top: -20px; }
  .mascot { width: min(92vw, 530px); }
  .mascot-note { display: none; }
  .blob-a { left: -15%; }
  .blob-b { right: -15%; }
  .social-grid { grid-template-columns: 1fr; gap: 8px; }
  .social-card { min-height: 76px; }
  .contract-bar { grid-template-columns: 1fr auto; gap: 8px; padding: 8px; margin-bottom: 28px; }
  .contract-label { grid-column: 1 / -1; padding: 4px 6px 1px; }
  .contract-bar code { padding-left: 6px; }
  .story-grid { grid-template-columns: 1fr; }
  .story-card { border-right: 0; border-bottom: 1px solid var(--line); min-height: 280px; padding: 30px 22px; }
  .faq-list, .section-head { padding-inline: 22px; }
  .disclaimer-section { padding: 38px 22px; gap: 28px; }
  .site-footer { grid-template-columns: 1fr; text-align: center; padding: 23px 16px; }
  .site-footer span:last-child { text-align: center; }
}

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