:root {
  --ink-950: #041112;
  --ink-900: #071b1c;
  --ink-850: #0a2324;
  --ink-800: #0d2a2b;
  --ink-700: #16393a;
  --paper: #f5f8f5;
  --paper-warm: #eef4ef;
  --white: #ffffff;
  --text: #173031;
  --muted: #5e7473;
  --muted-dark: #9bb0ae;
  --line: #d9e4df;
  --line-dark: rgba(184, 222, 212, 0.13);
  --mint: #67e6b1;
  --mint-bright: #8af3c7;
  --mint-dark: #1a9d72;
  --blue: #6bbbd5;
  --amber: #f0c36e;
  --danger: #ee827f;
  --shadow-sm: 0 12px 34px rgba(5, 25, 25, 0.08);
  --shadow-lg: 0 34px 80px rgba(0, 10, 10, 0.32);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container: 1180px;
  --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

img,
svg {
  display: block;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--mint);
  color: var(--ink-950);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--mint);
  outline-offset: 3px;
}

.site-shell {
  overflow: clip;
}

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-sticky {
  position: fixed;
  background: rgba(7, 27, 28, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 34px rgba(0, 10, 10, 0.2);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  animation: header-in 220ms ease both;
}

@keyframes header-in {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 10px;
  background: rgba(103, 230, 177, 0.12);
  color: var(--mint);
}

.brand-mark svg {
  width: 27px;
  height: 27px;
}

.brand-mark svg path:first-child {
  fill: currentColor;
  stroke: none;
  opacity: 0.18;
}

.brand-mark svg path:last-child {
  stroke-width: 2.4;
}

.brand-text {
  color: var(--white);
  font-size: 20px;
  font-weight: 780;
  letter-spacing: -0.035em;
}

.brand-text span {
  color: var(--mint);
}

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

.desktop-nav a {
  position: relative;
  color: #c0cecc;
  font-size: 14px;
  font-weight: 600;
  transition: color 160ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--mint);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover {
  color: var(--white);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta,
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 43px;
  padding: 0 18px;
  border: 1px solid rgba(103, 230, 177, 0.34);
  border-radius: 10px;
  background: rgba(103, 230, 177, 0.08);
  color: var(--mint-bright);
  font-size: 13px;
  font-weight: 750;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.header-cta:hover {
  background: var(--mint);
  color: var(--ink-950);
}

.header-cta svg,
.cta-button svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.2;
  transition: transform 160ms ease;
}

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

.language-switcher summary {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  color: #b9cbc8;
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  list-style: none;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.language-switcher summary::-webkit-details-marker {
  display: none;
}

.language-switcher summary:hover,
.language-switcher[open] summary {
  border-color: rgba(103, 230, 177, 0.35);
  background: rgba(103, 230, 177, 0.07);
  color: var(--mint);
}

.language-switcher summary svg {
  width: 15px;
  height: 15px;
}

.language-switcher summary .chevron {
  width: 12px;
  height: 12px;
  transition: transform 160ms ease;
}

.language-switcher[open] summary .chevron {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  z-index: 60;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  width: 170px;
  padding: 7px;
  border: 1px solid rgba(155, 202, 190, 0.2);
  border-radius: 12px;
  background: #0b2929;
  box-shadow: 0 18px 45px rgba(0, 10, 10, 0.34);
}

.language-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 35px;
  padding: 0 9px;
  border-radius: 7px;
  color: #afc1be;
  font-size: 11px;
  font-weight: 650;
}

.language-menu a:hover,
.language-menu a.is-current {
  background: rgba(103, 230, 177, 0.08);
  color: var(--mint);
}

.language-menu small {
  color: #647e7a;
  font-size: 8px;
}

.header-cta:hover svg,
.cta-button:hover svg {
  transform: translateX(3px);
}

.menu-toggle,
.mobile-menu,
.mobile-languages {
  display: none;
}

.hero {
  position: relative;
  min-height: 820px;
  padding-top: 78px;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(5, 19, 20, 0.99) 0%, rgba(7, 31, 31, 0.98) 52%, rgba(8, 38, 37, 0.98) 100%);
  color: var(--white);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(122, 227, 190, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 227, 190, 0.11) 1px, transparent 1px);
  background-size: 76px 76px;
  -webkit-mask-image: linear-gradient(to bottom, black 0, transparent 84%);
  mask-image: linear-gradient(to bottom, black 0, transparent 84%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.hero-glow-one {
  width: 680px;
  height: 680px;
  top: -310px;
  right: -230px;
  background: radial-gradient(circle, rgba(51, 192, 143, 0.17), rgba(51, 192, 143, 0) 70%);
}

.hero-glow-two {
  width: 540px;
  height: 540px;
  left: -340px;
  bottom: 10px;
  background: radial-gradient(circle, rgba(58, 134, 161, 0.14), rgba(58, 134, 161, 0) 70%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(530px, 1.1fr);
  align-items: center;
  gap: clamp(54px, 8vw, 112px);
  min-height: 657px;
  padding-top: 52px;
  padding-bottom: 45px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 23px;
  color: var(--mint);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-light {
  margin-bottom: 18px;
  color: var(--mint-dark);
}

.status-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(103, 230, 177, 0.1);
}

.status-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(103, 230, 177, 0.35);
  border-radius: 50%;
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% { opacity: 1; transform: scale(0.6); }
  80%, 100% { opacity: 0; transform: scale(1.5); }
}

.hero h1 {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: clamp(46px, 5.4vw, 72px);
  font-weight: 780;
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.hero h1 span {
  color: var(--mint);
}

.hero-lead {
  max-width: 520px;
  margin-bottom: 32px;
  color: #b2c5c2;
  font-size: 18px;
  line-height: 1.7;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #d4e0de;
  font-size: 12px;
  font-weight: 650;
}

.trust-list svg {
  width: 16px;
  height: 16px;
  color: var(--mint);
  stroke-width: 2.5;
}

.generator-wrap {
  position: relative;
}

.generator-wrap::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -16px;
  border: 1px solid rgba(103, 230, 177, 0.06);
  border-radius: 30px;
  background: rgba(103, 230, 177, 0.025);
}

.generator-card {
  position: relative;
  border: 1px solid rgba(163, 211, 198, 0.2);
  border-radius: var(--radius-lg);
  padding: 27px;
  background: linear-gradient(145deg, rgba(17, 49, 49, 0.97), rgba(10, 36, 36, 0.98));
  box-shadow: var(--shadow-lg);
}

.generator-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(137, 244, 200, 0.55), transparent);
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.section-kicker {
  margin-bottom: 2px;
  color: var(--white);
  font-size: 14px;
  font-weight: 750;
}

.card-hint {
  margin-bottom: 0;
  color: #8da6a3;
  font-size: 11px;
}

.local-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border: 1px solid rgba(103, 230, 177, 0.15);
  border-radius: 99px;
  background: rgba(103, 230, 177, 0.07);
  color: var(--mint);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.local-badge svg {
  width: 13px;
  height: 13px;
  stroke-width: 2;
}

.password-panel {
  padding: 4px 16px 13px;
  border: 1px solid rgba(164, 208, 196, 0.2);
  border-radius: 13px;
  background: rgba(2, 17, 18, 0.56);
}

.password-row {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  border-bottom: 1px solid rgba(171, 213, 201, 0.1);
}

.password-output {
  display: block;
  min-width: 0;
  flex: 1;
  overflow: hidden;
  color: var(--white);
  font-family: var(--font-mono);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 650;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
  user-select: all;
}

.password-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.icon-button,
.copy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease, transform 150ms ease;
}

.icon-button {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: transparent;
  color: #91aaa7;
}

.icon-button:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--mint);
  transform: rotate(20deg);
}

.icon-button svg {
  width: 19px;
  height: 19px;
}

.copy-button {
  gap: 7px;
  min-width: 88px;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 8px;
  background: var(--mint);
  color: var(--ink-950);
  font-size: 11px;
  font-weight: 850;
}

.copy-button:hover {
  background: var(--mint-bright);
  transform: translateY(-1px);
}

.copy-button:active,
.generate-button:active {
  transform: translateY(1px);
}

.copy-button svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.1;
}

.strength-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 12px;
}

.strength-meter {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  width: 128px;
}

.strength-meter span {
  height: 3px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.12);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.strength-meter span.is-active[data-level="weak"] {
  background: var(--danger);
}

.strength-meter span.is-active[data-level="fair"] {
  background: var(--amber);
}

.strength-meter span.is-active[data-level="good"] {
  background: var(--blue);
}

.strength-meter span.is-active[data-level="strong"] {
  background: var(--mint);
  box-shadow: 0 0 10px rgba(103, 230, 177, 0.35);
}

.strength-copy {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 0;
  color: #8fa4a2;
  font-size: 10px;
}

.strength-copy [data-strength-label] {
  color: var(--mint);
  font-weight: 800;
}

.control-group {
  margin-top: 22px;
}

.control-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 13px;
}

.control-heading label,
.character-options legend {
  color: #d8e3e1;
  font-size: 11px;
  font-weight: 760;
}

.number-control {
  display: grid;
  grid-template-columns: 26px 38px 26px;
  align-items: center;
  height: 28px;
  border: 1px solid rgba(164, 208, 196, 0.17);
  border-radius: 8px;
  background: rgba(2, 17, 18, 0.34);
}

.number-control button {
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: #8fa8a4;
  cursor: pointer;
  font-size: 15px;
}

.number-control button:hover {
  color: var(--mint);
}

.number-control input {
  width: 38px;
  height: 100%;
  padding: 0;
  border: 0;
  border-inline: 1px solid rgba(164, 208, 196, 0.12);
  outline: 0;
  background: transparent;
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  -moz-appearance: textfield;
}

.number-control input::-webkit-inner-spin-button,
.number-control input::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.range {
  --range-progress: 21.43%;
  display: block;
  width: 100%;
  height: 16px;
  margin: 0;
  cursor: pointer;
  background: transparent;
  appearance: none;
}

.range::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 99px;
  background: linear-gradient(to right, var(--mint) var(--range-progress), rgba(255,255,255,.12) var(--range-progress));
}

.range::-moz-range-track {
  height: 4px;
  border-radius: 99px;
  background: rgba(255,255,255,.12);
}

.range::-moz-range-progress {
  height: 4px;
  border-radius: 99px;
  background: var(--mint);
}

.range::-webkit-slider-thumb {
  width: 16px;
  height: 16px;
  margin-top: -6px;
  border: 4px solid var(--ink-800);
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 1px var(--mint);
  appearance: none;
}

.range::-moz-range-thumb {
  width: 9px;
  height: 9px;
  border: 4px solid var(--ink-800);
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 1px var(--mint);
}

.range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0;
  color: #66807d;
  font-size: 9px;
}

.character-options {
  padding: 0;
  margin: 19px 0 0;
  border: 0;
}

.character-options legend {
  margin-bottom: 10px;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.option-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 54px;
  padding: 8px 9px;
  border: 1px solid rgba(164, 208, 196, 0.14);
  border-radius: 10px;
  background: rgba(2, 17, 18, 0.22);
  cursor: pointer;
  transition: border-color 150ms ease, background 150ms ease;
}

.option-card:hover,
.option-card:has(input:checked) {
  border-color: rgba(103, 230, 177, 0.28);
  background: rgba(103, 230, 177, 0.045);
}

.option-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.option-card:has(input:focus-visible) {
  outline: 3px solid var(--mint);
  outline-offset: 2px;
}

.custom-check {
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  border: 1px solid #54706c;
  border-radius: 4px;
  color: var(--ink-950);
  transition: background 150ms ease, border-color 150ms ease;
}

.custom-check svg {
  width: 11px;
  height: 11px;
  opacity: 0;
  stroke-width: 2.7;
}

.option-card input:checked + .custom-check {
  border-color: var(--mint);
  background: var(--mint);
}

.option-card input:checked + .custom-check svg {
  opacity: 1;
}

.option-card strong,
.option-card small {
  display: block;
  white-space: nowrap;
}

.option-card strong {
  color: #dce6e4;
  font-size: 9px;
  line-height: 1.4;
}

.option-card small {
  color: #718a87;
  font-family: var(--font-mono);
  font-size: 8px;
  line-height: 1.4;
}

.switch-row {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 56px;
  margin-top: 15px;
  padding: 0 12px;
  border: 1px solid rgba(164, 208, 196, 0.12);
  border-radius: 10px;
  background: rgba(2, 17, 18, 0.18);
  cursor: pointer;
}

.switch-row > span:first-child {
  flex: 1;
}

.switch-row strong,
.switch-row small {
  display: block;
}

.switch-row strong {
  color: #d7e2e0;
  font-size: 10px;
}

.switch-row small {
  color: #718a87;
  font-size: 8px;
}

.switch-row input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.switch {
  position: relative;
  width: 34px;
  height: 19px;
  flex: 0 0 auto;
  border-radius: 99px;
  background: #395350;
  transition: background 160ms ease;
}

.switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #a6b8b5;
  transition: transform 160ms ease, background 160ms ease;
}

.switch-row input:checked + .switch {
  background: var(--mint);
}

.switch-row input:checked + .switch::after {
  background: var(--ink-950);
  transform: translateX(15px);
}

.switch-row:has(input:focus-visible) {
  outline: 3px solid var(--mint);
  outline-offset: 2px;
}

.generate-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 47px;
  margin-top: 16px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(90deg, #5fe1ab, #74edbd);
  box-shadow: 0 12px 25px rgba(66, 210, 151, 0.13);
  color: #051a18;
  cursor: pointer;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.01em;
  transition: filter 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}

.generate-button:hover {
  filter: brightness(1.06);
  box-shadow: 0 15px 30px rgba(66, 210, 151, 0.2);
  transform: translateY(-1px);
}

.generate-button svg {
  width: 17px;
  height: 17px;
  stroke-width: 2;
}

.privacy-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 10px 0 -2px;
  color: #708986;
  font-size: 8px;
}

.privacy-note svg {
  width: 13px;
  height: 13px;
  color: var(--mint);
}

.generator-error {
  padding: 8px 10px;
  margin: 10px 0 0;
  border-radius: 7px;
  background: rgba(238, 130, 127, 0.1);
  color: #ffaaa7;
  font-size: 10px;
  text-align: center;
}

.hero-proof {
  position: relative;
  z-index: 2;
  min-height: 85px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 12, 13, 0.19);
}

.proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 31px;
  min-height: 85px;
}

.proof-inner > span:first-child {
  color: #667e7b;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.proof-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.proof-item strong {
  color: #c4d3d0;
  font-size: 10px;
}

.proof-item small {
  color: #617a76;
  font-size: 8px;
}

.proof-divider {
  width: 1px;
  height: 21px;
  background: rgba(255, 255, 255, 0.1);
}

.section {
  padding: 105px 0;
}

.section-heading h2,
.security-copy h2,
.faq-intro h2,
.final-cta h2 {
  margin-bottom: 18px;
  color: #102829;
  font-size: clamp(34px, 4vw, 49px);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.section-heading > p:last-child,
.faq-intro > p {
  color: var(--muted);
  font-size: 16px;
}

.section-heading.centered {
  max-width: 650px;
  margin: 0 auto 54px;
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step-card {
  position: relative;
  min-height: 272px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.66);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.step-card:hover {
  border-color: #b8d5ca;
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.step-card.featured {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.step-number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: #dbe6e1;
  font-family: var(--font-mono);
  font-size: 35px;
  font-weight: 700;
  letter-spacing: -0.08em;
}

.step-icon {
  display: grid;
  place-items: center;
  width: 51px;
  height: 51px;
  margin-bottom: 35px;
  border-radius: 13px;
  background: #def5e9;
  color: #158b64;
}

.step-icon svg {
  width: 26px;
  height: 26px;
}

.step-card h3 {
  margin-bottom: 9px;
  color: #163031;
  font-size: 18px;
  letter-spacing: -0.025em;
}

.step-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.security-section {
  position: relative;
  overflow: hidden;
  background: #eaf1ed;
}

.security-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.7;
  background-image: radial-gradient(rgba(16, 75, 69, 0.14) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(90deg, black, transparent 60%);
  mask-image: linear-gradient(90deg, black, transparent 60%);
}

.security-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 100px;
}

.security-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
}

.radar {
  position: absolute;
  border: 1px solid rgba(21, 139, 100, 0.16);
  border-radius: 50%;
}

.radar::before,
.radar::after {
  content: "";
  position: absolute;
  background: rgba(21, 139, 100, 0.09);
}

.radar::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
}

.radar::after {
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
}

.radar-one {
  width: 360px;
  height: 360px;
}

.radar-two {
  width: 270px;
  height: 270px;
}

.radar-three {
  width: 180px;
  height: 180px;
}

.shield-core {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 125px;
  height: 125px;
  border: 1px solid rgba(21, 139, 100, 0.22);
  border-radius: 35px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 24px 60px rgba(24, 91, 75, 0.16);
  color: #139269;
  transform: rotate(2deg);
}

.shield-core::before {
  content: "";
  position: absolute;
  inset: -13px;
  z-index: -1;
  border: 1px solid rgba(21, 139, 100, 0.08);
  border-radius: 42px;
}

.shield-core svg {
  width: 70px;
  height: 78px;
  stroke-width: 2;
}

.shield-core svg path:first-child {
  fill: rgba(103, 230, 177, 0.2);
}

.orbit-dot {
  position: absolute;
  z-index: 2;
  width: 10px;
  height: 10px;
  border: 2px solid #eaf1ed;
  border-radius: 50%;
  background: var(--mint-dark);
  box-shadow: 0 0 0 5px rgba(26, 157, 114, 0.1);
}

.dot-one {
  top: 68px;
  left: 50%;
}

.dot-two {
  right: 73px;
  bottom: 115px;
}

.security-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid #d4e3dc;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 8px 24px rgba(24, 91, 75, 0.08);
  color: #536f69;
  font-size: 9px;
  font-weight: 700;
}

.security-chip span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint-dark);
}

.chip-one {
  top: 87px;
  left: 15px;
}

.chip-two {
  right: 3px;
  bottom: 65px;
}

.security-copy .lead {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.security-points {
  display: grid;
  gap: 17px;
}

.security-points > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.point-icon {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  flex: 0 0 auto;
  border: 1px solid #d0e0d8;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.6);
  color: #168b66;
}

.point-icon svg {
  width: 19px;
  height: 19px;
}

.security-points strong,
.security-points small {
  display: block;
}

.security-points strong {
  color: #1d3836;
  font-size: 13px;
}

.security-points small {
  color: #748884;
  font-size: 11px;
}

.security-points code {
  color: #355b54;
  font-family: var(--font-mono);
  font-size: 0.92em;
}

.tips-section {
  background: var(--paper);
}

.section-heading.split {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  align-items: end;
  gap: 90px;
  margin-bottom: 52px;
}

.section-heading.split h2 {
  margin-bottom: 0;
}

.section-heading.split > p {
  max-width: 420px;
  margin: 0 0 5px auto;
  font-size: 14px;
  line-height: 1.75;
}

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

.tip-card {
  display: flex;
  gap: 21px;
  min-height: 154px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.56);
  transition: border-color 180ms ease, background 180ms ease;
}

.tip-card:hover {
  border-color: #b8d5ca;
  background: var(--white);
}

.tip-icon {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  border-radius: 11px;
  background: #e0f3e9;
  color: #198c68;
}

.tip-icon svg {
  width: 22px;
  height: 22px;
}

.tip-card h3 {
  margin: 1px 0 6px;
  color: #1b3434;
  font-size: 15px;
}

.tip-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.faq-section {
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: start;
  gap: 105px;
}

.faq-intro {
  position: sticky;
  top: 115px;
}

.faq-intro > p {
  margin-bottom: 26px;
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #157d5d;
  font-size: 12px;
  font-weight: 750;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion details:first-child {
  border-top: 1px solid var(--line);
}

.accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  color: #1b3434;
  cursor: pointer;
  font-size: 14px;
  font-weight: 720;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion-icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border: 1px solid #d0ded8;
  border-radius: 50%;
  transition: background 160ms ease, border-color 160ms ease;
}

.accordion-icon::before,
.accordion-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1px;
  background: #58706c;
  transform: translate(-50%, -50%);
}

.accordion-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 160ms ease;
}

.accordion details[open] .accordion-icon {
  border-color: #b5dfce;
  background: #e4f6ed;
}

.accordion details[open] .accordion-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.accordion details > div {
  padding: 0 54px 20px 0;
}

.accordion details p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.final-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(105deg, #0b2a2a, #0b3431);
  color: var(--white);
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(122, 227, 190, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 227, 190, 0.13) 1px, transparent 1px);
  background-size: 76px 76px;
}

.cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 240px;
}

.final-cta .eyebrow {
  margin-bottom: 14px;
}

.final-cta h2 {
  max-width: 630px;
  margin-bottom: 0;
  color: var(--white);
}

.cta-button {
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  background: var(--mint);
  color: var(--ink-950);
  font-size: 12px;
}

.cta-button:hover {
  background: var(--mint-bright);
  transform: translateY(-2px);
}

.site-footer {
  padding: 66px 0 20px;
  background: #06191a;
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-bottom: 52px;
}

.footer-brand p {
  max-width: 330px;
  margin: 18px 0 0;
  color: #718986;
  font-size: 12px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links strong {
  margin-bottom: 3px;
  color: #c3d2d0;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a {
  width: fit-content;
  color: #718986;
  font-size: 11px;
  transition: color 150ms ease;
}

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

.footer-link-button {
  width: fit-content;
  padding: 0;
  border: 0;
  color: var(--muted-dark);
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.footer-link-button:hover {
  color: var(--mint);
}

/* Cookie consent */
.consent-open {
  overflow: hidden;
}

.consent-banner {
  position: fixed;
  z-index: 120;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px;
  border: 1px solid rgba(140, 255, 219, 0.23);
  border-radius: 20px;
  background: rgba(5, 27, 29, 0.98);
  box-shadow: 0 22px 65px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

.consent-banner[hidden],
.consent-overlay[hidden],
.consent-inactive[hidden] {
  display: none;
}

.consent-banner__copy {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.consent-shield {
  display: grid;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(130, 255, 210, 0.32);
  border-radius: 12px;
  color: var(--mint);
  background: rgba(80, 245, 184, 0.08);
  font-weight: 800;
}

.consent-banner h2,
.consent-dialog h2 {
  margin: 0;
  color: var(--white);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.consent-banner p {
  max-width: 720px;
  margin: 6px 0 0;
  color: var(--muted-dark);
  font-size: 0.92rem;
  line-height: 1.55;
}

.consent-banner a,
.consent-policy-link {
  color: var(--mint);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-banner__actions,
.consent-dialog__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.consent-button {
  min-height: 43px;
  padding: 0 17px;
  border: 1px solid rgba(140, 255, 219, 0.22);
  border-radius: 11px;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 750;
  cursor: pointer;
}

.consent-button:focus-visible,
.consent-close:focus-visible,
.footer-link-button:focus-visible {
  outline: 3px solid rgba(105, 255, 201, 0.42);
  outline-offset: 3px;
}

.consent-button--equal,
.consent-button--primary {
  color: #031714;
  border-color: var(--mint);
  background: var(--mint);
}

.consent-button--equal:hover,
.consent-button--primary:hover {
  background: #9bffdd;
}

.consent-button--secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.045);
}

.consent-button--secondary:hover {
  border-color: rgba(140, 255, 219, 0.48);
  background: rgba(255, 255, 255, 0.08);
}

.consent-overlay {
  position: fixed;
  z-index: 130;
  inset: 0;
  display: grid;
  padding: 20px;
  place-items: center;
  overflow-y: auto;
  background: rgba(0, 12, 14, 0.76);
  backdrop-filter: blur(7px);
}

.consent-dialog {
  width: min(100%, 720px);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 26px;
  border: 1px solid rgba(140, 255, 219, 0.23);
  border-radius: 22px;
  color: var(--muted-dark);
  background: #092528;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.48);
}

.consent-dialog__header {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
}

.consent-kicker {
  margin: 0 0 5px;
  color: var(--mint);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.consent-close {
  display: grid;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(140, 255, 219, 0.18);
  border-radius: 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  font: inherit;
  font-size: 1.5rem;
  cursor: pointer;
}

.consent-dialog__intro {
  margin: 14px 0 18px;
  line-height: 1.6;
}

.consent-inactive {
  margin-bottom: 18px;
  padding: 13px 15px;
  border: 1px solid rgba(101, 255, 197, 0.2);
  border-radius: 12px;
  color: #c6fbe8;
  background: rgba(73, 222, 166, 0.07);
  line-height: 1.5;
}

.consent-options {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.consent-option {
  display: flex;
  gap: 22px;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.consent-option strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
}

.consent-option p,
.consent-option__description {
  display: block;
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.84rem;
  line-height: 1.45;
}

.consent-fixed,
.consent-toggle small {
  flex: 0 0 auto;
  color: var(--mint);
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
}

.consent-toggle {
  position: relative;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

.consent-toggle input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.consent-toggle > span {
  position: relative;
  width: 46px;
  height: 26px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  cursor: pointer;
  transition: 160ms ease;
}

.consent-toggle > span::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #d6e5e1;
  content: "";
  transition: 160ms ease;
}

.consent-toggle input:checked + span {
  border-color: var(--mint);
  background: rgba(85, 255, 190, 0.3);
}

.consent-toggle input:checked + span::after {
  transform: translateX(20px);
  background: var(--mint);
}

.consent-toggle input:focus-visible + span {
  outline: 3px solid rgba(105, 255, 201, 0.4);
  outline-offset: 3px;
}

.consent-toggle input:disabled + span {
  opacity: 0.45;
  cursor: not-allowed;
}

.consent-policy-link {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 0.88rem;
  font-weight: 750;
}

.consent-dialog__actions {
  justify-content: flex-end;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-live-status {
  border-color: rgba(112, 255, 205, 0.22);
}

.cookie-live-status.is-active {
  border-color: rgba(255, 197, 92, 0.34);
  background: rgba(255, 181, 76, 0.07);
}

.cookie-table-wrap {
  overflow-x: auto;
  margin: 18px 0 24px;
  border: 1px solid rgba(13, 73, 69, 0.14);
  border-radius: 14px;
}

.cookie-table {
  width: 100%;
  min-width: 650px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.cookie-table th,
.cookie-table td {
  padding: 13px 14px;
  border-bottom: 1px solid rgba(13, 73, 69, 0.11);
  color: var(--body);
  text-align: left;
  vertical-align: top;
}

.cookie-table th {
  color: var(--ink);
  background: rgba(7, 59, 56, 0.05);
  font-size: 0.77rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cookie-table tr:last-child td {
  border-bottom: 0;
}

.cookie-table code {
  color: #075f54;
  font-size: 0.82rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: #56706d;
  font-size: 9px;
}

.footer-bottom p {
  margin-bottom: 0;
}

.footer-security {
  display: flex;
  align-items: center;
  gap: 7px;
}

.footer-security span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(103, 230, 177, 0.08);
}

.ad-slot {
  display: grid;
  place-items: center;
  min-height: 100px;
  margin-block: 28px;
  border: 1px dashed #c7d7d0;
  border-radius: 8px;
  background: #eef3f0;
  color: #8aa09a;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ad-slot[hidden] {
  display: none;
}

.toast {
  position: fixed;
  z-index: 100;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 16px;
  border: 1px solid rgba(103, 230, 177, 0.25);
  border-radius: 10px;
  background: #0b2b2a;
  box-shadow: 0 14px 35px rgba(0, 15, 15, 0.24);
  color: #dcf7ec;
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.toast svg {
  width: 17px;
  height: 17px;
  color: var(--mint);
  stroke-width: 2.4;
}

.noscript-banner {
  position: fixed;
  z-index: 1000;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 14px 18px;
  border-radius: 8px;
  background: #fff1cf;
  color: #5f4310;
  font-size: 14px;
  text-align: center;
}

/* Páginas informativas */
.legal-page {
  min-height: 100vh;
  background: var(--paper);
}

.legal-page .site-header {
  position: relative;
  background: var(--ink-900);
}

.legal-hero {
  padding: 80px 0 68px;
  background: linear-gradient(115deg, var(--ink-950), var(--ink-800));
  color: var(--white);
}

.legal-hero .eyebrow {
  margin-bottom: 18px;
}

.legal-hero h1 {
  max-width: 760px;
  margin-bottom: 17px;
  font-size: clamp(42px, 6vw, 66px);
  line-height: 1;
  letter-spacing: -0.055em;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.legal-hero p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: #a9bdb9;
}

.legal-content {
  display: grid;
  grid-template-columns: 230px minmax(0, 750px);
  align-items: start;
  justify-content: center;
  gap: 72px;
  padding: 75px 0 100px;
}

.legal-nav {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 8px;
  min-width: 0;
}

.legal-nav strong {
  margin-bottom: 6px;
  color: #81948f;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-nav a {
  min-width: 0;
  color: #506965;
  font-size: 12px;
  overflow-wrap: anywhere;
}

.legal-nav a:hover {
  color: var(--mint-dark);
}

.legal-article section {
  scroll-margin-top: 115px;
}

.legal-article {
  min-width: 0;
}

.legal-article section + section {
  padding-top: 33px;
  margin-top: 33px;
  border-top: 1px solid var(--line);
}

.legal-article h2 {
  margin-bottom: 13px;
  color: #193433;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.legal-article h3 {
  margin: 24px 0 9px;
  color: #294643;
  font-size: 15px;
}

.legal-article p,
.legal-article li {
  color: #5d716e;
  font-size: 14px;
  line-height: 1.8;
}

.legal-article ul {
  padding-left: 20px;
}

.legal-article a {
  color: #137956;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.info-callout {
  padding: 18px 20px;
  border-left: 3px solid var(--mint-dark);
  border-radius: 0 9px 9px 0;
  background: #e6f4ed;
}

.info-callout p {
  margin-bottom: 0;
  color: #365d54;
}

.not-found {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 50px 20px;
  background:
    radial-gradient(circle at 50% 30%, rgba(39, 148, 112, 0.2), transparent 35%),
    var(--ink-950);
  color: var(--white);
  text-align: center;
}

.not-found-inner {
  max-width: 640px;
}

.not-found-code {
  display: block;
  margin-bottom: 12px;
  color: var(--mint);
  font-family: var(--font-mono);
  font-size: clamp(70px, 15vw, 140px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.08em;
}

.not-found h1 {
  margin-bottom: 15px;
  font-size: clamp(28px, 5vw, 45px);
  letter-spacing: -0.04em;
}

.not-found p {
  margin-bottom: 27px;
  color: #9eb3b0;
}

.not-found .cta-button {
  display: inline-flex;
}

@media (max-width: 1040px) {
  .desktop-nav {
    gap: 20px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 0.75fr) minmax(500px, 1.25fr);
    gap: 45px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .options-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .security-layout,
  .faq-layout {
    gap: 60px;
  }
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 72px;
  }

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

  .header-inner {
    height: 70px;
  }

  .desktop-nav,
  .header-cta,
  .language-switcher {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-content: center;
    gap: 6px;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.04);
  }

  .menu-toggle span:not(.sr-only) {
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: #d5e1df;
    transition: transform 160ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-of-type(2) {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-of-type(3) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 49;
    top: 70px;
    left: 0;
    display: grid;
    align-content: start;
    gap: 4px;
    width: 100%;
    height: calc(100vh - 70px);
    padding: 18px 16px;
    background: rgba(6, 25, 26, 0.98);
  }

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

  .mobile-menu a {
    padding: 17px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #d3dfdd;
    font-size: 15px;
    font-weight: 650;
  }

  .mobile-languages {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
    padding: 18px 4px 0;
  }

  .mobile-languages a {
    display: grid;
    place-items: center;
    min-height: 39px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #9fb4b1;
    font-size: 10px;
  }

  .mobile-languages a.is-current {
    border-color: rgba(103, 230, 177, 0.4);
    background: rgba(103, 230, 177, 0.08);
    color: var(--mint);
  }

  .hero {
    padding-top: 70px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 46px;
    padding-top: 75px;
    padding-bottom: 65px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .eyebrow,
  .trust-list {
    justify-content: center;
  }

  .hero h1,
  .hero-lead {
    margin-inline: auto;
  }

  .generator-wrap {
    width: min(100%, 590px);
    margin-inline: auto;
  }

  .proof-inner {
    flex-wrap: wrap;
    gap: 18px 25px;
    padding-block: 22px;
  }

  .proof-inner > span:first-child {
    width: 100%;
    text-align: center;
  }

  .section {
    padding: 84px 0;
  }

  .security-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .security-visual {
    min-height: 370px;
  }

  .security-copy {
    max-width: 650px;
    margin-inline: auto;
  }

  .section-heading.split {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-heading.split > p {
    max-width: 620px;
    margin-left: 0;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .faq-intro {
    position: static;
    max-width: 650px;
  }

  .cta-inner {
    min-height: 270px;
  }

  .legal-content {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .legal-nav {
    position: static;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px 18px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--line);
  }

  .legal-nav strong {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .consent-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 17px;
    border-radius: 16px;
  }

  .consent-banner__actions,
  .consent-dialog__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .consent-button--secondary {
    grid-column: 1 / -1;
  }

  .consent-overlay {
    align-items: end;
    padding: 0;
  }

  .consent-dialog {
    width: 100%;
    max-height: 92vh;
    padding: 20px 16px;
    border-radius: 20px 20px 0 0;
  }

  .consent-option {
    gap: 14px;
    align-items: flex-start;
  }

  .consent-dialog__actions .consent-button--primary {
    grid-column: 1 / -1;
    grid-row: 1;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .brand-text {
    font-size: 18px;
  }

  .brand-mark {
    width: 33px;
    height: 33px;
  }

  .hero-layout {
    padding-top: 58px;
    padding-bottom: 42px;
  }

  .hero h1 {
    font-size: clamp(39px, 12vw, 52px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .trust-list {
    display: grid;
    justify-content: center;
  }

  .generator-wrap::before {
    display: none;
  }

  .generator-card {
    padding: 19px 14px;
    border-radius: 18px;
  }

  .card-topline {
    padding-inline: 2px;
  }

  .password-panel {
    padding-inline: 11px;
  }

  .password-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .password-output {
    font-size: 16px;
  }

  .copy-button {
    min-width: 38px;
    width: 38px;
    padding: 0;
  }

  .copy-button span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .strength-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .strength-meter {
    width: 100%;
  }

  .options-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .option-card {
    min-height: 58px;
    padding: 9px;
  }

  .option-card strong {
    font-size: 10px;
  }

  .switch-row {
    padding: 8px 10px;
  }

  .proof-divider {
    display: none;
  }

  .proof-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .proof-item {
    justify-content: center;
  }

  .section {
    padding: 70px 0;
  }

  .section-heading.centered {
    margin-bottom: 40px;
  }

  .section-heading h2,
  .security-copy h2,
  .faq-intro h2,
  .final-cta h2 {
    font-size: 35px;
  }

  .steps-grid,
  .tips-grid {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: auto;
    padding: 26px;
  }

  .security-visual {
    min-height: 320px;
    transform: scale(0.85);
    margin: -30px -20px;
  }

  .radar-one {
    width: 330px;
    height: 330px;
  }

  .radar-two {
    width: 245px;
    height: 245px;
  }

  .radar-three {
    width: 160px;
    height: 160px;
  }

  .tip-card {
    min-height: auto;
    padding: 23px;
  }

  .accordion summary {
    min-height: 80px;
    font-size: 13px;
  }

  .accordion details > div {
    padding-right: 0;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    min-height: 325px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding-block: 18px;
  }

  .legal-hero {
    padding: 60px 0 52px;
  }

  .legal-content {
    padding: 55px 0 75px;
  }

  .legal-nav {
    grid-template-columns: 1fr 1fr;
  }

  .toast {
    right: 12px;
    bottom: 12px;
    left: 12px;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .final-cta,
  .ad-slot,
  .toast {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .legal-hero {
    padding: 25px 0;
    background: #fff;
    color: #000;
  }

  .legal-hero h1 {
    color: #000;
  }

  .legal-content {
    display: block;
    padding: 25px 0;
  }

  .legal-nav {
    display: none;
  }
}
