/* ═══════════════════════════════════════════════════════
   $RWA — REAL WORLD ASSES · THIS IS FINANCIAL ASSVICE
   Sunny finance memo: warm paper, navy ink, peach 🍑,
   gold + teal support. Serif letterhead over meme copy.
   ═══════════════════════════════════════════════════════ */

:root {
  --paper: #f6efe2;
  --paper-deep: #efe5d2;
  --card: #fffcf4;
  --ink: #232840;
  --ink-soft: #6a6e80;
  --peach: #ff7a59;
  --peach-deep: #e85d3d;
  --peach-soft: #ffddcf;
  --gold: #eab13e;
  --pool: #22909c;
  --up: #1e8e5a;
  --down: #d64533;
  --hairline: rgba(35, 40, 64, 0.16);
  --gridline: rgba(35, 40, 64, 0.06);
  --serif: "Fraunces", "Georgia", serif;
  --sans: "Archivo", "Helvetica Neue", sans-serif;
  --mono: "IBM Plex Mono", "Consolas", monospace;
  --shadow-card: 0 2px 6px rgba(35, 40, 64, 0.06), 0 18px 44px rgba(35, 40, 64, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* subtle paper grain over everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.14 0 0 0 0 0.16 0 0 0 0 0.25 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

.mono { font-family: var(--mono); letter-spacing: 0.02em; }
.up   { color: var(--up); }
.down { color: var(--down); }

a { color: var(--peach-deep); }

::selection { background: var(--peach); color: #fff; }

/* display type: big warm serif — roman for legibility, italic only on accents */
h1, .section-title, .community__title, .memo__title {
  font-family: var(--serif);
  font-weight: 600;
  font-style: normal;
  font-variation-settings: "opsz" 120;
  letter-spacing: -0.01em;
}

/* ══════════ TICKER ══════════ */
.ticker {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  padding: 8px 0;
  white-space: nowrap;
}
.ticker__track { display: inline-flex; animation: ticker-scroll 32s linear infinite; }
.ticker__group { display: inline-flex; }
.ticker__group span { padding: 0 26px; border-right: 1px solid rgba(246, 239, 226, 0.22); }
.ticker__group b { font-weight: 700; margin-left: 6px; color: var(--gold); }
.ticker__group b.down { color: #ff8d7a; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════ NAV ══════════ */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 5vw, 64px);
  border-bottom: 1px solid var(--hairline);
  position: sticky;
  top: 0;
  background: rgba(246, 239, 226, 0.88);
  backdrop-filter: blur(12px);
  z-index: 100;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand__img {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  object-fit: cover;
}
.brand__name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 26px;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.nav__links { display: flex; gap: clamp(10px, 1.8vw, 24px); }
.nav__links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 2px;
  background: var(--peach);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav__links a:hover::after { transform: scaleX(1); }

/* ══════════ BUTTONS ══════════ */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.05em;
  padding: 12px 26px;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  text-transform: uppercase;
}
.btn--peach {
  background: var(--peach);
  color: #fff;
  border: 1.5px solid var(--peach);
  box-shadow: 0 8px 22px rgba(232, 93, 61, 0.32);
}
.btn--peach:hover {
  background: var(--peach-deep);
  border-color: var(--peach-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(232, 93, 61, 0.42);
}
.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(35, 40, 64, 0.4);
}
.btn--outline:hover { border-color: var(--peach-deep); color: var(--peach-deep); transform: translateY(-2px); }
.btn--ink {
  background: var(--ink);
  color: var(--paper);
  border: 1.5px solid var(--ink);
}
.btn--ink:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(35, 40, 64, 0.3); }
.btn--lg { padding: 16px 34px; font-size: 16px; }

/* ══════════ HERO ══════════ */
.hero {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(56px, 9vh, 110px) clamp(20px, 5vw, 64px) clamp(48px, 7vh, 90px);
  text-align: left;
}
.hero__layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
/* rotate/scale via independent properties so the reveal animation's
   transform doesn't wipe the tilt */
.hero__photo { rotate: 3deg; animation-delay: 0.3s; }
.hero__photo:hover { rotate: 1deg; scale: 1.02; }
.hero__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.26em;
  color: var(--peach-deep);
  border: 1px solid rgba(232, 93, 61, 0.4);
  border-radius: 999px;
  display: inline-block;
  padding: 7px 16px;
  background: rgba(255, 221, 207, 0.4);
}
.hero h1 { display: flex; flex-direction: column; line-height: 0.98; margin-top: 22px; }
.hero__line { font-size: clamp(46px, 8vw, 104px); color: var(--ink); }
.hero__line--peach { color: var(--peach-deep); }
.hero__period { color: var(--gold); }
.hero__cheeks {
  font-size: 0.42em;
  font-weight: 700;
  color: var(--peach-deep);
  letter-spacing: 0.03em;
  vertical-align: 0.22em;
  white-space: nowrap;
}
.hero__sub {
  margin-top: 26px;
  max-width: 58ch;
  font-size: 21px;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 600;
}
.hero__sub > b { color: var(--peach-deep); }
.hero__fine {
  display: inline-block;
  margin-top: 12px;
  font-size: 15px;
  font-weight: 400;
  color: var(--ink-soft);
}
.hero__fine b { color: var(--ink); }
.hero__cta { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }

/* contract pill */
.contract {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: clamp(10px, 1.6vw, 13px);
  padding: 12px 16px;
  background: var(--card);
  color: var(--ink);
  border: 1px solid var(--hairline);
  border-radius: 8px;
  cursor: pointer;
  max-width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(35, 40, 64, 0.06);
}
.contract:hover { border-color: var(--peach); box-shadow: 0 6px 18px rgba(232, 93, 61, 0.18); }
.contract__label {
  background: var(--ink);
  color: var(--paper);
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  flex-shrink: 0;
}
.contract__addr { overflow-wrap: anywhere; text-align: left; }
.contract__copy {
  font-size: 10px;
  padding: 3px 8px;
  border: 1px solid var(--peach-deep);
  color: var(--peach-deep);
  border-radius: 4px;
  flex-shrink: 0;
}

/* staggered reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.hero__eyebrow.reveal { animation-delay: 0.02s; }
h1 .reveal:nth-child(1) { animation-delay: 0.1s; }
h1 .reveal:nth-child(2) { animation-delay: 0.2s; }
.hero__sub.reveal { animation-delay: 0.38s; }
.hero__cta.reveal { animation-delay: 0.48s; }
.contract.reveal { animation-delay: 0.58s; }
@keyframes reveal { to { opacity: 1; transform: translateY(0); } }

/* ══════════ BIG MARQUEE ══════════ */
.bigmarquee {
  overflow: hidden;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 16px 0;
  white-space: nowrap;
  background: var(--paper-deep);
}
.bigmarquee__track { display: inline-flex; animation: ticker-scroll 26s linear infinite; }
.bigmarquee__track span {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(20px, 3vw, 32px);
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(35, 40, 64, 0.5);
}

/* ══════════ MEMO ══════════ */
.memo { max-width: 920px; margin: 0 auto; }
.memo__clip {
  margin: 44px auto 0;
  max-width: 560px;
  rotate: -2deg;
}
.memo__clip:hover { rotate: 0deg; scale: 1.02; }
.memo__paper {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  padding: clamp(28px, 4vw, 52px);
  box-shadow: var(--shadow-card);
  position: relative;
}
.memo__paper::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(35, 40, 64, 0.08);
  border-radius: 3px;
  pointer-events: none;
}
.memo__letterhead {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--ink);
  margin-bottom: 26px;
}
.memo__seal {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  object-fit: cover;
  flex-shrink: 0;
}
.memo__office {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  flex: 1;
}
.memo__office span:first-child { color: var(--ink); font-weight: 700; }
.memo__stamp {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--down);
  border: 2px solid var(--down);
  border-radius: 6px;
  padding: 6px 10px;
  text-align: center;
  line-height: 1.35;
  transform: rotate(7deg);
  opacity: 0.75;
  flex-shrink: 0;
}
.memo__title {
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.1;
  margin-bottom: 20px;
}
.memo__body p { margin-bottom: 16px; color: var(--ink-soft); font-size: 16.5px; }
.memo__body p b { color: var(--ink); }
.memo__body em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--peach-deep);
  font-size: 1.08em;
}
.memo__sig {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 24px;
  color: var(--ink);
  margin-top: 10px;
}

/* polaroid frame (hero photo + any future exhibits) */
.polaroid {
  background: #fff;
  padding: 14px 14px 16px;
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-card);
  transition: rotate 0.3s ease, scale 0.3s ease;
  position: relative;
  justify-self: center;
  max-width: 340px;
}
.polaroid::before {
  content: "";
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 110px; height: 28px;
  background: rgba(234, 177, 62, 0.4);
  border-left: 1px dashed rgba(35, 40, 64, 0.2);
  border-right: 1px dashed rgba(35, 40, 64, 0.2);
}
.polaroid img, .polaroid video { width: 100%; display: block; }
.polaroid figcaption {
  margin-top: 12px;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  text-align: center;
}

/* ══════════ SECTION BASE ══════════ */
.section-title {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
  color: var(--ink);
}
.section-title em { color: var(--peach-deep); font-style: italic; }

section { padding: clamp(56px, 9vh, 110px) clamp(20px, 5vw, 64px); }

/* ══════════ LIVE STATS ══════════ */
.band--grid {
  background-image:
    linear-gradient(var(--gridline) 1px, transparent 1px),
    linear-gradient(90deg, var(--gridline) 1px, transparent 1px);
  background-size: 28px 28px;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.stats__inner { max-width: 1200px; margin: 0 auto; }
.stats__head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 34px; }
.stats__src { font-size: 10px; letter-spacing: 0.12em; color: var(--ink-soft); }
.statgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.statbox {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 26px 20px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(35, 40, 64, 0.05);
}
.statbox:hover { border-color: var(--peach); transform: translateY(-3px); box-shadow: 0 10px 26px rgba(35, 40, 64, 0.1); }
.statbox__num {
  display: block;
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 700;
  color: var(--ink);
  overflow-wrap: anywhere;
}
.statbox__num.down { color: var(--down); }
.statbox__label {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.statbox__label i { font-style: normal; color: var(--peach-deep); }
.statbox--silly { border-style: dashed; border-color: rgba(232, 93, 61, 0.45); }
.statbox--silly .statbox__num { color: var(--peach-deep); }

/* ══════════ FLYWHEEL ══════════ */
.how { max-width: 1200px; margin: 0 auto; }
.how__sub { margin-top: 12px; color: var(--ink-soft); max-width: 72ch; }
.how__grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.how__card {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 30px 26px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(35, 40, 64, 0.05);
}
.how__card:hover {
  border-color: var(--peach);
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(35, 40, 64, 0.12);
}
.how__num {
  font-size: 13px;
  color: var(--peach-deep);
  letter-spacing: 0.2em;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 4px;
}
.how__card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 23px;
  margin: 14px 0 10px;
  color: var(--ink);
}
.how__card p { font-size: 15px; color: var(--ink-soft); }
.how__card b { color: var(--peach-deep); }

.vault {
  margin-top: 46px;
  background: rgba(34, 144, 156, 0.06);
  border: 1px solid rgba(34, 144, 156, 0.3);
  border-radius: 14px;
  padding: 24px;
}
.vault__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}
.vault__title { font-size: 12px; letter-spacing: 0.2em; color: var(--pool); font-weight: 700; }
.vault__src { font-size: 10px; letter-spacing: 0.12em; color: var(--ink-soft); }
.vault__src a { color: inherit; }
.vault__src a:hover { color: var(--pool); }
.statgrid--vault { grid-template-columns: repeat(3, 1fr); }
.statgrid--vault .statbox:hover { border-color: var(--pool); }

.clap {
  margin-top: 46px;
  text-align: center;
}
.clap__hint { color: var(--ink-soft); font-size: 14px; margin-bottom: 18px; }
.clap__btn { user-select: none; }
.clap__btn:active { transform: scale(0.94); }
.clap__count {
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  min-height: 1em;
}
.clap-emoji {
  position: fixed;
  font-size: 26px;
  pointer-events: none;
  z-index: 300;
  animation: clap-float 1.1s ease-out forwards;
}
@keyframes clap-float {
  from { transform: translateY(0) rotate(0deg); opacity: 1; }
  to { transform: translateY(-140px) rotate(var(--spin, 20deg)); opacity: 0; }
}

/* ══════════ BASKET ══════════ */
.basket {
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid var(--hairline);
}
.basket__sub { margin-top: 12px; color: var(--ink-soft); max-width: 60ch; }
.basket__grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.chip {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 22px 12px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
  box-shadow: 0 2px 8px rgba(35, 40, 64, 0.05);
}
.chip:hover { border-color: var(--gold); transform: translateY(-4px); background: rgba(234, 177, 62, 0.1); }
.chip__tick {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}
.chip__name {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.basket__note { margin-top: 22px; font-size: 10.5px; color: var(--ink-soft); letter-spacing: 0.1em; }

/* ══════════ HOW TO BUY ══════════ */
.howbuy { max-width: 860px; margin: 0 auto; }
.howbuy__steps { margin-top: 36px; list-style: none; display: flex; flex-direction: column; }
.howbuy__steps li {
  display: flex;
  gap: 24px;
  align-items: baseline;
  padding: 22px 6px;
  border-bottom: 1px solid var(--hairline);
}
.howbuy__steps li:first-child { border-top: 1px solid var(--hairline); }
.howbuy__num {
  font-size: 26px;
  font-weight: 700;
  color: var(--peach-deep);
  min-width: 34px;
}
.howbuy__steps h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 21px;
  color: var(--ink);
}
.howbuy__steps p { font-size: 15px; color: var(--ink-soft); margin-top: 2px; }
.howbuy__cta { margin-top: 34px; }

/* ══════════ BLOG ══════════ */
.blog {
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid var(--hairline);
}
.blog__sub { margin-top: 12px; color: var(--ink-soft); max-width: 60ch; }
.blog__grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.blogcard {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 28px 24px;
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(35, 40, 64, 0.05);
}
.blogcard:hover {
  border-color: var(--peach);
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(35, 40, 64, 0.12);
}
.blogcard__tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--peach-deep);
  background: var(--peach-soft);
  border-radius: 999px;
  padding: 5px 12px;
  align-self: flex-start;
}
.blogcard h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.15;
}
.blogcard p { font-size: 14.5px; color: var(--ink-soft); flex: 1; }
.blogcard__cta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--ink);
  border-top: 1px solid var(--hairline);
  padding-top: 14px;
}
.blogcard:hover .blogcard__cta { color: var(--peach-deep); }

/* ══════════ CONTRACTS ══════════ */
.contracts { max-width: 1000px; margin: 0 auto; border-top: 1px solid var(--hairline); }
.contracts__sub { margin-top: 12px; color: var(--ink-soft); }
.contracts__list { margin-top: 34px; display: flex; flex-direction: column; gap: 14px; }
.crow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 2px 8px rgba(35, 40, 64, 0.05);
}
.crow__meta { display: flex; flex-direction: column; min-width: 240px; flex: 1; }
.crow__name { font-weight: 700; font-size: 15px; }
.crow__chain { font-size: 10px; color: var(--ink-soft); letter-spacing: 0.12em; margin-top: 2px; }
.crow .contract { margin-top: 0; }
.crow__link {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: var(--ink);
  border: 1px solid var(--hairline);
  padding: 8px 12px;
  border-radius: 999px;
  transition: border-color 0.2s, color 0.2s;
}
.crow__link:hover { border-color: var(--peach-deep); color: var(--peach-deep); }

/* ══════════ COMMUNITY ══════════ */
.community {
  position: relative;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 120%, rgba(255, 122, 89, 0.24) 0%, transparent 60%),
    radial-gradient(ellipse at 85% -20%, rgba(234, 177, 62, 0.3) 0%, transparent 55%),
    var(--paper-deep);
  border-top: 1px solid var(--hairline);
}
.community__title {
  position: relative;
  display: flex;
  flex-direction: column;
  font-size: clamp(36px, 6.4vw, 84px);
  line-height: 1.02;
  color: var(--ink);
}
.community__title--peach { color: var(--peach-deep); }
.community__meme {
  font-family: var(--mono);
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 700;
  color: var(--peach-deep);
  margin-top: 16px;
  letter-spacing: 0.06em;
}
.community__sub {
  position: relative;
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 17px;
}
.community__actions {
  position: relative;
  margin-top: 38px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════ FAQ ══════════ */
.faq { max-width: 760px; margin: 0 auto; }
.faq .section-title { margin-bottom: 30px; }
.faq details { border-bottom: 1px solid var(--hairline); padding: 20px 4px; }
.faq details:first-of-type { border-top: 1px solid var(--hairline); }
.faq summary {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 21px;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--mono);
  font-size: 22px;
  color: var(--peach-deep);
  transition: transform 0.25s;
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: 12px; color: var(--ink-soft); font-size: 15.5px; max-width: 62ch; }

/* ══════════ FOOTER ══════════ */
.footer {
  background: var(--ink);
  color: rgba(246, 239, 226, 0.75);
  padding: 56px clamp(20px, 5vw, 64px) 40px;
  text-align: center;
}
.footer__logo {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
}
.footer__slogans {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 19px;
  color: var(--paper);
  margin-top: 20px;
}
.footer__disclaimer {
  max-width: 640px;
  margin: 20px auto 0;
  font-size: 12px;
  line-height: 1.7;
}
.footer__legal {
  margin-top: 26px;
  font-size: 10px;
  letter-spacing: 0.16em;
  opacity: 0.6;
}

/* ══════════ TOAST ══════════ */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translate(-50%, 90px);
  background: var(--ink);
  color: var(--paper);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 12px 24px;
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(35, 40, 64, 0.4);
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
  z-index: 200;
}
.toast.show { transform: translate(-50%, 0); }

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 960px) {
  .nav__links { display: none; }
  .statgrid { grid-template-columns: repeat(2, 1fr); }
  .how__grid { grid-template-columns: 1fr; }
  .basket__grid { grid-template-columns: repeat(3, 1fr); }
  .blog__grid { grid-template-columns: 1fr; }
  .crow { flex-direction: column; align-items: flex-start; }
  .hero__layout { grid-template-columns: 1fr; }
  .hero__photo { max-width: 280px; rotate: 2deg; }
}
@media (max-width: 520px) {
  .basket__grid { grid-template-columns: repeat(2, 1fr); }
  .statgrid { grid-template-columns: 1fr; }
  .memo__stamp { display: none; }
}

/* ══════════ REDUCED MOTION ══════════ */
@media (prefers-reduced-motion: reduce) {
  .ticker__track, .bigmarquee__track { animation-duration: 120s; }
  .reveal { animation: none; opacity: 1; transform: none; }
  .polaroid { transition: none; }
}
