:root {
  color-scheme: light;
  --font-sans:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --bg: #f8fafc;
  --surface: rgba(255, 255, 255, 0.94);
  --panel: #ffffff;
  --border: #e2e8f0;
  --text: #0f172a;
  --muted: #475569;
  --muted-soft: #64748b;
  --brand: #2563eb;
  --brand-dark: #1d4ed8;
  --brand-soft: #eff6ff;
  --danger: #b91c1c;
  --shadow: 0 32px 72px -42px rgba(15, 23, 42, 0.16);
  --shadow-soft: 0 24px 56px -36px rgba(15, 23, 42, 0.14);
  --radius-card: 24px;
  --radius-frame: 28px;
  --radius-control: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-sans);
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 64%, #f8fafc 100%);
}

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

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

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

.hp-field {
  position: absolute !important;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-status {
  min-height: 1.5rem;
  margin: 0.25rem 0 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0369a1;
}

.form-status.is-error {
  color: var(--danger);
}

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

.landing-body {
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 58%, #f8fafc 100%);
}

.site-shell {
  width: min(1120px, calc(100vw - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(226, 232, 240, 0.88);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 80px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.header-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  transition: color 180ms ease;
}

.header-nav a:hover,
.header-nav a:focus-visible,
.header-nav a[aria-current="page"] {
  color: #0f172a;
}

.opetest-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.85rem;
  flex-shrink: 0;
  min-height: 44px;
  margin: 0;
  padding: 4px 0;
  white-space: nowrap;
  line-height: 1;
  color: var(--text);
  transition: transform 180ms ease;
}

.opetest-logo:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.18);
  outline-offset: 4px;
  border-radius: 12px;
}

.opetest-mark {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  width: 34px;
  height: 34px;
  flex: none;
}

.opetest-block {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 9px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 10px 18px -14px rgba(15, 23, 42, 0.5);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.opetest-b1,
.opetest-b2 {
  background: #0f172a;
}

.opetest-b3 {
  background: #94a3b8;
}

.opetest-b4 {
  background: var(--brand);
}

.opetest-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  word-spacing: 0;
  letter-spacing: 0;
  line-height: 1;
  font-family: var(--font-sans);
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}

.opetest-wordmark span {
  display: inline-block;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  line-height: 1;
}

.opetest-ope,
.opetest-test {
  font-size: clamp(1.48rem, 1.65vw, 1.68rem);
}

.opetest-ope {
  font-weight: 800;
  color: #0f172a;
}

.opetest-test {
  font-weight: 500;
  color: #475569;
}

.opetest-logo:hover,
.opetest-logo:focus-visible {
  transform: translateY(-1px);
}

.opetest-logo:hover .opetest-b4,
.opetest-logo:focus-visible .opetest-b4 {
  background: var(--brand-dark);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 12px 22px -14px rgba(37, 99, 235, 0.48);
}

.opetest-logo-compact {
  gap: 0.72rem;
}

.opetest-logo-compact .opetest-mark {
  width: 30px;
  height: 30px;
  gap: 3px;
}

.opetest-logo-compact .opetest-block {
  border-radius: 8px;
}

.opetest-logo-compact .opetest-ope,
.opetest-logo-compact .opetest-test {
  font-size: 1.34rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

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

.button-primary {
  color: #ffffff;
  background: var(--brand);
  box-shadow: 0 18px 36px -24px rgba(37, 99, 235, 0.45);
}

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

.button-secondary {
  color: var(--text);
  background: #ffffff;
  border-color: rgba(203, 213, 225, 0.96);
  box-shadow: 0 10px 22px -22px rgba(15, 23, 42, 0.12);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(148, 163, 184, 0.95);
  color: #0b1220;
}

.button-danger {
  color: #b91c1c;
  background: rgba(254, 242, 242, 0.96);
  border-color: rgba(248, 113, 113, 0.34);
  box-shadow: 0 10px 22px -22px rgba(185, 28, 28, 0.24);
}

.button-danger:hover,
.button-danger:focus-visible {
  border-color: rgba(220, 38, 38, 0.42);
  background: #fee2e2;
  color: #991b1b;
}

.button-block {
  width: 100%;
}

.header-button {
  min-height: 44px;
  padding-inline: 18px;
}

.hero-section,
.proof-section,
.pillars-section,
.founder-section {
  border-top: 1px solid rgba(226, 232, 240, 0.78);
}

.hero-section {
  border-top: 0;
  padding: 80px 0 108px;
}

.hero-grid,
.proof-grid,
.founder-grid {
  display: grid;
  gap: 56px;
  align-items: center;
}

.hero-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
}

.proof-grid {
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 1.02fr);
  padding: 100px 0;
}

.founder-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  padding: 100px 0;
}

.hero-copy,
.section-copy,
.founder-copy {
  display: grid;
  gap: 24px;
  align-content: start;
}

.section-heading {
  max-width: 700px;
  display: grid;
  gap: 16px;
}

.section-eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid rgba(191, 219, 254, 0.95);
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.96);
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-title,
.section-title {
  margin: 0;
  letter-spacing: -0.05em;
  line-height: 1.02;
  color: #0f172a;
}

.hero-title {
  max-width: 11.5ch;
  font-size: clamp(2.75rem, 7vw, 4.9rem);
  font-weight: 800;
}

.section-title {
  max-width: 16ch;
  font-size: clamp(2rem, 5vw, 3.15rem);
  font-weight: 800;
}

.hero-lead,
.section-text,
.hero-note,
.founder-secondary {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.75;
}

.hero-lead {
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-support {
  margin: -6px 0 0;
}

.hero-support-link {
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.7;
  transition: color 180ms ease;
}

.hero-support-link:hover,
.hero-support-link:focus-visible {
  color: var(--brand);
}

.store-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 180px));
  justify-content: center;
  align-items: center;
  gap: 14px;
  width: min(100%, 374px);
  margin: 0 auto;
  padding-top: 2px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 14px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.store-badge:hover,
.store-badge:focus-visible {
  transform: translateY(-1px);
}

.store-badge img {
  display: block;
  width: 100%;
  height: auto;
}

.store-badge-apple img {
  width: 94%;
  margin: 0 auto;
}

.hero-note {
  color: var(--muted-soft);
  font-size: 0.95rem;
}

.image-frame {
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.96);
  border-radius: var(--radius-frame);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: auto;
}

.hero-frame {
  border-radius: 32px;
}

.proof-frame,
.founder-frame {
  border-radius: 30px;
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.proof-platform-group {
  display: grid;
  gap: 24px;
  justify-items: center;
}

.stat-card,
.pillar-card {
  padding: 22px;
  border: 1px solid rgba(226, 232, 240, 0.94);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.stat-card strong,
.pillar-card h3 {
  display: block;
  margin: 0;
  color: #0f172a;
}

.stat-card strong {
  font-size: 1rem;
  line-height: 1.55;
}

.stat-card span,
.pillar-card p {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.7;
}

.pillars-section {
  padding: 104px 0;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.72), rgba(255, 255, 255, 0.96));
}

.pillars-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.94fr) minmax(0, 1.06fr);
  gap: 48px;
  margin-top: 44px;
  align-items: center;
}

.pillars-visual {
  display: block;
}

.pillars-frame {
  border-radius: 30px;
}

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

.pillar-card h3 {
  font-size: 1.06rem;
  line-height: 1.4;
}

.pillar-card p {
  margin: 10px 0 0;
}

.form-card {
  padding: 32px;
  border: 1px solid rgba(226, 232, 240, 0.96);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.waitlist-form {
  display: grid;
  gap: 20px;
}

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

.field {
  display: grid;
  gap: 9px;
}

.field span {
  color: #0f172a;
  font-size: 0.94rem;
  font-weight: 700;
}

.field-full {
  grid-column: 1 / -1;
}

.field input,
.field select {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid rgba(203, 213, 225, 0.96);
  border-radius: var(--radius-control);
  background: #ffffff;
  color: #0f172a;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.field input::placeholder {
  color: #94a3b8;
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: rgba(37, 99, 235, 0.52);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
  background: #ffffff;
}

.checkbox-row {
  align-items: start;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 14px;
  padding: 6px 0;
}

.checkbox-row input {
  width: 24px;
  height: 24px;
  min-width: 24px;
  margin: 2px 0 0;
  accent-color: var(--brand);
}

.checkbox-row span {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 10px;
  min-height: 44px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.6;
}

.checkbox-row a,
.form-footnote a,
.footer-links a,
.founders-inline-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 2px 0;
}

.checkbox-row a {
  color: var(--brand);
  font-weight: 700;
}

.form-footnote {
  margin: 0;
  color: var(--muted-soft);
  font-size: 0.9rem;
  line-height: 1.7;
}

.form-footnote a {
  color: var(--brand);
  font-weight: 700;
}

.founders-main > section {
  border-top: 1px solid rgba(226, 232, 240, 0.78);
}

.founders-hero-section {
  border-top: 0 !important;
  padding: 84px 0 108px;
}

.founders-section {
  padding: 100px 0;
}

.founders-hero-grid,
.founders-credibility-grid,
.founders-vision-grid,
.founders-cta-grid {
  display: grid;
  gap: 56px;
  align-items: center;
}

.founders-hero-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
}

.founders-credibility-grid,
.founders-vision-grid,
.founders-cta-grid {
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 1.04fr);
}

.founders-hero-copy,
.founders-section-copy {
  display: grid;
  gap: 20px;
  align-content: start;
}

.founders-section-stack {
  display: grid;
  gap: 40px;
}

.founders-section-copy-narrow {
  max-width: 720px;
}

.founders-hero-title {
  margin: 0;
  max-width: 11.2ch;
  color: #0f172a;
  font-size: clamp(2.85rem, 7vw, 4.95rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.founders-hero-lead,
.founders-hero-note,
.founders-cta-note,
.founders-cta-microcopy {
  margin: 0;
}

.founders-hero-lead {
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.82;
}

.founders-hero-note,
.founders-cta-note {
  max-width: 60ch;
  color: var(--muted-soft);
  line-height: 1.75;
}

.founders-cta-microcopy {
  max-width: 48ch;
  color: #0f172a;
  font-weight: 600;
  line-height: 1.75;
}

.founders-section-title {
  max-width: 18ch;
}

.founders-image-frame {
  border-radius: 32px;
}

.founders-hero-frame {
  border-radius: 34px;
}

.founders-image-frame img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.founders-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.founders-inline-links a {
  color: #0f172a;
  font-weight: 600;
  transition: color 180ms ease;
}

.founders-inline-links a:hover,
.founders-inline-links a:focus-visible {
  color: var(--brand);
}

.founders-card-grid {
  display: grid;
  gap: 18px;
}

.founders-card-grid-third {
  margin-top: 40px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.founders-card-grid-single {
  grid-template-columns: 1fr;
}

.founders-card,
.founders-fit-card,
.founders-panel {
  border: 1px solid rgba(226, 232, 240, 0.94);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.founders-card {
  padding: 24px;
}

.founders-card-compact {
  padding: 20px 22px;
}

.founders-card h3,
.founders-fit-card h3 {
  margin: 0;
  color: #0f172a;
  font-size: 1.03rem;
  line-height: 1.4;
}

.founders-card p,
.founders-fit-card li {
  color: var(--muted);
  line-height: 1.75;
}

.founders-card p {
  margin: 10px 0 0;
}

.founders-panel {
  overflow: hidden;
}

.founders-checklist,
.founders-fit-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.founders-checklist li {
  position: relative;
  padding: 24px 28px 24px 52px;
  color: var(--muted);
  line-height: 1.8;
}

.founders-checklist li + li {
  border-top: 1px solid rgba(226, 232, 240, 0.94);
}

.founders-checklist li::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 28px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.12);
}

.founders-fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.founders-fit-card {
  padding: 28px;
}

.founders-fit-card-muted {
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.96), rgba(255, 255, 255, 0.96));
}

.founders-fit-card ul {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.founders-fit-card li {
  position: relative;
  padding-left: 18px;
}

.founders-fit-card li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #94a3b8;
}

.founders-form-card {
  padding: 34px;
}

.founders-page .faq-minimal {
  max-width: 920px;
}

.site-footer {
  border-top: 1px solid rgba(226, 232, 240, 0.86);
  background: rgba(255, 255, 255, 0.96);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 0 40px;
}

.footer-copy {
  display: grid;
  gap: 12px;
  max-width: 28rem;
}

.site-footer .opetest-logo {
  width: fit-content;
}

.footer-inner p {
  margin: 0;
  color: var(--muted-soft);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
}

.footer-links a {
  color: #334155;
  font-weight: 600;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--brand);
}

.bb-shell {
  width: min(1240px, calc(100vw - 32px));
  margin: 0 auto;
}

.mock-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 2rem;
  background:
    radial-gradient(circle at 16% 16%, rgba(14, 165, 233, 0.12), transparent 18%),
    radial-gradient(circle at 82% 22%, rgba(48, 213, 140, 0.14), transparent 16%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 54%, #f8fafc 100%);
  box-shadow: 0 32px 80px -42px rgba(15, 23, 42, 0.2);
}

.mock-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.12) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 88%);
}

.mock-window {
  position: absolute;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 1.75rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 60px -34px rgba(15, 23, 42, 0.24);
}

.mock-window-main {
  inset: 44px 34px 34px 34px;
}

.mock-window-main-simple {
  inset: 28px;
}

.mock-window-float-right {
  top: 24px;
  right: 20px;
  width: min(280px, calc(100% - 44px));
}

.mock-window-float-left {
  bottom: 24px;
  left: 20px;
  width: min(320px, calc(100% - 44px));
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(248, 250, 252, 0.92);
}

.window-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
}

.faq-minimal details {
  border-top: 1px solid var(--border);
  padding: 1.35rem 0;
}

.faq-minimal details:last-child {
  border-bottom: 1px solid var(--border);
}

.faq-minimal summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 700;
}

.faq-minimal summary::after {
  content: "+";
  flex: none;
  color: var(--brand);
  font-size: 1.3rem;
  line-height: 1;
}

.faq-minimal details[open] summary::after {
  content: "-";
}

.faq-minimal p {
  max-width: 54rem;
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.9;
}

details > summary {
  cursor: pointer;
  list-style: none;
}

details > summary::-webkit-details-marker {
  display: none;
}

.legal-page .page-shell {
  width: min(960px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 40px 0 72px;
}

.unsubscribe-page-shell {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 176px);
}

.unsubscribe-card {
  display: grid;
  gap: 18px;
  width: min(720px, 100%);
}

.unsubscribe-card .section-title {
  margin: 0;
}

.unsubscribe-copy,
.unsubscribe-footnote {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.unsubscribe-copy {
  max-width: 44rem;
  font-size: 1.02rem;
}

.unsubscribe-form,
.unsubscribe-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.unsubscribe-footnote a {
  color: var(--brand);
  text-decoration: none;
}

.unsubscribe-card-success {
  border-color: rgba(186, 230, 253, 0.92);
}

.unsubscribe-card-error {
  border-color: rgba(254, 202, 202, 0.96);
}

.legal-page .section {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--border);
  border-radius: 32px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.legal-shell {
  display: grid;
  gap: 18px;
}

.legal-note {
  padding: 14px 16px;
  border: 1px solid #bae6fd;
  border-radius: 18px;
  background: var(--brand-soft);
  color: #0369a1;
  font-size: 0.96rem;
  line-height: 1.7;
}

.legal-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--panel);
}

.legal-card h1,
.legal-card h2 {
  margin: 0;
  font-family: "Sora", "Manrope", sans-serif;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.legal-card h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.legal-card h2 {
  font-size: 1.25rem;
}

.legal-card p,
.legal-card li {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.legal-card ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: #e0f2fe;
  color: #0369a1;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-back {
  display: inline-flex;
  width: fit-content;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #ffffff;
  font-weight: 700;
  box-shadow: 0 16px 40px -28px rgba(15, 23, 42, 0.18);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.legal-back:hover,
.legal-back:focus-visible {
  transform: translateY(-1px);
  border-color: #bae6fd;
  color: var(--brand);
}

.product-legal-page .legal-main {
  padding-bottom: 56px;
}

.product-legal-page .legal-hero-section,
.product-legal-page .legal-content-section {
  border-top: 1px solid rgba(226, 232, 240, 0.78);
}

.product-legal-page .legal-narrow {
  width: min(960px, 100%);
  margin: 0 auto;
}

.product-legal-page .legal-hero-shell {
  display: grid;
  gap: 28px;
  padding: 76px 0 48px;
}

.product-legal-page .legal-hero-copy {
  display: grid;
  gap: 16px;
}

.product-legal-page .legal-meta {
  margin: 0;
  color: var(--muted-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}

.product-legal-page .legal-page-title {
  max-width: 14ch;
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  line-height: 1.04;
}

.product-legal-page .legal-intro {
  max-width: 68ch;
}

.product-legal-page .legal-summary-panel {
  padding: 24px 28px;
  border: 1px solid rgba(226, 232, 240, 0.96);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.product-legal-page .legal-summary-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-legal-page .legal-summary-list li {
  display: grid;
  gap: 8px;
}

.product-legal-page .legal-summary-list strong {
  color: #0f172a;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
}

.product-legal-page .legal-summary-list span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.product-legal-page .legal-summary-list a {
  color: var(--brand);
  font-weight: 600;
}

.product-legal-page .legal-content-section {
  padding-bottom: 40px;
}

.product-legal-page .legal-document {
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(226, 232, 240, 0.96);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.product-legal-page .legal-clause {
  display: grid;
  gap: 12px;
}

.product-legal-page .legal-clause + .legal-clause {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(226, 232, 240, 0.92);
}

.product-legal-page .legal-clause h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.1rem, 1.8vw, 1.32rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.product-legal-page .legal-clause p {
  margin: 0;
  color: var(--muted);
  line-height: 1.82;
}

.product-legal-page .legal-clause ul {
  margin: 0;
  padding-left: 1.15rem;
}

.product-legal-page .legal-clause li {
  color: var(--muted);
  line-height: 1.82;
}

.product-legal-page .legal-clause a,
.product-legal-page .legal-afterword a {
  color: var(--brand);
  font-weight: 600;
}

.product-legal-page .legal-afterword {
  margin: 22px 0 0;
  color: var(--muted-soft);
  font-size: 0.95rem;
  line-height: 1.8;
}

.admin-page .site-header {
  position: sticky;
}

.admin-main {
  padding: 48px 0 72px;
}

.admin-auth-shell {
  width: min(460px, 100%);
}

.admin-layout {
  display: grid;
  gap: 24px;
}

.admin-hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.admin-hero-copy,
.admin-hero-meta {
  display: grid;
  gap: 12px;
}

.admin-hero-meta {
  max-width: 22rem;
}

.admin-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-header-note {
  color: var(--muted-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.admin-page-title {
  max-width: none;
}

.admin-inline-form {
  margin: 0;
}

.admin-card,
.admin-stat-card {
  border: 1px solid rgba(226, 232, 240, 0.96);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.admin-card {
  padding: 28px;
}

.admin-login-card {
  display: grid;
  gap: 18px;
}

.admin-login-form {
  gap: 18px;
}

.admin-alert {
  padding: 14px 16px;
  border-radius: 18px;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.6;
}

.admin-alert-error {
  border: 1px solid rgba(248, 113, 113, 0.32);
  background: rgba(254, 242, 242, 0.96);
  color: #b91c1c;
}

.admin-alert-success {
  border: 1px solid rgba(125, 211, 252, 0.42);
  background: rgba(239, 246, 255, 0.96);
  color: #0369a1;
}

.admin-meta-line {
  margin: 0;
  color: var(--muted-soft);
  line-height: 1.7;
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.admin-stat-card {
  display: grid;
  gap: 10px;
  padding: 24px;
}

.admin-stat-card span {
  color: var(--muted-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.admin-stat-card strong {
  color: #0f172a;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.admin-stat-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.admin-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.admin-summary-grid-wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.admin-card-head {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
}

.admin-card-head h2,
.admin-empty-state h3 {
  margin: 0;
  color: #0f172a;
  font-size: 1.2rem;
  line-height: 1.3;
}

.admin-card-head p,
.admin-empty-state p,
.admin-empty-inline {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.admin-filters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: end;
}

.admin-filter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.admin-checkbox-filter {
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid rgba(226, 232, 240, 0.96);
  border-radius: 16px;
  background: #f8fafc;
}

.admin-checkbox-filter span {
  color: #334155;
  font-size: 0.94rem;
  line-height: 1.5;
}

.admin-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.admin-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(226, 232, 240, 0.96);
  border-radius: 999px;
  background: #f8fafc;
}

.admin-chip span {
  color: #334155;
  font-size: 0.92rem;
  font-weight: 600;
}

.admin-chip strong {
  color: var(--brand);
  font-size: 0.92rem;
  font-weight: 800;
}

.admin-table-card {
  display: grid;
  gap: 20px;
  overflow: hidden;
}

.admin-batch-card {
  display: grid;
  gap: 22px;
}

.admin-batch-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.admin-batch-meta {
  display: grid;
  gap: 4px;
  min-width: 12rem;
  padding: 18px 20px;
  border: 1px solid rgba(226, 232, 240, 0.96);
  border-radius: 22px;
  background: #f8fafc;
  text-align: right;
}

.admin-batch-meta strong {
  color: #0f172a;
  font-size: 1.9rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.admin-batch-meta span {
  color: var(--muted-soft);
  font-size: 0.9rem;
  font-weight: 600;
}

.admin-batch-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
}

.admin-batch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-start;
}

.admin-email-preview {
  display: grid;
  gap: 8px;
  padding: 20px 22px;
  border: 1px solid rgba(226, 232, 240, 0.96);
  border-radius: 22px;
  background: #f8fafc;
}

.admin-preview-label {
  margin: 0;
  color: var(--muted-soft);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.admin-email-preview strong {
  color: #0f172a;
  font-size: 1rem;
  line-height: 1.45;
}

.admin-email-preview p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.admin-preview-trigger {
  width: fit-content;
}

.admin-preview-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 18px;
}

.admin-preview-render,
.admin-preview-text {
  display: grid;
  gap: 12px;
  padding: 20px 22px;
  border: 1px solid rgba(226, 232, 240, 0.96);
  border-radius: 22px;
  background: #f8fafc;
}

.admin-preview-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.admin-preview-toolbar span {
  color: var(--muted-soft);
  font-size: 0.9rem;
  line-height: 1.5;
}

.admin-preview-frame {
  width: 100%;
  min-height: 520px;
  border: 1px solid rgba(226, 232, 240, 0.96);
  border-radius: 18px;
  background: #ffffff;
}

.admin-preview-text pre {
  margin: 0;
  min-height: 520px;
  padding: 18px;
  overflow: auto;
  border: 1px solid rgba(226, 232, 240, 0.96);
  border-radius: 18px;
  background: #ffffff;
  color: #334155;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.9rem;
  line-height: 1.7;
  white-space: pre-wrap;
}

.admin-table-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.admin-list-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.admin-list-toolbar-bottom {
  padding-top: 4px;
  border-top: 1px solid rgba(226, 232, 240, 0.92);
}

.admin-list-summary {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.admin-list-summary strong {
  color: #0f172a;
}

.admin-pagination-nav {
  display: flex;
  justify-content: flex-end;
  flex: 1 1 auto;
}

.admin-pagination-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
}

.admin-pagination-link,
.admin-pagination-gap {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
}

.admin-pagination-link {
  border: 1px solid rgba(226, 232, 240, 0.96);
  background: #ffffff;
  color: #334155;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.admin-pagination-link:hover,
.admin-pagination-link:focus-visible {
  border-color: rgba(37, 99, 235, 0.24);
  background: rgba(239, 246, 255, 0.96);
  color: #1d4ed8;
  transform: translateY(-1px);
}

.admin-pagination-link.is-current {
  border-color: rgba(37, 99, 235, 0.12);
  background: #2563eb;
  color: #ffffff;
}

.admin-pagination-link.is-disabled {
  border-color: rgba(226, 232, 240, 0.96);
  background: #f8fafc;
  color: #94a3b8;
}

.admin-pagination-link-nav {
  padding-inline: 16px;
}

.admin-pagination-gap {
  min-width: auto;
  padding-inline: 4px;
  color: var(--muted-soft);
}

.admin-compact-table {
  display: grid;
  gap: 8px;
}

.admin-compact-head,
.admin-compact-row {
  display: grid;
  grid-template-columns:
    minmax(112px, 0.95fr)
    minmax(182px, 1.55fr)
    minmax(118px, 1.1fr)
    minmax(138px, 1.35fr)
    minmax(132px, 1.2fr)
    minmax(120px, 1.1fr)
    auto;
  gap: 12px;
  align-items: start;
}

.admin-compact-head {
  padding: 0 6px 8px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.92);
}

.admin-compact-head span {
  color: var(--muted-soft);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.admin-compact-row {
  padding: 14px 6px;
  border-top: 1px solid rgba(226, 232, 240, 0.92);
}

.admin-compact-row:first-of-type {
  border-top: 0;
}

.admin-compact-cell {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.admin-compact-cell strong,
.admin-compact-primary {
  color: #0f172a;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.admin-compact-cell span,
.admin-compact-secondary {
  color: var(--muted-soft);
  font-size: 0.78rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.admin-compact-code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.admin-compact-cell-date strong {
  font-size: 0.84rem;
  line-height: 1.35;
  white-space: normal;
  overflow-wrap: normal;
  word-break: keep-all;
}

.admin-contact {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.admin-contact strong {
  color: #0f172a;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
}

.admin-contact span,
.admin-contact-email {
  color: var(--muted-soft);
  font-size: 0.92rem;
  line-height: 1.5;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.admin-contact-email:hover,
.admin-contact-email:focus-visible {
  color: var(--brand);
}

.admin-welcome-cell {
  display: grid;
  gap: 5px;
}

.admin-status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(191, 219, 254, 0.92);
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1;
}

.admin-status-badge.is-sent {
  border-color: rgba(125, 211, 252, 0.48);
  background: rgba(239, 246, 255, 0.96);
  color: #0369a1;
}

.admin-status-badge.is-failed {
  border-color: rgba(248, 113, 113, 0.34);
  background: rgba(254, 242, 242, 0.96);
  color: #b91c1c;
}

.admin-status-badge.is-processing {
  border-color: rgba(251, 191, 36, 0.4);
  background: rgba(255, 251, 235, 0.96);
  color: #b45309;
}

.admin-status-badge.is-muted {
  border-color: rgba(203, 213, 225, 0.9);
  background: #f8fafc;
  color: #64748b;
}

.admin-status-badge.is-pending {
  border-color: rgba(191, 219, 254, 0.92);
  background: #eff6ff;
  color: #1d4ed8;
}

.admin-mini-note {
  color: var(--muted-soft);
  font-size: 0.84rem;
  line-height: 1.55;
}

.admin-error-note {
  color: #b91c1c;
  font-size: 0.84rem;
  line-height: 1.55;
}

.admin-row-action {
  display: inline-flex;
}

.admin-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-start;
}

.admin-compact-actions {
  justify-content: flex-end;
}

.admin-empty-state {
  display: grid;
  gap: 10px;
  padding: 18px 0 4px;
}

@media (max-width: 640px) {
  .site-shell {
    width: min(1120px, calc(100vw - 24px));
  }

  .header-inner {
    min-height: 72px;
  }

  .header-nav {
    gap: 14px;
  }

  .header-nav a {
    font-size: 0.9rem;
  }

  .opetest-logo {
    gap: 0.7rem;
  }

  .opetest-mark {
    width: 30px;
    height: 30px;
    gap: 3px;
  }

  .opetest-block {
    border-radius: 8px;
  }

  .opetest-ope,
  .opetest-test {
    font-size: 1.3rem;
  }

  .hero-section {
    padding: 52px 0 72px;
  }

  .founders-hero-section {
    padding: 52px 0 72px;
  }

  .proof-grid,
  .founder-grid,
  .pillars-section,
  .founders-section {
    padding-block: 64px;
  }

  .hero-grid,
  .proof-grid,
  .founder-grid,
  .founders-hero-grid,
  .founders-credibility-grid,
  .founders-vision-grid,
  .founders-cta-grid {
    gap: 28px;
  }

  .hero-actions .button,
  .store-links .button {
    width: 100%;
  }

  .hero-support {
    margin-top: -2px;
  }

  .store-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 320px);
    gap: 12px;
  }

  .proof-stats,
  .pillars-grid,
  .form-grid,
  .founders-card-grid-third,
  .founders-card-grid-half,
  .founders-fit-grid {
    grid-template-columns: 1fr;
  }

  .form-card,
  .founders-form-card {
    padding: 22px;
  }

  .founders-card,
  .founders-fit-card {
    padding: 22px;
  }

  .founders-checklist li {
    padding: 22px 20px 22px 44px;
  }

  .founders-checklist li::before {
    left: 20px;
  }

  .footer-inner {
    align-items: start;
  }

  .bb-shell {
    width: min(1240px, calc(100vw - 24px));
  }

  .mock-window-main,
  .mock-window-main-simple {
    inset: 16px;
  }

  .mock-window-float-right,
  .mock-window-float-left {
    position: absolute;
    width: calc(100% - 32px);
  }

  .mock-window-float-right {
    top: auto;
    right: 16px;
    bottom: 18px;
  }

  .mock-window-float-left {
    display: none;
  }

  .legal-page .page-shell {
    width: min(960px, calc(100vw - 24px));
    padding: 24px 0 48px;
  }

  .legal-card {
    padding: 20px;
  }

  .product-legal-page .legal-main {
    padding-bottom: 40px;
  }

  .product-legal-page .legal-hero-shell {
    gap: 22px;
    padding: 52px 0 36px;
  }

  .product-legal-page .legal-summary-panel,
  .product-legal-page .legal-document {
    padding: 22px;
    border-radius: 26px;
  }

  .product-legal-page .legal-summary-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-legal-page .legal-clause + .legal-clause {
    margin-top: 24px;
    padding-top: 24px;
  }

  .admin-main {
    padding: 32px 0 48px;
  }

  .admin-auth-shell {
    width: 100%;
  }

  .admin-card,
  .admin-stat-card {
    border-radius: 26px;
  }

  .admin-card {
    padding: 22px;
  }

  .admin-table th,
  .admin-table td {
    padding: 14px 12px;
  }
}

@media (max-width: 960px) {
  .hero-grid,
  .proof-grid,
  .pillars-layout,
  .founder-grid,
  .founders-hero-grid,
  .founders-credibility-grid,
  .founders-vision-grid,
  .founders-cta-grid {
    grid-template-columns: 1fr;
  }

  .hero-title,
  .founders-hero-title,
  .section-title {
    max-width: none;
  }

  .proof-grid,
  .founder-grid,
  .founders-credibility-grid,
  .founders-vision-grid,
  .founders-cta-grid {
    align-items: start;
  }

  .hero-section {
    padding-bottom: 88px;
  }

  .founders-hero-section {
    padding-bottom: 88px;
  }

  .proof-grid,
  .founder-grid,
  .pillars-section,
  .founders-section {
    padding-block: 88px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: start;
  }

  .admin-hero,
  .admin-table-head {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-batch-head,
  .admin-batch-layout,
  .admin-preview-panel {
    grid-template-columns: 1fr;
  }

  .admin-batch-head {
    align-items: stretch;
  }

  .admin-batch-meta {
    text-align: left;
    min-width: 0;
  }

  .admin-hero-meta {
    max-width: none;
  }

  .admin-header-actions {
    width: 100%;
    justify-content: flex-end;
    flex-wrap: wrap;
  }

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

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

  .admin-list-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-pagination-nav {
    justify-content: flex-start;
  }

  .admin-compact-head,
  .admin-compact-row {
    grid-template-columns:
      minmax(104px, 0.95fr)
      minmax(164px, 1.35fr)
      minmax(104px, 1fr)
      minmax(124px, 1.15fr)
      minmax(112px, 1fr)
      minmax(104px, 0.95fr)
      auto;
  }
}

@media (max-width: 640px) {
  .admin-filters {
    grid-template-columns: 1fr;
  }

  .admin-filter-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-batch-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-list-toolbar,
  .admin-pagination-links {
    align-items: stretch;
  }

  .admin-pagination-links {
    justify-content: flex-start;
  }

  .admin-pagination-link,
  .admin-pagination-gap {
    min-height: 40px;
  }

  .admin-compact-head {
    display: none;
  }

  .admin-compact-row {
    grid-template-columns: 1fr 1fr;
    gap: 10px 12px;
    padding: 16px 0;
  }

  .admin-compact-cell,
  .admin-compact-actions {
    min-width: 0;
  }

  .admin-compact-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

.admin-layout {
  gap: 28px;
}

.admin-hero-v2 {
  align-items: stretch;
  gap: 18px;
}

.admin-hero-copy-v2 {
  max-width: 46rem;
}

.admin-hero-panel {
  display: grid;
  gap: 10px;
  min-width: min(100%, 22rem);
  padding: 22px 24px;
  border: 1px solid rgba(226, 232, 240, 0.96);
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
  box-shadow: var(--shadow-soft);
}

.admin-hero-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.admin-hero-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(239, 246, 255, 0.96);
  color: #1d4ed8;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Public product site */
.opetest-public-page {
  --public-accent: #0f766e;
  --public-accent-soft: #ecfdf5;
  overflow-x: hidden;
  background: #ffffff;
}

.opetest-public-page .site-shell {
  width: min(1160px, calc(100vw - 40px));
}

.public-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.public-login-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  color: #334155;
  font-size: 0.95rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.public-login-link:hover,
.public-login-link:focus-visible {
  color: var(--brand);
}

.public-hero {
  position: relative;
  display: grid;
  min-height: min(660px, calc(100svh - 104px));
  align-items: center;
  overflow: hidden;
  border-top: 0;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.84) 0%, rgba(15, 23, 42, 0.66) 38%, rgba(15, 23, 42, 0.16) 78%),
    image-set(
      url("./assets/hero-principal-768.webp") type("image/webp") 1x,
      url("./assets/hero-principal-1280.webp") type("image/webp") 2x
    );
  background-position: center;
  background-size: cover;
}

.founders-public-hero {
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.84) 0%, rgba(15, 23, 42, 0.64) 40%, rgba(15, 23, 42, 0.12) 80%),
    image-set(
      url("../assets/fundadores-hero-768.webp") type("image/webp") 1x,
      url("../assets/fundadores-hero-1280.webp") type("image/webp") 2x
    );
  background-position: center;
  background-size: cover;
}

.public-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, #ffffff);
}

.public-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
  max-width: 720px;
  padding: 64px 0 88px;
  color: #ffffff;
}

.public-hero h1 {
  margin: 0;
  max-width: 13.5ch;
  color: #ffffff;
  font-size: clamp(2.8rem, 6.4vw, 5.2rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 0.98;
}

.public-hero p {
  margin: 0;
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.75;
}

.public-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 4px;
}

.public-hero .button-secondary {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  backdrop-filter: blur(14px);
}

.public-hero .button-secondary:hover,
.public-hero .button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.18);
}

.public-hero-note {
  max-width: 48rem !important;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 0.95rem !important;
}

.public-section {
  border-top: 1px solid rgba(226, 232, 240, 0.78);
  padding: 96px 0;
}

.public-problem-section {
  margin-top: -1px;
  border-top: 0;
  padding-top: 74px;
}

.public-section-stack {
  display: grid;
  gap: 34px;
}

.public-section-heading,
.public-section-copy {
  display: grid;
  gap: 16px;
}

.public-section-heading {
  max-width: 760px;
}

.public-section-heading h2,
.public-section-copy h2,
.public-founder-content h2,
.public-panel-card h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  font-weight: 820;
  letter-spacing: 0;
  line-height: 1.06;
}

.public-section-heading p,
.public-section-copy p,
.public-founder-content p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.public-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: 56px;
  align-items: center;
}

.public-split-reverse {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
}

.public-insight-panel,
.public-panel-card,
.public-media-card,
.public-badge-panel {
  border: 1px solid rgba(226, 232, 240, 0.96);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-soft);
}

.public-insight-panel {
  display: grid;
  gap: 14px;
  padding: 34px;
  background:
    radial-gradient(circle at top right, rgba(15, 118, 110, 0.13), transparent 36%),
    #ffffff;
}

.public-insight-panel p {
  margin: 0;
  color: var(--public-accent);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.public-insight-panel strong {
  color: #0f172a;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.16;
}

.public-step-grid,
.public-feature-grid,
.public-product-grid,
.public-compare-grid {
  display: grid;
  gap: 18px;
}

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

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

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

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

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

.public-compare-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.public-step-grid article,
.public-feature-grid article,
.public-product-card,
.public-compare-card {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(226, 232, 240, 0.96);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.public-product-card {
  gap: 16px;
}

.public-product-shot {
  display: block;
  overflow: hidden;
  aspect-ratio: 1016 / 698;
  border: 1px solid rgba(226, 232, 240, 0.96);
  border-radius: 18px;
  background: #f8fafc;
  box-shadow: 0 18px 42px -34px rgba(15, 23, 42, 0.24);
}

.public-product-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
  transition: transform 220ms ease;
}

.public-product-card:hover .public-product-shot img,
.public-product-card:focus-within .public-product-shot img {
  transform: scale(1.015);
}

.product-mini-window {
  overflow: hidden;
  min-height: 188px;
  border: 1px solid rgba(226, 232, 240, 0.96);
  border-radius: 18px;
  background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.product-mini-bar {
  display: flex;
  gap: 6px;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.96);
}

.product-mini-bar span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #cbd5e1;
}

.product-mini-content {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.product-mini-highlight,
.product-mini-list span,
.product-mini-schedule span,
.product-mini-metrics span {
  display: flex;
  min-height: 34px;
  align-items: center;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
}

.product-mini-highlight {
  padding: 0 12px;
  background: #2563eb;
  color: #ffffff;
}

.product-mini-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.product-mini-metrics span,
.product-mini-list span,
.product-mini-schedule span {
  padding: 0 10px;
  background: #eff6ff;
  color: #1d4ed8;
}

.product-mini-list,
.product-mini-schedule {
  display: grid;
  gap: 8px;
}

.product-mini-list span:nth-child(2),
.product-mini-schedule span:nth-child(2) {
  background: #fef3c7;
  color: #92400e;
}

.product-mini-list span:nth-child(3),
.product-mini-schedule span:nth-child(3) {
  background: #ecfdf5;
  color: #047857;
}

.product-mini-line {
  width: 74%;
  height: 10px;
  border-radius: 999px;
  background: #e2e8f0;
}

.product-mini-line-wide {
  width: 100%;
}

.product-mini-chart {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
  gap: 10px;
  min-height: 112px;
  padding: 10px 10px 0;
  border-radius: 16px;
  background: #f8fafc;
}

.product-mini-chart span {
  display: block;
  border-radius: 999px 999px 0 0;
  background: #2563eb;
}

.product-mini-chart span:nth-child(1) {
  height: 44px;
}

.product-mini-chart span:nth-child(2) {
  height: 70px;
}

.product-mini-chart span:nth-child(3) {
  height: 58px;
}

.product-mini-chart span:nth-child(4) {
  height: 92px;
  background: var(--public-accent);
}

.public-step-grid span {
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.public-step-grid h3,
.public-feature-grid h3,
.public-product-card h3,
.public-compare-card h3 {
  margin: 0;
  color: #0f172a;
  font-size: 1.06rem;
  line-height: 1.35;
}

.public-step-grid p,
.public-feature-grid p,
.public-product-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.public-features-section,
.public-flow-section,
.public-compare-section,
.public-transparency-section {
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.74), rgba(255, 255, 255, 0.98));
}

.public-product-section {
  background: #ffffff;
}

.public-compare-card {
  padding: 30px;
}

.public-compare-card ul {
  display: grid;
  gap: 12px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.public-compare-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.72;
}

.public-compare-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #94a3b8;
}

.public-compare-strong {
  border-color: rgba(191, 219, 254, 0.96);
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.12), transparent 34%),
    #ffffff;
}

.public-compare-strong li::before {
  background: var(--public-accent);
  box-shadow: 0 0 0 6px rgba(15, 118, 110, 0.1);
}

.public-compare-muted {
  background: #f8fafc;
}

.public-media-card {
  overflow: hidden;
}

.public-media-card img {
  width: 100%;
  height: auto;
}

.public-check-list {
  display: grid;
  gap: 12px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.public-check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.75;
}

.public-check-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--public-accent);
  box-shadow: 0 0 0 6px rgba(15, 118, 110, 0.1);
}

.public-trust-section {
  background: #0f172a;
}

.public-trust-section .public-section-copy h2,
.public-trust-section .public-section-copy p {
  color: #ffffff;
}

.public-trust-section .public-section-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.public-badge-panel {
  display: grid;
  gap: 12px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.public-badge-panel span {
  display: flex;
  min-height: 52px;
  align-items: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  color: #ffffff;
  font-weight: 750;
  background: rgba(255, 255, 255, 0.08);
}

.public-founder-band {
  border-top: 0;
  background:
    radial-gradient(circle at 86% 16%, rgba(37, 99, 235, 0.13), transparent 30%),
    linear-gradient(180deg, #eff6ff, #ffffff);
}

.public-founder-content {
  display: grid;
  justify-items: start;
  gap: 18px;
  max-width: 760px;
}

.public-faq-section {
  padding-top: 84px;
}

.public-two-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.public-panel-card {
  display: grid;
  gap: 20px;
  padding: 30px;
}

.public-panel-card h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.25rem);
}

.public-panel-muted {
  background:
    radial-gradient(circle at top right, rgba(15, 23, 42, 0.06), transparent 34%),
    #f8fafc;
}

@media (max-width: 960px) {
  .public-nav {
    display: none;
  }

  .public-split,
  .public-split-reverse,
  .public-two-columns {
    grid-template-columns: 1fr;
  }

  .public-step-grid,
  .public-feature-grid,
  .public-feature-grid-compact,
  .public-product-grid,
  .public-product-grid-three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .public-hero {
    min-height: min(620px, calc(100svh - 96px));
    background-position: center;
  }
}

@media (max-width: 640px) {
  .opetest-public-page .site-shell {
    width: min(1160px, calc(100vw - 24px));
  }

  .public-header-actions .header-button {
    display: none;
  }

  .public-login-link {
    min-height: 40px;
    font-size: 0.9rem;
  }

  .public-hero {
    min-height: min(560px, calc(100svh - 88px));
    background:
      linear-gradient(180deg, rgba(15, 23, 42, 0.82) 0%, rgba(15, 23, 42, 0.62) 62%, rgba(15, 23, 42, 0.18) 100%),
      image-set(
        url("./assets/hero-principal-768.webp") type("image/webp") 1x,
        url("./assets/hero-principal-1280.webp") type("image/webp") 2x
      );
    background-position: 58% center;
  }

  .founders-public-hero {
    background:
      linear-gradient(180deg, rgba(15, 23, 42, 0.82) 0%, rgba(15, 23, 42, 0.62) 62%, rgba(15, 23, 42, 0.18) 100%),
      image-set(
        url("../assets/fundadores-hero-768.webp") type("image/webp") 1x,
        url("../assets/fundadores-hero-1280.webp") type("image/webp") 2x
      );
    background-position: 54% center;
  }

  .public-hero-content {
    gap: 18px;
    padding: 48px 0 72px;
  }

  .public-hero h1 {
    max-width: 11.2ch;
    font-size: clamp(2.35rem, 12vw, 3.55rem);
  }

  .public-hero-actions,
  .public-hero-actions .button {
    width: 100%;
  }

  .public-section {
    padding: 64px 0;
  }

  .public-problem-section {
    padding-top: 56px;
  }

  .public-step-grid,
  .public-feature-grid,
  .public-feature-grid-compact,
  .public-product-grid,
  .public-product-grid-three,
  .public-compare-grid {
    grid-template-columns: 1fr;
  }

  .public-step-grid article,
  .public-feature-grid article,
  .public-product-card,
  .public-compare-card,
  .public-insight-panel,
  .public-panel-card {
    padding: 22px;
    border-radius: 20px;
  }

  .public-section-heading h2,
  .public-section-copy h2,
  .public-founder-content h2 {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
  }
}

/* Public product site */
.opetest-product-site {
  --product-bg: #ffffff;
  --product-soft: #f7fafc;
  --product-ink: #0f172a;
  --product-muted: #475569;
  --product-muted-soft: #64748b;
  --product-border: #e2e8f0;
  --product-blue: #2563eb;
  --product-blue-dark: #1d4ed8;
  --product-green: #0f766e;
  --product-green-soft: #ecfdf5;
  --product-amber: #b45309;
  --product-amber-soft: #fffbeb;
  --product-shadow: 0 26px 60px -42px rgba(15, 23, 42, 0.28);
  overflow-x: hidden;
  color: var(--product-ink);
  background: var(--product-bg);
}

.opetest-product-site .site-shell {
  width: min(1160px, calc(100vw - 40px));
}

.product-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(226, 232, 240, 0.88);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.product-header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.product-nav,
.product-header-actions,
.product-section-actions,
.product-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.product-nav {
  justify-content: center;
  gap: 6px;
  margin-left: auto;
}

.product-nav a,
.product-login-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #334155;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  transition:
    color 180ms ease,
    background-color 180ms ease;
}

.product-nav a {
  padding: 0 12px;
}

.product-login-link {
  padding: 0 6px;
}

.product-nav a:hover,
.product-nav a:focus-visible,
.product-nav a[aria-current="page"],
.product-login-link:hover,
.product-login-link:focus-visible,
.product-login-link[aria-current="page"] {
  color: var(--product-blue-dark);
  background: #eff6ff;
}

.product-hero {
  position: relative;
  display: grid;
  min-height: min(630px, calc(100svh - 78px));
  align-items: center;
  overflow: hidden;
  background-color: #f8fafc;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 36%, rgba(255, 255, 255, 0.62) 62%, rgba(255, 255, 255, 0.12) 100%),
    var(--hero-image);
  background-position: center center;
  background-size: cover;
}

.product-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 90px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, #ffffff);
}

.product-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
  width: min(1120px, calc(100vw - 40px));
  max-width: 1120px;
  padding: 72px 0 96px;
  color: var(--product-ink);
}

.product-hero h1,
.product-page-copy h1 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.02;
}

.product-hero h1 {
  max-width: 15.8ch;
  color: var(--product-ink);
  font-size: clamp(2.45rem, 4.7vw, 4.1rem);
  font-weight: 850;
}

.product-hero p {
  margin: 0;
  max-width: 58ch;
  color: var(--product-muted);
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
  line-height: 1.76;
}

.product-hero-note,
.product-trust-note {
  color: var(--product-muted-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

.product-hero-note {
  color: var(--product-muted-soft) !important;
}

.product-page-hero {
  padding: 92px 0 76px;
  border-bottom: 1px solid var(--product-border);
  background:
    radial-gradient(circle at 76% 10%, rgba(37, 99, 235, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.product-page-hero-compact {
  min-height: calc(100svh - 78px - 170px);
  display: grid;
  align-items: center;
}

.product-page-hero-centered {
  padding-bottom: 64px;
}

.product-page-hero-inner,
.product-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  gap: 56px;
  align-items: center;
}

.product-page-copy,
.product-section-copy,
.product-section-heading,
.product-final-cta-inner,
.product-info-card,
.product-price-card,
.product-note-panel,
.product-insight-panel,
.product-catalog-card,
.product-status-list article {
  display: grid;
  gap: 16px;
}

.product-page-copy-centered {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.product-page-copy h1 {
  color: var(--product-ink);
  font-size: clamp(2.35rem, 5.4vw, 4.5rem);
  font-weight: 850;
}

.product-page-copy p,
.product-section-copy p,
.product-section-heading p,
.product-final-cta p,
.product-info-card p,
.product-price-copy,
.product-note-panel p,
.product-catalog-card p,
.product-status-list p {
  margin: 0;
  color: var(--product-muted);
  font-size: 1.02rem;
  line-height: 1.78;
}

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

.product-section {
  padding: 86px 0;
  border-top: 1px solid rgba(226, 232, 240, 0.78);
}

.product-problem-section {
  border-top: 0;
}

.product-soft-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.product-dark-section {
  background: #0f172a;
}

.product-dark-section h2,
.product-dark-section h3,
.product-dark-section .product-section-copy h2 {
  color: #ffffff;
}

.product-dark-section p {
  color: rgba(255, 255, 255, 0.74);
}

.product-oppositions-section {
  background:
    radial-gradient(circle at 88% 16%, rgba(37, 99, 235, 0.1), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.product-oppositions-section .product-split {
  align-items: stretch;
}

.product-oppositions-section .product-section-copy {
  align-content: center;
  max-width: 560px;
}

.product-oppositions-section .product-section-copy h2 {
  max-width: 13.5ch;
  color: var(--product-ink);
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.1;
}

.product-oppositions-section .product-section-copy p {
  color: var(--product-muted);
}

.product-oppositions-section .product-section-actions {
  margin-top: 4px;
}

.product-section-stack,
.product-catalog {
  display: grid;
  gap: 34px;
}

.product-section-heading {
  max-width: 760px;
}

.product-section-heading h2,
.product-section-copy h2,
.product-final-cta h2,
.product-info-card h2,
.product-note-panel h2,
.product-catalog-group h2 {
  margin: 0;
  color: var(--product-ink);
  font-size: clamp(1.9rem, 3.4vw, 3.05rem);
  font-weight: 820;
  letter-spacing: 0;
  line-height: 1.08;
}

.product-catalog-group h2 {
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
}

.product-split-reverse {
  grid-template-columns: minmax(340px, 0.94fr) minmax(0, 1fr);
}

.product-insight-panel,
.product-info-card,
.product-price-card,
.product-note-panel,
.product-catalog-card,
.product-status-list article,
.product-shot-panel,
.product-photo-panel {
  border: 1px solid rgba(226, 232, 240, 0.96);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--product-shadow);
}

.product-insight-panel {
  padding: 32px;
  background:
    radial-gradient(circle at top right, rgba(15, 118, 110, 0.14), transparent 36%),
    #ffffff;
}

.product-insight-panel strong {
  color: var(--product-ink);
  font-size: clamp(1.45rem, 3vw, 2.3rem);
  line-height: 1.18;
}

.product-insight-panel p {
  margin: 0;
}

.product-step-grid,
.product-three-grid,
.product-pricing-grid,
.product-feature-list,
.product-status-list,
.product-two-columns {
  display: grid;
  gap: 18px;
}

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

.product-step-grid article,
.product-feature-list article {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(226, 232, 240, 0.96);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--product-shadow);
}

.product-step-grid span,
.product-timeline span {
  color: var(--product-blue);
  font-size: 0.82rem;
  font-weight: 850;
}

.product-step-grid h3,
.product-feature-list h3,
.product-status-list h3,
.product-catalog-card h3,
.product-price-card h2 {
  margin: 0;
  color: var(--product-ink);
  font-size: 1.06rem;
  line-height: 1.35;
}

.product-step-grid p,
.product-feature-list p {
  margin: 0;
  color: var(--product-muted);
  line-height: 1.72;
}

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

.product-pricing-grid-home {
  align-items: stretch;
}

.product-info-card,
.product-price-card,
.product-note-panel,
.product-catalog-card,
.product-status-list article {
  padding: 28px;
}

.product-access-card {
  align-self: stretch;
  align-content: center;
}

.product-price-card-featured {
  border-color: rgba(37, 99, 235, 0.32);
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.12), transparent 34%),
    #ffffff;
}

.product-price {
  margin: 0;
  color: var(--product-ink);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 850;
  line-height: 1;
}

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

.product-check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--product-muted);
  line-height: 1.7;
}

.product-check-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--product-green);
  box-shadow: 0 0 0 6px rgba(15, 118, 110, 0.1);
}

.product-shot-panel {
  overflow: hidden;
  background: #f8fafc;
}

.product-photo-panel {
  overflow: hidden;
  background: #f8fafc;
}

.product-shot-panel img {
  width: 100%;
  height: auto;
}

.product-photo-panel img {
  width: 100%;
  min-height: 360px;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.product-status-list article {
  min-height: 148px;
  align-content: start;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
  border-color: rgba(226, 232, 240, 0.96);
  box-shadow: var(--product-shadow);
}

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

.product-catalog .product-status-list article {
  background: #ffffff;
  border-color: rgba(226, 232, 240, 0.96);
  box-shadow: var(--product-shadow);
}

.product-status-list h3 {
  color: var(--product-ink);
}

.product-status-list p {
  color: var(--product-muted);
}

.product-status {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
}

.product-status-available {
  background: var(--product-green-soft);
  color: #047857;
}

.product-status-progress {
  background: #eff6ff;
  color: var(--product-blue-dark);
}

.product-status-future {
  background: var(--product-amber-soft);
  color: var(--product-amber);
}

.product-final-cta {
  padding: 78px 0;
  background:
    radial-gradient(circle at 80% 18%, rgba(37, 99, 235, 0.12), transparent 30%),
    linear-gradient(180deg, #eff6ff 0%, #ffffff 100%);
}

.product-final-cta-inner {
  justify-items: center;
  max-width: 760px;
  text-align: center;
}

.product-final-cta h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.product-timeline {
  display: grid;
  gap: 16px;
}

.product-timeline article {
  display: grid;
  grid-template-columns: 70px minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 24px;
  border: 1px solid rgba(226, 232, 240, 0.96);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--product-shadow);
}

.product-timeline h2 {
  margin: 0;
  color: var(--product-ink);
  font-size: 1.08rem;
  line-height: 1.35;
}

.product-timeline p {
  margin: 0;
  color: var(--product-muted);
  line-height: 1.72;
}

.product-catalog-group {
  display: grid;
  gap: 18px;
}

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

.product-faq {
  border-radius: 22px;
  background: #ffffff;
}

.product-faq-wide {
  max-width: 920px;
}

.product-footer .footer-inner {
  align-items: start;
}

.product-footer .footer-links {
  max-width: 620px;
  justify-content: flex-end;
}

@media (max-width: 1080px) {
  .product-header-inner {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .product-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    margin-left: 0;
  }
}

@media (max-width: 960px) {
  .product-page-hero-inner,
  .product-split,
  .product-split-reverse {
    grid-template-columns: 1fr;
  }

  .product-step-grid,
  .product-three-grid,
  .product-pricing-grid,
  .product-catalog .product-status-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-timeline article {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .product-timeline article p {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  .opetest-product-site .site-shell {
    width: min(1160px, calc(100vw - 24px));
  }

  .product-header-inner {
    gap: 10px;
    min-height: 0;
  }

  .product-header-actions {
    margin-left: auto;
    gap: 8px;
  }

  .product-header-actions .header-button {
    min-height: 40px;
    padding-inline: 14px;
  }

  .product-login-link {
    min-height: 40px;
  }

  .product-nav {
    gap: 4px 6px;
  }

  .product-nav a {
    min-height: 36px;
    padding: 0 9px;
    font-size: 0.84rem;
  }

  .product-hero {
    min-height: min(540px, calc(100svh - 124px));
    background-image:
      linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.93) 56%, rgba(255, 255, 255, 0.78) 100%),
      var(--hero-image);
    background-position: 62% center;
  }

  .product-hero-content {
    width: min(1160px, calc(100vw - 24px));
    gap: 18px;
    padding: 34px 0 48px;
  }

  .product-hero h1,
  .product-page-copy h1 {
    font-size: clamp(1.85rem, 8vw, 2.55rem);
    line-height: 1.06;
  }

  .product-hero p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .product-section,
  .product-page-hero {
    padding: 56px 0;
  }

  .product-step-grid,
  .product-three-grid,
  .product-pricing-grid,
  .product-catalog .product-status-list,
  .product-two-columns,
  .product-feature-list {
    grid-template-columns: 1fr;
  }

  .product-info-card,
  .product-price-card,
  .product-note-panel,
  .product-catalog-card,
  .product-status-list article,
  .product-insight-panel,
  .product-photo-panel {
    padding: 22px;
    border-radius: 18px;
  }

  .product-photo-panel {
    padding: 0;
  }

  .product-photo-panel img {
    min-height: 260px;
  }

  .product-timeline article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .product-timeline article p {
    grid-column: auto;
  }

  .product-footer .footer-inner {
    display: grid;
  }

  .product-footer .footer-links {
    justify-content: flex-start;
  }

  .product-hero-actions .button {
    width: 100%;
  }
}

.admin-hero-kicker strong {
  color: #0f172a;
  font-size: 1.25rem;
  line-height: 1.2;
}

.admin-tabs,
.admin-subtabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-tab-link,
.admin-subtab-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(226, 232, 240, 0.96);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  color: #334155;
  font-size: 0.94rem;
  font-weight: 700;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.admin-tab-link:hover,
.admin-tab-link:focus-visible,
.admin-subtab-link:hover,
.admin-subtab-link:focus-visible {
  border-color: rgba(37, 99, 235, 0.22);
  background: rgba(239, 246, 255, 0.96);
  color: #1d4ed8;
  transform: translateY(-1px);
}

.admin-tab-link.is-current,
.admin-subtab-link.is-current {
  border-color: rgba(37, 99, 235, 0.16);
  background: #2563eb;
  color: #ffffff;
  box-shadow: 0 20px 36px -28px rgba(37, 99, 235, 0.44);
}

.admin-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.admin-metric-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(226, 232, 240, 0.96);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
  box-shadow: var(--shadow-soft);
}

.admin-metric-gauge {
  position: relative;
  width: 116px;
  height: 116px;
}

.admin-gauge-svg {
  width: 116px;
  height: 116px;
  transform: rotate(-90deg);
}

.admin-gauge-track,
.admin-gauge-progress {
  fill: none;
  stroke-width: 10;
}

.admin-gauge-track {
  stroke: rgba(226, 232, 240, 0.96);
}

.admin-gauge-progress {
  stroke-linecap: round;
  transition: stroke-dashoffset 240ms ease;
}

.admin-metric-card.tone-brand .admin-gauge-progress {
  stroke: #2563eb;
}

.admin-metric-card.tone-success .admin-gauge-progress {
  stroke: #0891b2;
}

.admin-metric-card.tone-sky .admin-gauge-progress {
  stroke: #0284c7;
}

.admin-metric-card.tone-amber .admin-gauge-progress {
  stroke: #d97706;
}

.admin-metric-card.tone-danger .admin-gauge-progress {
  stroke: #dc2626;
}

.admin-metric-card.tone-slate .admin-gauge-progress {
  stroke: #64748b;
}

.admin-gauge-value {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #0f172a;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  text-align: center;
}

.admin-metric-copy {
  display: grid;
  gap: 8px;
}

.admin-metric-label {
  margin: 0;
  color: #0f172a;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.3;
}

.admin-metric-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.75;
}

.admin-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.admin-spotlight-card {
  grid-column: span 2;
}

.admin-activity-chart {
  display: grid;
  grid-template-columns: repeat(14, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
  min-height: 250px;
  margin: 0;
  padding: 8px 0 0;
  list-style: none;
}

.admin-activity-bar {
  display: grid;
  gap: 10px;
  align-items: end;
  justify-items: center;
  min-width: 0;
}

.admin-activity-column {
  display: block;
  width: 100%;
  min-height: 12px;
  border-radius: 999px 999px 14px 14px;
  background:
    linear-gradient(180deg, rgba(37, 99, 235, 0.92), rgba(59, 130, 246, 0.74));
  box-shadow: 0 18px 30px -24px rgba(37, 99, 235, 0.44);
}

.admin-activity-bar strong {
  color: #0f172a;
  font-size: 0.86rem;
  line-height: 1;
}

.admin-activity-bar span {
  color: var(--muted-soft);
  font-size: 0.75rem;
  line-height: 1.35;
  text-align: center;
}

.admin-distribution-list,
.admin-recent-list,
.admin-check-list,
.admin-token-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.admin-distribution-row {
  display: grid;
  gap: 8px;
}

.admin-distribution-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.admin-distribution-copy strong {
  color: #0f172a;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.5;
}

.admin-distribution-copy span {
  color: var(--muted-soft);
  font-size: 0.88rem;
  font-weight: 700;
}

.admin-distribution-track {
  overflow: hidden;
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: #e2e8f0;
}

.admin-distribution-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2563eb, #38bdf8);
}

.admin-recent-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(226, 232, 240, 0.96);
  border-radius: 18px;
  background: #f8fafc;
}

.admin-recent-row div {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.admin-recent-row strong {
  color: #0f172a;
  font-size: 0.92rem;
  line-height: 1.45;
}

.admin-recent-row span {
  color: var(--muted-soft);
  font-size: 0.84rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.admin-recent-meta {
  justify-items: end;
  text-align: right;
}

.admin-leads-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 22px 24px;
  border: 1px solid rgba(226, 232, 240, 0.96);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
}

.admin-leads-summary {
  display: grid;
  gap: 4px;
}

.admin-leads-summary strong {
  color: #0f172a;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.admin-leads-summary span {
  color: var(--muted-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.admin-leads-meta {
  display: grid;
  gap: 4px;
  min-width: min(100%, 24rem);
}

.admin-filters-card {
  overflow: hidden;
}

.admin-table-head-v2 {
  padding-bottom: 4px;
}

.admin-inline-status {
  display: grid;
  gap: 4px;
  justify-items: end;
  text-align: right;
}

.admin-inline-status strong {
  color: #0f172a;
  font-size: 1rem;
  line-height: 1.4;
}

.admin-metrics-grid-emails .admin-metric-card {
  min-height: 100%;
}

.admin-email-grid {
  display: grid;
  gap: 16px;
}

.admin-email-ops-card,
.admin-template-card {
  display: grid;
  gap: 20px;
}

.admin-batch-layout-v2 {
  align-items: start;
}

.admin-batch-actions-v2 {
  gap: 10px;
}

.admin-email-panel-stat {
  display: grid;
  gap: 8px;
  min-height: 100%;
  padding: 22px;
  border: 1px solid rgba(226, 232, 240, 0.96);
  border-radius: 22px;
  background: #f8fafc;
}

.admin-email-panel-stat strong {
  color: #0f172a;
  font-size: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.admin-email-panel-stat p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.admin-template-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 18px;
}

.admin-template-form,
.admin-template-preview,
.admin-template-sidebar {
  display: grid;
  gap: 16px;
}

.admin-template-form {
  align-content: start;
}

.admin-form-two-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.admin-template-footer {
  display: grid;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(226, 232, 240, 0.96);
  border-radius: 22px;
  background: #f8fafc;
}

.admin-template-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.admin-template-meta {
  margin: 0;
  color: var(--muted-soft);
  font-size: 0.9rem;
  line-height: 1.6;
}

.admin-token-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-token-chip {
  display: inline-flex;
  align-items: center;
}

.admin-token-chip code {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(226, 232, 240, 0.96);
  border-radius: 999px;
  background: #ffffff;
  color: #334155;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.82rem;
  font-weight: 700;
}

.admin-preview-text-v2 {
  padding: 18px 22px;
}

.admin-template-sidebar {
  align-content: start;
}

.admin-note-card {
  padding: 24px;
}

.admin-check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.75;
}

.admin-check-list li::before {
  content: "";
  position: absolute;
  top: 0.82rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #2563eb;
}

@media (max-width: 1180px) {
  .admin-metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 960px) {
  .admin-overview-grid,
  .admin-stats-grid,
  .admin-summary-grid,
  .admin-summary-grid-wide {
    grid-template-columns: 1fr;
  }

  .admin-spotlight-card {
    grid-column: span 1;
  }

  .admin-hero-v2,
  .admin-leads-topbar,
  .admin-template-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-inline-status {
    justify-items: start;
    text-align: left;
  }

  .admin-form-two-cols {
    grid-template-columns: 1fr;
  }

  .admin-activity-chart {
    gap: 10px;
    min-height: 220px;
  }
}

@media (max-width: 640px) {
  .admin-tabs,
  .admin-subtabs {
    display: grid;
    grid-template-columns: 1fr;
  }

  .admin-tab-link,
  .admin-subtab-link,
  .admin-template-actions .button {
    width: 100%;
  }

  .admin-metrics-grid {
    grid-template-columns: 1fr;
  }

  .admin-metric-card {
    grid-template-columns: auto 1fr;
    align-items: center;
  }

  .admin-metric-gauge,
  .admin-gauge-svg {
    width: 96px;
    height: 96px;
  }

  .admin-gauge-value {
    font-size: 1.1rem;
  }

  .admin-activity-chart {
    grid-template-columns: repeat(7, minmax(0, 1fr));
    row-gap: 18px;
  }

  .admin-recent-row {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-recent-meta {
    justify-items: start;
    text-align: left;
  }
}
