:root {
  --ink: #142033;
  --paper: #fff8e8;
  --white: #fff;
  --red: #e3262e;
  --yellow: #ffd43b;
  --blue: #1d5cff;
  --cyan: #16d9d9;
  --pink: #ff2f9a;
  --lime: #a8ff24;
  --mint: #61efd0;
  --purple: #8067ff;
  --shadow: rgba(20, 32, 51, 0.22);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  letter-spacing: 0;
}

.chris-site {
  background:
    radial-gradient(circle at 18px 18px, rgba(17, 17, 17, 0.13) 2px, transparent 2.4px) 0 0 / 36px 36px,
    linear-gradient(135deg, #ffe052 0%, #fff8e6 34%, #d9f8ff 68%, #fff 100%);
}

.tina-site {
  background:
    radial-gradient(circle at 18px 18px, rgba(255, 47, 154, 0.22) 0 7px, transparent 8px) 0 0 / 82px 82px,
    radial-gradient(circle at 58px 48px, rgba(35, 167, 255, 0.18) 0 9px, transparent 10px) 0 0 / 92px 92px,
    linear-gradient(135deg, #fff7a8 0%, #e8fff8 35%, #f4eeff 68%, #fff3f8 100%);
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 14px;
  top: -48px;
  z-index: 50;
  padding: 10px 14px;
  border: 3px solid var(--ink);
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
}

.skip-link:focus {
  top: 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 4px solid var(--ink);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.nav {
  width: min(100%, var(--max));
  min-height: 72px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  min-width: 220px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 3px solid var(--ink);
  border-radius: 12px;
  background: linear-gradient(135deg, var(--yellow), var(--cyan));
  box-shadow: 4px 4px 0 var(--ink);
  font-family: Arial Black, Arial, sans-serif;
  font-size: 0.95rem;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-family: Arial Black, Arial, sans-serif;
  text-transform: uppercase;
}

.brand small {
  margin-top: 4px;
  font-size: 0.76rem;
  font-weight: 900;
}

.nav-links {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-links a,
.button,
.chip,
.pill {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--ink);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  font-weight: 900;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.nav-links a {
  padding: 9px 12px;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.nav-links a[aria-current="page"] {
  background: var(--yellow);
}

.nav-links a:hover,
.button:hover,
.chip:hover,
.pill:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}

.hero,
.section,
.ad-strip,
.related {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 56px 20px;
}

.hero {
  min-height: 66vh;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: 28px;
  align-items: center;
}

.hero.compact {
  min-height: auto;
  grid-template-columns: 1fr;
  padding-bottom: 28px;
}

.hero-copy {
  display: grid;
  gap: 18px;
}

.kicker {
  width: fit-content;
  max-width: 100%;
  padding: 9px 13px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 4px 4px 0 var(--ink);
  font-weight: 900;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.tina-site .kicker {
  background: var(--lime);
}

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

h1,
h2,
h3,
.brand strong {
  font-family: Arial Black, Arial, sans-serif;
}

h1 {
  max-width: 980px;
  font-size: clamp(3rem, 8vw, 6.6rem);
  line-height: 0.9;
  color: var(--red);
  text-shadow: 4px 4px 0 var(--white), 8px 8px 0 var(--ink);
  text-transform: uppercase;
}

.tina-site h1 {
  color: var(--pink);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 0.95;
  text-shadow: 3px 3px 0 var(--white), 6px 6px 0 var(--yellow);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  line-height: 1.05;
}

.hero-copy p,
.section > p,
.feature-card span,
.panel p,
.panel li,
.video-card p,
.related-card span,
.prose p,
.prose li,
.merch-card span,
.privacy-note {
  font-weight: 800;
  line-height: 1.45;
}

.hero-copy p {
  max-width: 670px;
  padding: 12px 14px;
  border-left: 8px solid var(--blue);
  background: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

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

.button,
.chip,
.pill {
  padding: 10px 14px;
}

.button.primary {
  background: var(--red);
  color: var(--white);
}

.tina-site .button.primary {
  background: var(--pink);
}

.button.secondary,
.chip.is-active,
.pill.is-active {
  background: var(--yellow);
}

.video-card,
.panel,
.feature-card,
.related-card,
.merch-card {
  border: 4px solid var(--ink);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 7px 7px 0 var(--ink);
}

.video-card {
  overflow: hidden;
}

.video-card p {
  padding: 14px;
}

.video-card.wide {
  max-width: 920px;
}

.video-shell {
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(circle at center, var(--yellow) 0 15%, transparent 16%),
    linear-gradient(135deg, var(--red), var(--blue));
}

.video-shell iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.hero-logo {
  width: min(100%, 620px);
  height: auto;
  display: block;
  padding: 22px;
  border: 5px solid var(--ink);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 12px 12px 0 var(--ink);
}

.ad-strip {
  padding-top: 10px;
  padding-bottom: 34px;
}

.ad-slot {
  min-height: 96px;
  display: grid;
  place-items: center;
  gap: 4px;
  padding: 16px;
  border: 4px dashed var(--ink);
  border-radius: 20px;
  background:
    repeating-linear-gradient(135deg, rgba(255, 212, 59, 0.55) 0 12px, rgba(22, 217, 217, 0.45) 12px 24px),
    var(--white);
  box-shadow: 6px 6px 0 var(--ink);
  text-align: center;
  text-transform: uppercase;
}

.tina-site .ad-slot {
  background:
    repeating-linear-gradient(135deg, rgba(255, 225, 93, 0.58) 0 14px, rgba(97, 239, 208, 0.52) 14px 28px),
    var(--white);
}

.ad-slot strong {
  font-size: clamp(1rem, 2.5vw, 1.45rem);
  line-height: 1;
}

.ad-slot span {
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.25;
}

.ad-slot.rectangle {
  min-height: 250px;
}

.footer-ad {
  flex: 1 1 100%;
  min-height: 82px;
  margin-top: 10px;
}

.card-grid,
.related-grid,
.merch-grid {
  display: grid;
  gap: 16px;
}

.card-grid.three,
.related-grid,
.merch-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.related-card {
  min-height: 150px;
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 16px;
  text-decoration: none;
}

.feature-card strong,
.related-card strong,
.merch-card strong {
  font-family: Arial Black, Arial, sans-serif;
  font-size: 1.24rem;
  line-height: 1.05;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 18px;
  align-items: start;
}

.panel {
  padding: 18px;
}

.panel h2 {
  margin-bottom: 12px;
}

.output-box {
  min-height: 118px;
  margin-top: 14px;
  padding: 14px;
  border: 3px dashed var(--ink);
  border-radius: 16px;
  background: #fff4c9;
  font-weight: 900;
  line-height: 1.45;
}

.name-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin-top: 14px;
}

.name-input-row input {
  min-width: 0;
  border: 3px solid var(--ink);
  border-radius: 14px;
  padding: 12px 14px;
  background: #fffdf5;
  font-weight: 900;
}

.privacy-note {
  margin-top: 10px;
  font-size: 0.9rem;
}

.check-list {
  margin: 12px 0 0;
  padding-left: 22px;
}

.prose {
  max-width: 880px;
}

.prose h2 {
  margin-top: 22px;
  margin-bottom: 10px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.prose h2:first-child {
  margin-top: 0;
}

.merch-card {
  display: grid;
  grid-template-rows: auto 1fr;
  text-decoration: none;
  overflow: hidden;
}

.merch-card picture,
.merch-card img {
  display: block;
}

.merch-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 6 / 7;
  object-fit: contain;
  padding: 12px;
  background: var(--white);
  border-bottom: 4px solid var(--ink);
}

.merch-card strong,
.merch-card span {
  padding-inline: 16px;
}

.merch-card strong {
  padding-top: 16px;
}

.merch-card span {
  padding-bottom: 16px;
}

.product-hero {
  grid-template-columns: minmax(0, 1fr) 360px;
}

.product-hero img {
  width: 100%;
  height: auto;
  border: 4px solid var(--ink);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 8px 8px 0 var(--ink);
}

.related {
  padding-top: 24px;
}

.related h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.site-footer {
  border-top: 5px solid var(--ink);
  background: var(--white);
}

.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 28px 20px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-weight: 900;
  line-height: 1.4;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.footer-inner nav a {
  text-decoration: none;
}

@media (max-width: 980px) {
  .hero,
  .split,
  .product-hero {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .card-grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand {
    min-width: 0;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
  }

  .nav-links a {
    flex: 1 1 130px;
  }

  h1 {
    text-shadow: 3px 3px 0 var(--white), 6px 6px 0 var(--ink);
  }

  .card-grid.three,
  .card-grid.four,
  .related-grid,
  .merch-grid {
    grid-template-columns: 1fr;
  }

  .name-input-row {
    grid-template-columns: 1fr;
  }
}

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