:root {
  --black: #1a1816;
  --white: #faf9f7;
  --gray-50: #f8f6f3;
  --gray-100: #f4f1ed;
  --gray-200: #e7e5e4;
  --gray-300: #d6d3cd;
  --gray-400: #a8a29e;
  --gray-500: #78716c;
  --gray-600: #57534e;
  --gray-700: #44403c;
  --gray-800: #292524;
  --gray-900: #1a1816;
  --purple: #2563eb;
  --purple-dark: #1d4ed8;
  --primary: #2563eb;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: #faf9f7;
  color: #1a1816;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: "Outfit", sans-serif;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #1a1816;
}

h1 {
  font-size: clamp(2.75rem, 6vw, 4.25rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 500;
}

h3 {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

p {
  color: #57534e;
}

sup {
  font-size: 0.6em;
  vertical-align: super;
  line-height: 0;
}
sup a {
  color: #2563eb;
  text-decoration: none;
}
sup a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
}
@media (min-width: 768px) {
  section {
    padding: 120px 0;
  }
}

.section-lead {
  color: #57534e;
  font-size: 1.125rem;
  max-width: 540px;
}

.accent-bar {
  height: 3px;
  background: #2563eb;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 6px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.1s;
}
.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: #2563eb;
  color: #fff;
}
.btn-primary:hover {
  background: #1d4ed8;
}

.btn-secondary {
  background: transparent;
  color: #1a1816;
  border: 1px solid #e7e5e4;
}
.btn-secondary:hover {
  background: #f4f1ed;
  border-color: #d6d3cd;
}

.btn-ghost {
  background: transparent;
  color: #57534e;
  border: 1px solid #e7e5e4;
}
.btn-ghost:hover {
  background: #f4f1ed;
  border-color: #d6d3cd;
  color: #1a1816;
}

.btn-ghost-light {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.btn-on-dark {
  background: #2563eb;
  color: #fff;
}
.btn-on-dark:hover {
  background: #3b82f6;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
}

.btn-large {
  padding: 14px 28px;
  font-size: 15px;
}

nav {
  position: fixed;
  top: 3px;
  left: 0;
  right: 0;
  background: rgba(250, 249, 247, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #e7e5e4;
  z-index: 100;
  padding: 14px 0;
}
nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: "Outfit", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1816;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.02em;
}
.logo svg {
  width: 24px;
  height: 24px;
  color: #2563eb;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: #57534e;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover {
  color: #1a1816;
}
.nav-links .btn-primary {
  color: #fff;
}
.nav-links .btn-primary:hover {
  color: #fff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 20px;
  height: 2px;
  background: #1a1816;
  transition: transform 0.2s, opacity 0.2s;
  display: block;
}
.nav-toggle.active span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}
.nav-toggle.active span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #faf9f7;
    border-bottom: 1px solid #e7e5e4;
    padding: 16px 24px;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    padding: 8px 0;
  }
  .nav-links .btn-primary {
    text-align: center;
  }
  .nav-toggle {
    display: flex;
  }
}
.hero {
  padding-top: 140px;
  padding-bottom: 80px;
}
@media (min-width: 768px) {
  .hero {
    padding-top: 160px;
    padding-bottom: 100px;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 72px;
  }
}

.hero-text h1 {
  margin-bottom: 20px;
}
.hero-text p {
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 32px;
}

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

.hero-widget {
  display: flex;
  justify-content: center;
}
@media (min-width: 1024px) {
  .hero-widget {
    justify-content: flex-end;
  }
}

.demo-widget {
  background: #ffffff;
  border-radius: 10px;
  padding: 12px;
  box-shadow: 0 4px 16px rgba(26, 24, 22, 0.06);
  border: 1px solid #e7e5e4;
  width: 380px;
  max-width: 100%;
}
.demo-widget .state {
  display: none;
  flex-direction: column;
  align-items: stretch;
}
.demo-widget .state.active {
  display: flex;
  animation: stateIn 0.25s ease-out;
}
@keyframes stateIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.demo-widget .state-loading, .demo-widget .state-success, .demo-widget .state-qr {
  align-items: center;
}
.demo-widget .state-checkbox {
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between;
  padding: 0;
}
.demo-widget .checkbox-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.demo-widget .checkbox-hit {
  cursor: pointer;
  padding: 4px;
}
.demo-widget .checkbox-box {
  width: 24px;
  height: 24px;
  border: 2px solid #c4c0ba;
  border-radius: 3px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s, background 0.15s;
}
.demo-widget .checkbox-hit:hover .checkbox-box {
  border-color: #a8a29e;
}
.demo-widget .checkbox-check {
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.2s, transform 0.2s;
}
.demo-widget .checkbox-check svg {
  width: 16px;
  height: 16px;
  color: #2563eb;
  stroke-width: 3;
}
.demo-widget .checkbox-box.checked {
  border-color: #2563eb;
}
.demo-widget .checkbox-box.checked .checkbox-check {
  opacity: 1;
  transform: scale(1);
}
.demo-widget .checkbox-label {
  font-size: 14px;
  color: #1a1816;
  user-select: none;
  cursor: pointer;
}
.demo-widget .checkbox-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 10px;
  font-weight: 600;
  color: #a8a29e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.demo-widget .checkbox-brand-icon {
  line-height: 1;
}
.demo-widget .checkbox-brand-icon svg {
  width: 22px;
  height: 22px;
  color: #a8a29e;
}
.demo-widget .widget-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.demo-widget .widget-logo {
  flex-shrink: 0;
  line-height: 1;
}
.demo-widget .widget-logo svg {
  width: 24px;
  height: 24px;
  color: #2563eb;
}
.demo-widget .widget-title {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1a1816;
  letter-spacing: -0.02em;
}
.demo-widget .widget-actions {
  display: flex;
  gap: 8px;
}
.demo-widget .verify-btn {
  flex: 1;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s, border-color 0.15s;
}
.demo-widget .verify-btn:hover {
  background: #1d4ed8;
}
.demo-widget .verify-btn:active {
  transform: scale(0.98);
}
.demo-widget .verify-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.demo-widget .verify-btn-secondary {
  background: transparent;
  color: #57534e;
  border: 1px solid #e7e5e4;
}
.demo-widget .verify-btn-secondary:hover {
  background: #f4f1ed;
  border-color: #d6d3cd;
  color: #1a1816;
}
.demo-widget .use-phone-link {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-size: 13px;
  color: #a8a29e;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.15s;
}
.demo-widget .use-phone-link:hover {
  color: #2563eb;
}
.demo-widget .back-link {
  font-size: 13px;
  color: #a8a29e;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.15s;
}
.demo-widget .back-link:hover {
  color: #2563eb;
}
.demo-widget .state-form {
  position: relative;
}
.demo-widget .status {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  right: 0;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 13px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 10;
  animation: balloonIn 0.2s ease-out;
}
.demo-widget .status.error {
  display: block;
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}
.demo-widget .status.success {
  display: block;
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}
@keyframes balloonIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.demo-widget .widget-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid #e7e5e4;
}
.demo-widget .widget-brand {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #a8a29e;
}
.demo-widget .widget-brand svg {
  width: 14px;
  height: 14px;
  color: #a8a29e;
}
.demo-widget .widget-info-wrap {
  display: flex;
  align-items: center;
  gap: 4px;
}
.demo-widget .widget-privacy {
  font-size: 11px;
  color: #a8a29e;
}
.demo-widget .widget-info-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: #a8a29e;
  transition: color 0.15s;
  flex-shrink: 0;
}
.demo-widget .widget-info-btn svg {
  width: 16px;
  height: 16px;
}
.demo-widget .widget-info-btn:hover {
  color: #57534e;
}
.demo-widget .widget-footer {
  position: relative;
}
.demo-widget .widget-tooltip {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  padding: 12px;
  background: #ffffff;
  color: #57534e;
  border: 1px solid #e7e5e4;
  border-radius: 6px;
  font-size: 12px;
  line-height: 1.55;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  z-index: 10;
  animation: tooltipIn 0.15s ease-out;
}
.demo-widget .widget-tooltip::before {
  content: "";
  position: absolute;
  bottom: 100%;
  right: 24px;
  border: 6px solid transparent;
  border-bottom-color: #e7e5e4;
}
.demo-widget .widget-tooltip::after {
  content: "";
  position: absolute;
  bottom: 100%;
  right: 25px;
  border: 5px solid transparent;
  border-bottom-color: #ffffff;
}
.demo-widget .widget-tooltip.show {
  display: block;
}
.demo-widget .widget-tooltip strong {
  color: #1a1816;
  font-weight: 600;
}
@keyframes tooltipIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.demo-widget .success-icon svg {
  color: #2563eb;
}
.demo-widget .success-title {
  color: #2563eb !important;
  font-family: "Outfit", sans-serif;
}
.demo-widget .subtitle {
  font-size: 14px;
  color: #57534e;
  line-height: 1.5;
  text-align: center;
}
.demo-widget .success-cta {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 22px;
  background: #2563eb;
  color: #fff;
  border-radius: 6px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s;
}
.demo-widget .success-cta:hover {
  background: #1d4ed8;
}
.demo-widget .state-loading {
  gap: 8px;
  padding: 20px 0;
}
.demo-widget .loading-text {
  color: #57534e;
  font-size: 14px;
}
.demo-widget .id-scramble {
  font-family: "JetBrains Mono", "SF Mono", "Fira Code", Menlo, Consolas, monospace;
  font-size: 14px;
  color: #1a1816;
  letter-spacing: 0.5px;
  word-break: break-all;
  max-width: 320px;
  text-align: center;
  background: #f4f1ed;
  border: 1px solid #e7e5e4;
  border-radius: 6px;
  padding: 10px 14px;
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}
.demo-widget .id-scramble::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
  animation: scrambleSweep 1.5s ease-in-out infinite;
}
.demo-widget .scramble-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #a8a29e;
  font-weight: 600;
  margin-top: 12px;
}
.demo-widget .scramble-masked {
  color: #2563eb;
  font-weight: 600;
}
.demo-widget .state-qr {
  gap: 16px;
  padding: 8px 0;
}
.demo-widget .qr-canvas {
  border-radius: 6px;
}
.demo-widget .qr-label {
  font-size: 14px;
  color: #57534e;
}
.demo-widget .qr-sublabel {
  font-size: 12px;
  color: #a8a29e;
}
.demo-widget .success-icon {
  width: 56px;
  height: 56px;
  background: #2563eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.demo-widget .success-icon svg {
  width: 28px;
  height: 28px;
  color: #fff;
}

.key-animation {
  position: relative;
  width: 64px;
  height: 64px;
}

.key-box {
  position: absolute;
  inset: 0;
  border: 2px solid #1a1816;
  border-radius: 10px;
  background: #faf9f7;
}
.key-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #1a1816;
  height: 0%;
  border-radius: 8px 8px 0 0;
  animation: fillBox 1.5s ease-in-out infinite;
}

.key-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeKey 1.5s ease-in-out infinite;
}
.key-icon svg {
  width: 26px;
  height: 26px;
  color: #1a1816;
}

.lock-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: showLock 1.5s ease-in-out infinite;
}
.lock-icon svg {
  width: 22px;
  height: 22px;
  color: #1a1816;
}

.evidence {
  background: #1a1816;
  color: #fff;
}
.evidence h2 {
  color: #fff;
  margin-bottom: 24px;
}
.evidence p {
  color: rgba(255, 255, 255, 0.6);
}

.evidence-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}
@media (min-width: 1024px) {
  .evidence-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 72px;
  }
}

.evidence-text p {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 20px;
}
.evidence-text p:last-child {
  margin-bottom: 0;
}
.evidence-text p strong {
  color: #fff;
}

.captcha-mockup {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.captcha-mockup-body {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.captcha-box-dark {
  background: var(--gray-50);
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-700);
}
.captcha-box-dark .captcha-check {
  width: 24px;
  height: 24px;
  border: 2px solid var(--gray-300);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.captcha-box-dark .spinner {
  width: 14px;
  height: 14px;
  border: 2px solid var(--gray-300);
  border-top-color: var(--gray-600);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.captcha-box-dark .recaptcha-logo {
  margin-left: auto;
}
.captcha-box-dark .recaptcha-logo small {
  font-size: 10px;
  color: var(--gray-400);
}

.captcha-outcomes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.captcha-result {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 12px;
}
.captcha-result svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.captcha-result .result-label {
  display: block;
  font-weight: 600;
}
.captcha-result .result-sub {
  display: block;
  opacity: 0.7;
  font-size: 11px;
}
.captcha-result.bot {
  background: rgba(220, 38, 38, 0.1);
  color: #fca5a5;
  border: 1px solid rgba(220, 38, 38, 0.2);
}
.captcha-result.human {
  background: rgba(251, 191, 36, 0.1);
  color: #fcd34d;
  border: 1px solid rgba(251, 191, 36, 0.2);
}

.ba-frustration {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 6px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #b91c1c;
}
.ba-frustration svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.footnotes {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footnotes p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 4px;
}
.footnotes p a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.15);
  transition: color 0.15s;
}
.footnotes p a:hover {
  color: #fff;
}
.footnotes sup {
  font-size: 10px;
  margin-right: 2px;
}
.footnotes sup a {
  color: rgba(255, 255, 255, 0.35);
}

.evidence sup a {
  color: #2563eb !important;
  text-decoration: none;
}
.evidence sup a:hover {
  color: #60a5fa !important;
}

.solution .solution-header {
  margin-bottom: 64px;
  max-width: 540px;
}
.solution .solution-header h2 {
  margin-bottom: 16px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 56px;
  }
}

.feature svg {
  width: 28px;
  height: 28px;
  color: #2563eb;
  margin-bottom: 16px;
}
.feature h3 {
  margin-bottom: 8px;
}
.feature p {
  font-size: 0.9375rem;
  line-height: 1.65;
}

.how-diagram {
  background: #faf9f7;
  border-top: 1px solid #e7e5e4;
}
.how-diagram h2 {
  text-align: center;
  margin-bottom: 64px;
}

.diagram {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  padding: 16px 0;
  justify-content: center;
}
@media (max-width: 1023px) {
  .diagram {
    flex-direction: column;
    gap: 0;
  }
}

.diagram-biometrics {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}
@media (max-width: 1023px) {
  .diagram-biometrics {
    flex-direction: row;
  }
}

.diagram-bio-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.diagram-bio-icon svg {
  width: 36px;
  height: 36px;
  color: var(--gray-700);
}
.diagram-bio-icon span {
  font-size: 10px;
  font-weight: 600;
  color: #a8a29e;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: "Outfit", sans-serif;
}

.diagram-arrow {
  display: flex;
  align-items: center;
  position: relative;
  flex-shrink: 0;
  padding: 0 4px;
  min-width: 60px;
}
@media (max-width: 1023px) {
  .diagram-arrow {
    transform: rotate(90deg);
    min-width: 0;
    min-height: 50px;
    padding: 4px 0;
  }
}
.diagram-arrow.long {
  min-width: 120px;
}

.diagram-arrow-line {
  flex: 1;
  height: 2px;
  background: #d6d3cd;
  min-width: 28px;
}

.diagram-arrow-head {
  flex-shrink: 0;
  color: #a8a29e;
}
.diagram-arrow-head svg {
  width: 10px;
  height: 20px;
  display: block;
}

.diagram-arrow-label {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 500;
  color: #a8a29e;
  white-space: nowrap;
  font-family: "JetBrains Mono", "SF Mono", "Fira Code", Menlo, Consolas, monospace;
}
@media (max-width: 1023px) {
  .diagram-arrow-label {
    top: auto;
    left: auto;
    right: -50px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
  }
}

.diagram-panel {
  background: var(--gray-50);
  border: 1px solid #e7e5e4;
  border-radius: 12px;
  padding: 20px 24px;
  position: relative;
  flex-shrink: 0;
}

.diagram-panel-label {
  font-family: "Outfit", sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #a8a29e;
  margin-bottom: 16px;
}

.diagram-device-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.diagram-device-part {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.diagram-part-caption {
  font-size: 10px;
  font-weight: 500;
  color: #a8a29e;
  text-align: center;
  max-width: 90px;
  line-height: 1.3;
}

.diagram-transcript {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.diagram-transcript-card {
  background: var(--gray-50);
  border: 1px solid #e7e5e4;
  border-radius: 6px;
  padding: 6px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.diagram-transcript-row {
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
}
.diagram-transcript-row svg {
  color: #a8a29e;
  flex-shrink: 0;
}
.diagram-transcript-row code {
  font-family: "JetBrains Mono", "SF Mono", "Fira Code", Menlo, Consolas, monospace;
  font-size: 9px;
  color: #57534e;
  white-space: nowrap;
}

.diagram-transcript-redacted .diagram-redacted-value {
  color: #d6d3cd;
  text-decoration: line-through;
  text-decoration-color: #dc2626;
  text-decoration-thickness: 1.5px;
}

.diagram-shield-icon {
  color: #2563eb !important;
  flex-shrink: 0;
  margin-left: auto;
}

.diagram-transcript-arrow {
  color: #a8a29e;
}
.diagram-transcript-arrow svg {
  width: 32px;
  height: 16px;
}

.diagram-proof-arrow {
  display: flex;
  align-items: center;
  position: relative;
  flex-shrink: 0;
  padding: 0 4px;
  min-width: 60px;
}
@media (max-width: 1023px) {
  .diagram-proof-arrow {
    transform: rotate(90deg);
    min-width: 0;
    min-height: 50px;
    padding: 4px 0;
  }
}

.diagram-proof-card {
  background: var(--gray-50);
  border: 1px solid #e7e5e4;
  border-radius: 6px;
  padding: 6px 8px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex-shrink: 0;
}

.diagram-proof-card-header span {
  font-size: 9px;
  font-weight: 600;
  color: #2563eb;
  font-family: "JetBrains Mono", "SF Mono", "Fira Code", Menlo, Consolas, monospace;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.diagram-phone-frame {
  width: 72px;
  height: 120px;
  background: #292524;
  border-radius: 12px;
  padding: 6px 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.diagram-phone-notch {
  width: 28px;
  height: 3px;
  background: #44403c;
  border-radius: 2px;
  margin-bottom: 6px;
}

.diagram-phone-screen {
  flex: 1;
  width: 100%;
  background: #1a1816;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.diagram-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.diagram-chip svg {
  color: #2563eb;
}
.diagram-chip span {
  font-size: 7px;
  font-weight: 600;
  color: #a8a29e;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.2;
}

.diagram-zk-terminal {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e7e5e4;
  background: #ffffff;
  width: 130px;
}

.diagram-zk-terminal-bar {
  background: #f4f1ed;
  padding: 6px 10px;
  display: flex;
  gap: 4px;
  border-bottom: 1px solid #e7e5e4;
}
.diagram-zk-terminal-bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d6d3cd;
}

.diagram-zk-terminal-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.diagram-zk-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1a1816;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.diagram-zk-label {
  font-family: "Outfit", sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-700);
  text-align: center;
  line-height: 1.3;
}

.diagram-website {
  min-width: 200px;
}

.diagram-server {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e7e5e4;
  background: #ffffff;
}

.diagram-server-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.diagram-server-body code {
  font-family: "JetBrains Mono", "SF Mono", "Fira Code", Menlo, Consolas, monospace;
  font-size: 11px;
  background: #f4f1ed;
  padding: 6px 10px;
  border-radius: 6px;
  color: var(--gray-700);
  display: block;
}

.diagram-verified {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 6px;
  padding: 8px 12px;
}
.diagram-verified svg {
  color: #2563eb;
  flex-shrink: 0;
}
.diagram-verified span {
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1d4ed8;
}

.diagram-server-rack {
  background: #f4f1ed;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid #e7e5e4;
}

.diagram-server-unit {
  background: #e7e5e4;
  border-radius: 4px;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.diagram-server-lights {
  display: flex;
  gap: 4px;
}
.diagram-server-lights span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.diagram-server-lights span:nth-child(1) {
  background: #2563eb;
}
.diagram-server-lights span:nth-child(2) {
  background: #2563eb;
}
.diagram-server-lights span:nth-child(3) {
  background: #d6d3cd;
}

.diagram-server-vents {
  width: 40px;
  height: 8px;
  background: repeating-linear-gradient(90deg, #d6d3cd 0px, #d6d3cd 2px, transparent 2px, transparent 5px);
  border-radius: 2px;
}

.technical-content {
  max-width: 700px;
  margin: 0 auto;
  padding-top: 48px;
}

.technical-list {
  list-style: none;
}
.technical-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #e7e5e4;
}
.technical-list li:last-child {
  border-bottom: none;
}
.technical-list svg {
  width: 22px;
  height: 22px;
  color: #2563eb;
  flex-shrink: 0;
  margin-top: 2px;
}
.technical-list span {
  color: #57534e;
  font-size: 0.9375rem;
}

.integrate {
  background: #f4f1ed;
}
.integrate > .container > h2 {
  text-align: center;
  margin-bottom: 16px;
}

.integrate-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .integrate-grid {
    grid-template-columns: 1fr 1.3fr;
    gap: 64px;
  }
}

.integrate-content h2 {
  margin-bottom: 16px;
}
.integrate-content > p {
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.integrate-content code {
  font-family: "JetBrains Mono", "SF Mono", "Fira Code", Menlo, Consolas, monospace;
  font-size: 0.85em;
  background: rgba(26, 24, 22, 0.06);
  padding: 2px 6px;
  border-radius: 4px;
  color: #1a1816;
}

.integrate-features {
  list-style: none;
  margin-bottom: 28px;
}
.integrate-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.9375rem;
  color: var(--gray-700);
}
.integrate-features svg {
  width: 20px;
  height: 20px;
  color: #2563eb;
  flex-shrink: 0;
}

.integrate-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.code-block {
  background: #1e1c1a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.code-header {
  background: rgba(255, 255, 255, 0.04);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.code-lang {
  font-family: "JetBrains Mono", "SF Mono", "Fira Code", Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 600;
  color: #2563eb;
  background: rgba(37, 99, 235, 0.12);
  padding: 2px 8px;
  border-radius: 4px;
}

.code-file {
  font-family: "JetBrains Mono", "SF Mono", "Fira Code", Menlo, Consolas, monospace;
  font-size: 12px;
  color: #a8a29e;
}

.code-block pre {
  padding: 20px;
  overflow-x: auto;
  margin: 0;
}

.code-block code {
  font-family: "JetBrains Mono", "SF Mono", "Fira Code", Menlo, Consolas, monospace;
  font-size: 13px;
  line-height: 1.7;
  color: #e7e5e4;
}

.code-comment {
  color: #78716c;
}

.code-tag {
  color: #e7e5e4;
}

.code-attr {
  color: #a78bfa;
}

.code-string {
  color: #34d399;
}

.code-keyword {
  color: #c084fc;
}

.code-func {
  color: #60a5fa;
}

.comparison {
  background: #faf9f7;
  border-top: 1px solid #e7e5e4;
}
.comparison h2 {
  margin-bottom: 48px;
}

.comparison-table-wrapper {
  overflow-x: auto;
  margin: 0 -24px;
  padding: 0 24px;
}

.comparison-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  font-size: 14px;
}
.comparison-table th, .comparison-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid #e7e5e4;
}
.comparison-table thead th {
  font-family: "Outfit", sans-serif;
  background: var(--gray-50);
  font-weight: 600;
  color: #57534e;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.comparison-table thead th:first-child {
  border-radius: 8px 0 0 0;
}
.comparison-table thead th:last-child {
  border-radius: 0 8px 0 0;
}
.comparison-table thead th.highlight {
  background: #2563eb;
  color: #fff;
}
.comparison-table tbody td {
  color: #57534e;
}
.comparison-table tbody td:first-child {
  font-weight: 500;
  color: #1a1816;
}
.comparison-table tbody td.highlight {
  background: rgba(37, 99, 235, 0.04);
}
.comparison-table tbody tr:last-child td {
  border-bottom: none;
}
.comparison-table tbody tr:last-child td:first-child {
  border-radius: 0 0 0 8px;
}
.comparison-table tbody tr:last-child td.highlight {
  border-radius: 0 0 8px 0;
}

.rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.rating svg {
  width: 18px;
  height: 18px;
}

.rating-bad {
  color: #dc2626;
}

.rating-ok {
  color: #d97706;
}

.rating-good {
  color: #2563eb;
}

.pricing {
  background: #f4f1ed;
}
.pricing h2 {
  margin-bottom: 12px;
}
.pricing .section-lead {
  margin-bottom: 56px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 32px;
  border: 1px solid #e7e5e4;
  position: relative;
}
.pricing-card.featured {
  border-top: 3px solid #2563eb;
  box-shadow: 0 8px 24px rgba(26, 24, 22, 0.08);
}
.pricing-card h3 {
  margin-bottom: 8px;
  font-family: "Outfit", sans-serif;
}
.pricing-card .price {
  font-family: "Outfit", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #1a1816;
  margin-bottom: 6px;
  letter-spacing: -0.03em;
}
.pricing-card .price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: #a8a29e;
}
.pricing-card .price-desc {
  font-size: 14px;
  margin-bottom: 24px;
}
.pricing-card .btn {
  width: 100%;
  margin-top: auto;
}

.pricing-badge {
  font-family: "Outfit", sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #2563eb;
  margin-bottom: 16px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 24px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: 14px;
  color: #57534e;
}
.pricing-features svg {
  width: 18px;
  height: 18px;
  color: #2563eb;
  flex-shrink: 0;
}

footer {
  background: #1a1816;
  color: rgba(255, 255, 255, 0.6);
}

.footer-cta {
  text-align: center;
  padding: 80px 0 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-cta h2 {
  color: #fff;
  margin-bottom: 12px;
}
.footer-cta p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.0625rem;
  max-width: 480px;
  margin: 0 auto 28px;
}

.footer-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 32px 0;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-brand {
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-brand svg {
  width: 22px;
  height: 22px;
  color: #2563eb;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s;
}
.footer-links a:hover {
  color: #fff;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes scrambleSweep {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
@keyframes fadeKey {
  0%, 20% {
    opacity: 1;
    transform: scale(1);
  }
  50%, 100% {
    opacity: 0;
    transform: scale(0.8);
  }
}
@keyframes showLock {
  0%, 40% {
    opacity: 0;
    transform: scale(0.8);
  }
  60%, 80% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
@keyframes fillBox {
  0%, 20% {
    height: 0%;
    opacity: 0;
  }
  50% {
    height: 100%;
    opacity: 0.1;
  }
  80%, 100% {
    height: 100%;
    opacity: 0;
  }
}
@keyframes scaleIn {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.success-state {
  display: none;
  text-align: center;
  padding: 24px 0;
}
.success-state.show {
  display: block;
}
.success-state .checkmark {
  width: 64px;
  height: 64px;
  background: #2563eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  animation: scaleIn 0.3s ease-out;
}
.success-state .checkmark svg {
  width: 32px;
  height: 32px;
  color: #fff;
}
.success-state h3 {
  color: #1a1816;
  margin-bottom: 8px;
}
.success-state p {
  font-size: 14px;
}

.section-subtitle {
  text-align: center;
  color: #57534e;
  font-size: 1.125rem;
  max-width: 600px;
  margin: -40px auto 64px;
}

.docs-steps {
  max-width: 720px;
  margin: 0 auto;
}

.docs-step {
  margin-bottom: 48px;
}
.docs-step:last-child {
  margin-bottom: 0;
}
.docs-step h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.docs-step > p {
  margin-bottom: 16px;
}
.docs-step .code-block {
  margin-bottom: 0;
}

.docs-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #1a1816;
  color: #fff;
  border-radius: 50%;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
}

.docs-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #57534e;
  margin-bottom: 16px;
}
.docs-desc code {
  font-family: "JetBrains Mono", "SF Mono", "Fira Code", Menlo, Consolas, monospace;
  font-size: 0.85em;
  background: rgba(26, 24, 22, 0.06);
  padding: 2px 6px;
  border-radius: 4px;
  color: #1a1816;
}

.docs-options {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.docs-options .code-block {
  flex: 1;
}
@media (min-width: 768px) {
  .docs-options {
    flex-direction: row;
    gap: 0;
    align-items: stretch;
  }
  .docs-options .code-block {
    border-radius: 10px;
  }
}

.docs-or {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
}
.docs-or span {
  font-size: 13px;
  font-weight: 500;
  color: #a8a29e;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .docs-or {
    padding: 0 20px;
  }
}

.docs-api {
  border: 1px solid #e7e5e4;
  border-radius: 10px;
  overflow: hidden;
}

.docs-api-item {
  padding: 20px 24px;
  border-bottom: 1px solid #e7e5e4;
}
.docs-api-item:last-child {
  border-bottom: none;
}
.docs-api-item > code {
  font-family: "JetBrains Mono", "SF Mono", "Fira Code", Menlo, Consolas, monospace;
  font-size: 15px;
  font-weight: 600;
  color: #1a1816;
  display: block;
  margin-bottom: 6px;
}
.docs-api-item > p {
  font-size: 14px;
  color: #57534e;
  line-height: 1.5;
}
.docs-api-item > p code {
  font-family: "JetBrains Mono", "SF Mono", "Fira Code", Menlo, Consolas, monospace;
  font-size: 0.85em;
  background: rgba(26, 24, 22, 0.06);
  padding: 2px 6px;
  border-radius: 4px;
  color: #1a1816;
}

.docs-api-params {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.docs-api-params span {
  font-size: 13px;
  color: #57534e;
  padding-left: 16px;
  position: relative;
}
.docs-api-params span::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 8px;
  width: 4px;
  height: 4px;
  background: #a8a29e;
  border-radius: 50%;
}
.docs-api-params code {
  font-family: "JetBrains Mono", "SF Mono", "Fira Code", Menlo, Consolas, monospace;
  font-size: 0.85em;
  background: rgba(26, 24, 22, 0.06);
  padding: 2px 6px;
  border-radius: 4px;
  color: #1a1816;
}
.docs-api-params em {
  font-style: normal;
  font-size: 11px;
  font-weight: 500;
  color: #2563eb;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

input[type=text],
input[type=email],
input[type=password],
input[type=url],
input[type=number],
select,
textarea {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  padding: 10px 14px;
  border: 1px solid #e7e5e4;
  border-radius: 6px;
  background: #ffffff;
  color: #1a1816;
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=password]::placeholder,
input[type=url]::placeholder,
input[type=number]::placeholder,
select::placeholder,
textarea::placeholder {
  color: #a8a29e;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=url]:focus,
input[type=number]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

label {
  font-size: 14px;
  font-weight: 500;
  color: #1a1816;
  display: block;
  margin-bottom: 6px;
}

.stat-number {
  font-family: "Outfit", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.use-cases {
  background: #faf9f7;
  border-top: 1px solid #e7e5e4;
}
.use-cases h2 {
  margin-bottom: 40px;
}

.use-case {
  border: 1px solid #e7e5e4;
  border-radius: 10px;
  background: #ffffff;
  margin-bottom: 12px;
  overflow: hidden;
}
.use-case:last-child {
  margin-bottom: 0;
}
.use-case.is-open summary .use-case-chevron {
  transform: rotate(180deg);
}
.use-case summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background 0.15s;
}
.use-case summary::-webkit-details-marker {
  display: none;
}
.use-case summary::marker {
  display: none;
  content: "";
}
.use-case summary:hover {
  background: var(--gray-50);
}

.use-case-tag {
  font-family: "Outfit", sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #2563eb;
  background: #eff6ff;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}

.use-case-title {
  flex: 1;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1816;
}

.use-case-chevron {
  width: 20px;
  height: 20px;
  color: #a8a29e;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.use-case-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease-out;
}

.use-case.is-open .use-case-body {
  grid-template-rows: 1fr;
}

.use-case-inner {
  overflow: hidden;
  min-height: 0;
  padding: 0 24px;
}

.use-case.is-open .use-case-inner {
  padding-bottom: 24px;
}

.use-case-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}
@media (min-width: 768px) {
  .use-case-content {
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
  }
}
.use-case-content > p {
  font-size: 0.9375rem;
  line-height: 1.7;
  padding-top: 4px;
}

.use-case-mockup {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  border: 1px solid #e7e5e4;
}

.mockup-header {
  background: #f4f1ed;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #e7e5e4;
}

.mockup-dots {
  display: flex;
  gap: 5px;
}
.mockup-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d6d3cd;
}

.mockup-url {
  flex: 1;
  background: #ffffff;
  border-radius: 4px;
  padding: 5px 10px;
  font-family: "JetBrains Mono", "SF Mono", "Fira Code", Menlo, Consolas, monospace;
  font-size: 10px;
  color: #a8a29e;
  margin-left: 6px;
}

.mockup-body {
  padding: 16px;
  position: relative;
}

.signup-form-mock {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 10px 0;
}

.mock-input {
  background: var(--gray-50);
  border: 1px solid #e7e5e4;
  border-radius: 4px;
  padding: 8px 10px;
  font-size: 11px;
  color: #a8a29e;
}

.article-title {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1a1816;
  margin-bottom: 6px;
}

.article-meta {
  font-size: 10px;
  color: #a8a29e;
  margin-bottom: 12px;
}

.article-text {
  font-size: 12px;
  line-height: 1.7;
  color: #57534e;
}
.article-text.blurred {
  filter: blur(4px);
  user-select: none;
}

.unlock-overlay {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 30%);
  padding: 40px 0 0;
}

.verena-verify {
  background: #ffffff;
  border-radius: 6px;
  border: 1px solid #e7e5e4;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.verena-verify .verena-checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.verena-verify .verena-checkbox {
  width: 18px;
  height: 18px;
  border: 2px solid #c4c0ba;
  border-radius: 2px;
  background: #fff;
  flex-shrink: 0;
}
.verena-verify .verena-checkbox-label {
  font-size: 12px;
  color: #1a1816;
}
.verena-verify .verena-brand-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  font-size: 8px;
  font-weight: 600;
  color: #a8a29e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.verena-verify .verena-brand-right svg {
  width: 16px;
  height: 16px;
  color: #a8a29e;
}

.checkout-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e7e5e4;
}
.checkout-header h4 {
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1a1816;
}
.checkout-header .price {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #1a1816;
}

.review-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #f0ece6;
}

.review-stars {
  color: #f59e0b;
  font-size: 11px;
}

.review-text {
  font-size: 11px;
  color: #57534e;
  flex: 1;
}

/*# sourceMappingURL=main.css.map */
