:root {
  --ink: #1d2521;
  --muted: #64706b;
  --paper: #f5f0e7;
  --paper-deep: #e8dcc8;
  --panel: #fffaf0;
  --line: rgba(29, 37, 33, 0.14);
  --green: #2e6f59;
  --green-dark: #184b3b;
  --red: #cf3f35;
  --gold: #c99a32;
  --blue: #315c9a;
  --shadow: 0 18px 44px rgba(29, 37, 33, 0.11);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(29, 37, 33, 0.024) 1px, transparent 1px),
    linear-gradient(180deg, rgba(29, 37, 33, 0.024) 1px, transparent 1px),
    var(--paper);
  background-size: 56px 56px;
  color: var(--ink);
  font-family: "Aptos", "Segoe UI", "Helvetica Neue", sans-serif;
  font-size: 15px;
  line-height: 1.55;
}

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

code {
  background: rgba(24, 75, 59, 0.08);
  border: 1px solid rgba(24, 75, 59, 0.14);
  border-radius: 6px;
  color: var(--green-dark);
  padding: 0.08rem 0.3rem;
  word-break: break-word;
}

pre {
  margin: 1.5rem 0 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #19201d;
  color: #f7ead4;
  padding: 1.2rem;
}

pre code {
  background: transparent;
  border: 0;
  color: inherit;
  padding: 0;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  min-height: 58px;
  padding: 0 5vw;
  background: rgba(245, 240, 231, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.site-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  max-width: 1180px;
  min-height: 58px;
  margin: 0 auto;
  padding-left: 2px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.92rem;
  font-weight: 760;
}

.brand-mark {
  width: 17px;
  height: 17px;
  border: 3px solid var(--red);
  border-radius: 50%;
  box-shadow:
    0 0 0 3px #ffffff,
    0 0 0 4px rgba(29, 37, 33, 0.2);
}

.site-nav nav {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.6rem);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
}

.site-nav nav a {
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.site-nav nav a:hover {
  color: var(--ink);
  border-color: var(--red);
}

.hero {
  position: relative;
  min-height: auto;
  padding: 7.2rem 5vw 3.6rem;
  background:
    linear-gradient(135deg, rgba(24, 75, 59, 0.12), transparent 42%),
    var(--paper);
  color: var(--ink);
}

.hero::after {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 1180px;
  margin: 0 auto;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  color: var(--red);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--red);
}

.eyebrow a {
  border-bottom: 2px solid transparent;
}

.eyebrow a:hover {
  border-color: currentColor;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.05rem, 4.35vw, 3.55rem);
  font-weight: 700;
  line-height: 1;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 1.85vw, 1.7rem);
  line-height: 1.18;
}

h3 {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.25;
}

.hero-subtitle {
  max-width: 560px;
  margin: 1.25rem 0 0;
  font-size: clamp(0.9rem, 1.15vw, 1.02rem);
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.55rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 0.7rem 1.1rem;
  font-weight: 760;
  font-size: 0.86rem;
}

.button.primary {
  background: var(--green-dark);
  color: #fffaf0;
}

.button.ghost {
  border: 1px solid rgba(24, 75, 59, 0.3);
  color: var(--green-dark);
}

.rank-emphasis {
  color: var(--red);
  font-weight: 900;
}

.metric-band {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1180px;
  margin: 0 auto;
  border: 1px solid var(--line);
  background: var(--line);
  box-shadow: var(--shadow);
}

.metric {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 250, 240, 0.94)),
    var(--panel);
  padding: 1.1rem 1.2rem;
}

.metric-label,
.metric span:last-child {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
}

.metric strong {
  display: block;
  margin: 0.32rem 0 0.2rem;
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 1.8vw, 1.62rem);
  line-height: 1;
}

.team-section {
  padding-top: 1.2rem;
}

.team-heading {
  margin-bottom: 1.5rem;
}

.team-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(24, 75, 59, 0.06), transparent 36%),
    rgba(255, 250, 240, 0.94);
  box-shadow: var(--shadow);
  padding: 0.9rem 1rem 1rem;
}

.team-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.team-member {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.7rem;
  align-items: start;
  padding: 0.72rem 0.8rem;
  border: 1px solid rgba(29, 37, 33, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(24, 75, 59, 0.035), transparent 42%),
    rgba(255, 250, 240, 0.76);
}

.team-member:last-child {
  grid-column: 1 / -1;
}

.team-member-index {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
}

.team-member-content {
  display: grid;
  gap: 0.12rem;
}

.team-member-content strong {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.team-member-content strong a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(29, 37, 33, 0.38);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.12em;
}

.team-member-content strong a:hover {
  color: inherit;
  text-decoration-color: rgba(29, 37, 33, 0.62);
}

.team-member-content span {
  color: var(--muted);
  font-size: 0.82rem;
}

.team-member-content a {
  width: fit-content;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(24, 75, 59, 0.36);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

.team-member-content a:hover {
  color: var(--red);
  text-decoration-color: currentColor;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(2.5rem, 4.7vw, 3.65rem) 0 0;
}

.two-column,
.section-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(1.8rem, 4.8vw, 3.4rem);
  align-items: start;
}

.report-heading {
  border-top: 1px solid var(--line);
  padding-top: 1.6rem;
}

.lead-copy,
.section-heading > p,
.example-copy p,
.score-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: justify;
  text-justify: inter-word;
}

.section-heading > :nth-child(2) {
  margin-left: 1.6rem;
}

.section-heading > p {
  max-width: 36rem;
}

.example-copy strong {
  color: var(--green-dark);
  font-weight: 800;
}

.lead-copy p + p {
  margin-top: 1rem;
}

.method-section .section-heading,
.results-section .section-heading,
.examples-section .section-heading {
  margin-bottom: 1.5rem;
}

.section-heading h2 {
  max-width: 14ch;
}

.pipeline-map {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 20%, rgba(207, 63, 53, 0.1), transparent 28%),
    radial-gradient(circle at 78% 12%, rgba(46, 111, 89, 0.12), transparent 30%),
    rgba(255, 250, 240, 0.88);
  box-shadow: 0 10px 26px rgba(29, 37, 33, 0.06);
  padding: clamp(1rem, 2vw, 1.5rem);
}

.pipeline-lane {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem 2.4rem;
  align-items: stretch;
}

.flow-node {
  position: relative;
  min-height: 156px;
  border: 1px solid rgba(29, 37, 33, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.94);
  padding: 1.05rem 1.1rem;
}

.flow-node:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.flow-node:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.flow-node:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}

.flow-node:nth-child(4) {
  grid-column: 3;
  grid-row: 2;
}

.flow-node:nth-child(5) {
  grid-column: 2;
  grid-row: 2;
}

.flow-node:nth-child(6) {
  grid-column: 1;
  grid-row: 2;
}

.flow-node:nth-child(1)::after,
.flow-node:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1.55rem;
  width: 1.05rem;
  height: 2px;
  background: rgba(29, 37, 33, 0.24);
}

.flow-node:nth-child(1)::before,
.flow-node:nth-child(2)::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -1.55rem;
  width: 9px;
  height: 9px;
  border-top: 2px solid rgba(29, 37, 33, 0.36);
  border-right: 2px solid rgba(29, 37, 33, 0.36);
  transform: translateY(-50%) rotate(45deg);
  z-index: 1;
}

.flow-node:nth-child(3)::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: -1.35rem;
  width: 2px;
  height: 1.35rem;
  background: rgba(29, 37, 33, 0.24);
  transform: translateX(50%);
}

.flow-node:nth-child(3)::before {
  content: "";
  position: absolute;
  right: 50%;
  bottom: -1.43rem;
  width: 9px;
  height: 9px;
  border-top: 2px solid rgba(29, 37, 33, 0.36);
  border-right: 2px solid rgba(29, 37, 33, 0.36);
  transform: translateX(50%) rotate(135deg);
  z-index: 1;
}

.flow-node:nth-child(4)::after,
.flow-node:nth-child(5)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -1.55rem;
  width: 1.05rem;
  height: 2px;
  background: rgba(29, 37, 33, 0.24);
}

.flow-node:nth-child(4)::before,
.flow-node:nth-child(5)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -1.55rem;
  width: 9px;
  height: 9px;
  border-top: 2px solid rgba(29, 37, 33, 0.36);
  border-right: 2px solid rgba(29, 37, 33, 0.36);
  transform: translateY(-50%) rotate(225deg);
  z-index: 1;
}

.stage-head {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 50%;
  background: var(--muted);
  color: #fffaf0;
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
}

.stage-pill {
  display: inline-flex;
  border-radius: 999px;
  padding: 0.18rem 0.55rem;
  background: rgba(29, 37, 33, 0.07);
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 850;
}

.flow-node h3 {
  color: var(--ink);
  font-size: 0.98rem;
}

.stage-visual {
  display: block;
  width: 100%;
  height: auto;
  max-height: 168px;
  margin-top: 0.72rem;
  border: 1px solid rgba(29, 37, 33, 0.12);
  border-radius: 7px;
  background: rgba(245, 240, 231, 0.72);
  object-fit: contain;
}

.flow-node p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.gemini-node {
  border-color: rgba(49, 92, 154, 0.22);
}

.gemini-node .stage-pill {
  background: rgba(49, 92, 154, 0.1);
  color: var(--blue);
}

.gemini-node .step-badge {
  background: var(--blue);
}

.molmo-node {
  border-color: rgba(46, 111, 89, 0.25);
}

.molmo-node .stage-pill,
.output-node .stage-pill {
  background: rgba(46, 111, 89, 0.1);
  color: var(--green-dark);
}

.molmo-node .step-badge,
.output-node .step-badge {
  background: var(--green-dark);
}

.judge-node {
  border-color: rgba(207, 63, 53, 0.25);
}

.judge-node .stage-pill,
.input-node .stage-pill {
  background: rgba(207, 63, 53, 0.1);
  color: var(--red);
}

.judge-node .step-badge,
.input-node .step-badge {
  background: var(--red);
}

.score-summary {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.9);
  box-shadow: var(--shadow);
}

.score-summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.score-ring {
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--panel) 0 56%, transparent 57%),
    conic-gradient(var(--green) 0 86.05%, rgba(24, 75, 59, 0.14) 86.05% 100%);
}

.score-ring span {
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.38rem;
  font-weight: 800;
}

.score-summary h3 {
  margin-bottom: 0.5rem;
  font-size: 1.12rem;
}

.comparison-panel {
  margin-top: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(24, 75, 59, 0.06), transparent 34%),
    rgba(255, 250, 240, 0.94);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.comparison-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr);
  gap: 1.25rem;
  align-items: end;
  padding: 1.15rem 1.25rem;
}

.mini-kicker {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--red);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-heading h3 {
  color: var(--green-dark);
  font-size: 1.08rem;
}

.comparison-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  text-align: justify;
  text-justify: inter-word;
}

.comparison-table-wrap {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  background: rgba(255, 250, 240, 0.92);
}

.comparison-table th,
.comparison-table td {
  padding: 0.75rem 0.95rem;
  border-top: 1px solid var(--line);
  text-align: center;
  white-space: nowrap;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
}

.comparison-table thead th {
  border-top: 0;
  background: var(--green-dark);
  color: #fffaf0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 800;
}

.comparison-table tbody th {
  color: var(--ink);
  font-weight: 780;
}

.comparison-table tbody td {
  color: var(--ink);
  font-weight: 700;
}

.comparison-table tbody tr:nth-child(even) {
  background: rgba(24, 75, 59, 0.035);
}

.comparison-table .ours-row {
  background: linear-gradient(90deg, rgba(207, 63, 53, 0.08), rgba(201, 154, 50, 0.08));
}

.comparison-table .ours-row th,
.comparison-table .ours-row td {
  color: var(--red);
  font-weight: 900;
}

.source-link {
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 850;
}

.comparison-sources {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.8rem;
  border-top: 1px solid var(--line);
  padding: 0.85rem 1.25rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.comparison-sources > span:first-child {
  color: var(--ink);
  font-weight: 850;
}

.source-item {
  color: var(--muted);
  font-weight: 680;
}

.source-num {
  color: var(--green-dark);
  font-weight: 850;
}

.comparison-sources a.source-item {
  color: var(--green-dark);
  font-weight: 760;
  text-decoration: underline;
  text-decoration-color: rgba(24, 75, 59, 0.38);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.comparison-sources a.source-item:hover {
  color: var(--red);
  text-decoration-color: currentColor;
}

.example-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.example-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.example-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #fff;
}

.example-copy {
  padding: 0.9rem 1rem 1rem;
  border-top: 1px solid var(--line);
}

.example-copy span {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(207, 63, 53, 0.2);
  border-radius: 999px;
  background: rgba(207, 63, 53, 0.08);
  padding: 0.18rem 0.55rem;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.query-pair {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(29, 37, 33, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.58);
}

.query-pair p {
  display: grid;
  grid-template-columns: 7.4rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: baseline;
  margin: 0;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 660;
  line-height: 1.48;
  padding: 0.68rem 0.82rem;
}

.query-pair p + p {
  border-top: 1px solid rgba(29, 37, 33, 0.1);
}

.query-pair strong {
  color: rgba(29, 37, 33, 0.54);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.01em;
}

.query-pair b {
  color: inherit;
  font-weight: 760;
}

.todo {
  margin-top: 1.2rem;
  border-left: 4px solid var(--gold);
  padding-left: 1rem;
}

.footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 4rem 0 3rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.footer p {
  margin: 0;
}

.footer p + p {
  margin-top: 0.35rem;
}

.footer-code-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--green-dark);
  font-weight: 760;
  text-decoration: underline;
  text-decoration-color: rgba(24, 75, 59, 0.34);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

.footer-code-link a:hover {
  color: var(--red);
  text-decoration-color: currentColor;
}

.footer-code-icon {
  display: inline-flex;
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

.footer-code-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

@media (max-width: 860px) {
  .site-nav {
    min-height: auto;
    padding: 0.8rem 5vw;
  }

  .site-nav-inner {
    align-items: flex-start;
    flex-direction: column;
    min-height: auto;
    padding-left: 0;
  }

  .site-nav nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 0.1rem;
  }

  .hero {
    padding-top: 7.5rem;
    padding-bottom: 3rem;
  }

  .hero-copy {
    max-width: none;
  }

  .two-column,
  .section-heading,
  .score-summary {
    grid-template-columns: 1fr;
  }

  .section-heading > p {
    padding-left: 0;
  }

  .section-heading > :nth-child(2) {
    margin-left: 0;
  }

  .metric-band {
    grid-template-columns: 1fr;
    margin-left: 5vw;
    margin-right: 5vw;
  }

  .team-panel {
    padding: 0.9rem;
  }

  .section {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .footer {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .pipeline-lane {
    grid-template-columns: 1fr;
  }

  .flow-node {
    grid-column: auto !important;
    grid-row: auto !important;
    min-height: auto;
  }

  .flow-node:not(:last-child)::after {
    content: "";
    position: absolute;
    top: auto;
    right: 50%;
    bottom: -1.45rem;
    width: 2px;
    height: 0.95rem;
    background: rgba(29, 37, 33, 0.24);
    transform: translateX(50%);
  }

  .flow-node:not(:last-child)::before {
    content: "";
    position: absolute;
    top: auto;
    right: 50%;
    bottom: -1.52rem;
    width: 9px;
    height: 9px;
    border-top: 2px solid rgba(29, 37, 33, 0.36);
    border-right: 2px solid rgba(29, 37, 33, 0.36);
    transform: translateX(50%) rotate(135deg);
  }

  .flow-node:nth-child(4)::after,
  .flow-node:nth-child(5)::after {
    top: auto;
    left: auto;
    right: 50%;
    bottom: -1.45rem;
    width: 2px;
    height: 0.95rem;
    transform: translateX(50%);
  }

  .flow-node:nth-child(4)::before,
  .flow-node:nth-child(5)::before {
    top: auto;
    left: auto;
    right: 50%;
    bottom: -1.52rem;
    transform: translateX(50%) rotate(135deg);
  }

  .flow-node:last-child::before,
  .flow-node:last-child::after {
    display: none;
  }

  .comparison-heading {
    grid-template-columns: 1fr;
  }

  .score-ring {
    width: 150px;
    height: 150px;
  }

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

  .team-list {
    grid-template-columns: 1fr;
  }

  .team-member {
    grid-template-columns: 1fr;
    grid-column: auto !important;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: clamp(2rem, 10.5vw, 2.85rem);
  }

  h2 {
    font-size: clamp(1.16rem, 5.8vw, 1.48rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .query-pair p {
    grid-template-columns: 1fr;
    gap: 0.18rem;
  }

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

}
