/* HullCheck — "The tag": a yellow inspection tag hung on the app. Condensed display type, hard black rules. */

@font-face {
  font-family: "Anybody";
  src: url("/fonts/anybody-latin-wdth-wght.woff2") format("woff2");
  font-weight: 100 900;
  font-stretch: 50% 150%;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Public Sans";
  src: url("/fonts/public-sans-latin-wght.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --bg: #e3e4e0;
  --ink: #141414;
  --ink-soft: #3e4045;
  --tag: #ffd21f;
  --card: #ffffff;
  --hole: #9ea3a9;
  --display: "Anybody", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --sans: "Public Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --gutter: 64px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-underline-offset: 3px; }
a:hover { text-decoration-thickness: 2px; }
a:focus-visible, button:focus-visible, input:focus-visible, summary:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; }
code { font-family: var(--mono); font-size: .86em; }
h1, h2, h3, p { margin: 0; }

.wrap { max-width: 1366px; margin: 0 auto; padding: 0 var(--gutter); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.display {
  font-family: var(--display);
  font-stretch: 58%;
  font-weight: 900;
  text-transform: uppercase;
  line-height: .86;
  letter-spacing: -.005em;
}
.display-2 { font-size: clamp(2.6rem, 5.3vw, 4.5rem); line-height: .9; max-width: 17em; font-stretch: 62%; }
.eyebrow { display: block; font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 52px; padding: 0 20px;
  background: var(--ink); color: var(--tag);
  border: 2px solid var(--ink); border-radius: 0;
  font: inherit; font-size: 16px; font-weight: 800; white-space: nowrap;
  cursor: pointer; text-decoration: none;
}
.btn:hover { background: #000; color: #fff; }
.btn:active { transform: translateY(1px); }
.btn[disabled] { opacity: .6; cursor: default; }
.btn-small { height: 40px; padding: 0 14px; font-size: 14px; }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--tag); }

/* Masthead */
.masthead { position: relative; z-index: 3; }
.masthead-inner { display: flex; align-items: center; gap: 28px; height: 96px; }
.brand {
  display: flex; align-items: center; gap: 10px; margin-right: auto; text-decoration: none;
  font-family: var(--display); font-stretch: 80%; font-weight: 900; font-size: 24px; text-transform: uppercase; letter-spacing: .01em;
}
.logo { width: 18px; height: 26px; }
.logo-tag { fill: var(--tag); stroke: var(--ink); stroke-width: 2; }
.logo-hole { fill: var(--bg); stroke: var(--ink); stroke-width: 1.5; }
.nav-links { display: flex; gap: 28px; font-size: 15px; font-weight: 600; }
.nav-links a { text-decoration: none; }
.nav-links a:hover { text-decoration: underline; }
.nav-cta { display: none; }

/* Hero */
.hero { padding: 22px 0 96px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 620px) minmax(0, 512px); justify-content: space-between; gap: 64px; align-items: start; }
.hang { position: relative; padding-left: 24px; }
.string {
  position: absolute; z-index: 0;
  left: calc(12px + 50% - 20px); width: 40px; height: 420px; bottom: calc(100% - 58px);
  fill: none; stroke: var(--ink); stroke-width: 2; vector-effect: non-scaling-stroke;
  pointer-events: none;
}
.sway {
  position: relative; z-index: 1;
  transform: rotate(-2.2deg); transform-origin: 50% 58px;
  filter: drop-shadow(0 18px 22px rgba(20, 20, 20, .18));
  animation: sway 7s ease-in-out infinite;
}
@keyframes sway { 0%, 100% { transform: rotate(-2.6deg); } 50% { transform: rotate(-1.4deg); } }

.tag {
  position: relative;
  background: var(--tag);
  clip-path: polygon(56px 0, calc(100% - 56px) 0, 100% 56px, 100% 100%, 0 100%, 0 56px);
  padding: 104px 40px 34px;
  display: flex; flex-direction: column; gap: 18px;
}
.tag-hole {
  position: absolute; left: calc(50% - 24px); top: 34px;
  width: 48px; height: 48px; border-radius: 50%;
  border: 9px solid var(--hole); background: var(--bg);
}
.tag-top {
  display: flex; justify-content: space-between; gap: 16px;
  font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  padding-bottom: 18px; border-bottom: 4px solid var(--ink);
}
.tag-hero h1 { font-stretch: 54%; font-size: clamp(3.2rem, 6.6vw, 5.7rem); padding-bottom: 22px; border-bottom: 4px solid var(--ink); }
.tag-hero h1 span { display: block; }

/* Signup */
.signup-row { display: flex; align-items: flex-end; gap: 14px; }
.signup-label { font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; padding-bottom: 15px; white-space: nowrap; }
.signup input[type="email"] {
  flex: 1 1 auto; min-width: 0; height: 52px;
  border: 0; border-bottom: 3px solid var(--ink); border-radius: 0;
  background: transparent; color: var(--ink);
  padding: 0 4px; font: inherit; font-size: 20px;
}
.signup input::placeholder { color: #5c5a4a; opacity: 1; }
.form-note { margin-top: 14px; font-size: 14px; color: #3a3a2e; }
.form-msg { min-height: 1.4em; margin-top: 4px; font-size: 15px; font-weight: 700; }
.form-msg.err::before { content: "! "; }

/* Hero side column */
.hero-side { display: flex; flex-direction: column; gap: 24px; padding-top: 14px; }
.hero-kicker { font-size: 15px; font-weight: 800; letter-spacing: .02em; }
.lead { font-size: 19px; line-height: 1.53; }
.rule-box { display: flex; gap: 14px; align-items: flex-start; padding-top: 18px; border-top: 3px solid var(--ink); }
.rule-box svg { width: 22px; height: 22px; flex: none; margin-top: 3px; fill: none; stroke: var(--ink); stroke-width: 2.5; }
.rule-box p { font-size: 17px; line-height: 1.47; }
.stub {
  align-self: flex-start; width: 360px; max-width: 100%; margin-top: 10px;
  display: flex; flex-direction: column; gap: 8px;
  background: var(--card); border: 2px solid var(--ink); padding: 16px 18px;
  text-decoration: none; transform: rotate(1.5deg);
  transition: transform .2s ease;
}
.stub:hover { transform: rotate(0deg); }
.stub-domain { font-family: var(--display); font-stretch: 70%; font-weight: 800; font-size: 22px; line-height: 1.2; }
.stub-line { font-size: 15px; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.stub-link { text-decoration: underline; margin-left: 6px; }

.pill { display: inline-block; padding: 1px 6px; font-size: 13px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; line-height: 1.5; white-space: nowrap; }
.pill-fail { background: var(--ink); color: var(--tag); border: 2px solid var(--ink); }
.pill-pass { border: 2px solid var(--ink); }

/* Sections */
.section { padding: 0 0 112px; }
.section-head { display: flex; flex-direction: column; gap: 14px; padding-top: 22px; border-top: 4px solid var(--ink); margin-bottom: 44px; }
.section-lead { font-size: 19px; max-width: 34em; }

/* Evidence */
.evidence-grid { display: grid; grid-template-columns: 330px minmax(0, 1fr); gap: 72px; align-items: start; }
.waffle-fig { margin: 0; display: flex; flex-direction: column; gap: 12px; }
.waffle { display: grid; grid-template-columns: repeat(10, minmax(0, 1fr)); gap: 5px; width: 100%; max-width: 330px; }
.w { display: block; aspect-ratio: 1; border: 2px solid var(--ink); }
.w-on { background: var(--ink); }
.waffle-fig figcaption { font-size: 14px; line-height: 1.43; }
.facts { margin: 0; font-size: 19px; line-height: 1.47; border-bottom: 2px solid var(--ink); }
.facts div { display: grid; grid-template-columns: 120px minmax(0, 1fr); gap: 20px; padding: 18px 0; border-top: 2px solid var(--ink); }
.facts dt { font-family: var(--display); font-stretch: 62%; font-weight: 900; font-size: 30px; line-height: 1.1; }
.facts dd { margin: 0; }
.source { margin-top: 40px; max-width: 62em; font-size: 14px; line-height: 1.5; color: var(--ink-soft); }

/* Example report */
.report-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 560px); gap: 72px; align-items: start; }
.report-intro { position: sticky; top: 32px; border-top: 4px solid var(--ink); padding-top: 22px; display: flex; flex-direction: column; gap: 18px; }
.report-intro .display-2 { margin-bottom: 8px; }
.report-intro p:not(.eyebrow) { max-width: 30em; }
.report-fig { margin: 0; display: flex; flex-direction: column; gap: 12px; filter: drop-shadow(0 14px 18px rgba(20, 20, 20, .14)); }
.tag-report { background: var(--card); gap: 16px; padding-top: 100px; }
.report-domain { font-family: var(--display); font-stretch: 66%; font-weight: 900; font-size: 34px; line-height: 1; overflow-wrap: anywhere; }
.report-meta { margin: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; font-size: 14px; }
.report-meta dt { font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
.report-meta dd { margin: 0; font-weight: 600; }
.findings { list-style: none; margin: 0; padding: 0; border-top: 3px solid var(--ink); }
.findings li { display: grid; grid-template-columns: 58px minmax(0, 1fr); gap: 14px; align-items: start; padding: 11px 0; border-bottom: 1px solid var(--ink); font-size: 16px; line-height: 1.4; }
.findings .pill { text-align: center; margin-top: 1px; }
.findings small { display: block; font-size: 13px; color: var(--ink-soft); }
.findings code { font-weight: 700; overflow-wrap: anywhere; }
.fixprompt { background: var(--ink); color: #f4f4f0; padding: 16px 18px; }
.fixprompt-label { font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--tag); margin-bottom: 6px; }
.fixprompt-body { font-family: var(--mono); font-size: 14px; line-height: 1.55; }

/* Rows (checks and prices) */
.rows { list-style: none; margin: 0; padding: 0; border-bottom: 2px solid var(--ink); }
.rows li { display: grid; grid-template-columns: 300px minmax(0, 1fr) 170px; gap: 32px; align-items: baseline; padding: 22px 0; border-top: 2px solid var(--ink); }
.rows h3 { font-family: var(--display); font-stretch: 66%; font-weight: 900; font-size: 32px; line-height: 1; text-transform: uppercase; }
.rows p { font-size: 18px; max-width: 36em; }
.rows .pill { justify-self: end; }
.price { justify-self: end; text-align: right; font-family: var(--display); font-stretch: 62%; font-weight: 900; font-size: 44px; line-height: 1; }
.price small { display: block; font-family: var(--sans); font-stretch: 100%; font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin-top: 4px; }

/* Steps */
.steps { list-style: none; counter-reset: step; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px; }
.steps li { counter-increment: step; border-top: 2px solid var(--ink); padding-top: 16px; }
.steps li::before { content: counter(step); display: block; width: max-content; font-family: var(--display); font-stretch: 58%; font-weight: 900; font-size: 128px; line-height: .85; margin-bottom: 14px; }
.steps li:first-child::before { background: var(--tag); padding: 6px 14px 0; }
.steps h3 { font-family: var(--display); font-stretch: 66%; font-weight: 900; font-size: 30px; line-height: 1; text-transform: uppercase; margin-bottom: 10px; }
.steps p { font-size: 18px; }
.note { margin-top: 48px; max-width: 44em; padding: 18px 22px; border: 2px dashed var(--ink); font-size: 18px; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: minmax(0, 420px) minmax(0, 1fr); gap: 72px; align-items: start; }
.faq-grid .section-head { margin-bottom: 0; }
.faq { border-top: 4px solid var(--ink); }
details { border-bottom: 2px solid var(--ink); }
summary { cursor: pointer; list-style: none; position: relative; padding: 20px 44px 20px 0; font-size: 20px; font-weight: 700; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 4px; top: 14px; font-family: var(--sans); font-weight: 800; font-size: 30px; line-height: 1; }
details[open] summary::after { content: "−"; }
details p { padding: 0 0 22px; max-width: 40em; }

/* Join */
.section-join { padding-bottom: 96px; }
.section-join .wrap { filter: drop-shadow(0 18px 22px rgba(20, 20, 20, .16)); }
.tag-join { max-width: 880px; margin: 0 auto; padding: 100px 48px 36px; }
.tag-join h2 { font-size: clamp(3.2rem, 7.5vw, 6.5rem); }
.join-lead { font-size: 19px; }

/* Follow-up dialog */
.followup { position: fixed; inset: 0; background: rgba(20, 20, 20, .6); display: grid; place-items: center; padding: 16px; z-index: 50; }
.followup[hidden] { display: none; }
.followup-card { background: var(--card); border: 3px solid var(--ink); padding: 32px; max-width: 540px; width: 100%; max-height: calc(100vh - 32px); overflow: auto; display: flex; flex-direction: column; gap: 10px; }
.followup-card h2 { font-size: 48px; background: var(--tag); align-self: flex-start; padding: 8px 12px 2px; margin-bottom: 6px; }
.fu-q { font-weight: 800; margin-top: 12px; }
.fu-note { font-size: 15px; color: var(--ink-soft); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { background: transparent; color: var(--ink); border: 2px solid var(--ink); border-radius: 0; padding: 7px 12px; font: inherit; font-size: 15px; font-weight: 700; cursor: pointer; }
.chip:hover { background: #f1f1ec; }
.chip[aria-pressed="true"] { background: var(--tag); }
.fu-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }

/* Footer */
.footer { border-top: 4px solid var(--ink); padding: 24px 0 40px; font-size: 15px; }
.footer-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

/* Legal page */
.legal { padding: 32px 0 96px; }
.legal .wrap { max-width: 880px; }
.legal h1 { font-family: var(--display); font-stretch: 58%; font-weight: 900; text-transform: uppercase; font-size: clamp(3rem, 8vw, 5.5rem); line-height: .9; padding-bottom: 18px; border-bottom: 4px solid var(--ink); margin-bottom: 24px; }
.legal h2 { font-family: var(--display); font-stretch: 66%; font-weight: 900; text-transform: uppercase; font-size: 28px; line-height: 1; margin: 44px 0 12px; }
.legal p { margin: 0 0 1em; }
.legal ul { padding-left: 1.2em; }
.legal li { margin-bottom: .5em; }

@media (max-width: 1180px) {
  :root { --gutter: 40px; }
  .hero-grid { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 48px; }
  .rows li { grid-template-columns: 220px minmax(0, 1fr) 140px; gap: 24px; }
}
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-cta { display: inline-flex; }
  .masthead-inner { height: 76px; }
  .hero-grid { grid-template-columns: minmax(0, 1fr); gap: 56px; }
  .hang, .hero-side { max-width: 620px; }
  .evidence-grid, .report-grid, .faq-grid { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .report-intro { position: static; }
  .steps { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .rows li { grid-template-columns: minmax(0, 1fr) auto; gap: 8px 20px; }
  .rows li p { grid-column: 1 / -1; grid-row: 2; }
  .rows .pill, .rows .price { grid-column: 2; grid-row: 1; }
}
@media (max-width: 640px) {
  :root { --gutter: 16px; }
  body { font-size: 17px; }
  .masthead-inner { height: 64px; }
  .brand { font-size: 20px; }
  .hero { padding: 16px 0 72px; }
  .hang { padding-left: 0; }
  .string { left: calc(50% - 20px); }
  .sway { animation-name: sway-small; }
  .tag { padding: 76px 18px 22px; gap: 14px; clip-path: polygon(34px 0, calc(100% - 34px) 0, 100% 34px, 100% 100%, 0 100%, 0 34px); }
  .tag-hole { width: 36px; height: 36px; left: calc(50% - 18px); top: 24px; border-width: 7px; }
  .sway { transform-origin: 50% 42px; }
  .string { bottom: calc(100% - 42px); }
  .tag-top { font-size: 11px; padding-bottom: 12px; border-bottom-width: 3px; }
  .tag-hero h1 { font-size: clamp(2.9rem, 15vw, 4rem); padding-bottom: 16px; border-bottom-width: 3px; }
  .signup-row { flex-wrap: wrap; gap: 8px; }
  .signup-label { flex-basis: 100%; padding-bottom: 0; }
  .signup input[type="email"] { flex-basis: 100%; }
  .signup-row .btn { width: 100%; }
  .form-note { margin-top: 10px; font-size: 13px; }
  .lead { font-size: 17px; }
  .stub { width: 100%; transform: none; }
  .section { padding-bottom: 80px; }
  .section-head { margin-bottom: 32px; }
  .display-2 { font-size: clamp(2.3rem, 11vw, 3rem); }
  .facts div { grid-template-columns: 88px minmax(0, 1fr); gap: 14px; }
  .facts dt { font-size: 26px; }
  .facts { font-size: 17px; }
  .report-meta { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .report-domain { font-size: 28px; }
  .findings li { grid-template-columns: 52px minmax(0, 1fr); gap: 10px; font-size: 15px; }
  .rows h3 { font-size: 26px; }
  .rows p { font-size: 17px; }
  .price { font-size: 36px; }
  .steps li::before { font-size: 96px; }
  .tag-join { padding: 76px 18px 24px; }
  .followup-card { padding: 22px; }
  .followup-card h2 { font-size: 38px; }
}
@keyframes sway-small { 0%, 100% { transform: rotate(-1.8deg); } 50% { transform: rotate(-.8deg); } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .sway { animation: none; }
  .stub { transition: none; }
}
