:root {
  --ink: #132b2b;
  --deep: #0b3b3d;
  --teal: #126f70;
  --mint: #dceee8;
  --cream: #f6f0e4;
  --paper: #fffdf8;
  --orange: #e66d3e;
  --line: rgba(19, 43, 43, 0.18);
  --muted: #647574;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
}
a { color: inherit; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }

.site-header {
  align-items: center;
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 18px 5vw;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
}
.brand { align-items: baseline; display: flex; gap: 9px; text-decoration: none; }
.brand-mark { font-size: 20px; font-weight: 700; letter-spacing: -1px; }
.brand-mark span { color: var(--orange); }
.brand-name { font-family: var(--serif); font-size: 20px; font-style: italic; font-weight: 700; }
nav { align-items: center; display: flex; gap: 28px; }
nav a { font-size: 14px; font-weight: 600; text-decoration: none; }
.nav-cta { border: 1px solid var(--ink); padding: 9px 15px; }

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  min-height: 730px;
  overflow: hidden;
}
.hero-copy {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 6vw 90px 8vw;
}
.eyebrow {
  align-items: center;
  display: flex;
  font-size: 12px;
  font-weight: 700;
  gap: 9px;
  letter-spacing: 0.13em;
  margin: 0 0 20px;
  text-transform: uppercase;
}
.eyebrow span { background: var(--orange); height: 2px; width: 24px; }
.eyebrow.light { color: var(--mint); }
h1, h2 { font-family: var(--serif); letter-spacing: -0.04em; line-height: 0.98; margin: 0; }
h1 { font-size: clamp(62px, 7vw, 106px); }
h2 { font-size: clamp(45px, 5vw, 76px); }
h1 em, h2 em { color: var(--orange); font-weight: 700; }
.hero-intro { font-size: 18px; max-width: 610px; margin: 30px 0; }
.hero-actions { align-items: center; display: flex; gap: 24px; }
.button {
  border: 0;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  padding: 15px 22px;
  text-decoration: none;
  transition: transform 150ms ease, background 150ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--orange); color: white; }
.button-inverse { background: var(--paper); color: var(--deep); }
.text-link { font-weight: 700; text-decoration: none; }
.text-link span { color: var(--orange); }
.hero-note { color: var(--muted); font-size: 12px; margin-top: 25px; }
.hero-visual {
  background: var(--cream);
  min-height: 690px;
  padding: 14% 8%;
  position: relative;
}
.hero-visual::before, .hero-visual::after {
  border: 1px solid rgba(19, 43, 43, 0.12);
  content: "";
  position: absolute;
  transform: rotate(18deg);
}
.hero-visual::before { height: 520px; right: -170px; top: -80px; width: 520px; }
.hero-visual::after { bottom: -180px; height: 420px; left: -220px; width: 420px; }
.deadline-card {
  background: var(--orange);
  color: white;
  display: flex;
  flex-direction: column;
  height: 150px;
  justify-content: center;
  padding: 20px;
  position: absolute;
  right: 7%;
  text-align: center;
  top: 5%;
  transform: rotate(4deg);
  width: 150px;
  z-index: 2;
}
.deadline-card span, .deadline-card small { font-size: 11px; font-weight: 700; text-transform: uppercase; }
.deadline-card strong { font-family: var(--serif); font-size: 38px; }
.edit-card {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 8px 8px 0 rgba(19, 43, 43, 0.08);
  max-width: 560px;
  padding: 25px;
  position: relative;
  z-index: 3;
}
.title-card { margin-top: 100px; transform: rotate(-2deg); }
.highlight-card { margin: 45px 0 0 45px; transform: rotate(1.4deg); }
.card-heading { display: flex; font-size: 13px; font-weight: 700; justify-content: space-between; }
.count-pill { border-radius: 30px; padding: 2px 8px; }
.count-pill.good { background: var(--mint); color: var(--teal); }
.edit-card p { font-family: var(--serif); font-size: 22px; font-weight: 700; line-height: 1.25; }
.edit-note { border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; padding-top: 12px; }
.margin-note { bottom: 4%; font-family: var(--serif); font-size: 19px; font-style: italic; position: absolute; right: 8%; text-align: right; }

.rule-strip { background: var(--deep); color: white; display: grid; grid-template-columns: repeat(4, 1fr); padding: 30px 8vw; }
.rule-strip div { border-right: 1px solid rgba(255,255,255,.2); display: flex; flex-direction: column; padding: 8px 26px; }
.rule-strip div:last-child { border-right: 0; }
.rule-strip strong { color: var(--orange); font-family: var(--serif); font-size: 38px; line-height: 1; }
.rule-strip span { font-size: 13px; margin-top: 7px; }

.checker-section, .audit-section, .faq-section { padding: 110px 8vw; }
.section-heading { max-width: 740px; }
.section-heading > p:last-child { color: var(--muted); font-size: 17px; margin: 25px 0 0; max-width: 620px; }
.section-heading.compact { max-width: 680px; }
.checker-grid { display: grid; gap: 35px; grid-template-columns: 1fr 1fr; margin-top: 60px; }
.checker-panel, .results-panel {
  border: 1px solid var(--line);
  padding: 32px;
}
.checker-panel { background: var(--cream); }
.checker-panel label { display: flex; font-weight: 700; justify-content: space-between; margin-bottom: 9px; }
.checker-panel textarea, .order-form input, .order-form textarea {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  padding: 14px;
  resize: vertical;
  width: 100%;
}
.checker-panel textarea:focus, .order-form input:focus, .order-form textarea:focus { border-color: var(--teal); outline: 2px solid rgba(18,111,112,.12); }
.checker-panel label:not(:first-child) { margin-top: 28px; }
.field-count { color: var(--muted); font-size: 13px; }
.field-count.over { color: #b2382c; }
.meter { background: rgba(19,43,43,.1); height: 4px; }
.meter span { background: var(--teal); display: block; height: 100%; transition: width 150ms ease; width: 0; }
.meter span.over { background: #b2382c; }
.sample-row { display: flex; gap: 10px; margin-top: 25px; }
.quiet-button { background: transparent; border: 0; color: var(--teal); font-size: 13px; font-weight: 700; padding: 0; }
.results-panel { background: white; }
.panel-label { font-size: 11px; font-weight: 700; letter-spacing: .12em; margin: 0 0 16px; text-transform: uppercase; }
.search-preview { border-bottom: 1px solid var(--line); display: grid; gap: 17px; grid-template-columns: 110px 1fr; padding-bottom: 25px; }
.preview-image { align-items: center; background: var(--mint); color: var(--teal); display: flex; font-size: 11px; font-weight: 700; justify-content: center; text-align: center; }
.preview-title { color: #1769aa; font-size: 16px; font-weight: 500; line-height: 1.35; margin: 0 0 4px; }
.preview-highlight { color: var(--muted); font-size: 13px; margin: 0; }
.stars { color: #e98b21; font-size: 13px; margin-top: 7px; }
.stars span { color: #1769aa; }
.price { font-size: 19px; margin: 4px 0; }
.quick-read { margin: 25px 0; }
.quick-read ul { list-style: none; margin: 0; padding: 0; }
.quick-read li { border-top: 1px solid var(--line); font-size: 14px; padding: 10px 0 10px 20px; position: relative; }
.quick-read li::before { content: "•"; left: 2px; position: absolute; }
.quick-read .good::before { color: var(--teal); }
.quick-read .warning::before { color: var(--orange); }
.quick-read .neutral::before { color: var(--muted); }
.full-width { width: 100%; }

.search-shift {
  background: var(--cream);
  display: grid;
  gap: 60px 7vw;
  grid-template-columns: 1fr 1fr;
  padding: 110px 8vw;
}
.shift-heading > p:last-child {
  color: var(--muted);
  font-size: 17px;
  margin: 25px 0 0;
  max-width: 600px;
}
.shift-example {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 8px 8px 0 rgba(19, 43, 43, 0.08);
  padding: 32px;
}
.search-query {
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 17px 0;
}
.search-query span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.search-query strong {
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.3;
}
.search-query.human strong { color: var(--teal); }
.shift-note {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  margin: 0;
  padding-top: 17px;
}
.field-jobs {
  display: grid;
  gap: 0;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, 1fr);
}
.field-jobs article {
  border-left: 1px solid var(--line);
  padding: 25px;
}
.field-jobs article:last-child { border-right: 1px solid var(--line); }
.field-jobs span {
  color: var(--orange);
  font-family: var(--serif);
  font-size: 25px;
}
.field-jobs h3 {
  font-family: var(--serif);
  font-size: 24px;
  margin: 17px 0 8px;
}
.field-jobs p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}
.search-shift blockquote {
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 56px);
  grid-column: 1 / -1;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin: 0;
  padding-top: 35px;
  text-align: center;
}
.search-shift blockquote em { color: var(--orange); }

.problem-section {
  background: var(--deep);
  color: white;
  display: grid;
  gap: 10vw;
  grid-template-columns: 1fr 1fr;
  padding: 100px 8vw;
}
.problem-copy { color: var(--mint); font-size: 18px; }
.problem-copy p:first-child { margin-top: 0; }

.audit-layout { display: grid; gap: 7vw; grid-template-columns: .85fr 1.15fr; margin-top: 65px; }
.audit-card { background: var(--orange); color: white; padding: 42px; }
.audit-kicker { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.audit-card h3 { font-family: var(--serif); font-size: 45px; margin: 20px 0; }
.audit-description { font-size: 17px; }
.price-line { align-items: baseline; border-top: 1px solid rgba(255,255,255,.35); display: flex; gap: 9px; margin-top: 30px; padding: 25px 0; }
.price-line strong { font-family: var(--serif); font-size: 50px; }
.small-note { font-size: 11px; text-align: center; }
.deliverable { border-top: 1px solid var(--line); display: grid; gap: 25px; grid-template-columns: 50px 1fr; padding: 24px 0; }
.deliverable > span { color: var(--orange); font-family: var(--serif); font-size: 26px; }
.deliverable h3 { font-family: var(--serif); font-size: 24px; margin: 0 0 6px; }
.deliverable p { color: var(--muted); margin: 0; }

.before-after { background: var(--deep); color: white; padding: 110px 8vw; }
.comparison-grid { display: grid; gap: 30px; grid-template-columns: 1fr 1fr; margin-top: 60px; }
.comparison-card { padding: 35px; }
.comparison-card.weak { background: rgba(255,255,255,.07); }
.comparison-card.strong { background: var(--paper); color: var(--ink); transform: rotate(-1deg); }
.comparison-label { color: var(--orange); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.comparison-card h3 { border-bottom: 1px solid currentColor; display: flex; font-size: 13px; justify-content: space-between; margin: 28px 0 10px; padding-bottom: 7px; }
.comparison-card h3 span { color: var(--teal); }
.comparison-card > p:not(.comparison-label) { font-family: var(--serif); font-size: 21px; line-height: 1.35; }
.verdict { border-top: 1px solid currentColor; display: block; font-size: 12px; margin-top: 25px; padding-top: 14px; }

.order-section { background: var(--cream); display: grid; gap: 7vw; grid-template-columns: .8fr 1.2fr; padding: 110px 8vw; }
.order-intro > p:not(.eyebrow) { color: var(--muted); font-size: 17px; max-width: 500px; }
.order-proof { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.order-proof span { background: var(--mint); color: var(--teal); font-size: 12px; font-weight: 700; padding: 7px 10px; }
.order-form { background: var(--paper); border: 1px solid var(--line); padding: 35px; }
.form-row { display: grid; gap: 15px; grid-template-columns: 1fr 1fr; }
.order-form label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 17px; }
.order-form input, .order-form textarea { margin-top: 7px; }
.form-note { color: var(--muted); font-size: 11px; margin-bottom: 0; text-align: center; }
.hidden-field { display: none; }
.request-result { background: var(--paper); border: 1px solid var(--line); grid-column: 1 / -1; padding: 35px; }
.request-result pre { background: var(--deep); color: var(--mint); overflow: auto; padding: 25px; white-space: pre-wrap; }

.faq-section { display: grid; gap: 8vw; grid-template-columns: .8fr 1.2fr; }
.faq-list details { border-top: 1px solid var(--line); padding: 22px 0; }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { cursor: pointer; font-family: var(--serif); font-size: 22px; font-weight: 700; list-style: none; }
.faq-list summary::after { color: var(--orange); content: "+"; float: right; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { color: var(--muted); max-width: 650px; }

footer { align-items: center; background: var(--ink); color: white; display: grid; gap: 25px; grid-template-columns: auto 1fr 1fr; padding: 35px 5vw; }
.footer-brand { color: white; }
footer > p { font-size: 12px; }
.legal { color: rgba(255,255,255,.55); text-align: right; }

.thank-you-page {
  align-items: center;
  background: var(--cream);
  display: flex;
  min-height: 100vh;
  padding: 8vw;
}
.thank-you-card {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 12px 12px 0 rgba(19, 43, 43, 0.08);
  max-width: 720px;
  padding: clamp(35px, 7vw, 80px);
}
.thank-you-card h1 { font-size: clamp(50px, 7vw, 84px); }
.thank-you-card > p:not(.eyebrow) { color: var(--muted); font-size: 18px; margin: 28px 0; }

@media (max-width: 920px) {
  nav a:not(.nav-cta) { display: none; }
  .hero, .checker-grid, .search-shift, .problem-section, .audit-layout, .comparison-grid, .order-section, .faq-section { grid-template-columns: 1fr; }
  .hero-copy { padding: 70px 7vw; }
  .hero-visual { min-height: 630px; }
  .rule-strip { grid-template-columns: 1fr 1fr; }
  .rule-strip div:nth-child(2) { border-right: 0; }
  .rule-strip div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.2); }
  .problem-section { gap: 35px; }
  .field-jobs { grid-template-columns: 1fr 1fr; }
  .field-jobs article:nth-child(odd) { border-left: 1px solid var(--line); }
  .field-jobs article:nth-child(even) { border-right: 1px solid var(--line); }
  .comparison-card.strong { transform: none; }
  footer { grid-template-columns: 1fr; text-align: left; }
  .legal { text-align: left; }
}

@media (max-width: 560px) {
  .site-header { padding: 14px 5vw; }
  .nav-cta { font-size: 12px; padding: 7px 10px; }
  h1 { font-size: 54px; }
  h2 { font-size: 44px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-visual { min-height: 680px; padding: 12% 5%; }
  .deadline-card { height: 115px; width: 115px; }
  .title-card { margin-top: 110px; }
  .highlight-card { margin-left: 12px; }
  .rule-strip { padding: 20px 4vw; }
  .rule-strip div { padding: 14px; }
  .checker-section, .search-shift, .audit-section, .faq-section, .before-after, .order-section { padding: 75px 5vw; }
  .checker-panel, .results-panel, .order-form, .audit-card { padding: 22px; }
  .search-preview { grid-template-columns: 75px 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .field-jobs { grid-template-columns: 1fr; }
  .field-jobs article, .field-jobs article:last-child { border-left: 1px solid var(--line); border-right: 1px solid var(--line); }
}
