:root {
  --paper: #d9dadd;
  --paper-soft: #e7e8ea;
  --paper-raised: #eff0f1;
  --paper-deep: #c8cacf;
  --ink: #17181a;
  --ink-soft: #50545a;
  --line: #aeb1b6;
  --proof: #c9352d;
  --night: #1f2124;
  --night-soft: #2a2d31;
  --focus: #285a9f;
  --display: "Arial Narrow", "Helvetica Neue Condensed", "Avenir Next Condensed", sans-serif;
  --body: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --utility: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --shell: min(1180px, calc(100% - 40px));
  --section-space: clamp(80px, 11vw, 150px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

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

a {
  color: inherit;
}

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

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

h1,
h2,
h3 {
  font-family: var(--display);
  font-stretch: condensed;
  font-weight: 800;
  line-height: 0.94;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(3rem, 7vw, 6.5rem);
  letter-spacing: -0.055em;
}

.skip-link {
  left: 12px;
  padding: 10px 14px;
  position: fixed;
  top: -100px;
  z-index: 100;
  background: var(--ink);
  color: var(--paper-raised);
}

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

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.site-header {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 76px;
  padding: 0 max(20px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(217, 218, 221, 0.94);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.wordmark {
  font-family: var(--display);
  font-size: 1.06rem;
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.wordmark span {
  color: var(--proof);
}

.site-header nav {
  display: flex;
  gap: 32px;
}

.site-header nav a,
.header-action {
  font-family: var(--utility);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-header nav a {
  color: var(--ink-soft);
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  color: var(--ink);
}

.header-action {
  justify-self: end;
  border-bottom: 1px solid var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  min-height: calc(100svh - 76px);
  overflow: hidden;
}

.hero-copy {
  align-content: center;
  display: grid;
  padding: clamp(70px, 9vw, 130px) clamp(28px, 6vw, 112px);
}

.eyebrow,
.section-label {
  color: var(--ink-soft);
  font-family: var(--utility);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(4.8rem, 9.4vw, 10.25rem);
  letter-spacing: -0.075em;
  line-height: 0.84;
  margin: 28px 0;
}

.hero h1 span {
  display: block;
}

.proof-dot {
  color: var(--proof);
}

.hero-deck {
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  letter-spacing: -0.02em;
  max-width: 600px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 1px;
  cursor: pointer;
  display: inline-flex;
  font-family: var(--utility);
  font-size: 0.76rem;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.035em;
  min-height: 52px;
  padding: 14px 20px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover:not(:disabled) {
  transform: translateY(-2px);
}

.button-dark {
  background: var(--ink);
  color: var(--paper-raised);
}

.button-dark:hover:not(:disabled) {
  background: #000;
}

.button-light {
  background: var(--paper-raised);
  color: var(--ink);
}

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

.text-link {
  font-size: 0.9rem;
  text-underline-offset: 5px;
}

.hero-proof {
  min-height: 620px;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(255,255,255,0.16) 48% 49%, transparent 49%),
    var(--paper-deep);
  border-left: 1px solid var(--line);
}

.proof-sheet {
  left: 9%;
  padding: 22px;
  position: absolute;
  top: 12%;
  width: min(330px, 75%);
  z-index: 2;
  background: #e3e4e6;
  box-shadow: 0 26px 70px rgba(21, 23, 26, 0.11);
  transform: rotate(-4deg);
}

.proof-sheet > p {
  border-bottom: 1px solid var(--line);
  font-family: var(--utility);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  padding-bottom: 12px;
}

.proof-sheet dl {
  margin: 0;
}

.proof-sheet dl div {
  display: grid;
  grid-template-columns: 90px 1fr;
  padding: 8px 0;
}

.proof-sheet dt {
  color: var(--ink-soft);
  font-family: var(--utility);
  font-size: 0.64rem;
  text-transform: uppercase;
}

.proof-sheet dd {
  font-size: 0.78rem;
  margin: 0;
}

.shirt-mockup {
  bottom: -8%;
  filter: drop-shadow(0 32px 38px rgba(16, 18, 20, 0.25));
  height: 66%;
  position: absolute;
  right: -5%;
  transform: rotate(5deg);
  width: 90%;
}

.hero-product-photo {
  bottom: -4%;
  filter: drop-shadow(0 28px 34px rgba(16, 18, 20, 0.24));
  margin: 0;
  position: absolute;
  right: -4%;
  transform: rotate(4deg);
  width: min(92%, 720px);
  z-index: 1;
}

.hero-product-photo img {
  display: block;
  height: auto;
  width: 100%;
}

.hero-product-photo span {
  color: #f4f2ee;
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 4.4rem);
  font-weight: 900;
  left: 50%;
  letter-spacing: -0.07em;
  line-height: 0.84;
  position: absolute;
  text-align: center;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.58);
  top: 57%;
  transform: translate(-50%, -50%);
}

.shirt-body {
  align-items: center;
  background: #242629;
  clip-path: polygon(27% 2%, 39% 0, 45% 10%, 55% 10%, 61% 0, 73% 2%, 100% 19%, 85% 42%, 75% 35%, 77% 100%, 23% 100%, 25% 35%, 15% 42%, 0 19%);
  color: #e6e7e9;
  display: flex;
  height: 100%;
  justify-content: center;
  width: 100%;
}

.shirt-body::before {
  border: 2px solid #4d5055;
  border-radius: 50%;
  content: "";
  height: 11%;
  left: 39%;
  position: absolute;
  top: -1%;
  width: 22%;
}

.shirt-body span {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.88;
  margin-top: -10%;
  text-align: center;
}

.proof-mark {
  color: var(--proof);
  font-family: var(--display);
  font-size: 4.8rem;
  font-weight: 900;
  position: absolute;
  right: 10%;
  top: 12%;
  transform: rotate(-8deg);
}

.status-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--paper-soft);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.status-strip p {
  font-family: var(--utility);
  font-size: 0.72rem;
  margin: 0;
  padding: 18px max(20px, 4vw);
  text-transform: uppercase;
}

.status-strip p + p {
  border-left: 1px solid var(--line);
}

.status-strip span {
  color: var(--ink-soft);
  margin-right: 14px;
}

.section-shell {
  margin-inline: auto;
  width: var(--shell);
}

.intro {
  display: grid;
  gap: 40px;
  grid-template-columns: 0.35fr 1fr;
  padding-block: var(--section-space);
}

.intro h2 {
  margin-bottom: 36px;
  max-width: 980px;
}

.intro > div > p {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  max-width: 760px;
}

.product-section {
  padding-bottom: var(--section-space);
}

.section-heading {
  align-items: end;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr minmax(250px, 0.45fr);
  margin-bottom: 0;
  padding-bottom: 40px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-note {
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

.loading-note {
  grid-column: 1 / -1;
  padding: 44px 0;
}

.product-card {
  border-bottom: 1px solid var(--line);
  grid-column: span 4;
  min-width: 0;
  padding: 36px 24px 40px;
  position: relative;
}

.product-card:nth-child(3n + 2),
.product-card:nth-child(3n + 3) {
  border-left: 1px solid var(--line);
}

.product-card:nth-child(7) {
  grid-column: span 8;
}

.product-art {
  align-items: center;
  aspect-ratio: 1 / 0.84;
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
  overflow: hidden;
  position: relative;
  background: var(--paper-soft);
}

.product-art::after {
  color: var(--ink-soft);
  content: "MOCKUP / " attr(data-placement);
  font-family: var(--utility);
  font-size: 0.6rem;
  left: 12px;
  letter-spacing: 0.06em;
  position: absolute;
  top: 12px;
}

.product-art.product-photo {
  background: #e8e6e1;
}

.product-photo img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.photo-phrase {
  color: #f4f2ee;
  font-family: var(--display);
  font-size: clamp(0.76rem, 1.7vw, 1.25rem);
  font-weight: 900;
  left: 50%;
  letter-spacing: -0.06em;
  line-height: 0.86;
  max-width: 42%;
  position: absolute;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
  top: 53%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.mock-garment {
  align-items: center;
  background: var(--mock-color, #292b2f);
  clip-path: polygon(25% 2%, 38% 0, 44% 10%, 56% 10%, 62% 0, 75% 2%, 100% 18%, 84% 42%, 75% 35%, 78% 100%, 22% 100%, 25% 35%, 16% 42%, 0 18%);
  color: var(--mock-ink, #e7e8ea);
  display: flex;
  height: 72%;
  justify-content: center;
  width: 67%;
}

.mock-garment span,
.mock-cap span,
.mock-mug span,
.mock-onesie span {
  font-family: var(--display);
  font-size: clamp(0.7rem, 1.2vw, 1rem);
  font-stretch: condensed;
  font-weight: 900;
  line-height: 0.9;
  text-align: center;
}

.mock-hoodie {
  border-radius: 8% 8% 4% 4%;
  clip-path: polygon(29% 7%, 38% 0, 62% 0, 71% 7%, 94% 18%, 83% 43%, 75% 35%, 78% 100%, 22% 100%, 25% 35%, 17% 43%, 6% 18%);
}

.mock-hoodie::before {
  border: 10px solid #34373b;
  border-radius: 50% 50% 35% 35%;
  content: "";
  height: 23%;
  position: absolute;
  top: 12%;
  width: 24%;
}

.mock-cap {
  align-items: center;
  background: #2a2c2f;
  border-radius: 50% 50% 28% 28%;
  color: #e4e5e7;
  display: flex;
  height: 44%;
  justify-content: center;
  position: relative;
  width: 58%;
}

.mock-cap::after {
  background: #222427;
  border-radius: 0 100% 40% 70%;
  bottom: -8%;
  content: "";
  height: 28%;
  position: absolute;
  right: -22%;
  transform: rotate(9deg);
  width: 55%;
}

.mock-cap-soft {
  border-radius: 62% 62% 34% 34%;
  transform: rotate(-4deg);
}

.mock-mug {
  align-items: center;
  background: #e8e9ea;
  border: 1px solid #b9bbc0;
  border-radius: 4px 4px 18px 18px;
  display: flex;
  height: 55%;
  justify-content: center;
  position: relative;
  width: 43%;
}

.mock-mug::after {
  border: 13px solid #e8e9ea;
  border-left: 0;
  border-radius: 0 50% 50% 0;
  content: "";
  height: 39%;
  position: absolute;
  right: -25%;
  top: 24%;
  width: 22%;
}

.mock-onesie {
  align-items: center;
  background: #e8e9ea;
  clip-path: polygon(31% 0, 42% 7%, 58% 7%, 69% 0, 84% 11%, 73% 30%, 69% 28%, 73% 72%, 61% 100%, 50% 90%, 39% 100%, 27% 72%, 31% 28%, 27% 30%, 16% 11%);
  display: flex;
  height: 75%;
  justify-content: center;
  width: 53%;
}

.mock-onesie.bum span {
  margin-top: 35%;
}

.product-kicker {
  color: var(--ink-soft);
  font-family: var(--utility);
  font-size: 0.66rem;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.product-card h3 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  letter-spacing: -0.045em;
  margin-bottom: 12px;
}

.product-price {
  font-family: var(--utility);
  font-size: 0.82rem;
}

.product-meta {
  color: var(--ink-soft);
  font-size: 0.82rem;
  min-height: 3.8em;
}

.swatches {
  display: flex;
  gap: 8px;
  margin: 18px 0 26px;
}

.swatch {
  border: 1px solid #8d9096;
  border-radius: 50%;
  height: 16px;
  width: 16px;
}

.swatch-black { background: #242629; }
.swatch-white { background: #eceeef; }
.swatch-heather-grey { background: #aeb1b5; }
.swatch-pink { background: #d9b4b8; }
.swatch-baby-blue { background: #adc7d8; }

.choose-product {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink);
  cursor: pointer;
  font-family: var(--utility);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  padding: 0 0 5px;
  text-transform: uppercase;
}

.card-language-label {
  display: block;
  font-family: var(--utility);
  font-size: 0.64rem;
  letter-spacing: 0.05em;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.card-language {
  appearance: none;
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: 0;
  display: block;
  font-size: 0.78rem;
  min-height: 44px;
  padding: 9px 34px 9px 11px;
  width: 100%;
}

.review-note {
  color: var(--ink-soft);
  display: block;
  font-size: 0.68rem;
  margin: 7px 0 20px;
}

.field small {
  color: var(--ink-soft);
  font-size: 0.68rem;
}

.order-section {
  border-top: 1px solid var(--line);
  display: grid;
  gap: clamp(50px, 9vw, 120px);
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  padding-block: var(--section-space);
}

.order-copy h2 {
  margin: 26px 0 34px;
}

.order-copy > p {
  max-width: 480px;
}

.po-example {
  border-left: 4px solid var(--proof);
  margin-top: 48px;
  padding: 14px 0 14px 22px;
}

.po-example p {
  font-family: var(--utility);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.po-example ul {
  color: var(--ink-soft);
  font-size: 0.88rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.order-form {
  align-self: start;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
  padding: clamp(24px, 5vw, 52px);
}

.field {
  display: grid;
  gap: 8px;
}

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

.field label,
.translator-form label {
  font-family: var(--utility);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.field input,
.field select,
.translator-form textarea,
.email-form input {
  appearance: none;
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: 0;
  min-height: 52px;
  padding: 12px 14px;
  width: 100%;
}

.field select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 22px,
    calc(100% - 13px) 22px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
  padding-right: 36px;
}

.field select:disabled {
  opacity: 0.6;
}

.order-summary {
  align-items: center;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  padding: 18px 0;
}

.order-summary span {
  color: var(--ink-soft);
  font-family: var(--utility);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.order-summary strong {
  text-align: right;
}

.form-message {
  color: var(--ink-soft);
  font-size: 0.78rem;
  margin: 0;
}

.form-message.is-error {
  color: #8d1d18;
}

.form-message.is-success {
  color: #1c633f;
}

.translator-section {
  background: var(--night);
  color: var(--paper-raised);
  padding-block: var(--section-space);
}

.translator-shell {
  display: grid;
  gap: clamp(40px, 7vw, 90px);
  grid-template-columns: 0.6fr 0.7fr 1fr;
  margin-inline: auto;
  width: var(--shell);
}

.translator-section .section-label {
  color: #a7aaaf;
}

.translator-intro h2 {
  font-size: clamp(3.7rem, 7vw, 7rem);
  margin: 26px 0 34px;
}

.translator-intro p:last-child {
  color: #b9bcc1;
  max-width: 460px;
}

.translator-form {
  align-self: center;
  display: grid;
  gap: 12px;
}

.translator-form textarea {
  background: var(--night-soft);
  border-color: #555960;
  color: var(--paper-raised);
  min-height: 160px;
  resize: vertical;
}

.translator-output {
  align-self: center;
  background: #dfe0e2;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.28);
  color: var(--ink);
  padding: clamp(24px, 4vw, 42px);
  transform: rotate(1deg);
}

.translator-output > header,
.translator-output > footer {
  align-items: center;
  display: flex;
  font-family: var(--utility);
  font-size: 0.62rem;
  justify-content: space-between;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.translator-output h3 {
  border-bottom: 5px solid var(--ink);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  letter-spacing: -0.055em;
  margin: 42px 0 26px;
  padding-bottom: 22px;
}

.translator-output dl {
  margin: 0 0 34px;
}

.translator-output dl div {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 16px;
  grid-template-columns: 100px 1fr;
  padding: 14px 0;
}

.translator-output dt {
  color: var(--ink-soft);
  font-family: var(--utility);
  font-size: 0.64rem;
  text-transform: uppercase;
}

.translator-output dd {
  font-size: 0.85rem;
  margin: 0;
}

.share-button {
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  padding: 0 0 3px;
  text-transform: uppercase;
}

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

.email-section {
  align-items: end;
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr 1fr;
  padding-block: var(--section-space);
}

.email-section h2 {
  margin: 24px 0 0;
}

.email-form {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr auto;
}

.email-form .form-message {
  grid-column: 1 / -1;
}

.answers-section {
  padding-bottom: var(--section-space);
}

.answers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.answers-grid details {
  border-bottom: 1px solid var(--line);
  padding: 26px 22px 26px 0;
}

.answers-grid details:nth-child(even) {
  border-left: 1px solid var(--line);
  padding-left: 22px;
}

.answers-grid summary {
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.45rem;
  font-stretch: condensed;
  font-weight: 800;
  list-style: none;
  text-transform: uppercase;
}

.answers-grid summary::-webkit-details-marker {
  display: none;
}

.answers-grid summary::after {
  content: "+";
  float: right;
  font-family: var(--utility);
}

.answers-grid details[open] summary::after {
  content: "−";
}

.answers-grid details p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin: 20px 0 0;
  max-width: 540px;
}

.site-footer {
  align-items: end;
  background: var(--night);
  color: var(--paper-raised);
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr auto;
  padding: 70px max(20px, calc((100vw - 1180px) / 2)) 34px;
}

.footer-wordmark {
  display: inline-block;
  font-size: clamp(2.3rem, 6vw, 5.3rem);
  margin-bottom: 16px;
}

.site-footer > div p,
.copyright {
  color: #aeb1b7;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.site-footer nav a {
  font-family: var(--utility);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.copyright {
  font-family: var(--utility);
  font-size: 0.62rem;
  grid-column: 1 / -1;
  margin: 40px 0 0;
}

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

.policy-page,
.result-page {
  min-height: 100svh;
}

.policy-shell {
  margin-inline: auto;
  padding: var(--section-space) 0;
  width: min(860px, calc(100% - 40px));
}

.policy-shell > header {
  border-bottom: 1px solid var(--line);
  margin-bottom: 70px;
  padding-bottom: 50px;
}

.policy-shell h1,
.result-card h1 {
  font-size: clamp(4rem, 10vw, 8rem);
  letter-spacing: -0.06em;
  margin: 26px 0 38px;
}

.policy-warning {
  border-left: 4px solid var(--proof);
  max-width: 680px;
  padding-left: 20px;
}

.policy-shell section {
  border-bottom: 1px solid var(--line);
  padding: 44px 0;
  scroll-margin-top: 110px;
}

.policy-shell section h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: -0.04em;
}

.policy-shell section p {
  max-width: 720px;
}

.result-page {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 24px;
}

.result-card {
  background: var(--paper-soft);
  border: 1px solid var(--line);
  max-width: 780px;
  padding: clamp(32px, 7vw, 80px);
}

.result-card p:not(.section-label) {
  font-size: 1.12rem;
  margin-bottom: 34px;
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

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

  .hero-proof {
    border-left: 0;
    border-top: 1px solid var(--line);
    min-height: 620px;
  }

  .product-card {
    grid-column: span 6;
  }

  .product-card:nth-child(n) {
    border-left: 0;
  }

  .product-card:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .product-card:nth-child(7) {
    grid-column: span 12;
  }

  .order-section {
    grid-template-columns: 1fr;
  }

  .translator-shell {
    grid-template-columns: 1fr 1fr;
  }

  .translator-output {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: min(100% - 28px, 1180px);
  }

  .site-header {
    min-height: 66px;
  }

  .header-action {
    font-size: 0.64rem;
  }

  .hero-copy {
    padding-block: 68px;
  }

  .hero h1 {
    font-size: clamp(4.3rem, 21vw, 6.4rem);
    line-height: 0.86;
  }

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

  .text-link {
    text-align: center;
  }

  .hero-proof {
    min-height: 470px;
  }

  .proof-sheet {
    left: 6%;
    top: 7%;
  }

  .shirt-mockup {
    height: 62%;
    width: 105%;
  }

  .hero-product-photo {
    bottom: -2%;
    right: -7%;
    width: 108%;
  }

  .status-strip {
    grid-template-columns: 1fr;
  }

  .status-strip p + p {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .intro,
  .section-heading,
  .email-section {
    grid-template-columns: 1fr;
  }

  .intro {
    gap: 10px;
  }

  h2 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .product-card,
  .product-card:nth-child(7) {
    grid-column: span 12;
    padding-inline: 0;
  }

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

  .product-art {
    aspect-ratio: 1 / 0.78;
  }

  .order-form {
    grid-template-columns: 1fr;
  }

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

  .order-summary {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }

  .order-summary strong {
    text-align: left;
  }

  .translator-shell {
    grid-template-columns: 1fr;
  }

  .translator-output {
    transform: none;
  }

  .email-form {
    grid-template-columns: 1fr;
  }

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

  .answers-grid details:nth-child(even) {
    border-left: 0;
    padding-left: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
