:root {
  --ink: #0f172a;
  --ink-soft: #475569;
  --ink-muted: #64748b;
  --paper: #ffffff;
  --paper-subtle: #f8fafc;
  --paper-elevated: #ffffff;
  --line: #e2e8f0;
  --line-strong: #cbd5e1;
  --brand: #1d4ed8;
  --brand-hover: #1e40af;
  --brand-light: #eff6ff;
  --brand-muted: #dbeafe;
  --down: #b91c1c;
  --down-bg: #fef2f2;
  --live: #047857;
  --live-bg: #ecfdf5;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.08);
  --radius: 10px;
  --radius-sm: 6px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--paper);
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url("assets/grid.svg");
  background-size: 32px 32px;
  opacity: 0.35;
  pointer-events: none;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: white;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.wrap {
  width: min(var(--max), calc(100% - 3rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.logo-mark {
  width: 1.65rem;
  height: 1.65rem;
  border-radius: var(--radius-sm);
  background-color: var(--ink);
  box-shadow: var(--shadow-sm);
  background-image:
    linear-gradient(#fff, #fff),
    linear-gradient(#fff, #fff),
    linear-gradient(#fff, #fff);
  background-size: 60% 2px, 60% 2px, 60% 2px;
  background-position: center 38%, center 50%, center 62%;
  background-repeat: no-repeat;
}

nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
}

nav a {
  text-decoration: none;
  color: var(--ink-muted);
  font-weight: 500;
  transition: color 0.15s ease;
}

nav a:hover,
nav a:focus-visible {
  color: var(--ink);
}

.nav-cta {
  padding: 0.5rem 0.95rem;
  border-radius: var(--radius-sm);
  background: var(--brand);
  color: white !important;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--brand-hover);
}

.hero {
  position: relative;
  padding: 3.5rem 0 4rem;
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(29, 78, 216, 0.06), transparent 55%),
    linear-gradient(180deg, var(--paper-subtle) 0%, var(--paper) 85%);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-copy {
  max-width: 34rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand);
}

h1,
h2,
h3 {
  margin: 0 0 0.85rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: var(--ink);
}

h1 {
  font-size: clamp(1.875rem, 3.6vw, 2.625rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

h2 {
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
}

h3 {
  font-size: 1.05rem;
}

.lede {
  margin: 0 0 1.75rem;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.15rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.button.primary {
  background: var(--brand);
  color: white;
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--brand-hover);
}

.button.ghost {
  border-color: var(--line-strong);
  background: var(--paper);
  color: var(--ink);
}

.button.ghost:hover,
.button.ghost:focus-visible {
  border-color: var(--ink-muted);
  background: var(--paper-subtle);
}

.button.large {
  padding: 0.8rem 1.25rem;
}

.hero-proof {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.hero-proof li {
  position: relative;
  padding-left: 1.1rem;
}

.hero-proof li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 5px;
  height: 5px;
  border-radius: 1px;
  background: var(--brand-muted);
  border: 1px solid var(--brand);
}

.sample-card {
  background: var(--paper-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.sample-card--hero {
  width: min(100%, 22.5rem);
  box-shadow:
    0 20px 40px rgba(15, 23, 42, 0.1),
    0 0 0 1px rgba(15, 23, 42, 0.04);
}

.sample-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  background: var(--ink);
  color: white;
  font-size: 0.75rem;
}

.sample-card-head-text {
  display: grid;
  gap: 0.15rem;
}

.sample-badge-live {
  flex-shrink: 0;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(16, 185, 129, 0.2);
  color: #6ee7b7;
  border: 1px solid rgba(110, 231, 183, 0.35);
}

.sample-label {
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.sample-meta {
  color: rgba(255, 255, 255, 0.65);
}

.sample-table-wrap {
  overflow-x: auto;
}

.sample-table-wrap--gated {
  position: relative;
}

.sample-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
}

.sample-table--compact {
  min-width: 0;
}

.sample-table--compact th:first-child,
.sample-table--compact td:first-child {
  width: 58%;
}

.sample-lock-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.5rem;
  padding: 0.65rem 1rem;
  background: var(--brand-light);
  border-top: 1px dashed var(--brand-muted);
}

.sample-lock-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink);
}

.sample-lock-bar .sample-field-list {
  justify-content: flex-start;
  max-width: none;
  flex: 1 1 100%;
}

.sample-lock-bar .sample-gate-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.sample-gate {
  position: absolute;
  top: 2.15rem;
  right: 0;
  bottom: 0;
  width: 72%;
  min-width: 12rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem;
  text-align: center;
  background: rgba(248, 250, 252, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-left: 1px dashed var(--line-strong);
  pointer-events: none;
}

.sample-gate-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: var(--radius-sm);
  background: var(--brand-light);
  color: var(--brand);
}

.sample-gate-text {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
}

.sample-field-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.3rem;
  max-width: 14rem;
}

.sample-field-list li {
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--paper);
  border: 1px solid var(--line);
}

.col-gated-header {
  color: var(--brand-hover);
  background: var(--brand-light);
  white-space: nowrap;
}

.col-gated,
.row-gated td {
  position: relative;
}

.gated-placeholder {
  display: inline-block;
  filter: blur(5px);
  opacity: 0.8;
  user-select: none;
  white-space: nowrap;
}

.row-gated td {
  background: linear-gradient(to bottom, transparent, var(--paper-subtle));
}

.row-gated .gated-placeholder {
  filter: blur(6px);
}

.sample-table .col-gated .badge {
  filter: blur(5px);
  opacity: 0.85;
}

.sample-table th,
.sample-table td {
  padding: 0.6rem 0.7rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

.sample-table th {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: var(--ink-muted);
  background: var(--paper-subtle);
  position: relative;
  z-index: 2;
}

.sample-table tr:last-child td {
  border-bottom: none;
}

.badge {
  display: inline-block;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
}

.badge.down {
  background: var(--down-bg);
  color: var(--down);
}

.sample-foot {
  margin: 0;
  padding: 0.85rem 1rem 1rem;
  font-size: 0.8125rem;
  color: var(--ink-muted);
  background: var(--paper-subtle);
  border-top: 1px solid var(--line);
}

.strip {
  border-bottom: 1px solid var(--line);
  background: var(--paper-subtle);
}

.strip-inner {
  padding: 0.85rem 0;
}

.strip-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.strip-list li {
  position: relative;
  padding-left: 1.1rem;
}

.strip-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  opacity: 0.75;
}

.section {
  padding: 4rem 0;
}

.how,
.about {
  background: var(--paper-subtle);
}

.section-head {
  max-width: 38rem;
  margin-bottom: 2rem;
}

.section-head p:last-child {
  margin: 0;
  color: var(--ink-soft);
}

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

.product-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.product-figure {
  margin: 0;
  line-height: 0;
  border-bottom: 1px solid var(--line);
  max-height: 5.5rem;
  overflow: hidden;
}

.product-figure img {
  width: 100%;
  height: 5.5rem;
  object-fit: cover;
  object-position: center;
  display: block;
}

.product-card .product-brand,
.product-card .product-body,
.product-card .product-meta {
  margin-inline: 1.35rem;
}

.product-card .product-brand {
  margin-top: 1.15rem;
}

.product-card .product-meta {
  margin-bottom: 1.35rem;
}

.product-card--live {
  border-color: #a7f3d0;
  box-shadow: var(--shadow);
}

.product-brand {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: start;
}

.product-brand > div {
  min-width: 0;
}

.product-brand h3 {
  margin: 0 0 0.1rem;
  font-size: 1.05rem;
}

.product-tagline {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--ink-muted);
  font-weight: 500;
}

.product-price {
  margin: 0 1.35rem 0.65rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand);
}

.product-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: white;
}

.product-icon--cqc {
  background: #047857;
}

.product-icon--sponsor {
  background: #1e40af;
}

.product-icon--gazette {
  background: #5b21b6;
}

.product-icon--fsa {
  background: #334155;
}

.product-card .product-body {
  color: var(--ink-soft);
  font-size: 0.9375rem;
  flex: 1;
  margin-bottom: 0.5rem;
}

.product-meta {
  margin: 0;
  display: grid;
  gap: 0.65rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--line);
  font-size: 0.875rem;
}

.product-meta dt {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: var(--ink-muted);
  margin-bottom: 0.1rem;
}

.product-meta dd {
  margin: 0;
  color: var(--ink);
}

.pill {
  flex-shrink: 0;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  background: var(--paper-subtle);
  color: var(--ink-muted);
  border: 1px solid var(--line);
  white-space: nowrap;
}

.pill--live {
  background: var(--live-bg);
  color: var(--live);
  border-color: #a7f3d0;
}

.how-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.how-copy .section-head {
  margin-bottom: 1.5rem;
}

.steps--vertical {
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.steps--vertical li {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.85rem;
  align-items: start;
  padding: 1.1rem 1.25rem;
}

.steps--vertical .step-num {
  grid-row: 1 / span 2;
  margin-bottom: 0;
}

.steps--vertical h3 {
  margin-bottom: 0.25rem;
}

.how-figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}

.how-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.steps li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow-sm);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  margin-bottom: 0.85rem;
  border-radius: var(--radius-sm);
  background: var(--brand-light);
  color: var(--brand);
  font-weight: 700;
  font-size: 0.8rem;
}

.steps p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9375rem;
}

.value-list--standalone {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--ink-soft);
  max-width: 38rem;
}

.value-list--standalone li + li {
  margin-top: 0.5rem;
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
  max-width: 34rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 44rem;
  margin-inline: auto;
}

.pricing-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.pricing-card--highlight {
  border-color: var(--brand-muted);
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, var(--brand-light) 0%, var(--paper) 45%);
}

.pricing-label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand);
}

.pricing-amount {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}

.pricing-amount--range {
  font-size: 2rem;
}

.pricing-currency {
  font-size: 1.35rem;
  font-weight: 600;
  vertical-align: super;
}

.pricing-period {
  margin: 0 0 0.65rem;
  font-size: 0.875rem;
  color: var(--ink-muted);
}

.pricing-desc {
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  color: var(--ink-soft);
}

.pricing-features {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  font-size: 0.875rem;
  color: var(--ink-soft);
  flex: 1;
}

.pricing-features li + li {
  margin-top: 0.35rem;
}

.pricing-feed-prices {
  margin: 0 0 0.5rem;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
}

.pricing-feed-prices li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}

.pricing-feed-prices li:last-child {
  border-bottom: none;
}

.pricing-feed-prices strong {
  color: var(--ink);
  font-weight: 600;
}

.pricing-cta {
  width: 100%;
  text-align: center;
}

.pricing-note {
  margin: 1.5rem auto 0;
  max-width: 40rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--ink-muted);
  line-height: 1.55;
}

.pricing {
  background: var(--paper-subtle);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "copy photo"
    "facts facts";
  gap: 2rem;
  align-items: start;
}

.about-copy {
  grid-area: copy;
}

.about-photo {
  grid-area: photo;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-facts {
  grid-area: facts;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.about-copy p {
  color: var(--ink-soft);
  font-size: 0.9375rem;
}

.about-facts li {
  padding: 0.9rem 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}

.about-facts strong {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: start;
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--ink);
  color: white;
}

.contact-panel .eyebrow {
  color: #93c5fd;
}

.contact-panel h2 {
  color: white;
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9375rem;
}

.contact-form-wrap {
  width: 100%;
}

.contact-form {
  display: grid;
  gap: 0.85rem;
}

.form-row {
  display: grid;
  gap: 0.35rem;
}

.form-fieldset {
  margin: 0;
  padding: 0;
  border: none;
}

.form-hint {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.form-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem 0.75rem;
  max-height: 11rem;
  overflow-y: auto;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  line-height: 1.35;
}

.form-check input {
  margin-top: 0.2rem;
  flex-shrink: 0;
  accent-color: #93c5fd;
}

.form-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
}

.form-optional {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
}

.form-input {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font: inherit;
  font-size: 0.9375rem;
}

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath stroke='%23fff' stroke-opacity='.6' stroke-width='1.5' d='m1 1 5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2rem;
}

select.form-input option {
  color: var(--ink);
  background: white;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.form-input:focus {
  outline: 2px solid #93c5fd;
  outline-offset: 1px;
  border-color: transparent;
  background: rgba(255, 255, 255, 0.12);
}

.form-textarea {
  resize: vertical;
  min-height: 4.5rem;
}

.form-submit {
  width: 100%;
  margin-top: 0.25rem;
  cursor: pointer;
  border: none;
}

.form-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.form-status {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
}

.form-status--error {
  color: #fecaca;
}

.form-status--warn {
  color: #fde68a;
}

.contact-success {
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-success-title {
  margin: 0 0 0.35rem;
  font-weight: 600;
  color: white;
}

.contact-success p {
  margin: 0;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
}

.contact-actions {
  display: grid;
  gap: 0.75rem;
}

.contact-panel .button.primary {
  background: white;
  color: var(--ink);
}

.contact-panel .button.primary:hover,
.contact-panel .button.primary:focus-visible {
  background: var(--paper-subtle);
}

.contact-note {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer-inner {
  display: grid;
  gap: 0.3rem;
}

.footer-inner p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.875rem;
}

.footer-small {
  font-size: 0.8125rem !important;
}

@media (max-width: 900px) {
  .hero-grid,
  .product-grid,
  .pricing-grid,
  .how-layout,
  .about-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 2.5rem;
  }

  .hero-copy {
    max-width: none;
  }

  .about-grid {
    grid-template-areas:
      "copy"
      "photo"
      "facts";
  }

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

  .hero-visual {
    order: -1;
  }

  .sample-card--hero {
    width: min(100%, 24rem);
    margin-inline: auto;
  }

  nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    padding-top: 2.5rem;
    padding-bottom: 3rem;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(var(--max), calc(100% - 1.25rem));
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .about-facts {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    padding: 1.35rem;
  }

  .sample-gate {
    width: 68%;
    min-width: 9rem;
    top: 2rem;
  }

  .sample-field-list li {
    font-size: 0.6rem;
  }

  .form-checklist {
    grid-template-columns: 1fr;
    max-height: 10rem;
  }
}

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