:root {
  --ink: #171711;
  --charcoal: #262722;
  --paper: #fffdf7;
  --cream: #f4efe3;
  --bone: #e5dccb;
  --line: #d4cab7;
  --forest: #2f4a34;
  --deep-forest: #1f3326;
  --moss: #66734b;
  --sage: #9aa889;
  --tobacco: #ad7443;
  --rust: #9d352e;
  --shadow: 0 18px 48px rgba(23, 23, 17, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(23, 23, 17, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 23, 17, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
}

img {
  display: block;
  max-width: 100%;
}

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

section[id] {
  scroll-margin-top: 118px;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--ink);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.announcement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 38px;
  padding: 8px 18px;
  background: var(--deep-forest);
  color: var(--cream);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.announcement button {
  min-height: 28px;
  padding: 0 10px;
  color: #f7c47b;
  background: rgba(255, 253, 247, 0.08);
  border: 1px solid rgba(247, 196, 123, 0.42);
  border-radius: 6px;
  font: inherit;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease;
}

.announcement button:hover {
  background: rgba(247, 196, 123, 0.16);
  border-color: rgba(247, 196, 123, 0.72);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
  padding: 14px 28px;
  background: rgba(244, 239, 227, 0.88);
  border-bottom: 1px solid rgba(47, 74, 52, 0.16);
  backdrop-filter: blur(16px);
  transition: box-shadow 160ms ease, background 160ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 247, 0.95);
  box-shadow: 0 10px 30px rgba(23, 23, 17, 0.08);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand-lockup img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  object-position: left center;
  border: 1px solid rgba(23, 23, 17, 0.18);
  border-radius: 50%;
  background: var(--paper);
}

.brand-lockup span {
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(23, 23, 17, 0.72);
  font-size: 14px;
  font-weight: 800;
}

.site-nav a,
.footer-links a {
  position: relative;
}

.site-nav a::after,
.footer-links a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--rust);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.footer-links a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  color: var(--paper);
  background: var(--forest);
  border: 1px solid var(--forest);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  white-space: nowrap;
}

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

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 82svh;
  overflow: hidden;
  isolation: isolate;
  background-image:
    linear-gradient(90deg, rgba(23, 23, 17, 0.88) 0%, rgba(23, 23, 17, 0.7) 42%, rgba(23, 23, 17, 0.22) 78%),
    url("assets/sure-outdoors-hat-concept.jpg");
  background-position: center 42%;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 46%;
  background: linear-gradient(0deg, rgba(23, 23, 17, 0.74), transparent);
}

.hero-content {
  position: relative;
  padding: 74px 0 58px;
  color: var(--paper);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--rust);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f7c47b;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 72px;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 253, 247, 0.86);
  font-size: 20px;
}

.hero-actions,
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover {
  transform: none;
}

.button-primary {
  color: var(--paper);
  background: var(--forest);
  border-color: var(--forest);
}

.button-primary:hover {
  background: var(--deep-forest);
  border-color: var(--deep-forest);
}

.button-secondary {
  color: var(--paper);
  background: rgba(255, 253, 247, 0.08);
  border-color: rgba(255, 253, 247, 0.5);
}

.button-secondary:hover {
  background: rgba(255, 253, 247, 0.16);
}

.button-light {
  color: var(--deep-forest);
  background: var(--paper);
  border-color: rgba(255, 253, 247, 0.72);
}

.button-light:hover {
  background: var(--cream);
  border-color: var(--cream);
}

.button-quiet {
  color: var(--ink);
  background: var(--bone);
  border-color: var(--line);
}

.button:disabled {
  opacity: 0.62;
  cursor: not-allowed;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 730px;
  margin: 54px 0 0;
  padding: 0;
  border: 1px solid rgba(255, 253, 247, 0.22);
  background: rgba(255, 253, 247, 0.14);
}

.hero-stats div {
  padding: 18px;
  background: rgba(23, 23, 17, 0.34);
}

.hero-stats dt {
  margin: 0 0 3px;
  color: #f7c47b;
  font-size: 12px;
  font-weight: 950;
}

.hero-stats dd {
  margin: 0;
  font-weight: 900;
}

.drop-strip {
  background: var(--forest);
  color: var(--paper);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-right: 1px solid rgba(255, 253, 247, 0.18);
  border-left: 1px solid rgba(255, 253, 247, 0.18);
}

.strip-grid p {
  min-height: 86px;
  margin: 0;
  padding: 22px;
  border-right: 1px solid rgba(255, 253, 247, 0.18);
  color: rgba(255, 253, 247, 0.9);
  font-weight: 850;
}

.section {
  padding: 90px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.62fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading h2,
.concept-copy h2,
.story-grid h2,
.watch-heading h2,
.join-section h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading p:last-child,
.concept-copy p,
.story-copy p,
.watch-heading p {
  margin: 0;
  color: rgba(23, 23, 17, 0.72);
  font-size: 18px;
}

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

.product-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(23, 23, 17, 0.07);
}

.product-media {
  display: block;
  overflow: hidden;
  min-height: 270px;
  aspect-ratio: 1 / 1;
  background: var(--bone);
  border-bottom: 1px solid var(--line);
}

.logo-media {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(47, 74, 52, 0.1), rgba(157, 53, 46, 0.12)),
    var(--paper);
}

.logo-media img {
  mix-blend-mode: normal;
}

.product-image-sticker {
  object-position: center center;
}

.cap-media {
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.56), rgba(173, 116, 67, 0.18)),
    #d9cfba;
}

.shirt-media {
  background:
    linear-gradient(135deg, rgba(47, 74, 52, 0.14), rgba(102, 115, 75, 0.16)),
    #eee6d6;
}

.product-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
  mix-blend-mode: normal;
}

.product-image-hat {
  object-position: center center;
}

.product-image-shirt {
  object-position: center center;
}

.product-copy {
  padding: 22px;
}

.tag {
  display: inline-flex;
  margin: 0 0 10px;
  color: var(--rust);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
}

.product-copy h3 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.1;
}

.product-copy p:last-child {
  margin: 0;
  color: rgba(23, 23, 17, 0.7);
}

.concept-section {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.concept-grid,
.story-grid,
.join-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: 52px;
  align-items: center;
}

.concept-copy p {
  max-width: 620px;
  margin-top: 18px;
}

.sticker-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: 0;
  padding: 0 14px;
  color: var(--forest);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.text-link:hover {
  color: var(--deep-forest);
  background: var(--cream);
  border-color: rgba(47, 74, 52, 0.34);
}

.muted-link {
  color: rgba(23, 23, 17, 0.68);
  background: transparent;
}

.sticker-frame {
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(47, 74, 52, 0.08), rgba(157, 53, 46, 0.12)),
    var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.sticker-frame img {
  background: var(--paper);
  border-radius: 8px;
}

.story-section {
  background: var(--cream);
}

.story-grid {
  align-items: start;
}

.story-copy p {
  margin-bottom: 26px;
}

.story-subhead {
  margin-bottom: 10px;
  color: var(--rust);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.story-copy .story-subhead {
  color: var(--rust);
}

.founder-signoff {
  margin-top: 28px;
  color: var(--ink);
  font-weight: 900;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 14px 16px 14px 42px;
  background: rgba(255, 253, 247, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 850;
}

.check-list li::before {
  position: absolute;
  top: 14px;
  left: 16px;
  color: var(--rust);
  content: "*";
  font-weight: 950;
}

.watch-section {
  background: var(--deep-forest);
  color: var(--paper);
}

.watch-section .eyebrow {
  color: #f7c47b;
}

.watch-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(280px, 0.52fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.watch-heading h2 {
  color: var(--paper);
}

.watch-heading p {
  margin: 0 0 24px;
  color: rgba(255, 253, 247, 0.78);
}

.latest-videos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.youtube-card {
  display: grid;
  overflow: hidden;
  min-width: 0;
  color: var(--paper);
  background: rgba(255, 253, 247, 0.08);
  border: 1px solid rgba(255, 253, 247, 0.2);
  border-radius: 8px;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.youtube-card:hover {
  background: rgba(255, 253, 247, 0.13);
  border-color: rgba(255, 253, 247, 0.42);
  transform: translateY(-2px);
}

.youtube-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--charcoal);
}

.youtube-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-badge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  background: var(--rust);
  border: 1px solid rgba(255, 253, 247, 0.35);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.play-badge::before {
  width: 0;
  height: 0;
  margin-left: 4px;
  content: "";
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--paper);
}

.youtube-copy {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.youtube-copy strong {
  min-height: 58px;
  font-size: 20px;
  line-height: 1.12;
}

.youtube-copy > span:last-child {
  color: #f7c47b;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.join-section {
  padding: 72px 0;
  background:
    linear-gradient(90deg, rgba(157, 53, 46, 0.12), rgba(47, 74, 52, 0.12)),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.join-grid {
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.8fr);
}

.join-form {
  display: grid;
  gap: 10px;
}

.brevo-waitlist {
  background: transparent;
}

.brevo-waitlist iframe {
  display: block;
  width: 100%;
  min-height: 430px;
  background: var(--paper);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(23, 23, 17, 0.08);
}

.join-copy {
  max-width: 520px;
  margin: 18px 0 0;
  color: rgba(23, 23, 17, 0.7);
  font-size: 18px;
}

.join-form label {
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.form-row {
  align-items: stretch;
}

.form-row input {
  flex: 1 1 250px;
  min-height: 52px;
  min-width: 0;
  padding: 0 16px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.form-row input:focus,
.field-grid input:focus,
.field-grid textarea:focus,
.consent-field input:focus {
  outline: 3px solid rgba(157, 53, 46, 0.2);
  border-color: var(--rust);
}

.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 620px;
  margin: 2px 0 4px;
  color: rgba(23, 23, 17, 0.7);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.38;
  text-transform: none;
}

.join-form .consent-field {
  font-weight: 750;
  text-transform: none;
}

.consent-field input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--forest);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--forest);
  font-weight: 850;
}

.form-status a {
  color: var(--deep-forest);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-status.is-error {
  color: var(--rust);
}

.post-submit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 2px;
}

.post-submit-actions .text-link {
  margin-top: 0;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(23, 23, 17, 0.72);
}

.modal-backdrop.is-open {
  display: grid;
}

.modal-panel {
  position: relative;
  width: min(640px, 100%);
  max-height: min(86vh, 760px);
  overflow: auto;
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.modal-panel h2 {
  max-width: 520px;
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  line-height: 1.04;
}

.modal-intro {
  max-width: 520px;
  margin: 14px 0 24px;
  color: rgba(23, 23, 17, 0.72);
  font-size: 17px;
}

.sticker-form {
  display: grid;
  gap: 14px;
}

.hidden-field {
  display: none;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field-grid label {
  display: grid;
  gap: 7px;
  min-width: 0;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.field-grid small {
  color: rgba(23, 23, 17, 0.54);
  font-size: 11px;
  font-weight: 850;
}

.wide-field {
  grid-column: 1 / -1;
}

.field-grid input,
.field-grid textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.field-grid textarea {
  min-height: 96px;
  resize: vertical;
}

.modal-note {
  margin: 0;
  color: rgba(23, 23, 17, 0.66);
  font-size: 14px;
  font-weight: 850;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

body.modal-open {
  overflow: hidden;
}

.site-footer {
  padding: 44px 0;
  color: rgba(255, 253, 247, 0.76);
  background: var(--charcoal);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}

.footer-brand {
  color: var(--paper);
}

.footer-grid p {
  max-width: 420px;
  margin: 12px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--paper);
  font-weight: 850;
}

.copyright {
  grid-column: 1 / -1;
  color: rgba(255, 253, 247, 0.54);
  font-size: 14px;
}

@media (max-width: 860px) {
  .site-header {
    flex-wrap: wrap;
    gap: 12px;
    min-height: 64px;
    padding: 10px 18px;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .page-shell {
    width: min(100% - 28px, 1140px);
  }

  .hero {
    min-height: 68svh;
    background-image:
      linear-gradient(0deg, rgba(23, 23, 17, 0.9) 0%, rgba(23, 23, 17, 0.54) 58%, rgba(23, 23, 17, 0.26) 100%),
      url("assets/sure-outdoors-hat-concept.jpg");
  }

  .hero-content {
    align-self: end;
    padding: 42px 0 32px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-stats,
  .strip-grid,
  .section-heading,
  .product-grid,
  .concept-grid,
  .story-grid,
  .join-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    margin-top: 28px;
  }

  .strip-grid {
    border-right: 0;
    border-left: 0;
  }

  .strip-grid p {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 253, 247, 0.18);
  }

  .section {
    padding: 66px 0;
  }

  .section-heading h2,
  .concept-copy h2,
  .story-grid h2,
  .watch-heading h2,
  .join-section h2 {
    font-size: 34px;
  }

  .join-copy {
    font-size: 17px;
  }

  .brevo-waitlist iframe {
    min-height: 480px;
  }

  .product-media {
    min-height: 0;
  }

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

  .watch-heading,
  .latest-videos {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .site-nav {
    display: none;
  }

  .site-header {
    flex-wrap: nowrap;
  }

  .brand-lockup img {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 520px) {
  .announcement {
    gap: 10px;
    min-height: 42px;
    padding: 7px 12px;
    font-size: 11px;
  }

  .brand-lockup span {
    max-width: 132px;
    white-space: normal;
    line-height: 1.02;
  }

  .header-cta {
    min-height: 36px;
    padding: 0 10px;
    font-size: 12px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .button,
  .form-row button {
    width: 100%;
  }

  .post-submit-actions {
    gap: 10px;
  }

  .brevo-waitlist {
    padding: 0;
  }

  .brevo-waitlist iframe {
    min-height: 520px;
  }

  .post-submit-actions .text-link {
    width: 100%;
    justify-content: center;
  }

  .modal-backdrop {
    align-items: end;
    padding: 12px;
  }

  .modal-panel {
    max-height: 90vh;
    padding: 24px 18px;
  }

  .modal-panel h2 {
    padding-right: 44px;
    font-size: 31px;
  }

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

  .modal-actions .button {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-stats div {
    padding: 12px 10px;
  }

  .hero-stats dd {
    font-size: 13px;
    line-height: 1.16;
  }

  .concept-grid,
  .story-grid,
  .join-grid {
    gap: 32px;
  }

  .sticker-frame {
    padding: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
