@font-face {
  font-family: "Instrument Serif";
  src: url("./assets/oinky/fonts/InstrumentSerif-Regular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Inter";
  src: url("./assets/oinky/fonts/Inter-Regular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Inter";
  src: url("./assets/oinky/fonts/Inter-SemiBold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

:root {
  color-scheme: light;
  --cream: #f8f4ee;
  --paper: #fffdfa;
  --sky: #dff3f8;
  --sky-strong: #c8e9f2;
  --butter: #f6e7a8;
  --coral: #bd4e74;
  --coral-soft: #f6dce5;
  --blueberry: #3f4c7a;
  --navy: #211b3b;
  --ink: #25183f;
  --muted: #6d6673;
  --line: rgba(37, 24, 63, 0.14);
  --line-strong: rgba(37, 24, 63, 0.24);
  --good: #286b56;
  --good-soft: #d8eee4;
  --medium: #8b5d10;
  --medium-soft: #f7e9bf;
  --explore: #7a557a;
  --explore-soft: #eaddea;
  --shadow: 0 24px 60px rgba(37, 24, 63, 0.12);
  --content: 1480px;
  font-family: "Inter", system-ui, sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--cream);
}

img,
video {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: #fff;
  background: var(--navy);
  transform: translateY(-160%);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.topbar {
  position: sticky;
  z-index: 100;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px max(24px, calc((100vw - var(--content)) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(248, 244, 238, 0.95);
  backdrop-filter: blur(18px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.brand-lockup img {
  border-radius: 11px;
  box-shadow: 0 8px 20px rgba(37, 24, 63, 0.13);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--coral);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
  gap: clamp(44px, 7vw, 120px);
  width: min(calc(100% - 48px), var(--content));
  min-height: 820px;
  margin: 0 auto;
  padding: 100px 0 112px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 32px;
  left: -210px;
  width: 420px;
  height: 420px;
  border: 78px solid rgba(255, 255, 255, 0.68);
  border-radius: 50%;
  content: "";
}

.hero-copy {
  align-self: center;
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.method-strip h2,
.source-section h2 {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.hero h1 {
  max-width: 760px;
  color: var(--blueberry);
  font-size: clamp(74px, 7.5vw, 128px);
}

.hero-summary {
  max-width: 720px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 14px 32px rgba(33, 27, 59, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--blueberry);
}

.button-secondary {
  color: var(--ink);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.52);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 54px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--line);
}

.hero-stats div {
  min-height: 105px;
  padding: 20px 18px;
  background: rgba(255, 253, 250, 0.88);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  color: var(--blueberry);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.05;
}

.hero-stats span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-stage {
  position: relative;
  align-self: center;
  min-height: 660px;
  border: 1px solid rgba(63, 76, 122, 0.12);
  border-radius: 42px;
  background: var(--sky);
  isolation: isolate;
}

.hero-stage::before,
.hero-stage::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.hero-stage::before {
  z-index: -1;
  top: 28px;
  right: 24px;
  width: 210px;
  height: 210px;
  background: var(--coral-soft);
}

.hero-stage::after {
  z-index: -1;
  bottom: 32px;
  left: 24px;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.7);
}

.hero-card {
  position: absolute;
  width: min(44%, 238px);
  overflow: hidden;
  border: 7px solid #fff;
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-card img {
  display: block;
  width: 100%;
}

.hero-card-back {
  top: 92px;
  right: 46px;
  transform: rotate(5deg);
}

.hero-card-front {
  bottom: 66px;
  left: 48px;
  transform: rotate(-4deg);
}

.hero-mascot {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 4px;
  width: 210px;
  filter: drop-shadow(0 20px 24px rgba(37, 24, 63, 0.16));
}

.hero-note {
  position: absolute;
  z-index: 4;
  top: 30px;
  left: 30px;
  max-width: 230px;
  margin: 0;
  padding: 14px 18px;
  border: 1px solid rgba(37, 24, 63, 0.1);
  border-radius: 16px;
  background: rgba(255, 253, 250, 0.92);
  box-shadow: 0 12px 30px rgba(37, 24, 63, 0.08);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 21px;
  line-height: 1.15;
}

.hero-note span {
  display: block;
  margin-bottom: 5px;
  color: var(--coral);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.method-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(48px, 8vw, 150px);
  padding: 72px max(24px, calc((100vw - var(--content)) / 2));
  color: #fff;
  background: var(--navy);
}

.method-strip .section-label {
  color: #f6a8bf;
}

.method-strip h2 {
  max-width: 520px;
  font-size: clamp(44px, 4vw, 68px);
}

.method-strip > p {
  align-self: center;
  max-width: 760px;
  margin: 0;
  color: #ded8e7;
  font-size: 18px;
  line-height: 1.7;
}

.section {
  width: min(calc(100% - 48px), var(--content));
  margin: 0 auto;
  padding: 108px 0;
}

.section + .section {
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  align-items: end;
  gap: 72px;
  margin-bottom: 52px;
}

.section-heading h2,
.source-section h2 {
  max-width: 900px;
  color: var(--blueberry);
  font-size: clamp(54px, 5.8vw, 94px);
}

.section-heading > p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.signal-card {
  position: relative;
  grid-column: span 4;
  min-height: 280px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
}

.signal-card-featured {
  grid-column: span 8;
  background: var(--sky);
}

.signal-card-dark {
  grid-column: span 8;
  color: #fff;
  background: var(--blueberry);
}

.signal-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--coral);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.signal-card-dark .signal-number {
  color: #f6a8bf;
}

.signal-card h3 {
  max-width: 480px;
  margin: 42px 0 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(30px, 2.4vw, 43px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.02;
}

.signal-card p {
  max-width: 650px;
  margin: 18px 0 48px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.signal-card-dark p {
  color: #ddd8e7;
}

.signal-proof {
  position: absolute;
  right: 30px;
  bottom: 26px;
  left: 30px;
  color: var(--coral);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.signal-card-dark .signal-proof {
  color: #f6a8bf;
}

.winner-board {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 70px;
  margin-top: 24px;
  padding: 58px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--butter);
}

.winner-board-copy h3 {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 56px;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.winner-board-copy > p:last-child {
  max-width: 420px;
  margin: 22px 0 0;
  color: #675f54;
  line-height: 1.6;
}

.winner-board ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: winners;
}

.winner-board li {
  position: relative;
  min-height: 78px;
  padding: 4px 0 22px 56px;
  border-bottom: 1px solid rgba(37, 24, 63, 0.14);
  counter-increment: winners;
}

.winner-board li + li {
  padding-top: 22px;
}

.winner-board li::before {
  position: absolute;
  top: 4px;
  left: 0;
  color: var(--coral);
  content: "0" counter(winners);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 28px;
}

.winner-board li + li::before {
  top: 22px;
}

.winner-board strong,
.winner-board span {
  display: block;
}

.winner-board strong {
  font-size: 16px;
}

.winner-board span {
  margin-top: 7px;
  color: #675f54;
  font-size: 14px;
  line-height: 1.5;
}

.swipe-section {
  width: 100%;
  padding-inline: max(24px, calc((100vw - var(--content)) / 2));
  background: #f2ede6;
}

.filters {
  position: sticky;
  z-index: 50;
  top: 72px;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto auto auto;
  align-items: end;
  gap: 12px;
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 253, 250, 0.96);
  box-shadow: 0 14px 36px rgba(37, 24, 63, 0.08);
  backdrop-filter: blur(18px);
}

.search-control {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: #fff;
}

.search-control svg {
  flex: 0 0 auto;
  fill: none;
  stroke: var(--muted);
  stroke-linecap: round;
  stroke-width: 1.8;
}

.search-control input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 14px;
}

.search-control:focus-within {
  border-color: var(--blueberry);
  box-shadow: 0 0 0 3px rgba(63, 76, 122, 0.12);
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.filter-chip,
.text-button {
  cursor: pointer;
}

.filter-chip {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font-size: 12px;
  font-weight: 600;
}

.filter-chip:hover,
.filter-chip:focus-visible,
.filter-chip.is-active {
  color: #fff;
  border-color: var(--blueberry);
  background: var(--blueberry);
}

.select-control {
  display: grid;
  gap: 5px;
}

.select-control span {
  padding-left: 2px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.select-control select {
  min-width: 132px;
  height: 42px;
  padding: 0 34px 0 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  background: #fff;
  font-size: 12px;
}

.results-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}

.results-row p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.text-button {
  padding: 8px 0;
  border: 0;
  color: var(--coral);
  background: transparent;
  font-size: 12px;
  font-weight: 600;
}

.ad-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 20px;
}

.ad-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 16px 46px rgba(37, 24, 63, 0.06);
}

.media-frame {
  position: relative;
  display: grid;
  min-height: 340px;
  aspect-ratio: 4 / 3.8;
  overflow: hidden;
  place-items: center;
  background: var(--sky);
  border-bottom: 1px solid var(--line);
}

.media-frame::after {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  color: #fff;
  background: rgba(33, 27, 59, 0.78);
  content: attr(data-format);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.media-frame img,
.media-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame.is-contain img,
.media-frame.is-contain video {
  padding: 18px;
  object-fit: contain;
}

.media-frame video {
  background: #16131f;
}

.media-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 340px;
  padding: 32px;
  color: #fff;
  background: var(--blueberry);
  place-items: center;
  text-align: center;
}

.media-placeholder span {
  display: block;
  max-width: 270px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 34px;
  line-height: 1.06;
}

.ad-card-body {
  padding: 24px;
}

.ad-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand-name {
  color: var(--coral);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.confidence-badge {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.confidence-badge.strong {
  color: var(--good);
  background: var(--good-soft);
}

.confidence-badge.medium {
  color: var(--medium);
  background: var(--medium-soft);
}

.confidence-badge.exploratory {
  color: var(--explore);
  background: var(--explore-soft);
}

.ad-title {
  margin: 18px 0 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 35px;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.02;
}

.ad-hook {
  margin: 18px 0 0;
  padding-left: 14px;
  border-left: 3px solid var(--coral);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.fact-list {
  display: grid;
  gap: 0;
  margin: 22px 0 0;
}

.fact-list div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.fact-list dt {
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fact-list dd {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.takeaway-box {
  margin-top: 18px;
  padding: 16px;
  border-radius: 14px;
  background: var(--sky);
}

.takeaway-box span {
  color: var(--blueberry);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.takeaway-box p {
  margin: 8px 0 0;
  color: var(--blueberry);
  font-size: 12px;
  line-height: 1.52;
}

.ad-card-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-top: 20px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.source-link {
  flex: 0 0 auto;
  color: var(--coral);
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
}

.source-link:hover,
.source-link:focus-visible {
  text-decoration: underline;
}

.empty-state,
.noscript-note {
  grid-column: 1 / -1;
  margin: 0;
  padding: 52px;
  border: 1px dashed var(--line-strong);
  border-radius: 20px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.45);
  text-align: center;
}

.product-section {
  width: 100%;
  padding-inline: max(24px, calc((100vw - var(--content)) / 2));
  background: var(--sky);
}

.product-loop {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(63, 76, 122, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.64);
}

.product-loop div {
  min-height: 180px;
  padding: 24px;
}

.product-loop div + div {
  border-left: 1px solid rgba(63, 76, 122, 0.18);
}

.product-loop span {
  display: grid;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  background: var(--coral);
  place-items: center;
  font-size: 11px;
  font-weight: 600;
}

.product-loop strong,
.product-loop small {
  display: block;
}

.product-loop strong {
  margin-top: 28px;
  color: var(--blueberry);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 29px;
  font-weight: 400;
}

.product-loop small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.product-frames {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.product-frames img {
  display: block;
  width: 100%;
  border: 7px solid rgba(255, 255, 255, 0.94);
  border-radius: 22px;
  box-shadow: 0 20px 46px rgba(37, 24, 63, 0.12);
}

.concept-section {
  width: 100%;
  padding-inline: max(24px, calc((100vw - var(--content)) / 2));
  color: #fff;
  background: var(--navy);
  border-top: 0 !important;
}

.concept-section .section-label {
  color: #f6a8bf;
}

.concept-section .section-heading h2 {
  color: #fff;
}

.concept-section .section-heading > p {
  color: #d8d2e1;
}

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

.concept-card {
  position: relative;
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: #30294e;
}

.concept-card:nth-child(1),
.concept-card:nth-child(5) {
  grid-column: span 6;
}

.concept-card:nth-child(1) {
  color: var(--ink);
  background: var(--butter);
}

.concept-card:nth-child(5) {
  color: var(--ink);
  background: var(--sky-strong);
}

.concept-index {
  display: grid;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  place-items: center;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 20px;
}

.concept-family {
  position: absolute;
  top: 34px;
  right: 30px;
  color: #cfc8da;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.concept-card:nth-child(1) .concept-family,
.concept-card:nth-child(5) .concept-family {
  color: var(--coral);
}

.concept-card h3 {
  margin: 62px 0 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(40px, 3.3vw, 56px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.97;
}

.concept-hook {
  margin: 28px 0 0;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
}

.concept-card:nth-child(1) .concept-hook,
.concept-card:nth-child(5) .concept-hook {
  color: var(--ink);
}

.concept-beats {
  margin: 18px 0 0;
  color: #d8d2e1;
  font-size: 13px;
  line-height: 1.62;
}

.concept-card:nth-child(1) .concept-beats,
.concept-card:nth-child(5) .concept-beats {
  color: #615a69;
}

.concept-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
  padding-top: 28px;
}

.concept-meta span {
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #d8d2e1;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.concept-card:nth-child(1) .concept-meta span,
.concept-card:nth-child(5) .concept-meta span {
  color: var(--blueberry);
  border-color: rgba(63, 76, 122, 0.25);
}

.test-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
}

.test-row {
  display: grid;
  grid-template-columns: 0.55fr 1.25fr 1.25fr 1.25fr;
}

.test-row + .test-row {
  border-top: 1px solid var(--line);
}

.test-row > * {
  min-width: 0;
  padding: 22px 24px;
  font-size: 13px;
  line-height: 1.5;
}

.test-row > * + * {
  border-left: 1px solid var(--line);
}

.test-row strong {
  color: var(--coral);
}

.test-head {
  color: #fff;
  background: var(--blueberry);
}

.test-head span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.measurement-note {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 40px;
  margin-top: 22px;
  padding: 30px;
  border-radius: 20px;
  background: var(--coral-soft);
}

.measurement-note strong {
  color: var(--coral);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.measurement-note p {
  margin: 0;
  color: #655b68;
  line-height: 1.6;
}

.source-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(50px, 8vw, 140px);
}

.source-copy {
  align-self: end;
}

.source-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
}

.source-copy > p + p {
  margin-top: 18px;
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.source-links a {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blueberry);
  background: var(--paper);
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
}

.source-links a:hover,
.source-links a:focus-visible {
  color: #fff;
  border-color: var(--blueberry);
  background: var(--blueberry);
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 34px max(24px, calc((100vw - var(--content)) / 2));
  color: #d9d2e2;
  background: var(--navy);
}

footer > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

footer img {
  border-radius: 10px;
}

footer p {
  margin: 0;
  font-size: 11px;
  line-height: 1.5;
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.75fr);
  }

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

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

  .filter-group {
    justify-content: flex-end;
  }

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

  .concept-card,
  .concept-card:nth-child(1),
  .concept-card:nth-child(5) {
    grid-column: span 6;
  }
}

@media (max-width: 920px) {
  .nav-links a:not(:last-child) {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 72px;
  }

  .hero-stage {
    width: min(100%, 620px);
    justify-self: center;
  }

  .method-strip,
  .section-heading,
  .winner-board,
  .source-section {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
    gap: 26px;
  }

  .signal-card,
  .signal-card-featured,
  .signal-card-dark {
    grid-column: span 6;
  }

  .winner-board {
    gap: 34px;
  }

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

  .product-loop div + div {
    border-left: 0;
  }

  .product-loop div:nth-child(even) {
    border-left: 1px solid rgba(63, 76, 122, 0.18);
  }

  .product-loop div:nth-child(n + 3) {
    border-top: 1px solid rgba(63, 76, 122, 0.18);
  }

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

@media (max-width: 680px) {
  .topbar {
    min-height: 64px;
  }

  .brand-lockup span {
    display: none;
  }

  .nav-links {
    gap: 14px;
  }

  .hero,
  .section {
    width: min(calc(100% - 28px), var(--content));
  }

  .hero {
    min-height: 0;
    padding: 56px 0 70px;
  }

  .hero h1 {
    font-size: clamp(61px, 20vw, 88px);
  }

  .hero-summary {
    font-size: 17px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-stats div {
    min-height: 92px;
    padding: 17px 14px;
  }

  .hero-stage {
    min-height: 500px;
    border-radius: 30px;
  }

  .hero-card {
    width: 43%;
  }

  .hero-card-back {
    top: 82px;
    right: 24px;
  }

  .hero-card-front {
    bottom: 48px;
    left: 24px;
  }

  .hero-mascot {
    width: 160px;
  }

  .hero-note {
    top: 20px;
    left: 18px;
  }

  .method-strip {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 62px 20px;
  }

  .section,
  .swipe-section,
  .product-section,
  .concept-section {
    padding: 76px 14px;
  }

  .section-heading h2,
  .source-section h2 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .signal-grid,
  .concept-grid {
    display: block;
  }

  .signal-card,
  .concept-card,
  .concept-card:nth-child(1),
  .concept-card:nth-child(5) {
    width: 100%;
    min-height: 0;
  }

  .signal-card + .signal-card,
  .concept-card + .concept-card {
    margin-top: 14px;
  }

  .concept-card {
    min-height: 470px;
  }

  .winner-board {
    padding: 30px 22px;
  }

  .winner-board-copy h3 {
    font-size: 46px;
  }

  .filters {
    position: static;
    grid-template-columns: 1fr;
  }

  .filter-group {
    justify-content: flex-start;
  }

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

  .media-frame {
    min-height: 320px;
  }

  .product-loop,
  .product-frames {
    grid-template-columns: 1fr;
  }

  .product-loop div:nth-child(even) {
    border-left: 0;
  }

  .product-loop div + div,
  .product-loop div:nth-child(n + 3) {
    border-top: 1px solid rgba(63, 76, 122, 0.18);
  }

  .product-loop div {
    min-height: 145px;
  }

  .test-table {
    border: 0;
    background: transparent;
  }

  .test-row,
  .test-head {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--paper);
  }

  .test-head {
    display: none;
  }

  .test-row + .test-row {
    border-top: 1px solid var(--line);
  }

  .test-row > * + * {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .measurement-note {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    padding-inline: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
