:root {
  --bg: #070706;
  --bg-soft: #0d0c09;
  --panel: #12110d;
  --panel-strong: #18160f;
  --paper: #f5efe2;
  --gold: #e2b43a;
  --gold-bright: #ffd56a;
  --gold-deep: #9c710f;
  --text: #fffaf0;
  --muted: #c7bead;
  --muted-soft: #938b7d;
  --line: rgba(255, 255, 255, 0.12);
  --line-soft: rgba(255, 255, 255, 0.075);
  --line-gold: rgba(226, 180, 58, 0.42);
  --green: #65cc8a;
  --amber: #ffc85b;
  --red: #ff7777;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 16px 48px rgba(0, 0, 0, 0.22);
  --radius: 12px;
  --radius-lg: 22px;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% -8%, rgba(226, 180, 58, 0.17), transparent 31rem),
    radial-gradient(circle at 92% 12%, rgba(255, 213, 106, 0.07), transparent 28rem),
    linear-gradient(180deg, #070706 0%, #0a0907 42%, #070706 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.brand-nowrap {
  display: inline-block;
  white-space: nowrap;
}

@media (max-width: 480px) {
  h1 .brand-nowrap,
  h2 .brand-nowrap {
    font-size: 0.92em;
    letter-spacing: -0.015em;
  }
}

@media (max-width: 340px) {
  h1 .brand-nowrap,
  h2 .brand-nowrap {
    font-size: 0.87em;
    letter-spacing: -0.02em;
  }
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--gold-bright);
  color: #080704;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

.container {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.narrow {
  max-width: 820px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus-visible {
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  margin: 0;
  overflow: visible;
  clip: auto;
  clip-path: none;
  border-radius: 8px;
  background: var(--gold-bright);
  color: #080704;
  font-weight: 900;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(7, 7, 6, 0.91);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 12px;
  max-width: min(72vw, 310px);
  color: var(--paper);
  line-height: 1;
  text-decoration: none;
}

.brand-mark {
  width: 62px;
  height: 62px;
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(226, 180, 58, 0.14);
}

.brand-word {
  color: var(--paper);
  font-size: 1.34rem;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-word-light {
  color: var(--paper);
}

.brand-word-gold,
.brand-word sup {
  color: var(--gold-bright);
}

.brand-word sup {
  position: relative;
  top: -0.45em;
  margin-left: 2px;
  font-size: 0.42em;
  letter-spacing: 0;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 780;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
  white-space: nowrap;
}

.desktop-nav a[href="book.html"] {
  display: none;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--gold-bright);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 160ms ease, transform 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"],
.mobile-nav a[aria-current="page"],
.footer-links a:hover {
  color: var(--gold-bright);
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-cta {
  flex: 0 0 auto;
}

.nav-cta[aria-current="page"] {
  box-shadow: 0 0 0 2px #080704, 0 0 0 4px var(--gold-bright);
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 14px 34px rgba(226, 180, 58, 0.2);
  color: #080704;
  cursor: pointer;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  transition: transform 160ms ease, filter 160ms ease, box-shadow 160ms ease;
}

.btn:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(226, 180, 58, 0.26);
}

.btn-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: none;
  color: var(--text);
}

.btn-secondary:hover {
  border-color: var(--line-gold);
  background: rgba(226, 180, 58, 0.08);
  box-shadow: none;
}

.btn-small {
  min-height: 44px;
  padding-inline: 17px;
  font-size: 0.92rem;
}

.btn-full {
  width: 100%;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  display: none;
  place-items: center;
  margin-left: auto;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span {
  width: 23px;
  height: 2px;
  display: block;
  margin: 3px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  max-height: calc(100dvh - 72px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 10px 24px 20px;
  border-top: 1px solid var(--line-soft);
  background: #090806;
}

.mobile-nav a {
  display: block;
  padding: 12px 4px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
  font-weight: 820;
}

.mobile-nav a:last-child {
  margin-top: 10px;
  padding: 12px 14px;
  border: 0;
  border-radius: 9px;
  background: var(--gold-bright);
  color: #080704;
  text-align: center;
}

.section {
  padding: 92px 0;
}

.section-tight {
  padding: 56px 0;
}

.section-alt {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background:
    linear-gradient(120deg, rgba(226, 180, 58, 0.035), transparent 42%),
    rgba(255, 255, 255, 0.022);
}

.hero {
  padding: 92px 0 56px;
}

.hero-grid,
.split-grid,
.form-grid,
.about-grid,
.report-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(38px, 6vw, 76px);
  align-items: center;
}

.split-grid,
.form-grid {
  align-items: start;
}

.form-grid {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
}

.about-grid {
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
}

.kicker,
.eyebrow {
  margin: 0 0 15px;
  display: inline-block;
  color: var(--gold-bright);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  line-height: 1.3;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  font-weight: 880;
  letter-spacing: -0.042em;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  max-width: 820px;
  font-size: clamp(3rem, 5.7vw, 5.65rem);
}

h2 {
  font-size: clamp(2rem, 3.9vw, 3.65rem);
}

h3 {
  font-size: 1.22rem;
  letter-spacing: -0.026em;
}

.highlight {
  background: linear-gradient(95deg, var(--gold-bright), #e7b02e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

p {
  margin: 0;
  color: var(--muted);
}

.lead {
  max-width: 780px;
  margin-top: 22px;
  color: #ded5c4;
  font-size: clamp(1.04rem, 1.45vw, 1.2rem);
  line-height: 1.72;
}

.page-hero {
  padding: 78px 0 58px;
  border-bottom: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 90% 0%, rgba(226, 180, 58, 0.1), transparent 25rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent);
}

.page-hero h1 {
  max-width: 930px;
  font-size: clamp(2.7rem, 5.2vw, 5rem);
}

.page-hero .lead {
  max-width: 850px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px;
  margin-top: 30px;
}

.actions.center {
  justify-content: center;
}

.hero-assurance {
  margin-top: 16px;
  color: var(--muted-soft);
  font-size: 0.9rem;
}

.hero-panel,
.card,
.form-card,
.report-card,
.terms-block,
.faq-list details,
.cta-panel,
.price-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow-soft);
}

.hero-panel {
  padding: 22px;
  border-color: var(--line-gold);
  background:
    radial-gradient(circle at 90% 0%, rgba(226, 180, 58, 0.13), transparent 18rem),
    linear-gradient(155deg, #17150f, #0a0907);
  box-shadow: var(--shadow);
}

.score-box {
  padding: 23px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 15px;
  background: rgba(3, 3, 3, 0.58);
}

.score-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 850;
}

.status {
  color: var(--green);
  white-space: nowrap;
}

.score-main {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}

.score-circle {
  width: 112px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--gold-bright) 0 68%, rgba(255, 255, 255, 0.1) 68% 100%);
  box-shadow: 0 0 40px rgba(226, 180, 58, 0.12);
}

.score-circle div {
  width: 82px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #080704;
  text-align: center;
}

.score-circle strong {
  display: block;
  color: var(--gold-bright);
  font-size: 1.75rem;
  line-height: 1;
}

.score-circle span {
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 800;
}

.score-list {
  min-width: 0;
  display: grid;
}

.score-row {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(92px, auto);
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 780;
}

.score-row:last-child {
  border-bottom: 0;
}

.score-row strong {
  max-width: 112px;
  justify-self: end;
  font-size: 0.76rem;
  line-height: 1.2;
  text-align: right;
}

.green {
  color: var(--green);
}

.amber {
  color: var(--amber);
}

.red {
  color: var(--red);
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-top: 20px;
}

.mini-stats div {
  min-width: 0;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.mini-stats strong {
  display: block;
  color: var(--gold-bright);
  font-size: 1rem;
}

.mini-stats span {
  display: block;
  margin-top: 2px;
  color: var(--muted-soft);
  font-size: 0.75rem;
  font-weight: 750;
  line-height: 1.35;
}

.panel-note {
  margin-top: 14px;
  color: var(--muted-soft);
  font-size: 0.76rem;
  line-height: 1.5;
}

.industry-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
  padding: 0;
  list-style: none;
}

.industry-strip li {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 840px;
  margin-bottom: 38px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading > p:not(.kicker) {
  margin-top: 16px;
  font-size: 1.05rem;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.report-card {
  min-width: 0;
  padding: 25px;
}

.card p,
.report-card p,
.terms-block p {
  margin-top: 11px;
}

.number {
  min-width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(226, 180, 58, 0.25);
  border-radius: 10px;
  background: rgba(226, 180, 58, 0.11);
  color: var(--gold-bright);
  font-size: 0.86rem;
  font-weight: 950;
}

.list-clean,
.check-list,
.plain-list {
  display: grid;
  gap: 10px;
  margin: 19px 0 0;
  padding: 0;
}

.check-list li,
.plain-list li {
  position: relative;
  list-style: none;
  padding: 13px 14px 13px 42px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.037);
  color: #d9d1c1;
}

.check-list li::before {
  position: absolute;
  top: 13px;
  left: 15px;
  color: var(--gold-bright);
  content: "✓";
  font-weight: 950;
}

.plain-list li::before {
  position: absolute;
  top: 19px;
  left: 17px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-bright);
  content: "";
}

.plain-list strong {
  color: var(--text);
}

.price-card {
  padding: 30px;
  border-color: var(--line-gold);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 213, 106, 0.15), transparent 15rem),
    linear-gradient(145deg, rgba(226, 180, 58, 0.1), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
}

.price {
  margin: 4px 0 14px;
  color: var(--gold-bright);
  font-size: clamp(3.4rem, 7vw, 5.5rem);
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 1;
}

.muted-box {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(0, 0, 0, 0.2);
}

.evidence-flow {
  display: grid;
  gap: 10px;
}

.evidence-step {
  min-width: 0;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  padding: 13px;
  border: 1px solid var(--line-soft);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.035);
}

.evidence-step > span {
  min-height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(226, 180, 58, 0.28);
  border-radius: 9px;
  background: rgba(226, 180, 58, 0.1);
  color: var(--gold-bright);
  font-size: 0.76rem;
  font-weight: 950;
}

.evidence-step strong {
  display: block;
  color: var(--text);
  line-height: 1.3;
}

.evidence-step p {
  margin-top: 3px;
  font-size: 0.82rem;
  line-height: 1.45;
}

.trust-strip {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 24px;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius);
  background: rgba(226, 180, 58, 0.055);
}

.trust-strip p {
  max-width: 820px;
}

.trust-strip strong {
  color: var(--text);
}

.trust-strip a {
  flex: 0 0 auto;
  color: var(--gold-bright);
  font-weight: 850;
}

.report-visual {
  min-height: 455px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 0%, rgba(226, 180, 58, 0.13), transparent 18rem),
    linear-gradient(145deg, #15130e, #080704);
  box-shadow: var(--shadow);
}

.report-pages {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.paper {
  min-height: 134px;
  padding: 15px;
  border-radius: 10px;
  background: var(--paper);
  color: #17140d;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

.paper h3 {
  color: #17140d;
  font-size: 0.94rem;
  letter-spacing: 0;
}

.paper p {
  margin-top: 8px;
  color: #514a3e;
  font-size: 0.82rem;
  line-height: 1.45;
}

.bar {
  height: 9px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #d7d0c3;
}

.bar i {
  height: 100%;
  display: block;
  background: linear-gradient(90deg, var(--gold-deep), #5ba56f);
}

.traffic {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.traffic span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.traffic .t1 {
  background: var(--green);
}

.traffic .t2 {
  background: var(--amber);
}

.traffic .t3 {
  background: var(--red);
}

.sample-cover-frame {
  position: relative;
  width: min(100%, 510px);
  justify-self: center;
  padding: 18px;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #18150e, #090806);
  box-shadow: var(--shadow);
}

.sample-cover {
  width: 100%;
  border-radius: 10px;
  background: #0b0a08;
}

.sample-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 1;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(5, 5, 4, 0.82);
  color: var(--gold-bright);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.sid-photo {
  overflow: hidden;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-lg);
  background: #111;
  box-shadow: var(--shadow);
}

.sid-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0 21px;
  box-shadow: none;
}

.faq-list details[open] {
  border-color: var(--line-gold);
  background: rgba(226, 180, 58, 0.055);
}

.faq-list summary {
  padding: 19px 30px 19px 0;
  color: var(--text);
  cursor: pointer;
  font-weight: 850;
}

.faq-list details p {
  padding: 0 0 19px;
}

form {
  display: grid;
  gap: 16px;
}

.form-card {
  position: relative;
  padding: 32px;
  border-color: #5d5f57;
  background: linear-gradient(180deg, #1e1f1c 0%, #161715 100%);
  box-shadow:
    inset 0 3px 0 var(--gold),
    0 26px 70px rgba(0, 0, 0, 0.48);
}

.form-intro {
  margin: 0 0 10px;
  padding: 17px 18px;
  border: 1px solid #484a44;
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  background: linear-gradient(90deg, #292a26 0%, #20211e 100%);
}

.form-intro .kicker {
  display: block;
  margin: 0 0 8px;
  color: var(--gold-bright);
  font-size: 0.95rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  line-height: 1.35;
}

.form-intro p:last-child {
  color: #ddd6c9;
  font-size: 0.95rem;
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: block;
  color: #ded5c5;
  font-size: 0.94rem;
  font-weight: 790;
}

.form-card label:not(.check-label) {
  color: var(--text);
  font-size: 1rem;
  font-weight: 820;
}

label:not(.check-label) > span {
  color: var(--gold-bright);
}

.required {
  color: var(--gold-bright);
}

label:not(.check-label) > input,
label:not(.check-label) > select,
label:not(.check-label) > textarea {
  display: block;
  margin-top: 7px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 10px;
  background: #080806;
  color: var(--text);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.form-card input:not([type="checkbox"]),
.form-card select,
.form-card textarea {
  min-height: 56px;
  padding: 14px 16px;
  border-color: #b4ac9f;
  background-color: #f1ede4;
  color: #171611;
  caret-color: var(--gold-deep);
  color-scheme: light;
  font-size: 1rem;
}

.form-card select {
  padding-right: 48px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%239c710f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 17px center;
  background-size: 14px 8px;
  cursor: pointer;
}

.form-card select:required:invalid {
  color: #625d54;
}

.form-card select option {
  background: #f1ede4;
  color: #171611;
}

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

.form-card textarea {
  min-height: 144px;
}

input::placeholder,
textarea::placeholder {
  color: #888174;
  opacity: 1;
}

.form-card input::placeholder,
.form-card textarea::placeholder {
  color: #6b655b;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold-bright);
  box-shadow: 0 0 0 4px rgba(226, 180, 58, 0.12);
}

.form-card input:not([type="checkbox"]):focus,
.form-card select:focus,
.form-card textarea:focus {
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 4px rgba(226, 180, 58, 0.28);
}

.check-label {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 11px;
  padding: 12px;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 620;
}

.form-card .check-label {
  border-color: #66675f;
  background: #242522;
}

.form-card .check-label:focus-within {
  border-color: var(--gold-bright);
}

.check-label input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin-top: 3px;
  padding: 0;
  accent-color: var(--gold);
}

.check-label span {
  color: var(--muted);
}

.form-card .check-label span {
  color: #ddd6c9;
}

.form-note,
.small-note {
  color: var(--muted-soft);
  font-size: 0.87rem;
}

.form-card .form-note {
  color: #bdb5a7;
}

@media (hover: hover) {
  .form-card input:not([type="checkbox"]):hover,
  .form-card select:hover,
  .form-card textarea:hover {
    border-color: var(--gold-deep);
  }
}

.form-note a,
.check-label a,
.terms-block a,
.contact-lines a {
  color: var(--gold-bright);
  font-weight: 780;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.contact-lines {
  display: grid;
  gap: 13px;
  margin-top: 24px;
}

.terms-layout {
  max-width: 930px;
  display: grid;
  gap: 16px;
}

.terms-block {
  padding: 25px;
  box-shadow: none;
}

.terms-block h2 {
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
}

.terms-block p + p {
  margin-top: 13px;
}

.section-cta {
  padding-top: 62px;
}

.cta-panel {
  padding: 48px 30px;
  overflow: hidden;
  border-color: var(--line-gold);
  background:
    radial-gradient(circle at 50% -40%, rgba(255, 213, 106, 0.18), transparent 25rem),
    linear-gradient(145deg, rgba(226, 180, 58, 0.09), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
  text-align: center;
}

.cta-panel p:not(.kicker) {
  max-width: 760px;
  margin: 17px auto 0;
}

.site-footer {
  padding: 40px 0 22px;
  border-top: 1px solid var(--line);
  background: #030302;
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-grid > div {
  max-width: 520px;
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 780;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted-soft);
  font-size: 0.86rem;
}

@media (max-width: 1080px) {
  .brand-logo {
    max-width: min(72vw, 286px);
  }

  .brand-mark {
    width: 58px;
    height: 58px;
    border-radius: 15px;
  }

  .brand-word {
    font-size: 1.22rem;
  }

  .desktop-nav {
    gap: 14px;
    font-size: 0.86rem;
  }

  .nav-wrap {
    gap: 16px;
  }
}

@media (max-width: 980px) {
  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .js .mobile-nav {
    display: none;
  }

  .js .mobile-nav.open {
    display: block;
  }

  .js .menu-toggle {
    display: grid;
  }

  .hero-grid,
  .split-grid,
  .form-grid,
  .about-grid,
  .report-grid,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 66px;
  }

  .hero h1 {
    max-width: 780px;
  }

  .hero-panel {
    width: min(100%, 620px);
  }

  .form-grid > div:first-child {
    max-width: 720px;
  }

  .about-grid {
    align-items: start;
  }

  .trust-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .sid-photo {
    width: min(100%, 430px);
  }
}

@media (max-width: 680px) {
  .container {
    width: min(var(--max), calc(100% - 30px));
  }

  .nav-wrap {
    min-height: 72px;
    gap: 12px;
  }

  .brand-logo {
    max-width: calc(100vw - 116px);
    gap: 10px;
  }

  .brand-mark {
    width: 58px;
    height: 58px;
    border-radius: 15px;
  }

  .brand-word {
    font-size: clamp(1.08rem, 5vw, 1.28rem);
  }

  .section {
    padding: 68px 0;
  }

  .hero {
    padding: 54px 0 38px;
  }

  .page-hero {
    padding: 54px 0 40px;
  }

  h1,
  .page-hero h1 {
    font-size: clamp(2.45rem, 12vw, 4rem);
  }

  .page-hero h1 {
    font-size: clamp(2.25rem, 11vw, 4rem);
    overflow-wrap: break-word;
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 3rem);
  }

  .grid-2,
  .form-row,
  .report-pages {
    grid-template-columns: 1fr;
  }

  .actions,
  .footer-grid,
  .footer-links {
    display: grid;
  }

  .actions .btn {
    width: 100%;
  }

  .hero-panel,
  .score-box,
  .form-card,
  .price-card,
  .cta-panel,
  .card,
  .terms-block {
    border-radius: 16px;
  }

  .hero-panel {
    padding: 12px;
  }

  .score-box,
  .form-card {
    padding: 20px;
  }

  .form-card {
    padding: 21px 16px;
  }

  .form-intro {
    padding: 15px 14px;
  }

  .score-main {
    grid-template-columns: 1fr;
  }

  .score-circle {
    margin-inline: auto;
  }

  .mini-stats {
    grid-template-columns: 1fr;
  }

  .mini-stats div {
    display: grid;
    grid-template-columns: 92px 1fr;
    align-items: center;
    gap: 8px;
  }

  .mini-stats span {
    margin-top: 0;
  }

  .sample-badge {
    position: static;
    display: block;
    margin-bottom: 12px;
    text-align: center;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 390px) {
  .container {
    width: min(var(--max), calc(100% - 24px));
  }

  .brand-logo {
    gap: 8px;
    max-width: calc(100vw - 104px);
  }

  .brand-mark {
    width: 52px;
    height: 52px;
    border-radius: 13px;
  }

  .brand-word {
    font-size: clamp(0.98rem, 4.9vw, 1.08rem);
  }

  .mobile-nav {
    padding-inline: 18px;
  }

  .score-top {
    display: grid;
  }

  .status {
    white-space: normal;
  }
}

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

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

@media print {
  .site-header,
  .site-footer,
  .section-cta,
  .actions,
  .skip-link {
    display: none !important;
  }

  body {
    background: #fff;
    color: #111;
  }

  h1,
  h2,
  h3,
  p,
  li {
    color: #111 !important;
  }
}
