:root {
  color-scheme: light;
  --bg: #dfe5ed;
  --bg-soft: #eaf0f6;
  --surface: #fbfcfe;
  --surface-2: #f1f5f9;
  --surface-3: #eef2f7;
  --text: #141823;
  --heading: #0b1020;
  --muted: #4f5b6f;
  --dim: #778197;
  --line: rgba(36, 45, 66, 0.14);
  --line-strong: rgba(198, 35, 139, 0.28);
  --rose: #d91584;
  --rose-2: #a91268;
  --ink: #090817;
  --violet: #5b2a68;
  --emerald: #0f9f72;
  --gold: #a9780b;
  --danger: #c7354a;
  --shadow: 0 18px 48px rgba(31, 41, 61, 0.12);
  --shadow-soft: 0 10px 28px rgba(31, 41, 61, 0.08);
  --glow: 0 14px 34px rgba(217, 21, 132, 0.15);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --font: Inter, Manrope, Segoe UI, Arial, sans-serif;
  --max: 1320px;
  --header-h: 82px;
}

body.theme-dark {
  color-scheme: dark;
  --bg: #0a0912;
  --bg-soft: #11101b;
  --surface: #171b27;
  --surface-2: #111725;
  --surface-3: #1c1424;
  --text: #f7f2fb;
  --heading: #ffffff;
  --muted: #c9bed5;
  --dim: #9d93ac;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 45, 154, 0.34);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 12px 38px rgba(0, 0, 0, 0.22);
  --glow: 0 16px 42px rgba(255, 45, 154, 0.2);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background:
    radial-gradient(circle at 8% -10%, rgba(217, 21, 132, 0.13), transparent 28rem),
    radial-gradient(circle at 92% 0%, rgba(22, 33, 58, 0.09), transparent 34rem),
    linear-gradient(180deg, #eef2f6 0%, var(--bg) 46%, #d6dde7 100%);
  color: var(--text);
  overflow-x: hidden;
  min-width: 320px;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
body.theme-dark {
  background:
    radial-gradient(circle at 12% -10%, rgba(255, 45, 154, 0.18), transparent 30rem),
    radial-gradient(circle at 90% 6%, rgba(91, 42, 104, 0.22), transparent 34rem),
    linear-gradient(180deg, #11101b 0%, #08070e 55%, #0b0a12 100%);
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }

body::-webkit-scrollbar, .modal-card::-webkit-scrollbar, .scroll-panel::-webkit-scrollbar { width: 12px; height: 12px; }
body::-webkit-scrollbar-track, .modal-card::-webkit-scrollbar-track, .scroll-panel::-webkit-scrollbar-track { background: rgba(22, 31, 47, 0.08); border-radius: 999px; }
body::-webkit-scrollbar-thumb, .modal-card::-webkit-scrollbar-thumb, .scroll-panel::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(217, 21, 132, 0.78), rgba(42, 49, 68, 0.68));
  border: 3px solid rgba(231, 235, 241, 0.92);
  border-radius: 999px;
}
body.theme-dark::-webkit-scrollbar-thumb, body.theme-dark .modal-card::-webkit-scrollbar-thumb, body.theme-dark .scroll-panel::-webkit-scrollbar-thumb { border-color: rgba(10, 9, 18, 0.9); }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--rose);
  color: #fff;
  transition: top 0.18s ease;
}
.skip-link:focus { top: 16px; }
.site-shell { min-height: 100vh; }

.announcement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 38px;
  padding: 8px 18px;
  color: #fff;
  background: linear-gradient(90deg, #181224, #6a245f 45%, #d91584 100%);
  font-size: 0.86rem;
  font-weight: 700;
}
.announcement[hidden] { display: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 249, 252, 0.92);
  backdrop-filter: saturate(130%) blur(14px);
  box-shadow: 0 10px 30px rgba(20, 24, 35, 0.08);
}
body.theme-dark .site-header { background: rgba(17, 16, 27, 0.92); }
.site-header-inner {
  width: min(100% - 32px, 1440px);
  min-height: var(--header-h);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  min-width: 202px;
  position: relative;
  z-index: 2;
}
.brand img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(217, 21, 132, 0.18);
}
.brand strong {
  display: block;
  color: var(--heading);
  font-size: 0.98rem;
  line-height: 1.1;
  font-weight: 900;
}
.brand small {
  display: block;
  color: var(--rose);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 3px;
}
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  flex: 0 1 auto;
  min-width: 0;
}
.desktop-nav > a, .text-button {
  color: var(--muted);
  border: 0;
  background: transparent;
  padding: 9px 10px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 760;
  transition: color 0.16s ease, background 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
  white-space: nowrap;
}
.desktop-nav > a:hover, .desktop-nav > a:focus-visible, .desktop-nav > a[aria-current],
.text-button:hover, .text-button:focus-visible {
  color: var(--rose);
  background: rgba(217, 21, 132, 0.08);
  outline: none;
}
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex: 0 0 auto;
  margin-left: auto;
  position: relative;
  z-index: 2;
}
.signin-button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px 0 11px;
  color: var(--heading);
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(244,246,250,0.9));
  box-shadow: 0 9px 22px rgba(31, 41, 61, 0.08), inset 0 1px 0 rgba(255,255,255,0.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 0.88rem;
  font-weight: 880;
  white-space: nowrap;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}
body.theme-dark .signin-button {
  background: linear-gradient(180deg, rgba(38, 30, 50, 0.98), rgba(24, 21, 35, 0.96));
  box-shadow: 0 12px 28px rgba(0,0,0,0.24), inset 0 1px 0 rgba(255,255,255,0.08);
}
.signin-button:hover, .signin-button:focus-visible {
  transform: translateY(-1px);
  color: var(--rose);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft), var(--glow);
  outline: none;
}
.user-icon {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(217,21,132,0.18), rgba(217,21,132,0.04));
  border: 1px solid rgba(217,21,132,0.34);
  flex: 0 0 24px;
}
.user-icon::before,
.user-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rose);
}
.user-icon::before { top: 5px; width: 7px; height: 7px; border-radius: 999px; }
.user-icon::after { bottom: 5px; width: 13px; height: 7px; border-radius: 999px 999px 6px 6px; }
.region-selector {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: 0 8px 22px rgba(31, 41, 61, 0.06);
}
.region-selector span { color: var(--dim); font-size: 0.72rem; font-weight: 850; text-transform: uppercase; }
.region-selector select, .form-field select, .form-field input, .form-field textarea {
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 9px 10px;
  outline: none;
  min-width: 0;
}
.region-selector select { border: 0; background: transparent; padding: 0; max-width: 96px; font-size: 0.82rem; }

.primary-button, .ghost-button, .soft-button, .danger-button {
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 20px;
  font-size: 0.93rem;
  font-weight: 850;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease, background 0.16s ease;
  white-space: nowrap;
}
.primary-button {
  color: #fff;
  background: linear-gradient(135deg, #d91584, #9e1465);
  box-shadow: 0 14px 26px rgba(217, 21, 132, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.ghost-button, .soft-button {
  color: var(--heading);
  background: linear-gradient(180deg, #ffffff, #f4f6fa);
  border-color: var(--line);
  box-shadow: 0 9px 22px rgba(31, 41, 61, 0.07);
}
body.theme-dark .ghost-button, body.theme-dark .soft-button { color: var(--text); background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025)); }
.danger-button { color: #fff; background: linear-gradient(135deg, #c7354a, #8f1d3c); }
.small { min-height: 38px; padding-inline: 15px; font-size: 0.86rem; }
.primary-button:hover, .ghost-button:hover, .soft-button:hover, .danger-button:hover,
.primary-button:focus-visible, .ghost-button:focus-visible, .soft-button:focus-visible, .danger-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(217, 21, 132, 0.16), 0 0 0 3px rgba(217, 21, 132, 0.08);
  outline: none;
}
.icon-button, .mobile-toggle {
  border: 1px solid var(--line);
  color: var(--text);
  background: var(--surface);
  border-radius: 12px;
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
}
.mobile-toggle { display: none; gap: 4px; }
.mobile-toggle span { width: 18px; height: 2px; background: currentColor; display: block; }
.mobile-nav {
  display: none;
  width: min(100% - 28px, 760px);
  margin: 12px auto;
  padding: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}
.mobile-nav.open { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.mobile-nav a { padding: 11px 12px; border: 1px solid var(--line); border-radius: 12px; color: var(--muted); font-weight: 800; background: var(--surface-2); }

.page {
  width: min(100% - clamp(28px, 4vw, 64px), var(--max));
  margin: 0 auto;
  padding: clamp(32px, 5vw, 58px) 0 76px;
  min-height: 58vh;
}
.section { margin-top: clamp(30px, 5vw, 58px); }
.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(247, 249, 252, 0.94));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
body.theme-dark .panel { background: linear-gradient(145deg, rgba(23,27,39,0.96), rgba(17,23,37,0.95)); }
.panel-pad { padding: clamp(22px, 4vw, 42px); }
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
  min-height: 540px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(217, 21, 132, 0.075), transparent 44%), radial-gradient(circle at 78% 18%, rgba(217, 21, 132, 0.13), transparent 26rem);
  pointer-events: none;
}
.hero > * { position: relative; }
.eyebrow {
  color: var(--rose);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 900;
  margin: 0 0 12px;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  color: var(--heading);
  font-size: clamp(2.1rem, 4vw, 3.85rem);
  line-height: 1.02;
  letter-spacing: 0;
  margin-bottom: 16px;
}
h2 { color: var(--heading); font-size: clamp(1.45rem, 2.4vw, 2.12rem); line-height: 1.12; letter-spacing: 0; margin-bottom: 12px; }
h3 { color: var(--heading); font-size: clamp(1rem, 1.25vw, 1.16rem); line-height: 1.25; letter-spacing: 0; margin-bottom: 9px; }
p { color: var(--muted); line-height: 1.62; font-size: 0.98rem; }
.lead { font-size: clamp(1rem, 1.35vw, 1.12rem); max-width: 740px; color: #3f495d; }
body.theme-dark .lead { color: var(--muted); }
.hero-actions, .action-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 22px; }
.trust-strip, .proof-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.pill, .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  padding: 7px 11px;
  font-weight: 800;
  font-size: 0.82rem;
  background: rgba(255, 255, 255, 0.7);
}
body.theme-dark .pill, body.theme-dark .badge { background: rgba(255,255,255,0.045); }
.badge { color: var(--rose); border-color: var(--line-strong); background: rgba(217, 21, 132, 0.08); }
.visual-card, .product-shot {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: clamp(20px, 4vw, 36px);
  min-height: 330px;
  border-radius: 28px;
  background: linear-gradient(145deg, #161423, #292138 55%, #451d45);
  box-shadow: 0 26px 70px rgba(22, 18, 36, 0.22);
  overflow: hidden;
}
.visual-card::before, .product-shot::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 22px;
}
.visual-card img { width: min(440px, 92%); border-radius: 22px; filter: drop-shadow(0 24px 42px rgba(217, 21, 132, 0.22)); }
.product-shot img { width: min(720px, 96%); border-radius: 18px; box-shadow: 0 24px 54px rgba(0,0,0,0.28); }
.signal-ring { display: none; }

.grid { display: grid; gap: 22px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(220px, 1fr)); }
.card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 26px rgba(31, 41, 61, 0.07);
  min-width: 0;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
body.theme-dark .card { background: rgba(17, 23, 37, 0.88); }
.card:hover, .card:focus-within { transform: translateY(-2px); border-color: var(--line-strong); box-shadow: var(--shadow-soft), var(--glow); }
.card.compact { padding: 18px; }
.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(217, 21, 132, 0.14);
  margin-bottom: 14px;
}
.card-link {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  color: var(--rose);
  font-weight: 900;
}
.stat { color: var(--heading); font-size: clamp(1.45rem, 2.4vw, 2.05rem); font-weight: 900; line-height: 1.1; }
.mini-label { color: var(--dim); font-size: 0.78rem; font-weight: 850; text-transform: uppercase; margin-bottom: 6px; }

.module-hero { display: grid; grid-template-columns: 1fr 0.9fr; gap: 34px; align-items: center; }
.module-hero img { border-radius: 24px; box-shadow: var(--shadow); }
.module-list { display: grid; gap: 14px; margin: 18px 0 0; padding: 0; list-style: none; }
.module-list li { display: grid; grid-template-columns: 28px 1fr; gap: 10px; color: var(--muted); }
.module-list li::before { content: ""; width: 10px; height: 10px; border-radius: 999px; background: var(--emerald); margin-top: 9px; box-shadow: 0 0 0 6px rgba(15, 159, 114, 0.1); }

.pricing-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin: 0 0 22px;
  flex-wrap: wrap;
}
.plan-card { display: flex; flex-direction: column; gap: 13px; min-height: 100%; }
.plan-card.highlighted { border-color: rgba(217, 21, 132, 0.46); box-shadow: 0 18px 42px rgba(217, 21, 132, 0.13), var(--shadow-soft); }
.plan-head { display: flex; justify-content: space-between; gap: 12px; align-items: flex-start; }
.price { display: flex; align-items: baseline; gap: 8px; margin: 4px 0; }
.price strong { color: var(--heading); font-size: clamp(1.65rem, 2.5vw, 2.25rem); line-height: 1; }
.price span { color: var(--dim); font-weight: 800; }
.features-list { display: grid; gap: 9px; padding: 0; margin: 0; list-style: none; color: var(--muted); }
.features-list li { display: grid; grid-template-columns: 20px 1fr; gap: 8px; align-items: start; }
.features-list li::before { content: "ÃƒÂ¢Ã…â€œÃ¢â‚¬Å“"; color: var(--emerald); font-weight: 950; }
.plan-card .primary-button, .plan-card .ghost-button { margin-top: auto; width: 100%; }

.compare-table, .policy-table {
  width: 100%;
  min-width: 720px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}
.compare-table th, .compare-table td, .policy-table th, .policy-table td {
  text-align: left;
  padding: 15px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  vertical-align: top;
  font-size: 0.94rem;
}
.compare-table th, .policy-table th { color: var(--heading); background: var(--surface-2); }
.compare-table tr:last-child td, .policy-table tr:last-child td { border-bottom: 0; }
.scroll-panel { overflow-x: auto; padding-bottom: 4px; }

.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.form-field { display: grid; gap: 8px; color: var(--muted); font-weight: 760; }
.form-field.full { grid-column: 1 / -1; }
.form-field textarea { min-height: 128px; resize: vertical; }
.check-row { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); }
.check-row input { margin-top: 4px; accent-color: var(--rose); }
.portal-result { margin-top: 18px; }
.portal-shell { align-items: start; }
.account-summary { display: grid; gap: 12px; }
.account-row { display: flex; justify-content: space-between; gap: 14px; border-bottom: 1px solid var(--line); padding: 10px 0; }
.account-row strong { color: var(--heading); }

.accordion { display: grid; gap: 10px; }
.accordion button {
  width: 100%;
  text-align: left;
  color: var(--heading);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 17px 18px;
  font-weight: 850;
}
.accordion .answer { display: none; padding: 0 18px 16px; color: var(--muted); }
.accordion-item.open .answer { display: block; }

.status-note {
  border-left: 4px solid var(--rose);
  padding: 14px 16px;
  border-radius: 0 14px 14px 0;
  background: rgba(217, 21, 132, 0.08);
  color: var(--muted);
}
.safe-note { border-left-color: var(--emerald); background: rgba(15,159,114,0.08); }
.warn-note { border-left-color: var(--gold); background: rgba(169,120,11,0.08); }

.site-footer {
  width: min(100% - clamp(28px, 4vw, 64px), var(--max));
  margin: 0 auto;
  padding: 52px 0;
  border-top: 1px solid var(--line);
}
.footer-brand { display: flex; gap: 14px; align-items: center; margin-bottom: 28px; }
.footer-brand img { border-radius: 13px; box-shadow: 0 10px 24px rgba(217, 21, 132, 0.16); }
.footer-brand strong { color: var(--heading); display: block; }
.footer-brand span { color: var(--muted); display: block; margin-top: 4px; }
.footer-grid { display: grid; grid-template-columns: repeat(4, minmax(220px, 1fr)); gap: 22px; }
.footer-grid h2 { font-size: 0.82rem; text-transform: uppercase; color: var(--rose); margin-bottom: 12px; }
.footer-grid a, .footer-grid .text-button { display: block; color: var(--muted); padding: 6px 0; text-align: left; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--dim); margin-top: 28px; padding-top: 18px; border-top: 1px solid var(--line); }

.cookie-banner {
  position: fixed;
  z-index: 60;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow), var(--glow);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 4px 0 0; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.modal { border: 0; padding: 0; background: transparent; max-width: min(760px, calc(100vw - 28px)); width: 760px; }
.modal::backdrop { background: rgba(12, 18, 30, 0.56); backdrop-filter: blur(8px); }
.modal-card {
  position: relative;
  max-height: calc(100vh - 60px);
  overflow: auto;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  box-shadow: var(--shadow), var(--glow);
}
.modal-close { position: absolute; top: 16px; right: 16px; }
.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  max-width: min(430px, calc(100vw - 36px));
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: var(--surface);
  color: var(--heading);
  box-shadow: var(--shadow);
  transform: translateY(120%);
  opacity: 0;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.toast.show { opacity: 1; transform: translateY(0); }

@media (max-width: 1320px) {
  .desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  flex: 0 1 auto;
  min-width: 0;
}
  .brand { min-width: 0; }
  .mobile-toggle { display: inline-grid; }
  .header-actions .ghost-button, .header-actions .primary-button { display: none; }
.hero, .module-hero { grid-template-columns: 1fr; min-height: auto; }
  .visual-card, .product-shot { min-height: 320px; }
  .grid.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  :root { --header-h: 72px; }
  .announcement { justify-content: space-between; text-align: left; }
  .site-header-inner { width: min(100% - 24px, 1440px); min-height: 72px; gap: 10px; }
.brand img { width: 44px; height: 44px; }
  .brand strong { font-size: 0.96rem; }
  .region-selector span { display: none; }
  .region-selector select { max-width: 94px; font-size: 0.82rem; }
  .page, .site-footer { width: min(100% - 28px, var(--max)); }
  .grid.two, .grid.three, .grid.four, .form-grid { grid-template-columns: 1fr; }
  .panel-pad, .card { padding: 18px; }
  .hero-actions .primary-button, .hero-actions .ghost-button, .action-row .primary-button, .action-row .ghost-button, .action-row .soft-button { width: 100%; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cookie-banner { align-items: stretch; flex-direction: column; }
  .cookie-actions button { flex: 1; }
}

@media (max-width: 520px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  .mobile-nav.open { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .region-selector { display: none; }
}

body.theme-light .site-header {
  background: rgba(238, 242, 246, 0.94);
}

body.theme-light .visual-card,
body.theme-light .product-shot {
  background: linear-gradient(145deg, #161423, #2a1933 55%, #4c1d46);
}

@media (min-width: 1321px) {
  .desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  flex: 0 1 auto;
  min-width: 0;
}
  .site-header-inner { gap: 12px; }
  .header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex: 0 0 auto;
  margin-left: auto;
  position: relative;
  z-index: 2;
}
}

@media (min-width: 821px) and (max-width: 1120px) {
  .grid.three, .grid.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}


/* Customer-ready navigation and crisp product visuals */
.visual-card,
.product-shot {
  isolation: isolate;
}
.visual-card.brand-art {
  min-height: 300px;
  padding: 28px;
}
.visual-card.brand-art img {
  width: min(330px, 84%);
  height: auto;
  object-fit: contain;
  border-radius: 24px;
}
.visual-card.compact-art {
  min-height: 220px;
  padding: 26px;
}
.visual-card.compact-art img {
  width: min(190px, 72%);
  height: auto;
  object-fit: contain;
  border-radius: 22px;
}
.module-hero .visual-card { min-height: 250px; }
.product-shot {
  min-height: 300px;
  padding: 22px;
}
.product-shot img {
  width: min(620px, 94%);
  height: auto;
  object-fit: contain;
}
.feature-grid .card,
.usp-grid .card {
  overflow: hidden;
}
.feature-grid .card-icon,
.usp-grid .card-icon {
  width: 44px;
  height: 44px;
  object-fit: cover;
}
.account-option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.account-option {
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0 16px;
  color: var(--heading);
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  box-shadow: 0 9px 22px rgba(31, 41, 61, 0.07);
  font-weight: 900;
  text-align: left;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}
.account-option:hover,
.account-option:focus-visible {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft), var(--glow);
  outline: none;
}
.account-option-grid .account-option:last-child { grid-column: 1 / -1; }
.account-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 14px 0 4px;
}
.account-summary-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
}
.account-summary-card span {
  display: block;
  color: var(--dim);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.account-summary-card strong { color: var(--heading); }
@media (max-width: 1320px) {
  .signin-button span:last-child { display: none; }
  .signin-button { padding: 0 10px; }
}
@media (max-width: 820px) {
  .visual-card.brand-art, .visual-card.compact-art, .product-shot { min-height: 210px; }
  .account-summary-grid, .account-option-grid { grid-template-columns: 1fr; }
  .account-option-grid .account-option:last-child { grid-column: auto; }
}
/* Premium website shell, centered dark navigation, account menu, and card readability */
.site-header,
body.theme-light .site-header,
body.theme-dark .site-header {
  background: linear-gradient(180deg, rgba(12, 9, 20, 0.985), rgba(7, 7, 14, 0.975)) !important;
  border-bottom: 1px solid rgba(255, 46, 147, 0.24);
  box-shadow: 0 16px 40px rgba(7, 7, 14, 0.24);
  backdrop-filter: saturate(145%) blur(16px);
}
.site-header .brand strong { color: #ffffff; }
.site-header .brand small { color: #ff2e93; }
.site-header .brand img { box-shadow: 0 12px 28px rgba(255, 46, 147, 0.24); }
.site-header-inner { max-width: 1500px; }
.desktop-nav > a {
  color: rgba(247, 242, 251, 0.86);
  background: transparent;
  border: 1px solid transparent;
  padding: 10px 15px;
  font-size: 0.91rem;
  font-weight: 850;
}
.desktop-nav > a:hover,
.desktop-nav > a:focus-visible,
.desktop-nav > a[aria-current] {
  color: #ffffff;
  background: rgba(255, 46, 147, 0.13);
  border-color: rgba(255, 46, 147, 0.28);
  box-shadow: 0 10px 24px rgba(255, 46, 147, 0.12);
}
.account-menu-wrap { position: relative; display: inline-flex; align-items: center; gap: 8px; }
.account-icon-button,
.signin-link-button {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  background: linear-gradient(180deg, rgba(255,255,255,0.085), rgba(255,255,255,0.035));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10), 0 10px 26px rgba(0,0,0,0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}
.account-icon-button { width: 42px; border-radius: 999px; padding: 0; }
.signin-link-button { border-radius: 999px; padding: 0 16px; font-weight: 900; }
.account-icon-button:hover,
.account-icon-button:focus-visible,
.signin-link-button:hover,
.signin-link-button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 46, 147, 0.5);
  background: linear-gradient(180deg, rgba(255,46,147,0.22), rgba(255,255,255,0.045));
  box-shadow: 0 16px 34px rgba(255, 46, 147, 0.18);
  outline: none;
}
.account-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: 232px;
  padding: 10px;
  border: 1px solid rgba(255, 46, 147, 0.26);
  border-radius: 18px;
  background: linear-gradient(180deg, #15111e, #0c0b14);
  box-shadow: 0 24px 54px rgba(0,0,0,0.32), 0 0 0 1px rgba(255,255,255,0.035) inset;
}
.account-menu[hidden] { display: none; }
.account-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  right: 22px;
  width: 12px;
  height: 12px;
  transform: rotate(45deg);
  background: #15111e;
  border-left: 1px solid rgba(255, 46, 147, 0.26);
  border-top: 1px solid rgba(255, 46, 147, 0.26);
}
.account-menu button {
  width: 100%;
  min-height: 42px;
  text-align: left;
  border: 0;
  border-radius: 12px;
  padding: 0 12px;
  color: rgba(247, 242, 251, 0.9);
  background: transparent;
  font-weight: 850;
}
.account-menu button:hover,
.account-menu button:focus-visible {
  color: #ffffff;
  background: rgba(255, 46, 147, 0.14);
  outline: none;
}

.grid.three { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid.four { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.card,
.plan-card,
.account-summary-card,
.panel {
  overflow-wrap: anywhere;
}
.card { min-height: auto; overflow: visible; }
.card h3, .plan-card h3, .photo-card h2 { line-height: 1.18; }
.card p, .features-list li, .plan-card p, .photo-card p { line-height: 1.56; }
.plan-head { flex-wrap: wrap; }
.features-list li::before { content: "\2713"; color: var(--emerald); font-weight: 950; }
.visual-card img,
.product-shot img { filter: none; image-rendering: auto; }
.visual-card::before,
.product-shot::before { pointer-events: none; }
.trust-photo-grid { align-items: stretch; }
.photo-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--surface), var(--surface-2));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.photo-card img {
  width: 100%;
  height: clamp(230px, 27vw, 340px);
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}
.photo-card > div { padding: clamp(20px, 3vw, 30px); }
body.theme-dark .photo-card { background: linear-gradient(145deg, rgba(23,27,39,0.96), rgba(17,23,37,0.95)); }
.account-login-card input { min-height: 48px; }
.session-note { margin-top: 16px; }
.session-actions { margin-top: 16px; }

@media (min-width: 1181px) {
  .desktop-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    flex-wrap: nowrap;
    gap: 5px;
  }
  .mobile-toggle { display: none !important; }
}
@media (max-width: 1180px) {
  .desktop-nav { display: none !important; }
  .mobile-toggle { display: inline-grid !important; }
  .signin-link-button { display: inline-flex; }
}
@media (max-width: 620px) {
  .signin-link-button { display: none; }
  .brand span { display: none; }
  .account-menu { right: -52px; }
}

/* Premium refinement: compact visuals, header download action, and module motion panels */
.header-download-button {
  min-height: 42px;
  border: 1px solid rgba(255, 46, 147, 0.34);
  border-radius: 999px;
  padding: 0 18px;
  color: #fff;
  background: linear-gradient(135deg, #ff2e93, #9e1465);
  box-shadow: 0 14px 28px rgba(255, 46, 147, 0.2), inset 0 1px 0 rgba(255,255,255,0.26);
  font-size: 0.9rem;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}
.header-download-button:hover,
.header-download-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(255, 46, 147, 0.28), inset 0 1px 0 rgba(255,255,255,0.32);
  outline: none;
}

.visual-card,
.product-shot {
  width: fit-content;
  max-width: 100%;
  min-height: auto !important;
  padding: 18px !important;
  justify-self: center;
}
.visual-card.brand-art { width: min(100%, 380px); }
.visual-card.brand-art img { width: min(300px, 100%) !important; }
.visual-card.compact-art { width: min(100%, 220px); }
.visual-card.compact-art img { width: min(150px, 100%) !important; }
.product-shot.compact-shot { width: min(100%, 560px); }
.product-shot.compact-shot img { width: min(500px, 100%) !important; }
.photo-card img { height: clamp(160px, 18vw, 220px) !important; object-fit: contain; padding: 18px; background: linear-gradient(145deg, #14101e, #23172e); }
.card, .plan-card, .photo-card, .panel { overflow: hidden; }
.card p, .plan-card p, .photo-card p, .features-list li { overflow-wrap: normal; word-break: normal; }
.purchase-confidence { display: grid; gap: 14px; }
.purchase-confidence .trust-strip { margin-top: 0; }
.pricing-trust .pill { background: rgba(217, 21, 132, 0.08); border-color: rgba(217, 21, 132, 0.22); color: var(--heading); }
body.theme-dark .pricing-trust .pill { color: #f8f2fb; background: rgba(255, 46, 147, 0.09); }

.module-motion,
.signin-animation {
  position: relative;
  width: min(100%, 360px);
  min-height: 240px;
  border: 1px solid rgba(255, 46, 147, 0.22);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(17, 20, 32, 0.98), rgba(38, 20, 48, 0.96)),
    radial-gradient(circle at 70% 20%, rgba(255, 46, 147, 0.18), transparent 12rem);
  box-shadow: 0 24px 58px rgba(12, 9, 20, 0.24), inset 0 1px 0 rgba(255,255,255,0.08);
  overflow: hidden;
  justify-self: end;
}
.module-motion.wide { width: min(100%, 440px); min-height: 220px; justify-self: center; }
.module-motion::after,
.signin-animation::after {
  content: "";
  position: absolute;
  left: -35%;
  top: 0;
  width: 34%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.16), transparent);
  transform: skewX(-16deg);
  animation: pv-shine 3.4s ease-in-out infinite;
}
.motion-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 104px;
  height: 104px;
  transform: translate(-50%, -50%);
  border-radius: 28px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.38rem;
  font-weight: 950;
  letter-spacing: 0;
  background: linear-gradient(145deg, rgba(255,46,147,0.95), rgba(55,31,74,0.96));
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 18px 34px rgba(255,46,147,0.18), inset 0 1px 0 rgba(255,255,255,0.22);
  z-index: 2;
}
.motion-ring,
.motion-gauge,
.motion-plate,
.motion-shield,
.motion-timeline,
.motion-sweep {
  position: absolute;
  inset: 42px;
  border-radius: 999px;
  border: 14px solid rgba(255,255,255,0.08);
  border-top-color: #ff2e93;
  border-right-color: #2de0a5;
  animation: pv-spin 5.5s linear infinite;
}
.motion-gauge { border-radius: 40px; border-width: 10px; animation-duration: 4.2s; }
.motion-sweep { inset: 56px 34px; height: 86px; border-radius: 26px; border-width: 0; background: linear-gradient(90deg, transparent, rgba(45,224,165,0.45), transparent); animation: pv-sweep 2.4s ease-in-out infinite; }
.motion-shield { inset: 44px 96px 48px; border-radius: 34px 34px 48px 48px; border-width: 9px; animation-duration: 6s; }
.motion-plate { inset: 48px; border-width: 11px; }
.motion-timeline { inset: 62px 44px; height: 8px; border: 0; border-radius: 999px; background: linear-gradient(90deg, #ff2e93, #2de0a5); animation: pv-pulse 2s ease-in-out infinite; }
.motion-chip {
  position: absolute;
  min-width: 70px;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fdf8ff;
  background: rgba(255,255,255,0.085);
  border: 1px solid rgba(255,255,255,0.14);
  font-size: 0.78rem;
  font-weight: 900;
  z-index: 3;
  animation: pv-float 3.8s ease-in-out infinite;
}
.chip-one { left: 22px; top: 24px; }
.chip-two { right: 22px; top: 72px; animation-delay: 0.4s; }
.chip-three { left: 32px; bottom: 28px; animation-delay: 0.8s; }
.motion-bar {
  position: absolute;
  right: 28px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff2e93, #2de0a5);
  animation: pv-bar 2.6s ease-in-out infinite;
}
.bar-one { bottom: 34px; width: 116px; }
.bar-two { bottom: 52px; width: 88px; animation-delay: 0.22s; }
.bar-three { bottom: 70px; width: 132px; animation-delay: 0.44s; }
.motion-stack {
  position: absolute;
  left: 52%;
  width: 140px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(255,46,147,0.28), rgba(45,224,165,0.22));
  border: 1px solid rgba(255,255,255,0.12);
  transform: translateX(-50%);
}
.stack-one { top: 76px; }
.stack-two { top: 116px; }
.stack-three { top: 156px; }
.login-screen {
  position: absolute;
  left: 42px;
  right: 42px;
  top: 42px;
  bottom: 42px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.16);
  background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035));
}
.login-shield {
  position: absolute;
  left: 50%;
  top: 47%;
  width: 92px;
  height: 108px;
  transform: translate(-50%, -50%);
  border-radius: 28px 28px 42px 42px;
  border: 8px solid #ff2e93;
  box-shadow: 0 16px 34px rgba(255,46,147,0.2);
}
.login-key {
  position: absolute;
  left: 50%;
  top: 58%;
  width: 116px;
  height: 12px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(90deg, #2de0a5, #ff2e93);
  animation: pv-bar 2.4s ease-in-out infinite;
}
.login-pulse {
  position: absolute;
  inset: 42px;
  border-radius: 28px;
  border: 1px solid rgba(45,224,165,0.22);
  animation: pv-pulse 2.2s ease-in-out infinite;
}
.signin-shell { align-items: stretch; }
.signin-info-card { display: grid; align-content: center; }
.signin-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}
.signin-mini-grid span {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  color: var(--heading);
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  font-weight: 850;
}
.signin-success-card { max-width: 820px; }

@keyframes pv-spin { to { transform: rotate(360deg); } }
@keyframes pv-shine { 0%, 42% { left: -40%; } 70%, 100% { left: 115%; } }
@keyframes pv-sweep { 0%, 100% { transform: translateX(-22%); opacity: 0.55; } 50% { transform: translateX(22%); opacity: 1; } }
@keyframes pv-bar { 0%, 100% { transform: scaleX(0.72); transform-origin: left center; } 50% { transform: scaleX(1); transform-origin: left center; } }
@keyframes pv-pulse { 0%, 100% { opacity: 0.48; transform: scale(0.98); } 50% { opacity: 1; transform: scale(1.02); } }
@keyframes pv-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

@media (min-width: 1181px) {
  .site-header-inner { padding-inline: 4px; }
  .desktop-nav { gap: 8px; }
}
@media (max-width: 1180px) {
  .header-download-button { min-height: 40px; padding-inline: 14px; font-size: 0.84rem; }
}
@media (max-width: 820px) {
  .module-motion, .signin-animation { width: 100%; min-height: 210px; justify-self: stretch; }
  .photo-card img { height: 180px !important; }
  .signin-mini-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .header-download-button { padding-inline: 12px; font-size: 0.78rem; }
  .account-icon-button { width: 40px; min-height: 40px; }
}

/* Motion-panel containment pass: no internal scroll or hidden clipping in rendered QA */
.module-motion,
.signin-animation {
  min-height: 280px;
  overflow: hidden;
  contain: paint;
}
.module-motion.wide { min-height: 310px; }
.module-motion::after,
.signin-animation::after {
  left: 0;
  width: 30%;
  animation: pv-shine-track 3.4s ease-in-out infinite;
}
.motion-ring,
.motion-gauge,
.motion-plate,
.motion-shield { inset: 54px; }
.motion-shield { inset: 54px 104px 58px; }
.motion-sweep { inset: 68px 42px; height: 76px; }
.chip-one { left: 24px; top: 26px; }
.chip-two { right: 24px; top: 82px; }
.chip-three { left: 34px; bottom: 34px; }
.bar-one { bottom: 42px; }
.bar-two { bottom: 61px; }
.bar-three { bottom: 80px; }
@keyframes pv-shine-track {
  0%, 42% { transform: translateX(-165%) skewX(-16deg); }
  70%, 100% { transform: translateX(470%) skewX(-16deg); }
}
@media (max-width: 820px) {
  .module-motion, .signin-animation { min-height: 250px; }
  .module-motion.wide { min-height: 270px; }
}

/* Final motion-height polish */
.module-motion { min-height: 304px; }
.module-motion.wide { min-height: 344px; }
@media (max-width: 820px) {
  .module-motion { min-height: 270px; }
  .module-motion.wide { min-height: 300px; }
}

/* ProtecVox sign-in header refinement */
@media (min-width: 1181px) {
  .site-header-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 20px;
  }

  .desktop-nav {
    position: static !important;
    left: auto !important;
    transform: none !important;
    justify-content: flex-start;
    margin: 0;
    min-width: 0;
  }

  .header-actions {
    justify-self: end;
    margin-left: 0;
  }
}

.signin-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  padding: 0 18px;
  border: 1px solid rgba(255, 48, 151, .32);
  background: linear-gradient(135deg, #ff2d95, #7f2fff);
  color: #fff;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 14px 30px rgba(255, 45, 149, .24);
}

.signin-link-button:hover,
.signin-link-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(255, 45, 149, .32), inset 0 1px 0 rgba(255, 255, 255, .35);
}

.signin-hero-clean {
  grid-template-columns: 1fr;
  min-height: auto;
}

.signin-shell {
  grid-template-columns: minmax(300px, .92fr) minmax(360px, 1fr);
  align-items: stretch;
}

.signin-shell .signin-animation {
  min-height: 430px;
  order: 1;
}

.signin-shell .account-login-card {
  order: 2;
}

.signin-success-card {
  max-width: 760px;
}

@media (max-width: 980px) {
  .signin-shell {
    grid-template-columns: 1fr;
  }

  .signin-shell .signin-animation {
    min-height: 300px;
  }
}
/* End ProtecVox sign-in header refinement */

