:root {
  --navy: #120b2d;
  --navy-2: #21105a;
  --blue: #6c2fe2;
  --blue-2: #4f1cb5;
  --green: #8a5cf6;
  --green-soft: #f4efff;
  --gold: #d69a25;
  --gold-2: #f1c76a;
  --gold-soft: #fff7e7;
  --gray-25: #fbfcfe;
  --gray-50: #f7f5fb;
  --gray-100: #ece7f6;
  --gray-200: #dcd3ed;
  --text: #20173d;
  --muted: #635a78;
  --amber: #b7791f;
  --amber-bg: #fff7e6;
  --red: #b42318;
  --red-bg: #fff1f0;
  --shadow: 0 22px 65px rgba(18, 11, 45, 0.16);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background: #ffffff;
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
}

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

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--text);
  padding: 0.85rem 0.95rem;
  min-height: 44px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(214, 154, 37, 0.32);
  outline-offset: 2px;
}

.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;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem max(1rem, calc((100vw - var(--container)) / 2));
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: 0 10px 30px rgba(18, 11, 45, 0.05);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--navy);
  min-width: 0;
}

.brand-logo {
  display: block;
  width: clamp(188px, 22vw, 250px);
  height: auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: var(--radius);
  background: var(--navy);
  color: #ffffff;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #3d315a;
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav a {
  border-radius: var(--radius);
  padding: 0.55rem 0.7rem;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--green-soft);
  color: var(--navy);
}

.site-nav .login-link {
  border: 1px solid var(--gray-200);
}

.site-nav .build-link {
  border: 1px solid rgba(214, 154, 37, 0.45);
  background: var(--gold-soft);
  color: #5b3b00;
}

.site-nav .build-link:hover,
.site-nav .build-link[aria-current="page"] {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--navy);
}

.nav-toggle {
  display: none;
  width: 2.65rem;
  height: 2.65rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 0.55rem;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.section,
.section-tight {
  padding: 5rem 0;
}

.section-tight {
  padding-top: 4rem;
}

.surface {
  background: var(--gray-50);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 12%, rgba(214, 154, 37, 0.2), transparent 25rem),
    radial-gradient(circle at 18% 18%, rgba(108, 47, 226, 0.14), transparent 24rem),
    linear-gradient(120deg, rgba(255, 255, 255, 0.98), rgba(247, 242, 255, 0.92)),
    repeating-linear-gradient(0deg, rgba(18, 11, 45, 0.045), rgba(18, 11, 45, 0.045) 1px, transparent 1px, transparent 42px),
    repeating-linear-gradient(90deg, rgba(18, 11, 45, 0.045), rgba(18, 11, 45, 0.045) 1px, transparent 1px, transparent 42px);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--gold), var(--blue), var(--navy));
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  align-items: start;
  gap: 2rem;
}

.hero-copy {
  padding-top: 2rem;
}

.eyebrow,
.panel-kicker {
  margin: 0 0 0.65rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mascot-callout {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1rem;
  border: 1px solid rgba(214, 154, 37, 0.3);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  padding: 0.45rem 0.7rem 0.45rem 0.45rem;
  color: var(--navy);
  font-weight: 800;
  box-shadow: 0 12px 35px rgba(18, 11, 45, 0.1);
}

.mascot-callout img {
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
}

h1,
h2,
h3,
h4,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.7rem, 8vw, 5.6rem);
}

h2 {
  font-size: clamp(2rem, 4.6vw, 3.35rem);
}

h3 {
  font-size: 1.2rem;
}

h4 {
  font-size: 1rem;
}

.hero-text {
  max-width: 760px;
  margin: 1.25rem 0 0;
  color: #2a2149;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
}

.hero-subtext,
.section-heading p,
.page-hero p,
.privacy-layout p,
.mission-panel p,
.contact-panel p,
.small-copy {
  color: var(--muted);
}

.hero-subtext {
  max-width: 680px;
  margin: 0.95rem 0 0;
  font-size: 1.03rem;
}

.hero-actions,
.checker-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.promise-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.promise-strip li {
  border: 1px solid rgba(214, 154, 37, 0.25);
  border-radius: 999px;
  background: #ffffff;
  color: var(--navy);
  padding: 0.35rem 0.7rem;
  font-size: 0.88rem;
  font-weight: 900;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.78rem 1rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--navy);
  box-shadow: 0 12px 28px rgba(214, 154, 37, 0.25);
}

.button-primary:hover {
  box-shadow: 0 14px 34px rgba(214, 154, 37, 0.33);
}

.button-secondary {
  background: #ffffff;
  color: var(--navy);
  border-color: var(--gray-200);
}

.button-secondary:hover,
.button-ghost:hover {
  border-color: var(--gold);
}

.button-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--gray-200);
}

.full-width {
  width: 100%;
}

.trust-panel,
.result-card,
.sample-report,
.price-card,
.example-card,
.mission-panel,
.contact-panel,
.login-card {
  border: 1px solid rgba(220, 211, 237, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.trust-panel,
.sample-report,
.build-card,
.build-summary-card,
.build-services-panel {
  position: relative;
  overflow: hidden;
}

.trust-panel::before,
.sample-report::before,
.build-card::before,
.build-summary-card::before,
.build-services-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--blue), var(--navy));
}

.trust-panel {
  padding: 1.1rem;
}

.hero-checker {
  align-self: stretch;
}

.panel-head,
.report-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.panel-mascot {
  width: 3.1rem;
  height: 3.1rem;
  flex: 0 0 auto;
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(7, 27, 51, 0.16);
}

.panel-head h2 {
  font-size: 1.25rem;
}

.status-pill,
.risk-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.status-pill {
  background: var(--gold-soft);
  color: #6a4300;
}

.field-label {
  display: block;
  margin: 0.9rem 0 0.4rem;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

.checker-actions p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.compact-result {
  margin-top: 1rem;
  padding: 1rem;
  box-shadow: none;
}

.result-empty {
  color: var(--muted);
}

.result-card h3,
.result-card h4,
.result-card p {
  margin-top: 0.7rem;
}

.risk-badge.low {
  background: var(--green-soft);
  color: #11674d;
}

.risk-badge.medium {
  background: var(--amber-bg);
  color: var(--amber);
}

.risk-badge.high {
  background: #fff0db;
  color: #9a4f00;
}

.risk-badge.critical {
  background: var(--red-bg);
  color: var(--red);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2rem;
}

.section-heading.narrow {
  max-width: 650px;
}

.section-heading.light h2,
.section-heading.light p {
  color: #ffffff;
}

.card-grid,
.feature-grid,
.pricing-grid,
.article-grid,
.example-grid {
  display: grid;
  gap: 1rem;
}

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

.mini-card,
.feature-grid article,
.article-grid a,
.resource-list article {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 1rem;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.mini-card:hover,
.feature-grid article:hover,
.article-grid a:hover,
.resource-list article:hover {
  border-color: rgba(214, 154, 37, 0.45);
  box-shadow: 0 14px 34px rgba(18, 11, 45, 0.09);
  transform: translateY(-2px);
}

.mini-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2rem;
  border-radius: 6px;
  background: var(--green-soft);
  color: var(--blue-2);
  font-size: 0.72rem;
  font-weight: 900;
}

.mini-card h3,
.feature-grid h3 {
  margin-top: 0.85rem;
}

.mini-card p,
.feature-grid p,
.price-card p,
.example-card p,
.resource-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.steps article {
  border-top: 3px solid var(--gold);
  padding: 1.25rem 0 0;
}

.step-number {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 0.85rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #ffffff;
  font-weight: 900;
}

.navy-band {
  background:
    radial-gradient(circle at 78% 20%, rgba(214, 154, 37, 0.2), transparent 22rem),
    linear-gradient(135deg, var(--navy), #070818);
}

.result-preview-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.75fr);
  gap: 2rem;
  align-items: center;
}

.sample-report {
  padding: 1.25rem;
}

.report-topline p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.report-block {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
}

.safe-step {
  border-left: 4px solid var(--gold);
  padding-left: 1rem;
}

.check-list,
.stack-list,
.privacy-list {
  padding: 0;
  list-style: none;
}

.check-list li,
.stack-list li,
.privacy-list li {
  position: relative;
  margin: 0.55rem 0;
  padding-left: 1.45rem;
}

.check-list li::before,
.stack-list li::before,
.privacy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--blue);
}

.check-list.warning li::before {
  background: var(--amber);
}

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

.split-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
}

.stack-list {
  columns: 2;
  column-gap: 2rem;
  color: var(--text);
  font-weight: 700;
}

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

.pricing-grid.large {
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  padding: 1.15rem;
  box-shadow: none;
}

.price-card.featured {
  border-color: rgba(214, 154, 37, 0.65);
  box-shadow: var(--shadow);
}

.price {
  margin: 0.9rem 0 0;
  color: var(--navy);
  font-size: 2rem;
  font-weight: 900;
}

.price span {
  color: var(--muted);
  font-size: 1rem;
}

.price-card .button {
  margin-top: auto;
}

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

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.article-grid a {
  min-height: 130px;
  text-decoration: none;
}

.article-grid span,
.resource-list span {
  display: block;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.article-grid strong {
  display: block;
  margin-top: 0.8rem;
  color: var(--navy);
  font-size: 1.1rem;
  line-height: 1.25;
}

.privacy-band {
  background:
    radial-gradient(circle at 92% 0%, rgba(214, 154, 37, 0.18), transparent 22rem),
    var(--green-soft);
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 1fr);
  gap: 2rem;
  align-items: start;
}

.privacy-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 1rem;
  margin: 0;
  font-weight: 800;
}

.build-band {
  background:
    radial-gradient(circle at 16% 10%, rgba(214, 154, 37, 0.18), transparent 22rem),
    linear-gradient(135deg, #120b2d, #261163 62%, #0a0718);
  color: #ffffff;
}

.build-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  gap: 2rem;
  align-items: center;
}

.build-layout h2,
.build-layout h3 {
  color: #ffffff;
}

.build-layout p {
  max-width: 760px;
  color: #ddd6f4;
  font-size: 1.06rem;
}

.build-card,
.build-summary-card,
.build-services-panel {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.build-card h3,
.build-summary-card h2,
.build-services-panel h2 {
  color: var(--navy);
}

.build-card .button {
  margin-top: 1rem;
}

.build-hero {
  padding: 4.5rem 0;
}

.build-hero-layout,
.build-request-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 1.5rem;
  align-items: center;
}

.build-summary-card img {
  width: 118px;
  height: 118px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.build-summary-card p,
.build-services-panel p {
  color: var(--muted);
}

.build-request-layout {
  align-items: start;
}

.build-request-form {
  padding: 1.25rem;
}

.build-services-panel {
  position: sticky;
  top: 6rem;
}

.build-note {
  margin-top: 1rem;
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--gold-soft);
  padding: 1rem;
  color: #4f3a12;
}

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

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

.template-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(220, 211, 237, 0.9);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(18, 11, 45, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.template-card:hover {
  border-color: rgba(214, 154, 37, 0.55);
  box-shadow: 0 22px 58px rgba(18, 11, 45, 0.14);
  transform: translateY(-2px);
}

.template-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  border-bottom: 1px solid var(--gray-100);
}

.template-card div {
  padding: 1rem;
}

.template-card span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.template-card h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
}

.template-card h3 {
  font-size: 1.08rem;
}

.template-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.site-footer {
  background:
    radial-gradient(circle at 16% 0%, rgba(214, 154, 37, 0.15), transparent 22rem),
    linear-gradient(135deg, #070818, var(--navy));
  color: #dce9f7;
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.footer-brand,
.footer-brand h2,
.footer-brand strong,
.footer-brand small {
  color: #ffffff;
}

.footer-brand .brand-logo {
  width: min(100%, 235px);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 0.35rem;
}

.ceo-note {
  max-width: 420px;
  color: #b9cbe0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: flex-end;
}

.site-footer a {
  color: #ffffff;
  text-decoration: none;
}

.disclaimer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #b9cbe0;
  font-size: 0.9rem;
}

.page-hero {
  background:
    radial-gradient(circle at 86% 8%, rgba(214, 154, 37, 0.18), transparent 24rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(247, 242, 255, 0.92)),
    repeating-linear-gradient(90deg, rgba(18, 11, 45, 0.045), rgba(18, 11, 45, 0.045) 1px, transparent 1px, transparent 44px);
  padding: 5rem 0;
}

.page-hero.compact {
  padding: 3.8rem 0;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.75rem);
}

.page-hero p {
  max-width: 760px;
  font-size: 1.12rem;
}

.trustcheck-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 1.25rem;
  align-items: start;
}

.full-checker {
  padding: 1.25rem;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  border: 0;
}

.choice-grid legend {
  grid-column: 1 / -1;
}

.choice-grid label {
  cursor: pointer;
}

.choice-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
  min-height: 0;
  margin: 0;
}

.choice-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 0.65rem;
  background: #ffffff;
  color: var(--text);
  font-weight: 800;
  text-align: center;
}

.choice-grid input:checked + span {
  border-color: var(--blue);
  background: var(--green-soft);
  color: var(--blue-2);
}

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

.full-result {
  position: sticky;
  top: 6rem;
  padding: 1.25rem;
  box-shadow: none;
}

.result-section {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
}

.result-section ul {
  margin-bottom: 0;
}

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

.example-card {
  padding: 1.25rem;
  box-shadow: none;
}

.example-message {
  margin-bottom: 1rem;
  border-left: 4px solid var(--gold);
  padding: 0.9rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--green-soft);
  color: var(--navy);
  font-weight: 800;
}

.resource-list {
  display: grid;
  gap: 1rem;
}

.resource-list article {
  padding: 1.25rem;
}

.about-hero,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.6fr);
  gap: 1.5rem;
  align-items: center;
}

.mission-panel,
.contact-panel {
  padding: 1.25rem;
  box-shadow: none;
}

.brand-system {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.brand-system p {
  color: var(--muted);
}

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

.asset-grid figure {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 185px;
  margin: 0;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--gray-25);
  padding: 1rem;
}

.asset-grid img {
  max-height: 112px;
  object-fit: contain;
}

.asset-grid figcaption {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.login-main {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 74px);
  padding: 2rem 1rem;
  background: var(--gray-50);
}

.login-card {
  width: min(100%, 460px);
  padding: 1.25rem;
}

.small-copy {
  margin-bottom: 0;
  font-size: 0.95rem;
}

@media (max-width: 1060px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1rem 1rem;
    background: #ffffff;
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.85rem;
  }

  .hero-inner,
  .result-preview-layout,
  .trustcheck-layout,
  .about-hero,
  .contact-layout,
  .brand-system,
  .build-layout,
  .build-hero-layout,
  .build-request-layout {
    grid-template-columns: 1fr;
  }

  .full-result {
    position: static;
  }

  .build-services-panel {
    position: static;
  }

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

@media (max-width: 760px) {
  .section,
  .section-tight {
    padding: 3.25rem 0;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-actions,
  .checker-actions,
  .section-actions,
  .footer-grid,
  .site-footer nav {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .steps,
  .split-section,
  .article-grid,
  .example-grid,
  .privacy-layout,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .check-grid,
  .feature-grid,
  .pricing-grid,
  .template-grid,
  .template-grid--home,
  .choice-grid,
  .privacy-list,
  .asset-grid {
    grid-template-columns: 1fr;
  }

  .brand-logo {
    width: 178px;
  }

  .stack-list {
    columns: 1;
  }

  .panel-head,
  .report-topline {
    flex-direction: column;
  }

  .page-hero,
  .page-hero.compact {
    padding: 3rem 0;
  }
}
