:root {
  --cork: #ffffff;
  --cork-dark: #e8e8e8;
  --ink: #111;
  --paper: #ffffff;
  --tape-black: #1c1c1c;
  --tape-red: #c21f1a;
  --tape-yellow: #c21f1a;
  --tape-blue: #1d4b8c;
  --tape-green: #2f6a38;
  --tape-white: #f3f3f3;
  --letter: #f6f6f6;
  --max: 1080px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; overflow-x: clip; background: #fff; }

@font-face {
  font-family: "Impact Label";
  src: url("../fonts/Impact%20Label.woff2") format("woff2"),
       url("../fonts/Impact%20Label.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Impact Label Reversed";
  src: url("../fonts/Impact%20Label%20Reversed.woff2") format("woff2"),
       url("../fonts/Impact%20Label%20Reversed.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "Special Elite", "Courier New", monospace;
  color: var(--ink);
  line-height: 1.55;
  background: #fff;
  min-height: 100vh;
  overflow-x: clip;
}

img {
  max-width: 100%;
  display: block;
  filter: grayscale(1);
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }

.wrap {
  width: min(var(--max), calc(100% - 28px));
  margin-inline: auto;
  max-width: 100%;
  overflow-x: clip;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Dymo strip */
.tape {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Impact Label Reversed", "Impact Label", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-kerning: none;
  font-feature-settings: "kern" 0;
  font-synthesis: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1;
  padding: 0.42em 0.95em 0.36em 1.05em;
  border-radius: 1px;
  position: relative;
  white-space: nowrap;
  isolation: isolate;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  border: 0;
  filter: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18);
}

.tape::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.05) 28%,
    transparent 55%,
    rgba(0, 0, 0, 0.08) 100%
  );
}

.tape::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 42%;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
}

.emboss,
.emboss-dark { color: #f4eee6; -webkit-text-stroke: 0; text-shadow: none; }
.tape-black.emboss,
.tape-black.emboss-dark { color: #f4eee6; }
.tape-red.emboss,
.tape-red.emboss-dark { color: #ffe8e4; }
.tape-yellow { font-family: "Impact Label Reversed", "Impact Label", sans-serif; }
.tape-yellow.emboss,
.tape-yellow.emboss-dark { color: #ffe8e4; }
.tape-green.emboss,
.tape-green.emboss-dark { color: #eef8eb; }
.tape-blue.emboss,
.tape-blue.emboss-dark { color: #e8f0ff; }

.tape-black { background: linear-gradient(180deg, #2a2a2a, #161616); }
.tape-red { background: linear-gradient(180deg, #f1322a, #e11d18 45%, #c91612); }
.tape-yellow { background: linear-gradient(180deg, #f1322a, #e11d18 45%, #c91612); }
.tape-blue { background: linear-gradient(180deg, #2c66b8, #1a4788); }
.tape-green { background: linear-gradient(180deg, #3e8f48, #2a6a32); }
.tape-white { background: linear-gradient(180deg, #2a2a2a, #161616); }
.tape-gray { background: linear-gradient(180deg, #5a5a5a, #333); }

.tilt-l { transform: rotate(-1.4deg); }
.tilt-r { transform: rotate(1.1deg); }
.tilt-ll { transform: rotate(-2.4deg); }
.tilt-rr { transform: rotate(2deg); }

.sm { font-size: 0.95rem; padding: 0.42em 0.72em 0.32em 0.78em; letter-spacing: 0.08em; }
.md { font-size: clamp(1.15rem, 2.3vw, 1.5rem); padding: 0.44em 0.8em 0.34em 0.88em; letter-spacing: 0.08em; }
.lg { font-size: clamp(1.9rem, 6.2vw, 4.2rem); padding: 0.42em 0.78em 0.32em 0.86em; letter-spacing: 0.06em; }
.xl { font-size: clamp(2.3rem, 7.6vw, 5.4rem); padding: 0.4em 0.74em 0.3em 0.82em; letter-spacing: 0.06em; }

.tape.block {
  width: 100%;
  white-space: normal;
  text-align: center;
  cursor: pointer;
}

.tape:disabled {
  opacity: 0.65;
  cursor: wait;
}

/* NAV */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 0.85rem 0;
  background: #fff;
  backdrop-filter: blur(6px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* HERO */
.hero { padding: 1.4rem 0 1.2rem; }

.hero-tapes {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 1rem 0 1.1rem;
}

.tape-row,
.lede-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.5rem;
  align-items: center;
  margin: 0 0 1.1rem;
}

.card {
  background: #fff;
  border: 0;
  box-shadow: none;
  padding: 1.15rem 0 1.2rem;
  max-width: 46rem;
  position: relative;
}

.hero-grid {
  display: grid;
  gap: 1rem;
  align-items: start;
  margin-top: 0.4rem;
}

.hero-grid > *,
.cta-grid > *,
.split > *,
.for-grid > *,
.work-stage > *,
.steps > *,
.proof > *,
.review-wall > * {
  min-width: 0;
}

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

.value-list {
  list-style: none;
  display: grid;
  gap: 0.5rem;
  margin-top: 0.9rem;
}

.value-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}

/* PROOF */
.proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  padding: 1.4rem 0 2rem;
}

.proof article {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
}

.proof p {
  background: #fff;
  padding: 0.45rem 0.55rem;
  font-size: 0.88rem;
  box-shadow: none;
}

.review-wall {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem 1rem;
  max-width: 46rem;
  align-items: start;
}

.g-reviews {
  max-width: 46rem;
  width: 100%;
}

.g-reviews iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
}

.gr-embed {
  width: 100%;
  font-family: Roboto, Arial, sans-serif;
  color: #202124;
  background: #fff;
  border: 1px solid #dadce0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.15), 0 1px 3px 1px rgba(60, 64, 67, 0.12);
}

.gr-head {
  padding: 1rem 1.1rem 0.85rem;
  border-bottom: 1px solid #e8eaed;
}

.gr-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #3c4043;
}

.gr-g {
  width: 20px;
  height: 20px;
  flex: none;
}

.gr-score {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.55rem;
}

.gr-num {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
}

.gr-stars {
  display: inline-flex;
  gap: 1px;
}

.gr-star {
  width: 18px;
  height: 18px;
}

.gr-count {
  margin-top: 0.2rem;
  font-size: 0.82rem;
  color: #5f6368;
}

.gr-list {
  max-height: 32rem;
  overflow: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.gr-card {
  padding: 0.95rem 1.1rem;
  border-bottom: 1px solid #e8eaed;
}

.gr-card:nth-child(odd) {
  border-right: 1px solid #e8eaed;
}

.gr-who {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.gr-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 1.05rem;
  flex: none;
}

.gr-name {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.25;
}

.gr-meta {
  font-size: 0.75rem;
  color: #5f6368;
  margin-top: 0.1rem;
}

.gr-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0.45rem 0 0.35rem;
}

.gr-when {
  font-size: 0.78rem;
  color: #5f6368;
}

.gr-text {
  font-size: 0.9rem;
  line-height: 1.45;
  color: #3c4043;
}

.gr-more {
  display: block;
  padding: 0.85rem 1.1rem;
  border-top: 1px solid #e8eaed;
  color: #1a73e8;
  font-size: 0.88rem;
  font-weight: 500;
}

.gr-more:hover { text-decoration: underline; }

.gr-fallback {
  padding: 1rem 1.1rem;
  font-size: 0.9rem;
}

.gr-fallback a { color: #1a73e8; }

.review-slip {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
  background: #fff;
  border: 2px dashed rgba(0, 0, 0, 0.28);
  padding: 0.95rem 0.95rem 1.05rem;
}

.review-slip p {
  font-size: 1.02rem;
  line-height: 1.45;
}

.review-who {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: auto;
}

.proof-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  margin-top: 1.1rem;
}

.cta-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 1rem;
}

.cta-quote {
  margin-top: 0.75rem;
  max-width: 22rem;
}

/* SECTIONS */
section { padding: 1.6rem 0 2.4rem; }

.section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 1.3rem;
}

.section-head h2,
h1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.offer {
  background: #fff;
  padding: 1.1rem 0;
  box-shadow: none;
  max-width: 46rem;
}

.offer h3 { margin: 0.7rem 0 0.45rem; }
.offer .who { margin-bottom: 0.9rem; }

.offer ol,
.offer ul {
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.offer li {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  align-items: center;
}

.offer li > span:last-child {
  flex: 1;
  min-width: 12rem;
}

.offer .foot {
  margin-top: 0.9rem;
  font-size: 0.95rem;
}

.for-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.for-grid article {
  background: #fff;
  padding: 1.1rem;
  box-shadow: none;
}

.for-grid h3 { margin: 0.7rem 0 0.8rem; }

.for-grid ul {
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.for-grid li {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.4rem;
}

.for-grid li span:last-child {
  flex: 1;
  min-width: 12rem;
  background: var(--paper);
  padding: 0.2rem 0;
}

/* WORK */
.work-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(15rem, 0.85fr);
  gap: 0.8rem;
  align-items: stretch;
}

.work-list {
  display: grid;
  gap: 0.4rem;
}

.work-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0.55rem;
  align-items: start;
  background: #fff;
  padding: 0.45rem 0.5rem;
  box-shadow: none;
  transform: none;
  cursor: pointer;
  text-align: left;
  width: 100%;
  border: 0;
}

.work-card.is-on { outline: 2px solid #111; }

.yt {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.yt iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.work-card img {
  width: 48px;
  height: 48px;
  object-fit: cover;
}

.stat { margin-top: 0.2rem; display: flex; flex-wrap: wrap; gap: 0.3rem; }
.credit {
  margin-top: 0.28rem;
  font-size: 0.78rem;
  line-height: 1.35;
}

/* PROCESS */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.step {
  background: #fff;
  padding: 0.9rem 0.85rem 1rem;
  box-shadow: none;
}

.step h3 { margin: 0.5rem 0 0.4rem; }

/* FAQ */
.faq details {
  background: #fff;
  box-shadow: none;
  padding: 0.9rem 1rem;
  margin-bottom: 0.55rem;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

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

.faq p {
  margin-top: 0.7rem;
  max-width: 46rem;
}

/* FORM / CTA */
.cta { padding-bottom: 4.5rem; }

.cta-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
  align-items: start;
}

form.lead {
  display: grid;
  gap: 0.65rem;
  background: #fff;
  padding: 1rem 0;
  box-shadow: none;
  position: relative;
}

form.lead > .tape,
form.lead h2 { justify-self: start; }

label {
  display: grid;
  gap: 0.35rem;
  justify-items: start;
}

input, select, textarea {
  background: #fff;
  border: 2px dashed rgba(0, 0, 0, 0.28);
  padding: 0.7rem 0.75rem;
  width: 100%;
}

input:focus, select:focus, textarea:focus {
  outline: 2px solid #111;
  border-color: #111;
}

textarea { min-height: 88px; resize: vertical; }

form button { cursor: pointer; justify-self: start; }

.form-note, .form-ok, .form-err {
  font-size: 0.88rem;
}

.form-ok, .form-err { display: none; }
.form-err.is-on, .form-ok.is-on { display: block; }
.form-err { color: #9b1210; }

footer.wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: space-between;
  padding: 0.5rem 0 5.2rem;
}

.sticky-cta { display: none; }

.thanks {
  min-height: 72vh;
  padding: 3.2rem 0 5rem;
}

.thanks .card { margin-top: 1.2rem; max-width: 36rem; }

.legal {
  padding: 2.4rem 0 5rem;
}

.legal .card { max-width: 42rem; margin-top: 1rem; }
.legal p + p { margin-top: 0.8rem; }

@media (min-width: 880px) {
  .hero-grid {
    grid-template-columns: 0.95fr 1.05fr;
  }
  .hero-copy { order: 1; }
  .hero-grid .lead { order: 2; }
}

@media (max-width: 900px) {
  .proof, .split, .steps, .cta-grid, .work-stage, .for-grid, .review-wall, .gr-list {
    grid-template-columns: 1fr;
  }
  .gr-card:nth-child(odd) { border-right: 0; }
  .hero-grid .lead { order: -1; }
  .tape {
    white-space: normal;
    max-width: 100%;
    text-align: center;
  }
  .lede-row { flex-direction: column; align-items: flex-start; }
  h1 { gap: 0.55rem; }
  p, .form-note, .offer .who, .offer .foot, .step p {
    overflow-wrap: break-word;
  }
  form.lead, .card, .offer, input, select, textarea {
    max-width: 100%;
  }
  .sticky-cta {
    display: block;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 40;
    padding: 0.65rem 0.8rem calc(0.65rem + env(safe-area-inset-bottom));
    background: #fff;
  }
  .sticky-cta .tape { width: 100%; white-space: normal; }
  form.lead button.tape {
    width: 100%;
    white-space: normal;
  }
}

@media (max-width: 560px) {
  .hero { padding-top: 1rem; }
  .hero-tapes { margin: 0.7rem 0 0.8rem; gap: 0.45rem; }
  .tape.xl { font-size: clamp(1.55rem, 9.5vw, 2.4rem); }
  .g-reviews iframe { height: 380px; }
}
