:root {
  --ink: #12383d;
  --teal: #087f73;
  --paper: #faf9f5;
  --muted: #637574;
  --line: #dde3dd;
  --gold: #e8b662;
  --red: #ae4c37;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.55;
}
button,
a,
input,
select {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
button,
select,
input {
  font: inherit;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
}
button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid #dc963d;
  outline-offset: 4px;
}
[hidden] {
  display: none !important;
}
header {
  max-width: 1240px;
  margin: auto;
  padding: 26px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 750;
  font-size: 25px;
  letter-spacing: -1px;
}
.brand small {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  font-weight: 600;
  margin-top: -5px;
}
.mark {
  background: var(--ink);
  color: white;
  border-radius: 11px;
  font-size: 27px;
  padding: 3px 11px;
  position: relative;
}
.mark span {
  font-size: 16px;
  color: var(--gold);
  position: absolute;
  right: 3px;
  top: -3px;
}
.header-book {
  font-size: 13px;
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
}
main {
  max-width: 1240px;
  padding: 0 40px;
  margin: auto;
}
.hero {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 76px 0 70px;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 1.8px;
  font-weight: 750;
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.live-dot {
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  font-size: clamp(42px, 4.65vw, 66px);
  line-height: 1.08;
  letter-spacing: -2.8px;
  font-weight: 550;
  margin-bottom: 24px;
}
h1 em {
  font-family: Georgia, serif;
  font-weight: 400;
  color: var(--teal);
}
.intro {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 440px;
}
.primary,
.secondary,
.outline {
  border: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-radius: 7px;
  padding: 14px 19px;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
  min-height: 46px;
}
.primary {
  background: var(--teal);
  color: white;
}
.primary:hover {
  background: #05665d;
}
.secondary,
.outline {
  background: transparent;
  border: 1px solid #b8c8c2;
  color: var(--ink);
}
.hero-actions {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}
.quiet {
  font-size: 11px;
  color: var(--muted);
  margin: 16px 0;
}
.hero-art {
  background: #e5ebe3;
  border-radius: 180px 180px 16px 16px;
  padding: 30px 45px 14px;
  position: relative;
}
.art-label {
  text-align: center;
  font-size: 9px;
  letter-spacing: 2px;
  margin-bottom: 22px;
}
.tilted-ad {
  position: relative;
  transform: rotate(-5deg);
  max-width: 315px;
  margin: auto;
  box-shadow: 0 20px 40px #17382f30;
  border-radius: 9px;
}
.tilted-ad img {
  width: 100%;
  display: block;
  border-radius: 9px;
}
.annotation {
  position: absolute;
  color: var(--ink);
  background: var(--gold);
  border: 2px solid white;
  border-radius: 50%;
  width: 27px;
  height: 27px;
  text-align: center;
  font-size: 13px;
  font-weight: bold;
  z-index: 2;
}
.a1 {
  top: 29%;
  left: 3%;
}
.a2 {
  bottom: 10%;
  right: 3%;
}
.focus-box {
  position: absolute;
  top: 31%;
  left: 7%;
  width: 87%;
  height: 33%;
  border: 1.5px solid var(--gold);
  border-radius: 5px;
}
.insight {
  position: relative;
  margin: 6px -18px 0;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 7px 20px #12383d0c;
  padding: 14px;
  border-radius: 9px;
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 12px;
}
.insight small {
  display: block;
  font-size: 10px;
  color: var(--muted);
  margin-top: 3px;
}
.insight-icon {
  color: var(--teal);
  font-size: 26px;
}
.art-caption {
  text-align: center;
  font-size: 9px;
  color: var(--muted);
  margin: 13px 0 0;
}
.how {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 22px 8px;
  font-size: 12px;
}
.how b {
  font-size: 10px;
  color: var(--teal);
  margin-right: 12px;
}
.samples {
  padding: 55px 0;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.section-heading .eyebrow {
  margin-bottom: 10px;
}
h2 {
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -1px;
  font-weight: 550;
}
.section-heading > p {
  font-size: 12px;
  color: var(--muted);
}
.sample-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 15px;
}
.sample-card {
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  overflow: hidden;
  padding: 0;
  transition: transform 0.2s;
}
.sample-card:hover {
  transform: translateY(-4px);
}
.sample-img {
  padding: 22px;
  background: #e5ebe3;
  height: 235px;
  display: flex;
  justify-content: center;
  position: relative;
}
.sample-img img {
  height: 100%;
  width: auto;
  max-width: 100%;
  box-shadow: 0 6px 14px #12383d20;
  border-radius: 5px;
}
.sample-card:nth-child(2) .sample-img {
  background: #ede7df;
}
.sample-card:nth-child(3) .sample-img {
  background: #dfe9e8;
}
.sample-content {
  padding: 20px;
  display: block;
}
.sample-content small {
  font-size: 9px;
  letter-spacing: 1.2px;
  color: var(--teal);
}
.sample-content strong {
  font-size: 18px;
  display: block;
  margin: 7px 0;
  color: var(--ink);
}
.sample-content p {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
}
.sample-content > span {
  font-size: 11px;
  font-weight: 650;
  color: var(--teal);
}
.own-ad {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #eef1eb;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 34px;
  margin-bottom: 60px;
  gap: 30px;
}
.own-ad p {
  font-size: 13px;
  max-width: 530px;
}
.own-ad .eyebrow {
  font-size: 9px;
  margin-bottom: 12px;
}
.own-ad h2 {
  margin-bottom: 12px;
}
.own-ad > div:last-child {
  flex-shrink: 0;
  text-align: center;
}
.text-button,
.back {
  background: transparent;
  border: 0;
  color: var(--teal);
  padding: 12px 0;
  font-size: 12px;
}
.text-button {
  display: block;
}
.own-ad .text-button {
  margin: auto;
}
.cta {
  text-align: center;
  background: var(--ink);
  color: #f6f5ea;
  padding: 48px 20px;
  border-radius: 13px;
  margin-bottom: 30px;
}
.cta .eyebrow {
  justify-content: center;
  color: #9cc3b8;
  margin-bottom: 15px;
}
.cta h2 {
  font-size: 36px;
}
.cta p:not(.eyebrow) {
  max-width: 500px;
  margin: 0 auto 22px;
  font-size: 13px;
  color: #bdd0c9;
}
.cta .primary {
  background: #eac483;
  color: var(--ink);
}
footer {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 25px;
  padding: 25px 0 35px;
  font-size: 11px;
  align-items: start;
}
footer p {
  font-size: 10px;
  color: var(--muted);
}
footer > span:last-child {
  text-align: right;
  color: var(--muted);
}
#capture,
#report,
#progress {
  padding: 25px 0 50px;
}
.back {
  margin-bottom: 25px;
}
.page-title {
  font-size: 38px;
  letter-spacing: -1.2px;
}
.capture-grid,
.report-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  margin-top: 28px;
}
.capture-grid > div:first-child {
  min-width: 0;
}
.placeholder {
  background: #e8eee7;
  border: 1px dashed #91a59e;
  border-radius: 12px;
  text-align: center;
  padding: 70px 20px;
  font-size: 44px;
}
.placeholder h3 {
  font-size: 18px;
  margin: 10px 0;
}
.placeholder p {
  font-size: 13px;
}
.review-settings {
  background: white;
  border: 1px solid var(--line);
  padding: 28px;
  border-radius: 12px;
  align-self: start;
}
.step {
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--teal);
}
.review-settings h2 {
  margin-top: 14px;
}
.review-settings p {
  font-size: 13px;
  color: var(--muted);
}
label {
  display: block;
  font-size: 13px;
}
select {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: white;
  margin: 8px 0 17px;
  color: var(--ink);
}
.consent {
  display: flex;
  gap: 10px;
  font-size: 12px;
  align-items: start;
  margin: 25px 0;
}
.consent input {
  margin-top: 4px;
  min-width: 18px;
  min-height: 18px;
  accent-color: var(--teal);
}
.wide {
  width: 100%;
}
.capture-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}
#photo-preview {
  max-width: 100%;
  max-height: 600px;
  display: block;
  margin: auto;
  border-radius: 9px;
}
.camera-stage {
  position: relative;
  background: #12383d;
  border-radius: 10px;
  overflow: hidden;
}
.camera-stage video {
  display: block;
  width: 100%;
  max-height: 540px;
  object-fit: contain;
}
.camera-frame {
  position: absolute;
  inset: 8%;
  border: 2px solid #eac483;
  border-radius: 9px;
  pointer-events: none;
}
.camera-stage p {
  position: absolute;
  bottom: 8px;
  left: 10%;
  right: 10%;
  text-align: center;
  color: white;
  background: #12383dd9;
  padding: 8px;
  font-size: 12px;
  border-radius: 30px;
}
.notice {
  background: #fff0d6;
  border: 1px solid #e6c68e;
  border-radius: 8px;
  padding: 14px;
  font-size: 13px;
  margin-bottom: 20px;
}
.progress-card {
  text-align: center;
  padding: 75px 0;
}
.progress-card .eyebrow {
  justify-content: center;
}
.orb {
  font-size: 45px;
  color: var(--teal);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  50% {
    opacity: 0.3;
  }
}
.report-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}
.report-heading p {
  font-size: 14px;
  color: var(--muted);
  max-width: 650px;
}
.report-heading .eyebrow {
  color: var(--teal);
  font-size: 10px;
}
.image-wrap {
  position: relative;
  max-width: 450px;
  margin: auto;
}
.image-wrap > img {
  width: 100%;
  display: block;
  border-radius: 10px;
}
.evidence {
  background: #e7ece5;
  border-radius: 12px;
  padding: 25px;
  align-self: start;
}
.evidence .quiet {
  text-align: center;
}
.marker {
  position: absolute;
  border: 2px solid #e6b660;
  border-radius: 5px;
  background: transparent;
  color: white;
  min-width: 28px;
  min-height: 28px;
}
.marker span {
  position: absolute;
  top: -13px;
  left: -13px;
  background: #143d3a;
  color: white;
  border: 2px solid #e6b660;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  font-size: 12px;
  line-height: 24px;
}
.counts {
  display: flex;
  gap: 8px;
}
.counts span {
  padding: 8px 11px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 11px;
}
.counts b {
  font-size: 20px;
  display: block;
}
.scope {
  font-size: 11px;
  color: var(--muted);
  margin: 14px 0 23px;
}
details {
  border: 1px solid var(--line);
  border-radius: 9px;
  margin-bottom: 12px;
  background: white;
}
summary {
  padding: 17px;
  cursor: pointer;
  list-style: none;
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
}
summary::after {
  content: "+";
  margin-left: auto;
}
details[open] summary::after {
  content: "−";
}
.finding-number {
  border-radius: 50%;
  background: #f8e9d6;
  color: #874324;
  font-size: 11px;
  min-width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
}
details.pass .finding-number {
  background: #dbefe5;
  color: var(--teal);
}
.finding-body {
  padding: 0 18px 20px;
  font-size: 13px;
  color: #4d6260;
}
.finding-body .label {
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--teal);
  display: block;
  margin: 16px 0 6px;
}
.finding-body blockquote {
  margin: 12px 0;
  border-left: 2px solid #c7d8ce;
  padding-left: 12px;
  font-size: 12px;
}
.finding-body a {
  color: var(--teal);
}
.report-actions {
  display: flex;
  gap: 25px;
  margin: 30px 0;
}
.error {
  padding: 18px;
  background: #fff0eb;
  border: 1px solid #e7b8a7;
  border-radius: 8px;
  margin: 15px 0;
  color: #943e29;
  font-size: 14px;
}
.resume {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 13px;
}
@media (max-width: 760px) {
  header {
    padding: 18px 22px;
  }
  .brand {
    font-size: 22px;
  }
  main {
    padding: 0 22px;
  }
  .header-book {
    font-size: 11px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 38px 0;
  }
  .hero-copy h1 {
    font-size: 49px;
    letter-spacing: -2px;
  }
  .hero-art {
    max-width: 400px;
    width: 100%;
    margin: auto;
    padding: 25px 48px 15px;
  }
  .hero-art .tilted-ad {
    max-width: 235px;
  }
  .eyebrow {
    font-size: 8px;
    letter-spacing: 1.3px;
  }
  .hero-actions {
    flex-wrap: wrap;
  }
  .how {
    gap: 13px;
    font-size: 10px;
  }
  .how span {
    flex: 1;
  }
  .how b {
    display: block;
  }
  .section-heading {
    display: block;
  }
  .section-heading > p {
    margin-bottom: 25px;
  }
  .samples {
    padding: 35px 0;
  }
  .sample-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .sample-card {
    display: grid;
    grid-template-columns: 40% 60%;
    align-items: center;
  }
  .sample-img {
    height: 195px;
    padding: 13px;
  }
  .sample-content {
    padding: 16px;
  }
  .sample-content strong {
    font-size: 17px;
  }
  .own-ad {
    display: block;
    padding: 25px;
    margin-bottom: 30px;
  }
  .own-ad > div:last-child {
    text-align: left;
  }
  .own-ad .text-button {
    margin: 5px 0;
  }
  .cta {
    padding: 35px 24px;
  }
  .cta h2 {
    font-size: 29px;
  }
  footer {
    grid-template-columns: 1fr;
  }
  footer > span:last-child {
    text-align: left;
  }
  .capture-grid,
  .report-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .page-title {
    font-size: 32px;
  }
  .report-heading {
    display: block;
  }
  .evidence {
    padding: 15px;
  }
  .review-settings {
    padding: 22px;
  }
  .report-actions {
    flex-direction: column;
    gap: 10px;
  }
  .counts span {
    flex: 1;
  }
  .image-wrap {
    max-width: 380px;
  }
  .camera-stage video {
    max-height: 450px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
@media print {
  header,
  .cta,
  footer,
  .back,
  .report-actions,
  #print,
  #resume,
  .error {
    display: none !important;
  }
  main {
    max-width: none;
    padding: 0;
  }
  .report-grid {
    display: block;
  }
  .evidence {
    max-width: 300px;
    margin: 20px auto;
  }
  details {
    break-inside: avoid;
  }
  .finding-body {
    display: block;
  }
  body {
    background: white;
  }
  #home,
  #capture,
  #progress {
    display: none !important;
  }
}
