:root {
  --bg: #0f172a;
  --lime: #bef264;
  --lime-dark: #a3e635;
  --text: #ffffff;
  --muted: #cbd5e1;
  --card: rgba(15, 23, 42, 0.55);
  --line: rgba(255, 255, 255, 0.14);
}

@font-face {
  font-family: "Inter";
  src: url("./fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("./fonts/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("./fonts/Roboto-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("./fonts/Roboto-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei",
    "Noto Sans SC", "Source Han Sans CN", sans-serif;
  color: var(--text);
  background: #0f172a;
}

code,
.result-token__value {
  font-family: "JetBrains Mono", "Fira Code", "Roboto Mono", ui-monospace,
    SFMono-Regular, Menlo, Consolas, monospace;
}

.zk-page {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 24px 24px 0;
  position: relative;
  overflow: hidden;
}

/* === Topbar (Logo + Sprache) === */
.zk-topbar {
  width: 100%;
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 4px 4px 18px;
  position: relative;
  z-index: 3;
}

.zk-topbar__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.zk-topbar__logo:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.zk-topbar__logo img {
  display: block;
  height: 56px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
}

.zk-langswitch {
  position: relative;
}

.zk-lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
  color: #e2e8f0;
  cursor: pointer;
  font-family: inherit;
  line-height: 1;
  transition: background 0.2s ease, border-color 0.2s ease,
    transform 0.15s ease;
}

.zk-lang-trigger:hover {
  background: rgba(15, 23, 42, 0.75);
  border-color: rgba(190, 242, 100, 0.45);
  transform: translateY(-1px);
}

.zk-lang-trigger:focus-visible {
  outline: 2px solid rgba(190, 242, 100, 0.7);
  outline-offset: 2px;
}

.zk-flag {
  display: inline-block;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.zk-flag::before {
  content: none;
}

.zk-lang-trigger .zk-flag {
  width: 26px;
  height: 18px;
}

.zk-lang-chevron {
  width: 12px;
  height: 12px;
  color: #cbd5e1;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.zk-langswitch.is-open .zk-lang-chevron {
  transform: rotate(180deg);
}

.zk-lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 56px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 6px;
  margin: 0;
  list-style: none;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px) scale(0.96);
  transform-origin: top right;
  transition: opacity 0.18s ease, transform 0.2s ease;
  z-index: 20;
}

.zk-langswitch.is-open .zk-lang-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.zk-lang-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease,
    transform 0.15s ease;
}

.zk-lang-option:hover {
  background: rgba(190, 242, 100, 0.14);
  border-color: rgba(190, 242, 100, 0.35);
  transform: translateY(-1px);
}

.zk-lang-option:focus-visible {
  outline: 2px solid rgba(190, 242, 100, 0.7);
  outline-offset: 2px;
}

.zk-lang-option .zk-flag {
  width: 30px;
  height: 20px;
}

.zk-content-center {
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.zk-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at center, rgba(15, 23, 42, 0.62) 0%, rgba(15, 23, 42, 0.95) 100%),
    url("./assets/bg-hero.jpg");
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.zk-card {
  width: min(980px, 100%);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  background: var(--card);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
  text-align: center;
}

.zk-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px 8px 12px;
  border: 1px solid rgba(163, 230, 53, 0.45);
  border-radius: 999px;
  color: #bef264;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(15, 23, 42, 0.5);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.zk-eyebrow {
  display: block;
  color: #84cc16;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.zk-eu-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #003399;
  box-shadow: 0 0 0 2px rgba(190, 242, 100, 0.35);
  margin-right: 8px;
}

h1 {
  margin: 16px 0 8px;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

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

.zk-lead {
  max-width: 70ch;
  font-size: 1.03rem;
  line-height: 1.6;
  margin: 0 auto;
}

.zk-text-gradient {
  background: linear-gradient(135deg, #bef264 0%, #4ade80 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.verify-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin: 22px 0 16px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.demo-wrap {
  margin-top: 2px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.demo-title {
  margin: 0 0 8px;
  color: #94a3b8;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

input,
.zk-btn-primary {
  border-radius: 12px;
  border: 1px solid var(--line);
  padding: 13px 15px;
  font-size: 16px;
  transition: all 0.28s ease;
}

input {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  outline: none;
}

input:focus {
  border-color: rgba(190, 242, 100, 0.65);
  box-shadow: 0 0 0 3px rgba(132, 204, 22, 0.12);
}

.zk-btn-primary {
  background: var(--lime);
  color: #0f172a;
  font-weight: 700;
  cursor: pointer;
  border: none;
}

.zk-btn-primary:hover {
  background: var(--lime-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px -3px rgba(190, 242, 100, 0.4);
}

.zk-btn-primary:active {
  transform: translateY(0);
}

.demo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  justify-content: center;
}

.demo-links a {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 7px 12px;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.04);
  transition: all 0.25s ease;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}

.demo-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(190, 242, 100, 0.5);
  background: rgba(190, 242, 100, 0.15);
}

.result {
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.03);
  height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-4px);
  transition: height 0.34s ease, opacity 0.24s ease, transform 0.24s ease, padding 0.24s ease;
  will-change: height;
  text-align: left;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.hidden {
  display: block;
}

.result.is-open {
  opacity: 1;
  transform: translateY(0);
  padding: 18px;
}

/* === Result-Status Banner === */
.result-status {
  --status-color: #cbd5e1;
  --status-glow: rgba(255, 255, 255, 0.08);
  --status-bg: rgba(255, 255, 255, 0.04);
  --status-border: rgba(255, 255, 255, 0.14);

  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  border-radius: 18px;
  border: 1px solid var(--status-border);
  background:
    radial-gradient(circle at 0% 0%, var(--status-glow) 0%, transparent 55%),
    var(--status-bg);
  box-shadow: 0 14px 32px -18px rgba(0, 0, 0, 0.55);
  position: relative;
  overflow: hidden;
}

.result-status::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 65%);
}

.result-status__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid var(--status-border);
  color: var(--status-color);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 0 6px var(--status-glow);
  position: relative;
  z-index: 1;
}

.result-status__icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
}

.result-status__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  z-index: 1;
}

.result-status__label {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--status-color);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
}

.result-status__sub {
  font-size: 0.95rem;
  color: #d6dde8;
  line-height: 1.45;
}

/* Status-spezifische Farben */
.result-status--zertifiziert {
  --status-color: #86efac;
  --status-glow: rgba(74, 222, 128, 0.22);
  --status-bg: rgba(34, 197, 94, 0.12);
  --status-border: rgba(34, 197, 94, 0.45);
}

.result-status--self_assessment {
  --status-color: #fcd34d;
  --status-glow: rgba(250, 204, 21, 0.22);
  --status-bg: rgba(250, 204, 21, 0.12);
  --status-border: rgba(250, 204, 21, 0.45);
}

.result-status--audit_pruefung {
  --status-color: #93c5fd;
  --status-glow: rgba(96, 165, 250, 0.22);
  --status-bg: rgba(96, 165, 250, 0.12);
  --status-border: rgba(96, 165, 250, 0.45);
}

.result-status--abgelaufen,
.result-status--ungueltig {
  --status-color: #fca5a5;
  --status-glow: rgba(239, 68, 68, 0.22);
  --status-bg: rgba(239, 68, 68, 0.12);
  --status-border: rgba(239, 68, 68, 0.45);
}

.result-status--fehler {
  --status-color: #cbd5e1;
  --status-glow: rgba(148, 163, 184, 0.22);
  --status-bg: rgba(148, 163, 184, 0.1);
  --status-border: rgba(148, 163, 184, 0.45);
}

.result-status--pruefung {
  --status-color: #bae6fd;
  --status-glow: rgba(56, 189, 248, 0.22);
  --status-bg: rgba(56, 189, 248, 0.12);
  --status-border: rgba(56, 189, 248, 0.45);
}

.result-status--pruefung .result-status__icon svg {
  animation: result-spin 1.1s linear infinite;
}

@keyframes result-spin {
  to {
    transform: rotate(360deg);
  }
}

/* === Token-Zeile === */
.result-token {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 23, 42, 0.45);
}

.result-token__label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a96b0;
  font-weight: 700;
}

.result-token__value {
  font-family: "JetBrains Mono", "Fira Code", "Roboto Mono", ui-monospace, monospace;
  font-size: 0.95rem;
  color: #e2e8f0;
  letter-spacing: 0.01em;
  word-break: break-all;
}

/* === Felder-Grid === */
.result-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.result-field {
  position: relative;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.0)),
    rgba(15, 23, 42, 0.4);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.result-field:hover {
  transform: translateY(-2px);
  border-color: rgba(190, 242, 100, 0.35);
  background:
    linear-gradient(180deg, rgba(190, 242, 100, 0.05), rgba(255, 255, 255, 0.0)),
    rgba(15, 23, 42, 0.55);
}

.result-field__label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a96b0;
  font-weight: 700;
}

.result-field__value {
  font-size: 1rem;
  font-weight: 600;
  color: #f1f5f9;
  word-break: break-word;
}

.result-field--accent {
  border-color: rgba(190, 242, 100, 0.35);
  background:
    linear-gradient(180deg, rgba(190, 242, 100, 0.08), rgba(255, 255, 255, 0.0)),
    rgba(15, 23, 42, 0.5);
}

.result-field--accent .result-field__label {
  color: #bef264;
}

/* === Details-Toggle (Mehr Details / Details ausblenden) === */
.result-toggle {
  margin-top: 18px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 23, 42, 0.5);
  color: #e2e8f0;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.result-toggle:hover {
  background: rgba(15, 23, 42, 0.7);
  border-color: rgba(190, 242, 100, 0.35);
  color: #f1f5f9;
}

.result-toggle:active {
  transform: translateY(1px);
}

.result-toggle:focus-visible {
  outline: 2px solid rgba(190, 242, 100, 0.65);
  outline-offset: 2px;
}

.result-toggle__icon {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
}

.result-toggle.is-open .result-toggle__icon {
  transform: rotate(180deg);
}

.result-details[hidden] {
  display: none;
}

.result-details {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 0;
  animation: result-details-fade 0.28s ease both;
}

.result-details > .result-token {
  margin-top: 0;
}

.result-details > .result-grid {
  margin-top: 14px;
}

@keyframes result-details-fade {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Hinweistext nach den Feldern === */
.result-note {
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 23, 42, 0.45);
  color: #c5cdda;
  font-size: 0.85rem;
  line-height: 1.55;
}

/* === Mobile Anpassung === */
@media (max-width: 780px) {
  .result-status {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
  }

  .result-status__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .result-status__icon svg {
    width: 22px;
    height: 22px;
  }

  .result-status__label {
    font-size: 1.2rem;
  }

  .result-status__sub {
    font-size: 0.9rem;
  }

  .result-token__value {
    font-size: 0.85rem;
  }
}

.zk-hint {
  margin: 4px auto 0;
  font-size: 0.85rem;
  max-width: 760px;
  color: #b8c2d8;
  line-height: 1.5;
}

.zk-hint code {
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.8rem;
  color: #e2e8f0;
}

.zk-footer-mini {
  width: calc(100% + 48px);
  margin-left: -24px;
  margin-right: -24px;
  margin-top: auto;
  padding: 10px 24px 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #97a4bc;
  font-size: 0.68rem;
  line-height: 1.45;
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.zk-footer-mini a {
  color: #c3d0e5;
  text-decoration: none;
  font-weight: 600;
}

.zk-footer-mini a:hover {
  color: #bef264;
}

.zk-footer-sep {
  opacity: 0.55;
}

@media (max-width: 1024px) {
  .zk-page {
    padding: 18px 18px 0;
  }

  .zk-content-center {
    align-items: center;
  }

  .zk-card {
    width: 100%;
    max-width: 760px;
  }

  .zk-topbar__logo img {
    height: 48px;
  }
}

@media (max-width: 780px) {
  .zk-topbar {
    padding: 2px 0 14px;
    gap: 10px;
  }

  .zk-topbar__logo img {
    height: 40px;
    max-width: 200px;
  }

  .zk-lang-trigger {
    padding: 7px 10px 7px 9px;
    gap: 6px;
  }

  .zk-lang-trigger .zk-flag {
    width: 22px;
    height: 15px;
  }

  .zk-lang-chevron {
    width: 10px;
    height: 10px;
  }

  .zk-lang-option .zk-flag {
    width: 26px;
    height: 18px;
  }

  .zk-card {
    padding: 18px;
    border-radius: 18px;
  }

  h1 {
    font-size: clamp(1.7rem, 9vw, 2.25rem);
    line-height: 1.2;
  }

  .zk-lead {
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .verify-form {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
  }

  .zk-btn-primary {
    width: 100%;
    min-height: 48px;
  }

  .demo-wrap {
    padding: 10px;
  }

  .demo-links a {
    font-size: 11px;
    padding: 7px 10px;
    min-height: 36px;
  }

  .zk-footer-mini {
    font-size: 0.64rem;
    width: calc(100% + 36px);
    margin-left: -18px;
    margin-right: -18px;
    margin-top: auto;
    padding-left: 18px;
    padding-right: 18px;
  }

  .result {
    margin-top: 16px;
  }

  .result.is-open {
    padding: 14px;
  }

  .result-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 420px) {
  .zk-page {
    padding: 12px 12px 0;
  }

  .zk-topbar {
    padding: 2px 0 10px;
  }

  .zk-topbar__logo img {
    height: 34px;
    max-width: 170px;
  }

  .zk-lang-trigger {
    padding: 6px 9px 6px 8px;
    gap: 5px;
  }

  .zk-lang-trigger .zk-flag {
    width: 20px;
    height: 14px;
  }

  .zk-card {
    padding: 14px;
    border-radius: 14px;
  }

  .zk-badge {
    font-size: 10px;
    letter-spacing: 0.05em;
    padding: 7px 12px 7px 10px;
  }

  .zk-eyebrow {
    font-size: 0.68rem;
    margin-bottom: 8px;
  }

  h1 {
    margin-top: 12px;
    margin-bottom: 8px;
  }

  .zk-lead {
    font-size: 0.92rem;
  }

  input,
  .zk-btn-primary {
    padding: 12px 13px;
    border-radius: 10px;
  }

  .demo-links {
    gap: 6px;
  }

  .zk-footer-mini {
    font-size: 0.62rem;
    line-height: 1.4;
    margin-top: auto;
    width: calc(100% + 24px);
    margin-left: -12px;
    margin-right: -12px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .demo-links a {
    width: 100%;
    justify-content: center;
  }
}

@media (hover: none) and (pointer: coarse) {
  .result-field:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(15, 23, 42, 0.4);
  }

  .demo-links a:hover,
  .zk-btn-primary:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: 0.01ms !important;
  }
}

/* ===== Mini-Polish 2026-05-06 (Verify) ===== */
.zk-card {
  overflow: hidden;
}

.zk-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(190, 242, 100, 0.95), rgba(74, 222, 128, 0.9));
  box-shadow: 0 0 18px rgba(190, 242, 100, 0.35);
  pointer-events: none;
}

.zk-card:hover {
  border-color: rgba(190, 242, 100, 0.32);
  box-shadow: 0 28px 58px -14px rgba(0, 0, 0, 0.5);
}

.verify-form input {
  border-radius: 14px;
}

.verify-form .zk-btn-primary {
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}

.verify-form .zk-btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.24) 45%, transparent 100%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
  pointer-events: none;
}

.verify-form .zk-btn-primary:hover::after {
  transform: translateX(120%);
}

.result-note {
  border-radius: 16px;
}
