@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
  color-scheme: dark;
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ink: #f4f8ff;
  --muted: #a9bad0;
  --subtle: #101d31;
  --surface: rgba(14, 30, 52, 0.86);
  --surface-strong: rgba(8, 19, 35, 0.94);
  --night: #07111f;
  --night-soft: #0e1c31;
  --line: rgba(139, 191, 255, 0.18);
  --brand: #18b7ff;
  --brand-strong: #7ddfff;
  --brand-soft: rgba(24, 183, 255, 0.14);
  --mint: #2dd4bf;
  --gold: #f2c14e;
  --rose: #be123c;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  --form-action-spacing: 18px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-sans);
  color: var(--ink);
  background:
    linear-gradient(180deg, #050b15 0%, #0a1424 42%, #07101d 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body > main {
  flex: 1 0 auto;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.dev-gated body {
  overflow: hidden;
}

.dev-gated body > :not(.dev-gate) {
  visibility: hidden;
}

.dev-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 18%, rgba(24, 183, 255, 0.22), transparent 34%),
    linear-gradient(135deg, #050b15, #0a1a2f 58%, #050b15);
}

.dev-gate__shell {
  display: grid;
  gap: 16px;
  width: min(480px, 100%);
}

.dev-gate__notice {
  padding: 16px 18px;
  border: 1px solid rgba(125, 223, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(10, 26, 47, 0.86);
  box-shadow: var(--shadow);
  color: var(--muted);
  line-height: 1.45;
}

.dev-gate__notice strong,
.dev-gate__notice span {
  display: block;
}

.dev-gate__notice strong {
  margin-bottom: 4px;
  color: #f8fbff;
  font-size: 18px;
}

.dev-gate__panel {
  width: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(14, 30, 52, 0.94);
  box-shadow: var(--shadow);
}

.dev-gate__panel img {
  display: block;
  margin-bottom: 18px;
}

.dev-gate__panel h1 {
  margin: 0;
  font-size: 30px;
  line-height: 1.1;
}

.dev-gate__panel p {
  color: var(--muted);
  line-height: 1.55;
}

.dev-gate__panel label {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-weight: 800;
}

.dev-gate__panel input {
  width: 100%;
  margin-top: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  background: rgba(5, 13, 25, 0.78);
  font: inherit;
}

.dev-gate__panel button {
  width: 100%;
  min-height: 46px;
  margin-top: 16px;
  border: 0;
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(135deg, #0284c7, #0f766e);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.dev-gate__error {
  display: block;
  min-height: 22px;
  margin-top: 10px;
  color: #ffe9b0;
  font-weight: 800;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--night);
  color: #fff;
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 13, 25, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav,
.hero-grid,
.section-inner,
.page-hero,
.footer-inner {
  width: min(1440px, calc(100% - 72px));
  margin: 0 auto;
}

.nav {
  position: relative;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.section-inner,
.page-hero,
.footer-inner {
  max-width: 1440px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
}

.brand span {
  white-space: nowrap;
  color: #fff;
  background: linear-gradient(135deg, #ffffff 12%, #7ddfff 48%, #2dd4bf 86%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 22px rgba(24, 183, 255, 0.18);
  font-size: 19px;
  line-height: 1;
}

.brand-logo {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  filter:
    drop-shadow(0 0 2px rgba(255, 255, 255, 0.68))
    drop-shadow(0 0 16px rgba(24, 183, 255, 0.48));
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 10px 12px;
  border-bottom: 2px solid transparent;
  border-radius: 7px;
  color: #b7c6da;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links .active {
  color: #fff;
  background: var(--brand-soft);
}

.nav-links .active {
  border-bottom-color: var(--mint);
}

.nav-links .download-link {
  color: #fff;
  background: linear-gradient(135deg, #0369a1, #0f766e);
  box-shadow: 0 10px 26px rgba(14, 165, 233, 0.22);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(5, 11, 21, 0.96) 0%, rgba(7, 22, 40, 0.96) 52%, rgba(4, 12, 24, 0.98) 100%),
    linear-gradient(180deg, rgba(24, 183, 255, 0.18), rgba(45, 212, 191, 0.06));
  color: #fff;
}

.home-hero {
  background:
    linear-gradient(115deg, rgba(5, 11, 21, 0.96) 0%, rgba(8, 26, 48, 0.95) 54%, rgba(5, 12, 23, 0.98) 100%),
    linear-gradient(135deg, rgba(24, 183, 255, 0.20), rgba(242, 193, 78, 0.08) 42%, rgba(45, 212, 191, 0.14));
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(139, 191, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 191, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.82), transparent 88%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 52px;
  background: linear-gradient(180deg, rgba(5, 11, 21, 0), #050b15);
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 360px;
  padding: 34px 0 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 56px;
  align-items: center;
}

.home-hero-grid {
  grid-template-columns: minmax(0, 1fr);
  justify-content: start;
}

.home-hero-lockup {
  display: grid;
  grid-template-columns: minmax(180px, 280px) minmax(0, 1fr);
  gap: 38px;
  align-items: center;
  max-width: 1280px;
}

.home-hero-copy {
  min-width: 0;
}

.home-brand-visual {
  margin: 0;
  justify-self: start;
}

.home-brand-visual img {
  display: block;
  width: min(100%, 280px);
  height: auto;
  filter:
    drop-shadow(0 24px 52px rgba(0, 0, 0, 0.34))
    drop-shadow(0 0 24px rgba(24, 183, 255, 0.20));
}

.password-bunker-hero .hero-grid {
  grid-template-columns: minmax(0, 1fr);
}

.password-bunker-hero .hero-title-lockup {
  align-items: center;
  max-width: 1280px;
}

.password-bunker-hero .hero-title-lockup h1 {
  font-size: clamp(24px, 2.25vw, 31px);
  white-space: nowrap;
}

.eyebrow {
  margin: 0 0 14px;
  color: #bae6fd;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-hero .eyebrow,
.section .eyebrow {
  color: var(--brand-strong);
}

h1,
h2,
h3,
p,
li {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  max-width: 1280px;
  font-size: clamp(28px, 2.15vw, 36px);
  line-height: 1.08;
  letter-spacing: -0.012em;
}

h2 {
  margin: 0;
  font-size: clamp(23px, 2vw, 29px);
  line-height: 1.14;
  letter-spacing: -0.01em;
}

h3 {
  margin: 0 0 10px;
  font-size: 19px;
  line-height: 1.2;
}

.hero-copy,
.section-lead,
.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.hero-copy {
  margin: 12px 0 0;
  max-width: 1120px;
  color: rgba(230, 241, 255, 0.86);
  font-size: 17px;
  line-height: 1.5;
  white-space: nowrap;
}

.hero-title-lockup,
.product-heading,
.app-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-title-lockup {
  align-items: flex-start;
  max-width: 760px;
}

.hero-title-lockup h1 {
  font-size: clamp(28px, 3vw, 38px);
}

.app-icon {
  display: block;
  border-radius: 22%;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.app-icon.small {
  width: 58px;
  height: 58px;
}

.app-icon.medium {
  width: 82px;
  height: 82px;
}

.hero-icon {
  width: 96px;
  height: 96px;
  flex: 0 0 auto;
}

.guide-icon {
  width: 88px;
  height: 88px;
  margin-bottom: 22px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.compact-actions {
  margin-top: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 7px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: transform 150ms ease, border-color 150ms ease, background 150ms ease, box-shadow 150ms ease, color 150ms ease;
}

.card-title {
  margin: 0 0 10px;
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: 0;
}

.button.primary {
  color: #fff;
  border-color: rgba(125, 223, 255, 0.36);
  background: linear-gradient(135deg, #078bc8, #0b8f83);
  box-shadow: 0 10px 26px rgba(14, 165, 233, 0.24);
}

.button.primary:hover {
  background: linear-gradient(135deg, #0ea5e9, #14b8a6);
  box-shadow: 0 13px 30px rgba(14, 165, 233, 0.34);
  transform: translateY(-1px);
}

.button.secondary {
  color: #dff7ff;
  border-color: rgba(125, 223, 255, 0.42);
  background: rgba(9, 34, 57, 0.78);
}

.button.secondary:hover {
  color: #fff;
  border-color: rgba(125, 223, 255, 0.72);
  background: rgba(24, 183, 255, 0.16);
  transform: translateY(-1px);
}

.button.light {
  color: #fff;
  background: rgba(15, 29, 50, 0.92);
  border-color: rgba(125, 223, 255, 0.30);
}

.button.text {
  min-height: 36px;
  padding: 7px 4px;
  color: var(--brand-strong);
  background: transparent;
  border-color: transparent;
}

.button.text::after {
  content: "\2192";
  margin-left: 7px;
  transition: transform 150ms ease;
}

.button.text:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.button.text:hover::after {
  transform: translateX(3px);
}

a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible {
  outline: 3px solid rgba(125, 223, 255, 0.90);
  outline-offset: 3px;
}

.button.disabled {
  color: rgba(244, 248, 255, 0.58);
  border-color: rgba(139, 191, 255, 0.16);
  background: rgba(148, 163, 184, 0.10);
  cursor: default;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 750;
}

.section {
  padding: 46px 0;
}

.home-catalog {
  padding: 30px 0 30px;
}

.home-catalog h2 {
  font-size: clamp(23px, 1.9vw, 28px);
}

.home-catalog .section-lead {
  max-width: 980px;
  margin-top: 12px;
  margin-bottom: 0;
  line-height: 1.45;
}

.home-catalog .card {
  padding: 18px;
}

.home-catalog .card p {
  line-height: 1.5;
}

.home-finder-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 980px;
  margin-top: 18px;
}

.home-finder-card h3,
.home-finder-card p {
  margin: 0;
}

.home-finder-card p {
  margin-top: 6px;
}

.language-selector {
  position: relative;
  flex: 0 0 auto;
}

.language-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 142px;
  min-height: 40px;
  padding: 8px 10px;
  border: 1px solid rgba(125, 223, 255, 0.22);
  border-radius: 7px;
  color: #dff7ff;
  background: rgba(24, 183, 255, 0.09);
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
}

.language-current-country {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.language-button .language-flag {
  width: 24px;
  height: 16px;
  flex-basis: 24px;
}

.language-button:hover,
.language-button[aria-expanded="true"] {
  color: #fff;
  background: var(--brand-soft);
}

.language-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.language-menu {
  position: absolute;
  top: calc(100% + 7px);
  right: 0;
  z-index: 20;
  width: 220px;
  min-width: 220px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0b192d;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

.language-menu[hidden] {
  display: none;
}

.language-menu button {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  padding: 9px 10px;
  border: 0;
  border-radius: 5px;
  color: #c7d5e8;
  background: transparent;
  font: inherit;
  font-weight: 750;
  text-align: left;
  cursor: pointer;
  white-space: nowrap;
}

.language-flag {
  display: block;
  width: 26px;
  height: 18px;
  flex: 0 0 26px;
  border-radius: 2px;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.flag-us { background-image: linear-gradient(to bottom, #b22234 0 8%, #fff 8% 16%, #b22234 16% 24%, #fff 24% 32%, #b22234 32% 40%, #fff 40% 48%, #b22234 48% 56%, #fff 56% 64%, #b22234 64% 72%, #fff 72% 80%, #b22234 80% 88%, #fff 88% 94%, #b22234 94%); position: relative; }
.flag-us::after { content: ""; position: absolute; inset: 0 auto auto 0; width: 42%; height: 54%; background: #3c3b6e; }
.flag-do { background: linear-gradient(to right, transparent 42%, #fff 42% 58%, transparent 58%), linear-gradient(to bottom, #002d62 0 42%, #fff 42% 58%, #ce1126 58%); }
.flag-br { background-color: #009c3b; background-image: linear-gradient(33deg, transparent 34%, #ffdf00 35% 65%, transparent 66%), linear-gradient(-33deg, transparent 34%, #ffdf00 35% 65%, transparent 66%), radial-gradient(circle, #002776 0 28%, transparent 30%); }
.flag-fr { background: linear-gradient(to right, #0055a4 0 33.33%, #fff 33.33% 66.66%, #ef4135 66.66%); }
.flag-de { background: linear-gradient(to bottom, #000 0 33.33%, #dd0000 33.33% 66.66%, #ffce00 66.66%); }
.flag-it { background: linear-gradient(to right, #009246 0 33.33%, #fff 33.33% 66.66%, #ce2b37 66.66%); }

.language-country {
  width: 27px;
  flex: 0 0 27px;
  color: #d8e5f7;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-align: center;
}

.language-menu button:hover,
.language-menu button.active {
  color: #fff;
  background: var(--brand-soft);
}

.home-finder-card .button {
  flex: 0 0 auto;
  white-space: nowrap;
}

.section.tint {
  background:
    linear-gradient(180deg, rgba(9, 22, 39, 0.86), rgba(5, 13, 25, 0.90));
}

.section.dark {
  background: var(--night);
  color: #fff;
}

.section.dark .section-lead,
.section.dark p,
.section.dark li {
  color: rgba(255, 255, 255, 0.76);
}

.page-hero {
  padding: 40px 0 22px;
  background:
    linear-gradient(180deg, rgba(8, 19, 35, 0.90), rgba(5, 11, 21, 0));
}

.page-hero h1 {
  max-width: 920px;
  font-size: clamp(28px, 2.35vw, 36px);
  line-height: 1.08;
}

.page-hero p {
  margin: 12px 0 0;
}

.page-hero + .section {
  padding-top: 12px;
}

.pricing-hero h1 {
  max-width: 1280px;
  font-size: clamp(28px, 2.25vw, 38px);
  white-space: nowrap;
}

.pricing-hero p {
  max-width: 1120px;
}

.pricing-main-section {
  padding-top: 8px;
}

.pricing-main-section .section-lead {
  max-width: 1120px;
}

.cards,
.feature-list,
.screenshot-strip,
.contact-grid,
.guide-image-grid,
.app-grid {
  display: grid;
  gap: 18px;
}

.cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.new-releases {
  position: relative;
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.new-releases-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.new-releases-heading h2 {
  margin-bottom: 0;
}

.new-releases-all {
  flex: 0 0 auto;
  padding: 10px 0;
  color: var(--brand-strong);
  font-weight: 850;
  text-decoration: none;
}

.new-releases-all:hover {
  color: #fff;
}

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

.release-feature {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  min-height: 330px;
  border: 1px solid rgba(125, 223, 255, 0.36);
  border-radius: 12px;
  background:
    radial-gradient(circle at 15% 50%, rgba(24, 183, 255, 0.22), transparent 34%),
    linear-gradient(120deg, rgba(8, 26, 48, 0.98), rgba(10, 29, 52, 0.92) 50%, rgba(6, 17, 32, 0.98));
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.release-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(105deg, transparent 20%, rgba(125, 223, 255, 0.08) 48%, transparent 72%);
  transform: translateX(-55%);
  animation: release-sheen 8s ease-in-out infinite;
  pointer-events: none;
}

.release-feature-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 310px;
  background:
    linear-gradient(rgba(139, 191, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 191, 255, 0.06) 1px, transparent 1px);
  background-size: 38px 38px;
}

.release-feature-art img {
  position: relative;
  z-index: 2;
  width: clamp(112px, 14vw, 158px);
  height: auto;
  filter:
    drop-shadow(0 24px 34px rgba(0, 0, 0, 0.45))
    drop-shadow(0 0 26px rgba(24, 183, 255, 0.36));
}

.release-orbit {
  position: absolute;
  border: 1px solid rgba(125, 223, 255, 0.28);
  border-radius: 50%;
}

.release-orbit-one {
  width: 230px;
  height: 230px;
}

.release-orbit-two {
  width: 290px;
  height: 150px;
  transform: rotate(-18deg);
  border-color: rgba(45, 212, 191, 0.24);
}

.release-feature-copy {
  align-self: center;
  padding: 38px 44px 38px 24px;
}

.release-feature-copy h3 {
  margin: 12px 0 10px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.release-feature-copy > p:not(.platform-support-label) {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.release-kicker-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-left: auto;
}

.release-label {
  padding: 3px 0 3px 9px;
  border-left: 3px solid var(--brand);
  color: #d9f6ff;
  background: transparent;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.release-actions {
  margin-top: 22px;
}

.cifranote-feature .release-feature-art img {
  border-radius: 24%;
}

@keyframes release-sheen {
  0%, 48% { transform: translateX(-55%); }
  68%, 100% { transform: translateX(65%); }
}

@media (min-width: 1100px) {
  .home-hero .hero-grid {
    min-height: 190px;
    padding-top: 8px;
    padding-bottom: 10px;
  }

  .home-hero-lockup {
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 24px;
  }

  .home-brand-visual img {
    width: 160px;
  }

  .home-hero-copy .eyebrow {
    margin-bottom: 10px;
  }

  .home-hero-copy .hero-copy {
    margin-top: 9px;
  }

  .home-catalog {
    padding-top: 14px;
    padding-bottom: 16px;
  }

  .home-catalog > .section-inner > .eyebrow {
    margin-bottom: 9px;
  }

  .home-catalog .section-lead {
    margin-top: 8px;
  }

  .home-finder-card {
    margin-top: 9px;
  }

  .home-catalog .home-finder-card {
    padding-top: 11px;
    padding-bottom: 11px;
  }

  .new-releases {
    margin-top: 14px;
    padding-top: 12px;
  }

  .new-releases-heading {
    margin-bottom: 8px;
  }

  .new-releases-heading .eyebrow {
    margin-bottom: 8px;
  }

  .release-feature {
    grid-template-columns: minmax(150px, 0.65fr) minmax(0, 1.35fr);
    min-height: 220px;
  }

  .release-feature-art {
    min-height: 210px;
  }

  .release-feature-art img {
    width: 112px;
  }

  .release-orbit-one {
    width: 190px;
    height: 190px;
  }

  .release-orbit-two {
    width: 240px;
    height: 124px;
  }

  .release-feature-copy {
    padding-left: 16px;
    padding-right: 22px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .release-feature-copy h3 {
    margin-top: 8px;
    margin-bottom: 7px;
    font-size: 30px;
  }

  .release-feature-copy > p:not(.platform-support-label) {
    margin-top: 8px;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.45;
  }

  .release-feature-copy .platform-support-label {
    margin-top: 8px;
    margin-bottom: 5px;
  }

  .release-actions {
    margin-top: 12px;
  }
}

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

@media (max-width: 760px) {
  .new-releases-heading {
    align-items: start;
    flex-direction: column;
    gap: 6px;
  }

  .release-feature {
    grid-template-columns: 1fr;
  }

  .release-feature-art {
    min-height: 240px;
  }

  .release-feature-copy {
    padding: 8px 24px 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .release-feature::before {
    animation: none;
  }
}

.pricing-app-cards {
  grid-template-columns: repeat(auto-fit, minmax(220px, 320px));
  margin-top: 0;
  margin-bottom: 14px;
}

.pricing-app-card {
  padding: 18px 20px;
  text-decoration: none;
}

.pricing-app-card h3 {
  margin-bottom: 8px;
}

.pricing-app-card .price {
  margin: 0;
  font-size: 30px;
}

.feature-list,
.contact-grid,
.guide-image-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-grid {
  align-items: stretch;
}

.contact-information {
  background:
    linear-gradient(145deg, rgba(14, 30, 52, 0.94), rgba(8, 24, 43, 0.88));
}

.contact-information a {
  color: var(--brand-strong);
  text-underline-offset: 3px;
}

.card.form-shell {
  padding-bottom: var(--form-action-spacing);
}

.form-shell > button[type="submit"],
.form-shell > form > button[type="submit"] {
  margin-top: var(--form-action-spacing);
}

.form-shell > .actions {
  margin-top: var(--form-action-spacing);
}

.contact-details {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 18px 18px 18px 38px !important;
  border-top: 1px solid var(--line);
  background: rgba(5, 17, 31, 0.34);
}

.contact-details li::marker {
  color: var(--mint);
}

.contact-main-section {
  padding-bottom: 34px;
}

.about-overview-section {
  padding-bottom: 32px;
}

.about-launch-section {
  padding-top: 34px;
  padding-bottom: 36px;
}

.support-finder {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.support-finder.product-finder {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.product-finder .product-picker {
  grid-column: 1;
  grid-row: 1;
  height: 100%;
}

.product-finder .product-app-list {
  grid-column: 1 / -1;
  grid-row: 2;
}

.product-finder .product-help-card {
  grid-column: 2 / -1;
  grid-row: 1;
  height: 100%;
}

.product-app-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: start;
  align-items: stretch;
  gap: 18px;
}

.product-finder-app-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-rows: 150px 96px auto 22px 7px 42px;
  gap: 0;
  height: 100%;
}

.product-finder-app-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(105deg, transparent 27%, rgba(125, 223, 255, 0.028) 49%, transparent 71%);
  transform: translateX(-60%);
  animation: release-sheen 16s ease-in-out infinite;
  pointer-events: none;
}

.product-finder-app-card:nth-child(2)::before {
  animation-delay: -5.3s;
}

.product-finder-app-card:nth-child(3)::before {
  animation-delay: -10.6s;
}

.product-finder-app-card > * {
  position: relative;
  z-index: 1;
}

.product-finder-app-card .app-card-header {
  grid-row: 1;
  align-items: flex-start;
  margin: 0;
}

.product-finder-app-card .app-card-header h3 {
  color: #72e0cf;
}

.product-platform-panel {
  grid-row: 2;
  height: 96px;
  padding: 16px 14px;
  border-top: 1px solid var(--line);
  background: rgba(5, 17, 31, 0.34);
  margin: 0;
}

.product-platform-panel .platform-support-label {
  margin: 0 0 10px;
}

.product-platform-panel .badge-row {
  margin: 0;
}

.product-finder-app-card > p:not(.platform-support-label) {
  grid-row: 3;
  align-self: start;
  padding: 7px 0;
  margin: 0;
}

.product-info-actions {
  grid-row: 4;
  align-self: center;
  margin: 0;
}

.product-info-actions .button.text {
  min-height: auto;
  padding: 0 4px;
  line-height: 22px;
}

.product-purchase-actions {
  grid-row: 6;
  align-self: end;
  margin: 0;
  padding-top: 0;
}

.product-purchase-actions .button {
  min-height: 42px;
  padding: 9px 13px;
  font-size: 14px;
}

.product-purchase-actions .store-button {
  min-width: 0;
}

.product-finder-app-card[data-product-id="password-bunker-pro"] .product-purchase-actions {
  flex-wrap: nowrap;
  gap: 6px;
}

.product-finder-app-card[data-product-id="password-bunker-pro"] .product-purchase-actions .button {
  min-height: 38px;
  padding: 7px 9px;
  font-size: 13px;
  white-space: nowrap;
}

@media (min-width: 1100px) {
  .product-finder-app-card .app-card-header {
    overflow: hidden;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-finder-app-card::before {
    animation: none;
    transform: none;
  }
}

.support-main-section {
  padding-top: 12px;
  padding-bottom: 30px;
}

.support-extra-section {
  padding-top: 30px;
  padding-bottom: 34px;
}

.support-picker h2 {
  font-size: 22px;
}

.support-result {
  display: grid;
  align-content: start;
  gap: 14px;
}

.support-result p {
  color: var(--muted);
  line-height: 1.5;
}

.products-platform-directory {
  scroll-margin-top: 92px;
  padding-top: 18px;
  padding-bottom: 34px;
}

.products-platform-directory .section-lead {
  margin-top: 0;
  max-width: 900px;
}

.app-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.app-listing {
  display: grid;
  gap: 18px;
}

.platform-support-label {
  margin: 0 0 -10px;
  color: var(--brand-strong);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-help-card {
  align-self: stretch;
  background:
    linear-gradient(135deg, rgba(14, 30, 52, 0.78), rgba(8, 19, 35, 0.90));
}

.app-summary {
  margin: 0;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.platform-badge,
.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
}

.platform-badge.windows {
  color: #dff7ff;
  background: rgba(14, 165, 233, 0.18);
}

.platform-badge.android {
  color: #d9fff8;
  background: rgba(20, 184, 166, 0.18);
}

.platform-badge.ios {
  color: #f8fbff;
  background: rgba(148, 163, 184, 0.20);
}

.status-pill {
  color: #dff7ff;
  background: var(--brand-soft);
}

.status-pill.available {
  color: #d9fff8;
  background: rgba(45, 212, 191, 0.18);
}

.status-pill.soon {
  color: #ffe9b0;
  background: rgba(242, 193, 78, 0.18);
}

.status-pill.planned {
  color: #ffe9b0;
  background: rgba(242, 193, 78, 0.18);
}

.empty-platform {
  max-width: 720px;
  margin-top: 34px;
  padding: 24px;
  border: 1px dashed rgba(139, 191, 255, 0.36);
  border-radius: var(--radius);
  background: rgba(14, 30, 52, 0.64);
}

.empty-platform p {
  color: var(--muted);
  line-height: 1.65;
}

.card,
.feature,
.notice,
.product-heading,
.guide-section,
.guide-toc,
.app-screenshot,
.guide-image,
.guide-hero-image {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.card,
.feature,
.notice,
.product-heading,
.guide-section,
.guide-toc {
  padding: 20px;
}

.card p,
.card li,
.feature p,
.guide-section p,
.guide-section li {
  color: var(--muted);
  line-height: 1.5;
}

.card ul {
  padding-left: 20px;
}

.feature {
  border-left: 4px solid var(--mint);
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--brand-strong);
  font-weight: 850;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.product-heading {
  margin: 28px 0 6px;
}

.product-heading h3,
.product-heading p {
  margin: 0;
}

.product-heading p {
  margin-top: 6px;
}

.screenshot-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 34px 0;
}

.app-screenshot,
.guide-image,
.guide-hero-image {
  margin: 0;
  padding: 12px;
}

.app-screenshot img,
.guide-hero-image img,
.guide-image img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #0a1424;
}

.app-screenshot img {
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: top;
}

.app-screenshot figcaption,
.guide-hero-image figcaption,
.guide-image figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.notice {
  border-color: rgba(242, 193, 78, 0.30);
  background: rgba(242, 193, 78, 0.12);
  color: #ffe9b0;
  line-height: 1.6;
}

.price {
  margin: 14px 0 16px;
  color: #eef7ff;
  font-size: clamp(24px, 1.9vw, 30px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  font-weight: 900;
  text-shadow: 0 0 22px rgba(24, 183, 255, 0.16);
}

.pricing-card {
  max-width: 620px;
}

.guide-actions {
  margin-top: 24px;
}

.guide-hero-image {
  max-width: 430px;
  margin-top: 28px;
}

.guide-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.guide-toc {
  position: sticky;
  top: 96px;
}

.guide-toc strong,
.guide-toc a {
  display: block;
}

.guide-toc a {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 750;
  text-decoration: none;
}

.guide-toc a:hover {
  color: var(--brand-strong);
}

.guide-content {
  display: grid;
  gap: 18px;
}

.guide-section {
  scroll-margin-top: 110px;
}

.guide-section h2 {
  font-size: clamp(22px, 2vw, 28px);
}

.guide-image {
  max-width: 380px;
}

.guide-image,
.guide-image-grid {
  margin: 20px 0;
}

.guide-callout {
  padding: 16px;
  border-left: 4px solid var(--gold);
  background: rgba(242, 193, 78, 0.12);
  color: #ffe9b0;
  line-height: 1.6;
}

.form-shell label {
  display: block;
  margin-top: 14px;
  margin-bottom: 7px;
  color: var(--muted);
  font-weight: 750;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  margin-top: 0;
  padding: 11px 13px;
  border: 1px solid rgba(139, 191, 255, 0.26);
  border-radius: 7px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background-color: rgba(5, 13, 25, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.form-shell input:focus,
.form-shell select:focus,
.form-shell textarea:focus {
  border-color: rgba(125, 223, 255, 0.72);
  background-color: rgba(5, 13, 25, 0.95);
  box-shadow:
    0 0 0 3px rgba(24, 183, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.form-shell select {
  appearance: none;
  padding-right: 42px;
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, #7ddfff 50%),
    linear-gradient(135deg, #7ddfff 50%, transparent 50%),
    linear-gradient(135deg, rgba(24, 183, 255, 0.16), rgba(45, 212, 191, 0.08));
  background-position:
    calc(100% - 21px) 50%,
    calc(100% - 15px) 50%,
    calc(100% - 38px) 50%;
  background-size:
    6px 6px,
    6px 6px,
    30px 30px;
  background-repeat: no-repeat;
}

.form-shell select:disabled {
  cursor: not-allowed;
  color: rgba(169, 186, 208, 0.62);
  background-color: rgba(5, 13, 25, 0.50);
  border-color: rgba(139, 191, 255, 0.14);
}

.form-shell select option {
  color: var(--ink);
  background-color: #07111f;
}

.native-select-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  clip-path: inset(50%);
}

.custom-select {
  margin-top: 0;
  position: relative;
}

.custom-select__button {
  width: 100%;
  min-height: 44px;
  padding: 11px 42px 11px 13px;
  border: 1px solid rgba(139, 191, 255, 0.26);
  border-radius: 7px;
  color: var(--ink);
  background:
    linear-gradient(45deg, transparent 50%, #7ddfff 50%) calc(100% - 21px) 50% / 6px 6px no-repeat,
    linear-gradient(135deg, #7ddfff 50%, transparent 50%) calc(100% - 15px) 50% / 6px 6px no-repeat,
    linear-gradient(135deg, rgba(24, 183, 255, 0.16), rgba(45, 212, 191, 0.08)) calc(100% - 38px) 50% / 30px 30px no-repeat,
    rgba(5, 13, 25, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  font: inherit;
  font-size: 15px;
  text-align: left;
  cursor: pointer;
}

.custom-select.is-open .custom-select__button {
  border-color: rgba(125, 223, 255, 0.64);
  border-bottom-color: rgba(125, 223, 255, 0.22);
  border-radius: 7px 7px 0 0;
  background:
    linear-gradient(135deg, #7ddfff 50%, transparent 50%) calc(100% - 21px) 50% / 6px 6px no-repeat,
    linear-gradient(45deg, transparent 50%, #7ddfff 50%) calc(100% - 15px) 50% / 6px 6px no-repeat,
    linear-gradient(135deg, rgba(24, 183, 255, 0.16), rgba(45, 212, 191, 0.08)) calc(100% - 38px) 50% / 30px 30px no-repeat,
    rgba(5, 13, 25, 0.95);
}

.custom-select__button:focus {
  outline: none;
  border-color: rgba(125, 223, 255, 0.72);
  box-shadow:
    0 0 0 3px rgba(24, 183, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.custom-select.is-disabled .custom-select__button {
  cursor: not-allowed;
  color: rgba(169, 186, 208, 0.62);
  background:
    linear-gradient(45deg, transparent 50%, rgba(125, 223, 255, 0.42) 50%) calc(100% - 21px) 50% / 6px 6px no-repeat,
    linear-gradient(135deg, rgba(125, 223, 255, 0.42) 50%, transparent 50%) calc(100% - 15px) 50% / 6px 6px no-repeat,
    rgba(5, 13, 25, 0.50);
  border-color: rgba(139, 191, 255, 0.14);
}

.custom-select__menu {
  display: none;
  max-height: 230px;
  overflow-y: auto;
  padding: 6px;
  border: 1px solid rgba(139, 191, 255, 0.26);
  border-top: 0;
  border-radius: 0 0 7px 7px;
  background:
    linear-gradient(180deg, rgba(8, 21, 38, 0.98), rgba(5, 13, 25, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 18px 45px rgba(0, 0, 0, 0.30);
}

.custom-select.is-open .custom-select__menu {
  display: grid;
  gap: 3px;
}

.custom-select__option {
  width: 100%;
  min-height: 36px;
  padding: 8px 10px;
  border: 0;
  border-radius: 6px;
  color: rgba(244, 248, 255, 0.88);
  background: rgba(5, 13, 25, 0.52);
  font: inherit;
  font-size: 15px;
  text-align: left;
  cursor: pointer;
}

.custom-select__option:hover,
.custom-select__option:focus,
.custom-select__option.is-active {
  outline: none;
  color: #fff;
  background: rgba(24, 183, 255, 0.16);
}

.custom-select__option.is-selected {
  color: #fff;
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.62), rgba(15, 118, 110, 0.56));
  box-shadow: inset 0 0 0 1px rgba(125, 223, 255, 0.18);
}

.custom-select__option.is-selected.is-active {
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.78), rgba(15, 118, 110, 0.70));
}

.custom-select__option.is-selected::before {
  content: "\2713 ";
}

.form-shell textarea {
  min-height: 118px;
  resize: vertical;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 24px;
  margin-bottom: 0;
  color: var(--brand-strong);
  font-weight: 800;
}

.form-status:empty {
  display: none;
}

.site-modal[hidden] {
  display: none;
}

.site-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(2, 8, 18, 0.72);
  backdrop-filter: blur(10px);
}

.site-modal__panel {
  width: min(460px, 100%);
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(14, 30, 52, 0.98), rgba(8, 19, 35, 0.98));
  box-shadow: var(--shadow);
}

.site-modal__panel h2 {
  margin-bottom: 12px;
}

.site-modal__panel p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.55;
}

.site-modal__panel .button {
  margin-top: 12px;
}

.admin-login {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.admin-login-card {
  width: min(440px, 100%);
}

.admin-login-card h1 {
  font-size: 30px;
}

.admin-shell {
  min-height: 100vh;
}

.admin-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 14px 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 13, 25, 0.94);
  backdrop-filter: blur(14px);
}

.admin-brand {
  flex: 0 0 auto;
  background: linear-gradient(105deg, #ffffff 0%, #67e8f9 42%, #2dd4bf 72%, #a7f3d0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 24px;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.admin-brand span {
  color: inherit;
}

.admin-nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
}

.admin-nav-links a,
.admin-account a {
  padding: 7px 8px;
  border-bottom: 2px solid transparent;
  border-radius: 7px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
}

.admin-nav-links a:hover,
.admin-nav-links a.active,
.admin-account a:hover {
  color: #fff;
  background: var(--brand-soft);
}

.admin-nav-links a.active {
  border-bottom-color: var(--mint);
}

.admin-help-select {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  border-radius: 7px;
  background: transparent;
}

.admin-help-select select {
  width: 92px;
  min-height: 38px;
  padding: 8px 32px 8px 10px;
  border: 0;
  border-radius: 7px;
  color: var(--muted);
  background: #071525;
  font: inherit;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
}

.admin-help-select:hover select,
.admin-help-select:focus-within select,
.admin-help-select.active select {
  color: #fff;
  background: var(--brand-soft);
}

.admin-help-select.active {
  box-shadow: inset 0 -2px 0 var(--mint);
}

.admin-help-select select:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 2px;
}

.admin-help-select option {
  color: #fff;
  background: #08172a;
}

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

/* Legacy disclosure-menu styles retained only for cached markup during rollout. */
.admin-help-menu {
  position: relative;
  flex: 0 0 auto;
}

.admin-help-menu summary {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  list-style: none;
}

.admin-help-menu summary::-webkit-details-marker {
  display: none;
}

.admin-help-menu summary::marker {
  content: "";
}

.admin-help-menu summary::after {
  content: "▾";
  color: var(--mint);
  font-size: 11px;
  transition: transform 160ms ease;
}

.admin-help-menu[open] summary::after {
  transform: rotate(180deg);
}

.admin-help-menu summary.active {
  box-shadow: inset 0 -2px 0 var(--mint);
}

.admin-help-menu-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 60;
  width: min(340px, 82vw);
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #08172a;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.38);
}

.admin-help-menu-panel a {
  display: grid;
  gap: 4px;
  padding: 12px;
}

.admin-help-menu-panel a:hover,
.admin-help-menu-panel a:focus-visible {
  background: var(--brand-soft);
  outline: none;
}

.admin-help-menu-panel a strong {
  color: #fff;
}

.admin-help-menu-panel a span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}

.admin-account {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  color: var(--muted);
  font-size: 13px;
}

.admin-account a {
  color: #ffd4d4;
}

.admin-key-reveal {
  padding: 3px 5px;
  border: 0;
  border-radius: 5px;
  color: #7ddfff;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.admin-key-reveal:hover,
.admin-key-reveal:focus-visible {
  color: #fff;
  background: var(--brand-soft);
  outline: 1px solid var(--mint);
}

.admin-key-dialog {
  width: min(680px, calc(100% - 32px));
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--text);
  background: #08172a;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}

.admin-key-dialog::backdrop {
  background: rgba(0, 5, 14, 0.78);
  backdrop-filter: blur(4px);
}

.admin-key-dialog code {
  display: block;
  margin: 18px 0;
  padding: 14px;
  overflow-wrap: anywhere;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #d9fff8;
  background: rgba(3, 10, 19, 0.8);
  font-size: 15px;
  line-height: 1.6;
  user-select: all;
}

.admin-dialog-close {
  float: right;
  padding: 3px 10px;
  border: 0;
  color: var(--muted);
  background: transparent;
  font-size: 28px;
  cursor: pointer;
}

.admin-view-switch {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.admin-view-switch .active {
  color: #fff;
  background: var(--brand-soft);
  box-shadow: inset 0 -2px 0 var(--mint);
}

.admin-archive-action {
  position: relative;
}

.admin-archive-action summary {
  color: #ffd4a8;
  font-weight: 800;
  cursor: pointer;
}

.admin-archive-action form {
  display: grid;
  gap: 8px;
  min-width: 250px;
  margin-top: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #08172a;
}

.admin-archive-action input {
  width: 100%;
  margin-top: 5px;
}

.admin-page-hero {
  padding-top: 48px;
}

.admin-dashboard-metrics {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.admin-dashboard-metrics .admin-metric {
  display: flex;
  width: 100%;
  min-height: 170px;
  min-width: 0;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.admin-dashboard-metrics .admin-metric h3 {
  overflow-wrap: anywhere;
}

.admin-recent-licenses {
  display: block;
  width: 100%;
  margin-top: 42px;
}

.admin-recent-licenses h2 {
  margin-bottom: 20px;
}

.admin-hero-actions {
  margin-top: 22px;
}

.admin-info {
  display: flex;
  gap: 10px 18px;
  align-items: baseline;
  flex-wrap: wrap;
  padding: 16px 18px;
  border: 1px solid rgba(45, 212, 191, 0.24);
  border-radius: 10px;
  color: var(--muted);
  background: rgba(45, 212, 191, 0.07);
}

.admin-info strong {
  color: #d9fff8;
}

.admin-document-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.admin-document-tabs a {
  display: grid;
  gap: 7px;
  color: inherit;
  text-decoration: none;
}

.admin-document-tabs a:hover,
.admin-document-tabs a.active {
  border-color: rgba(45, 212, 191, 0.46);
  background: rgba(45, 212, 191, 0.08);
}

.admin-document-tabs span {
  color: var(--muted);
  line-height: 1.45;
}

.admin-document > header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.admin-document h2,
.admin-document .eyebrow {
  margin-bottom: 0;
}

.admin-document pre {
  max-height: 68vh;
  margin: 20px 0 0;
  padding: 20px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #d9e7f6;
  background: rgba(3, 10, 19, 0.72);
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  line-height: 1.7;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.admin-create-form {
  max-width: 1180px;
  margin-bottom: 28px;
}

.admin-create-form#create-license {
  width: 100%;
  max-width: none;
}

@media (min-width: 900px) {
  .admin-create-form#create-license > .form-help {
    white-space: nowrap;
  }
}

.admin-license-fields {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.admin-license-field {
  display: grid;
  grid-column: span 2;
  gap: 8px;
}

.admin-license-field:nth-child(4),
.admin-license-field:nth-child(6) {
  grid-column: span 3;
  order: 1;
}

.admin-license-fields > .checkbox-row {
  grid-column: 1 / -1;
  order: 2;
  margin: 0;
}

.admin-license-fields > .admin-complimentary-option {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  width: fit-content;
  max-width: 100%;
  cursor: pointer;
}

.admin-complimentary-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin: 0;
  padding: 0;
  flex: 0 0 18px;
  accent-color: var(--accent, #27d7c4);
}

.admin-license-field input,
.admin-license-field select {
  width: 100%;
}

.table-shell {
  width: 100%;
  margin-top: 28px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

th,
td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--brand-strong);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

td {
  color: var(--muted);
}

.admin-metric {
  color: inherit;
  text-decoration: none;
  transition: transform 150ms ease, border-color 150ms ease;
}

.admin-metric:hover {
  transform: translateY(-2px);
  border-color: rgba(125, 223, 255, 0.44);
}

.admin-metric span {
  color: var(--brand-strong);
  font-weight: 800;
  font-size: 13px;
}

.admin-empty {
  padding: 34px 18px;
  text-align: center;
  color: var(--muted);
}

.admin-status {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}

.admin-status.success { color: #b9ffe3; background: rgba(45, 212, 191, 0.15); }
.admin-status.pending { color: #ffe9b0; background: rgba(242, 193, 78, 0.15); }
.admin-status.danger { color: #ffd0d0; background: rgba(248, 113, 113, 0.15); }

.admin-row-form {
  display: grid;
  gap: 8px;
  min-width: 300px;
}

.admin-row-form label {
  display: grid;
  grid-template-columns: 48px minmax(190px, 1fr);
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.admin-row-form input {
  min-height: 36px;
  margin: 0;
  padding: 7px 9px;
  font-size: 14px;
}

.admin-row-form .admin-customer-field {
  display: grid;
  grid-template-columns: 48px 32px minmax(190px, 1fr);
  align-items: center;
  gap: 8px;
}

.admin-customer-field > label {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.admin-edit-field {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 7px;
  color: #7ddfff;
  background: transparent;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.admin-edit-field:hover,
.admin-edit-field:focus-visible,
.admin-edit-field[aria-pressed="true"] {
  border-color: rgba(45, 212, 191, 0.42);
  color: #d9fff8;
  background: rgba(45, 212, 191, 0.13);
  outline: none;
}

.admin-customer-field input[readonly] {
  border-color: transparent;
  color: var(--text);
  background: rgba(5, 13, 25, 0.28);
  box-shadow: none;
  cursor: default;
}

.admin-customer-field.is-editing input {
  border-color: rgba(45, 212, 191, 0.55);
  color: #effffc;
  background: rgba(9, 49, 61, 0.72);
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.09);
}

.admin-customer-save[hidden] {
  display: none;
}

.admin-release {
  min-width: 250px;
}

.admin-release summary {
  color: var(--brand-strong);
  font-weight: 800;
  cursor: pointer;
}

.admin-release form {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.admin-release label {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.admin-release select,
.admin-release input {
  min-height: 38px;
  margin: 0;
  padding: 7px 9px;
  font-size: 13px;
}

.form-help {
  margin-top: 0;
  color: var(--muted);
  line-height: 1.5;
}

.message-cell {
  min-width: 280px;
  white-space: normal;
}

.inline-form {
  margin: 0;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.inline-form .button {
  min-height: 34px;
  padding: 8px 10px;
}

.site-footer {
  flex-shrink: 0;
  border-top: 1px solid var(--line);
  background: rgba(5, 11, 21, 0.92);
}

.footer-inner {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.footer-links a {
  color: var(--muted);
}

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

.legal-content {
  display: grid;
  gap: 28px;
  max-width: 900px;
}

.legal-content section {
  display: grid;
  gap: 10px;
}

.legal-content h2,
.legal-content p,
.legal-content ul {
  margin: 0;
}

.legal-content ul {
  padding-left: 22px;
}

.legal-content li + li {
  margin-top: 8px;
}

@media (max-width: 900px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .nav-links {
    justify-content: flex-start;
    margin-left: 0;
    padding-right: 64px;
  }

  .language-selector {
    position: absolute;
    top: 16px;
    right: 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .cards,
  .feature-list,
  .contact-grid,
  .support-finder,
  .guide-layout,
  .screenshot-strip,
  .guide-image-grid,
  .app-grid {
    grid-template-columns: 1fr;
  }

  .support-finder.product-finder {
    grid-template-columns: 1fr;
  }

  .guide-toc {
    position: static;
  }

  .product-help-card {
    grid-column: auto;
  }

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

  .product-finder-app-card {
    grid-template-rows: auto;
    height: auto;
  }

  .product-finder-app-card .app-card-header,
  .product-finder-app-card > p:not(.platform-support-label) {
    min-height: 0;
    overflow: visible;
  }

  .product-platform-panel {
    height: auto;
    margin-bottom: 18px;
  }

  .product-info-actions,
  .product-purchase-actions {
    grid-row: auto;
    margin-top: 16px;
  }

  .product-finder-app-card .app-card-header,
  .product-platform-panel,
  .product-finder-app-card > p:not(.platform-support-label) {
    grid-row: auto;
  }

  .product-finder .product-picker,
  .product-finder .product-help-card,
  .product-finder .product-app-list {
    grid-column: auto;
    grid-row: auto;
  }

  .home-finder-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-hero-lockup {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .home-brand-visual img {
    width: min(100%, 190px);
  }
}

@media (max-width: 1100px) {
  .admin-nav { align-items: flex-start; flex-wrap: wrap; }
  .admin-nav-links { order: 3; width: 100%; }
  .admin-account { margin-left: auto; }
  .admin-dashboard-metrics { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .admin-license-fields { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .admin-license-field,
  .admin-license-field:nth-child(4),
  .admin-license-field:nth-child(6) { grid-column: span 1; }
}

@media (max-width: 620px) {
  .admin-nav { padding: 12px 14px; gap: 10px; }
  .admin-account span { display: none; }
  .admin-nav-links { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; }
  .admin-nav-links a { white-space: nowrap; }
  .admin-help-select select { white-space: nowrap; }
  .admin-help-menu-panel { position: fixed; top: 112px; right: 14px; }
  .admin-document-tabs { grid-template-columns: 1fr; }
  .admin-dashboard-metrics { grid-template-columns: 1fr; }
  .admin-license-fields { grid-template-columns: 1fr; }
}

.status-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.82;
}

@media (max-width: 560px) {
  .nav,
  .hero-grid,
  .section-inner,
  .page-hero,
  .footer-inner {
    width: min(100% - 32px, 1440px);
  }

  .nav-links a {
    padding: 8px;
    font-size: 15px;
  }

  .nav-links {
    padding-right: 0;
  }

  .nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
  }

  .language-selector {
    grid-column: 2;
    grid-row: 1;
    position: relative;
    top: auto;
    right: auto;
    justify-self: end;
  }

  .language-button {
    min-width: 108px;
    padding-inline: 8px;
    gap: 5px;
  }

  .language-button svg {
    display: none;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    gap: 9px;
    min-width: 0;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .brand span {
    font-size: 14px;
  }

  .home-hero-lockup {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
  }

  .home-brand-visual {
    align-self: start;
    margin-top: 2px;
  }

  .home-brand-visual img {
    width: 64px;
  }

  .product-app-list {
    grid-template-columns: 1fr;
    width: 100%;
    min-width: 0;
  }

  .product-finder,
  .product-finder .product-app-list,
  .product-finder-app-card,
  .product-finder-app-card > * {
    min-width: 0;
  }

  .product-finder-app-card {
    width: 100%;
    overflow: hidden;
  }

  .product-finder-app-card[data-product-id="password-bunker-pro"] .product-purchase-actions {
    flex-wrap: wrap;
  }

  .product-finder-app-card .app-card-header {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: start;
    gap: 12px;
    width: 100%;
  }

  .product-finder-app-card .app-icon.small {
    width: 48px;
    height: 48px;
  }

  .product-finder-app-card h3,
  .product-finder-app-card p {
    overflow-wrap: anywhere;
  }

  .release-feature {
    grid-template-columns: 68px minmax(0, 1fr);
    min-height: 0;
    padding: 18px;
    align-items: start;
  }

  .release-feature-art {
    min-height: 0;
    height: 68px;
    border-radius: 12px;
    background: rgba(24, 183, 255, 0.07);
  }

  .release-feature-art img {
    width: 52px;
    max-height: 52px;
    object-fit: contain;
  }

  .release-feature-art .release-orbit {
    display: none;
  }

  .release-feature-copy {
    min-width: 0;
    padding: 0;
  }

  .release-feature-copy h3 {
    margin: 8px 0 9px;
    font-size: 25px;
  }

  .release-feature-copy > p:not(.platform-support-label) {
    font-size: 15px;
    line-height: 1.5;
  }

  .release-kicker-row {
    align-items: flex-start;
    margin-left: 0;
  }

  .release-actions {
    gap: 8px;
  }

  .release-actions .button {
    padding-inline: 10px;
    font-size: 12px;
  }

  .hero-grid {
    padding: 46px 0 58px;
  }

  .home-hero .hero-grid {
    padding-top: 24px;
    padding-bottom: 34px;
  }

  h1 {
    font-size: 30px;
  }

  .hero-copy,
  .section-lead,
  .page-hero p {
    font-size: 16px;
  }

  .hero-copy {
    white-space: normal;
  }

  .pricing-hero h1 {
    white-space: normal;
  }

  .hero-title-lockup {
    gap: 14px;
  }

  .hero-title-lockup h1 {
    font-size: 28px;
  }

  .hero-icon {
    width: 70px;
    height: 70px;
  }

  .section,
  .page-hero {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .password-bunker-hero .hero-title-lockup h1 {
    font-size: 28px;
    white-space: normal;
  }
}

.pricing-editor {
  max-width: none;
  width: 100%;
  margin-bottom: 22px;
}

.pricing-editor-header,
.pricing-editor-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.pricing-editor-header {
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(139, 191, 255, 0.16);
}

.pricing-editor-header h3,
.pricing-editor-header p {
  margin: 0;
}

.pricing-editor-header p,
.pricing-editor-footer .muted {
  color: var(--muted);
}

.pricing-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.pricing-panel {
  padding: 18px;
  border: 1px solid rgba(139, 191, 255, 0.18);
  border-radius: 12px;
  background: rgba(6, 17, 31, 0.46);
}

.pricing-panel-wide {
  grid-column: 1 / -1;
}

.pricing-panel h4 {
  margin: 0 0 12px;
  color: #70f2ae;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
}

.pricing-field-wide,
.pricing-toggle-wide {
  grid-column: 1 / -1;
}

@media (max-width: 360px) {
  .brand-logo {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .brand span {
    font-size: 12px;
  }
}

.form-shell .pricing-field label,
.form-shell .pricing-toggle {
  margin-top: 0;
}

.pricing-toggle {
  min-height: 43px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(139, 191, 255, 0.20);
  border-radius: 7px;
  background: rgba(5, 13, 25, 0.64);
}

.pricing-toggle input {
  width: auto;
  margin: 0;
}

.pricing-editor-footer {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(139, 191, 255, 0.16);
}

.pricing-editor-footer .button {
  margin-left: auto;
}

@media (max-width: 980px) {
  .pricing-panel-grid,
  .pricing-field-grid {
    grid-template-columns: 1fr;
  }

  .pricing-editor-header,
  .pricing-editor-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .pricing-editor-footer .button {
    margin-left: 0;
  }
}
