:root {
  --bg_backup: #022148;
  --bg: #010a09;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-2: rgba(255, 255, 255, 0.10);
  --border: rgba(255, 255, 255, 0.12);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);
  --brand: #14B8A6;

  --brand-2: #22D3EE;

  --shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1120px;

  --color-primary-50: #f0fdfc;
  --color-primary-100: #ccfbf6;
  --color-primary-200: #99f6ec;
  --color-primary-300: #5eeadb;
  --color-primary-400: #2dd4c2;
  --color-primary-500: #14b8a6;
  --color-primary-600: #0d9485;
  --color-primary-700: #0f766B;
  --color-primary-800: #115e56;
  --color-primary-900: #134e48;
  --color-primary-950: #042f2a;
  --color-primary-1000: #010a09;

}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;


  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";

  background:
    radial-gradient(1200px 600px at 20% 10%, rgba(34, 211, 238, 0.22), transparent 60%),
    radial-gradient(900px 500px at 90% 20%, rgba(20, 184, 166, 0.18), transparent 55%),
    radial-gradient(900px 600px at 70% 95%, rgba(34, 197, 94, 0.12), transparent 60%),
    var(--bg);

  color: var(--text);
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Poppins, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
  font-weight: 600;
  letter-spacing: -0.01em;
}

hr {
  border: none;
  border-top: 1px solid var(--border);
  background: transparent;
  margin: 28px 0;
}

code,
pre,
kbd,
samp {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
}


#loader-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: left;
}

#loader {
  border: 4px solid var(--brand);
  border-bottom: 4px solid #fff;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

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

a:hover {
  text-decoration: underline;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.header-spacer {
  height: 84px;
}

.section {
  padding: clamp(48px, 10vw, 72px) 0;
}

.blog-virustotal-risk-level {
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
}
.about__lead {
  max-width: 72ch;
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.8;
}

.about-grid {
  display: grid;
  gap: 20px;
  margin-top: 28px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.about-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.about-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.1rem;
}

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

.false_positive {
  background-color: #010a09;
  color: white;
}


.colored-title {

  font-size: clamp(18px, 4vw, 28px);

  line-height: calc(1.75 / 1.125);

  font-weight: 600;


  --tw-gradient-position: to right in oklab;
  --tw-gradient-from: var(--color-primary-400);
  --tw-gradient-to: var(--color-primary-50);
  --tw-gradient-stops: var(--tw-gradient-position),
    var(--tw-gradient-from) var(--tw-gradient-from-position, 0%),
    var(--tw-gradient-to) var(--tw-gradient-to-position, 100%);

  background-image: linear-gradient(var(--tw-gradient-stops));


  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;


  display: inline-block;
}



.title-glow {
  font-size: clamp(24px, 5vw, 38px);
  line-height: calc(1.75 / 1.125);
  font-weight: 600;
  display: inline-block;
  font-weight: 600;
  display: inline-block;


  --tw-gradient-from: var(--color-primary-400);
  --tw-gradient-via: var(--color-primary-200);
  --tw-gradient-to: rgba(255, 255, 255, 0.96);


  --tw-radial-position: at 50% 120%;


  --tw-gradient-stops:
    var(--tw-gradient-from) 0%,
    var(--tw-gradient-via) 45%,
    var(--tw-gradient-to) 100%;

  background-image: radial-gradient(80% 160% var(--tw-radial-position),
      var(--tw-gradient-stops));

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}






.h2 {
  margin: 0 0 18px 0;
  font-size: clamp(24px, 5vw, 38px);
  line-height: 1.15;
}

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


.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
  border-bottom: 1px solid transparent;
}

.navbar--initial {
  background: transparent;
  border-bottom-color: transparent;
}

.navbar--scrolled {
  background: rgba(10, 14, 26, 0.75);
  border-bottom-color: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(10px);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 180px;
}


.brand__mark {
  width: clamp(48px, 12vw, 64px);
  height: clamp(48px, 12vw, 64px);
  object-fit: contain;
  display: block;
}


.brand__text {

  font-family: Poppins, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
  font-size: 18px;
  letter-spacing: -0.01em;

  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;

}

.brand__text--brand {
  color: var(--brand);

}

.brand__text--base {
  color: var(--text);
}


.nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav__link {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  border: 1px solid transparent;
  transition: 180ms ease;
  font-size: clamp(13px, 2.5vw, 15px);
  white-space: nowrap;
}

.nav__link:hover {
  text-decoration: none;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.10);
}


.tools {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 3vw, 24px);
  align-items: stretch;
}

.tools__right,
.toolsCard,
.toolsCard__panel {
  height: 100%;
}

.tools__left {
  padding: clamp(6px, 3vw, 6px) 0;
}

.tools__toggles {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 2vw, 10px);
  margin-top: 18px;
}

.tools__toggle {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  width: 100%;
  padding: clamp(10px, 2vw, 12px);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, opacity 160ms ease;
  opacity: 0.88;
}

.tools__toggleText {
  font-size: clamp(14px, 3vw, 18px);
  line-height: 1.35;
}

.tools__toggle:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--color-primary-500);
  transform: translateY(-1px);
}

.tools__toggle--active {
  opacity: 1;
  border-color: var(--color-primary-500);
  box-shadow: 0 0 0 1px var(--color-primary-500);
  background: var(--color-primary-950);
}

.icon svg {
  width: 100%;
  height: 100%;
  display: block;
}


.icon::after {
  position: absolute;
  left: 26px;
  top: -4px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-2px);
  transition: 160ms ease;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.70);
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.10);
  padding: 6px 8px;
  border-radius: 10px;
  white-space: nowrap;
}

.tools__toggle:hover .icon::after {
  opacity: 1;
  transform: translateY(0);
}


.tools__right {
  width: 100%;
}



.toolsCard {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: linear-gradient(135deg, var(--color-primary-950), rgba(255, 255, 255, 0.05));
  box-shadow: var(--shadow);
  padding: 12px;
}

.toolsCard__panel {
  border-radius: calc(var(--radius) - 8px);
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.10);
  padding: 14px;
  position: relative;
  overflow: hidden;
}


.toolsCard__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}


.toolsCard__bgVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.toolsCard__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.70);

}


.toolsCard__content {
  position: relative;
  z-index: 1;
}


.toolsCard__title {
  margin: 14px 0 8px 0;
  font-size: 18px;
  line-height: 1.25;
}

.toolsCard__desc {
  margin: 0 0 14px 0;
  color: var(--muted);
  line-height: 1.55;
}

.toolsCard__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 10px 14px;
  border-radius: 999px;

  background: var(--color-primary-600);
  border: 1px solid var(--color-primary-700);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
  text-decoration: none;

  transition: transform 160ms ease, filter 160ms ease, background 160ms ease;
}

.toolsCard__cta:hover {
  text-decoration: none;
  transform: translateY(-1px);
  filter: brightness(1.05);
}


.is-hidden {
  display: none;
}


.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding: 32px 0 28px;
  margin-top: 24px;
  grid-template-columns: 1fr 1fr;
}

.footer__inner {
  display: block;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 18px;
  align-items: start;
}


.footer__bottom {
  margin-top: 18px;
  padding-top: 18px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.footer-links {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-links a {
  color: var(--text);
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.hero {
  padding: 0 0 0;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: start;
}

@media (max-width: 900px) {
  .hero {
    padding: 0 0 0;
  }

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



@media (max-width: 960px) {
  .nav {
    gap: 8px;
  }

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

  .password-hero__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero__inner {
    gap: 24px;
  }

  .blog-section .blog-item {
    flex: 0 0 calc(100% - 16px);
    max-width: 280px;
  }

  .contact-options {
    flex-direction: column;
    gap: 12px;
  }

  .contact-options .btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .nav {
    gap: 4px;
  }

  .nav__link:nth-child(2) {
    display: none;
  }

  .header-spacer {
    height: 78px;
  }

  .tools__toggleText {
    font-size: 16px;
  }

  .container {
    width: calc(100% - 16px);
  }

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

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

  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 16px;
  }

  .input-row {
    flex-direction: column;
  }

  button#toggle {
    min-height: 48px;
  }

  .password-hero__lead {
    font-size: 1rem;
  }

  .h2 {
    font-size: clamp(22px, 5vw, 32px);
  }
}

@media (max-width: 425px) {
  .nav__link {
    padding: 8px 10px;
    font-size: 12px;
  }

  .nav {
    gap: 2px;
  }

  .tools {
    grid-template-columns: 1fr;
    min-height: 70vh;
  }

  .tools__toggles {
    margin-top: 12px;
    gap: 6px;
  }

  .tools__toggle {
    padding: 8px;
    gap: 8px;
  }

  .tools__toggleText {
    font-size: 12px;
    line-height: 1.3;
  }

  .icon {
    width: 20px;
    height: 20px;
  }

  .toolsCard__desc {
    font-size: 13px;
    margin: 0 0 12px 0;
    line-height: 1.4;
  }

  .toolsCard__title {
    margin: 10px 0 8px 0;
    font-size: 16px;
  }

  .toolsCard__cta {
    width: 100%;
    padding: 12px 14px;
  }

  .toolsCard {
    padding: 5px;
  }
}

@media (min-width: 700px) {
  .tools {
    grid-template-columns: 1fr 2fr;
  }
}

#contact-category {
  background: black;
  color: white;
}

#accuracy-select {
  background: black;
  color: white;
}

.blog-section .blog-scroller {
  display: flex;
  overflow-x: auto;
  scrollbar-color: rgba(255, 255, 255, 0.10) transparent;
  gap: 16px;
  padding: 16px 0;

}

.blog-section .blog-item {
  flex: 0 0 clamp(250px, 80vw, 300px);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.blog-section .blog-item h3 {
  margin: 0 0 8px 0;
  font-size: 18px;
}

.blog-section .blog-item p {
  margin: 0 0 12px 0;
  color: var(--muted);
}

.blog-section .blog-item a {
  color: var(--brand);
  text-decoration: none;
}

.blog-section .blog-item a:hover {
  text-decoration: underline;
}

.blog-post {
  padding: 72px 0;
}

.blog-post__header {
  margin-bottom: 32px;
  text-align: center;
}

.blog-post__title {
  font-size: clamp(24px, 6vw, 42px);
  line-height: 1.2;
  margin: 0 0 16px 0;
  color: var(--text);
}

.blog-post__meta {
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: 14px;
  color: var(--muted);
}

.blog-post__date,
.blog-post__author {
  margin: 0;
}

.blog-post__content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.blog-post__lead {
  font-size: clamp(16px, 4vw, 20px);
  font-weight: 500;
  margin-bottom: 24px;
  color: var(--text);
  text-align: center;
}

.blog-post__content h2 {
  font-size: clamp(20px, 4vw, 24px);
  margin: clamp(24px, 5vw, 32px) 0 16px 0;
  color: var(--text);
}

.blog-post__content p {
  margin-bottom: 16px;
}

.blog-post__content ul,
.blog-post__content ol {
  margin: 16px 0;
  padding-left: 24px;
}

.blog-post__content li {
  margin-bottom: 8px;
}

.blog-post__figure {
  margin: 32px 0;
  text-align: center;
}

.blog-post__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.blog-post__caption {
  margin-top: 8px;
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
}

.blog-post__quote {
  margin: 32px 0;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--brand);
  border-radius: 8px;
}

.blog-post__quote p {
  margin: 0;
  font-size: 18px;
  font-style: italic;
}

.blog-post__quote cite {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: var(--muted);
  text-align: right;
}

.blog-post__footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.blog-post__footer p {
  margin: 8px 0;
}

.blog-post__footer a {
  color: var(--brand);
  text-decoration: none;
}

.blog-post__footer a:hover {
  text-decoration: underline;
}

.blog-post__video {
  max-width: 100%;
  height: auto;
  width: 100%;
  max-width: 800px;
  margin: 32px auto;
  display: block;
  border: 2px solid var(--brand);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 24px rgba(20, 184, 166, 0.15);
}

@media (max-width: 768px) {
  .blog-post__video {
    max-width: 95%;
    margin: 24px auto;
    border-radius: 10px;
  }
}

@media (max-width: 520px) {
  .blog-post__video {
    max-width: 100%;
    margin: 16px 0;
    border: 1.5px solid var(--brand);
    border-radius: 8px;
  }
}

.contact-section .cf-turnstile {
  margin: 12px 0;
  border-radius: 10px;
}

.toolsCard {
  min-height: 30vh;
}

@media (min-width: 425px) {
  .toolsCard {
    min-height: 30vh;
  }
}

.contact-section .contact-controls {
  display: flex;
  gap: 16px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.contact-section label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
  min-width: 220px;
  flex: 1;
}

.contact-section select,
.contact-section input,
.contact-section textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: inherit;
}

.contact-section textarea {
  resize: vertical;
  min-height: 96px;
}

.contact-section form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.contact-section button {
  align-self: flex-start;
  padding: 10px 18px;
  border: none;
  border-radius: 999px;
  background: var(--color-primary-600);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.contact-section button:hover {
  filter: brightness(1.1);
}










.toolsCard {
  position: relative;
  height: 100%;
}


.toolsCard__panel {
  position: absolute;
  inset: 12px;

  height: auto;

  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .22s ease;
}


.toolsCard__panel.is-hidden {
  display: block;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}


:root {
  --very-weak: #ef4444;
  --weak: #f97316;
  --fair: #facc15;
  --good: #22c55e;
  --danger-surface: rgba(239, 68, 68, 0.12);
  --danger-border: rgba(239, 68, 68, 0.24);
  --success-surface: rgba(34, 197, 94, 0.12);
  --success-border: rgba(34, 197, 94, 0.24);
}

.password-hero {
  padding: 12px 0 24px;
}

.password-hero__inner {
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

.password-hero__copy {
  max-width: 760px;
}

.password-hero__lead {
  margin: 0;
  max-width: 64ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.password-tool-section {
  padding-top: 8px;
}

.layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: start;
}

.panel.center,
.panel-block {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(1, 10, 9, 0.7);
  box-shadow: var(--shadow);
}

.panel.center {
  padding: 28px;
}

.panel.right-column {
  display: grid;
  gap: 16px;
}

.panel-block {
  padding: 20px;
}

.panel-block h3,
.requirements-title {
  margin: 0 0 10px;
  color: var(--text);
}

.small {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.input-row {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

input[type="password"],
input[type="text"] {
  width: 100%;
  min-width: 0;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 1rem;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

input[type="password"]::placeholder,
input[type="text"]::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

input:focus {
  outline: none;
  border-color: var(--color-primary-400);
  box-shadow: 0 0 0 4px rgba(45, 212, 194, 0.14);
  background: rgba(255, 255, 255, 0.07);
}

button#toggle,
.breach-check-btn,
.generate-btn {
  border-radius: 999px;
  border: 1px solid var(--color-primary-700);
  background: linear-gradient(180deg, var(--color-primary-600), var(--color-primary-700));
  color: rgba(255, 255, 255, 0.96);
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, filter 160ms ease, opacity 160ms ease, box-shadow 160ms ease;
}

button#toggle {
  padding: 0 18px;
  min-width: 88px;
}

.breach-check-btn,
.generate-btn {
  width: 100%;
  margin-top: 14px;
  padding: 12px 16px;
  font-size: 0.98rem;
  box-shadow: 0 12px 28px rgba(13, 148, 133, 0.2);
}

button#toggle:hover,
.breach-check-btn:hover:not(:disabled),
.generate-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

button#toggle:disabled,
.breach-check-btn:disabled,
.generate-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.meter {
  height: 14px;
  margin: 18px 0 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.meter-bar {
  height: 100%;
  width: 4%;
  background: var(--very-weak);
  transition: width 220ms ease, background 220ms ease;
}

.strength-text {
  margin-bottom: 6px;
  color: var(--text);
  font-weight: 700;
}

.crack-time {
  margin-bottom: 18px;
  color: var(--color-primary-300);
  font-weight: 600;
}

.char-limit-error {
  display: none;
  margin-bottom: 12px;
  color: #fda4af;
  font-size: 0.92rem;
  font-weight: 600;
}

.checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checks li {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  line-height: 1.45;
}

.checks li.passed {
  border-color: var(--success-border);
  background: var(--success-surface);
  color: #86efac;
  font-weight: 600;
}

.checks li.failed {
  opacity: 0.72;
}

.pwned-check,
.generated-text,
.loading-pwned {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  line-height: 1.5;
}

.pwned-check,
.generated-text {
  display: none;
}

.generated-text {
  color: #86efac;
  background: var(--success-surface);
  border-color: var(--success-border);
}

.pwned-check.pwned {
  color: #fda4af;
  background: var(--danger-surface);
  border-color: var(--danger-border);
}

.pwned-check.safe {
  color: #86efac;
  background: var(--success-surface);
  border-color: var(--success-border);
}

.loading-pwned {
  display: none;
  color: var(--muted);
}

.loading-pwned p {
  margin: 0;
}

.highlight-pulse {
  animation: highlight-pulse 1.2s ease;
}

@keyframes highlight-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(45, 212, 194, 0.35);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(45, 212, 194, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(45, 212, 194, 0);
  }
}

@media (max-width: 960px) {
  .layout {
    grid-template-columns: 1fr;
  }

  .password-hero__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 769px) {

  .toolsCard {
    min-height: 40vh;
  }

  .panel.center,
  .panel-block {
    padding: 18px;
  }

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

}

@media (max-width: 520px) {
  .password-hero__lead {
    font-size: 1rem;
  }

  .input-row {
    flex-direction: column;
  }

  button#toggle {
    min-height: 48px;
  }
}


.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(8px, 2vw, 16px);
  margin-top: 16px;
}

.contact-options .btn {
  padding: clamp(10px, 2vw, 12px) clamp(16px, 3vw, 24px);
  border-radius: 999px;
  background: var(--color-primary-600);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: filter 160ms ease;
  white-space: nowrap;
}

.contact-options .btn:hover {
  filter: brightness(1.1);
  text-decoration: none;
}


.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 500;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--brand);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 500px;
}

.contact-form button {
  align-self: flex-start;
  padding: 12px 24px;
  border: none;
  border-radius: 999px;
  background: var(--color-primary-600);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: filter 160ms ease;
}

.contact-form button:hover {
  filter: brightness(1.1);
}


body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}