:root {
  --ink: #111827;
  --muted: #637083;
  --soft: #f5f7fb;
  --paper: #ffffff;
  --line: #dde6f2;
  --line-soft: rgba(221, 230, 242, 0.72);
  --navy: #0a1630;
  --navy-2: #13284a;
  --blue: #2f6fed;
  --blue-soft: #eaf2ff;
  --teal-soft: #eaf9f7;
  --gold-soft: #fff6df;
  --shadow: 0 18px 50px rgba(15, 35, 67, 0.08);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f9fbff 0%, #ffffff 360px),
    var(--paper);
  line-height: 1.7;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(47, 111, 237, 0.32);
  outline-offset: 3px;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

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

.narrow {
  max-width: 860px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  gap: 14px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--navy);
  font-weight: 850;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(145deg, var(--navy), var(--blue));
  box-shadow: 0 10px 24px rgba(47, 111, 237, 0.18);
}

.header-actions {
  display: grid;
  gap: 12px;
}

.nav-links,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nav-links a,
.site-footer a {
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
}

.nav-links a {
  padding: 8px 10px;
}

.nav-links a:hover,
.site-footer a:hover,
.text-link:hover {
  color: var(--blue);
}

.language-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  width: fit-content;
}

.language-switcher button {
  min-height: 30px;
  padding: 5px 9px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 780;
  cursor: pointer;
}

.language-switcher button[aria-pressed="true"],
.language-switcher button:hover {
  color: var(--navy);
  background: var(--blue-soft);
}

.hero,
.page-hero {
  background:
    linear-gradient(135deg, rgba(10, 22, 48, 0.96), rgba(19, 40, 74, 0.94)),
    var(--navy);
  color: #fff;
}

.hero-inner,
.page-hero .container {
  padding: 56px 0;
}

.hero-grid {
  display: grid;
  gap: 24px;
  align-items: end;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: #a9c8ff;
}

h1 {
  margin: 0;
  font-size: clamp(34px, 6vw, 62px);
  line-height: 1.05;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.3;
}

.hero p,
.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
}

.hero-copy {
  max-width: 760px;
}

.hero-card {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.hero-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.section {
  padding: 48px 0;
}

.section.soft {
  background: var(--soft);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 22px;
}

.section-heading p {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 16px;
}

.grid.two,
.grid.three,
.grid.four {
  grid-template-columns: 1fr;
}

.card,
.document-card,
.callout,
.contact-card,
.support-panel,
.step-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.card,
.support-panel,
.step-card {
  padding: 20px;
}

.card p,
.support-panel p,
.step-card p {
  margin: 0;
  color: var(--muted);
}

.document-section {
  padding: 42px 0 64px;
}

.document-card {
  padding: 24px;
}

.policy-doc {
  display: grid;
  gap: 18px;
}

.policy-section {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.policy-section p {
  margin: 0;
  color: #334155;
}

.policy-section ul,
.policy-section ol {
  margin: 10px 0 0;
  padding-left: 20px;
  color: #334155;
}

.policy-section li + li {
  margin-top: 6px;
}

.callout {
  padding: 20px;
  background: linear-gradient(135deg, var(--blue-soft), #fff);
}

.callout.warning {
  background: linear-gradient(135deg, var(--gold-soft), #fff);
}

.callout p {
  margin: 0;
  color: #334155;
}

.info-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.info-list div {
  display: grid;
  gap: 2px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
}

.info-list div:last-child {
  border-bottom: 0;
}

.info-list dt {
  color: var(--navy);
  font-weight: 800;
}

.info-list dd {
  margin: 0;
  color: var(--muted);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 14px;
  border-radius: var(--radius);
  font-weight: 820;
}

.button {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 14px 28px rgba(47, 111, 237, 0.18);
}

.button.secondary {
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: none;
}

.text-link {
  min-height: auto;
  padding: 0;
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-card {
  padding: 22px;
  background: linear-gradient(135deg, var(--teal-soft), #fff);
}

.contact-card p {
  margin: 0;
  color: var(--muted);
}

.contact-card a,
.email-link {
  color: var(--blue);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.steps {
  counter-reset: step;
}

.step-card {
  position: relative;
  padding-left: 58px;
}

.step-card::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 18px;
  top: 20px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-size: 13px;
  font-weight: 850;
}

[hidden] {
  display: none !important;
}

.site-footer {
  border-top: 1px solid var(--line-soft);
  background: #fff;
}

.footer-inner {
  display: grid;
  gap: 14px;
  padding: 26px 0;
  color: var(--muted);
  font-size: 13px;
}

@media (min-width: 760px) {
  .header-inner {
    grid-template-columns: auto 1fr;
    align-items: center;
  }

  .header-actions {
    justify-items: end;
  }

  .nav-links {
    justify-content: flex-end;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 340px;
  }

  .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(0, 1fr));
  }

  .document-card {
    padding: 34px;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .header-actions {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .hero-inner,
  .page-hero .container {
    padding: 42px 0;
  }

  .section {
    padding: 36px 0;
  }

  .document-card,
  .policy-section,
  .callout,
  .contact-card,
  .support-panel,
  .card {
    padding: 16px;
  }
}

/* Product landing page */
.product-page {
  background:
    radial-gradient(circle at 86% 12%, rgba(47, 111, 237, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.product-page .site-header {
  border-bottom: 1px solid rgba(215, 226, 244, 0.72);
  background: rgba(255, 255, 255, 0.82);
}

.product-page .header-inner {
  width: min(1280px, calc(100% - 32px));
}

.product-page .header-actions {
  align-items: center;
}

.landing-nav a {
  color: var(--navy);
  font-size: 15px;
  font-weight: 840;
}

.landing-nav a:hover {
  color: var(--blue);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 18px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #3678ff, #2458df);
  font-weight: 850;
  box-shadow: 0 14px 30px rgba(47, 111, 237, 0.22);
}

.landing-section {
  padding: 46px 0;
}

.landing-hero {
  padding-top: 32px;
}

.landing-hero-grid {
  display: grid;
  gap: 28px;
  align-items: center;
  min-height: 620px;
  padding: 44px;
  border: 1px solid rgba(216, 226, 243, 0.82);
  border-radius: 8px;
  background:
    radial-gradient(circle at 80% 30%, rgba(47, 111, 237, 0.16), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #edf5ff 100%);
  box-shadow: 0 24px 60px rgba(19, 42, 80, 0.09);
  overflow: hidden;
}

.landing-copy h1 {
  color: var(--navy);
  font-size: clamp(42px, 6.2vw, 78px);
  line-height: 1.08;
}

.landing-copy h1 span,
.landing-heading h2 span,
.review-hero h2 span,
.support-layout h2 span {
  color: #285eea;
}

.landing-lead {
  max-width: 640px;
  margin: 22px 0 0;
  color: #516173;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.75;
}

.landing-button {
  min-width: 148px;
}

.hero-visual-card {
  position: relative;
}

.hero-visual-card img {
  display: block;
  width: min(100%, 760px);
  margin: 0 auto;
  filter: drop-shadow(0 30px 52px rgba(42, 89, 168, 0.18));
}

.landing-feature-strip {
  margin-top: -26px;
  position: relative;
  z-index: 2;
}

.mini-feature-grid {
  display: grid;
  gap: 16px;
}

.mini-feature-grid article,
.feature-card,
.review-grid article,
.support-topic {
  border: 1px solid rgba(216, 226, 243, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 38px rgba(19, 42, 80, 0.07);
}

.mini-feature-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 16px;
  align-items: center;
  padding: 20px 24px;
}

.mini-feature-grid strong {
  color: var(--navy);
  font-size: 18px;
}

.mini-feature-grid p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
}

.mini-3d,
.feature-icon,
.gold-crown {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 8px;
  background: linear-gradient(145deg, #f9fbff, #dceaff);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 16px 26px rgba(47, 111, 237, 0.18);
}

.mini-3d::before,
.feature-icon::before,
.gold-crown::before {
  color: #2264ec;
  font-size: 26px;
  font-weight: 900;
}

.mini-3d.chat::before,
.feature-icon.mail::before {
  content: "...";
}

.mini-3d.book::before,
.feature-icon.card::before {
  content: "▤";
}

.mini-3d.globe::before,
.feature-icon.globe::before {
  content: "◎";
}

.feature-showcase {
  display: grid;
  gap: 24px;
  align-items: stretch;
}

.phone-ui {
  min-height: 560px;
  padding: 26px;
  border: 12px solid #111827;
  border-radius: 42px;
  background: linear-gradient(180deg, #fbfdff, #eef5ff);
  box-shadow: 0 26px 70px rgba(17, 24, 39, 0.18);
}

.phone-top {
  display: flex;
  justify-content: space-between;
  color: var(--navy);
  font-size: 13px;
  font-weight: 850;
}

.bubble {
  width: 82%;
  margin-top: 24px;
  padding: 16px;
  border-radius: 8px;
  color: var(--navy);
  background: #fff;
  box-shadow: 0 12px 28px rgba(19, 42, 80, 0.08);
}

.bubble.right {
  margin-left: auto;
  color: #fff;
  background: linear-gradient(135deg, #3678ff, #2458df);
}

.success-pill {
  margin-top: 28px;
  padding: 14px 16px;
  border-radius: 8px;
  color: #087b61;
  background: #dffaf0;
  font-weight: 850;
}

.feature-grid {
  display: grid;
  gap: 16px;
}

.feature-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 18px;
  padding: 24px;
}

.feature-card h3,
.feature-card p {
  grid-column: 2;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.feature-icon.cafe::before {
  content: "CA";
  font-size: 18px;
}

.feature-icon.mic::before {
  content: "◉";
}

.feature-icon.game::before {
  content: "+";
  font-size: 34px;
}

.feature-icon.calendar::before {
  content: "✓";
}

.feature-icon.lock::before {
  content: "▣";
}

.feature-icon.payment::before {
  content: "$";
}

.feature-icon.privacy::before {
  content: "○";
}

.membership-band {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  align-items: center;
  margin-top: 22px;
  padding: 18px 24px;
  border: 1px solid rgba(218, 166, 49, 0.32);
  border-radius: 8px;
  background: linear-gradient(135deg, #fffaf0, #fff);
  color: #775113;
  box-shadow: 0 16px 38px rgba(169, 120, 24, 0.08);
}

.gold-crown {
  width: 48px;
  height: 48px;
  background: linear-gradient(145deg, #fff6d8, #e8aa30);
}

.gold-crown::before {
  content: "♕";
  color: #9a650c;
}

.review-section {
  background: linear-gradient(180deg, #f7fbff, #fff);
}

.review-hero {
  display: grid;
  gap: 20px;
  align-items: center;
  margin-bottom: 22px;
  padding: 34px;
  border: 1px solid rgba(216, 226, 243, 0.92);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 24%, rgba(47, 111, 237, 0.13), transparent 28%),
    #fff;
}

.review-hero p {
  color: var(--muted);
}

.rating-card {
  padding: 22px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(19, 42, 80, 0.08);
  text-align: center;
}

.rating-card strong {
  display: block;
  color: #285eea;
  font-size: 52px;
  line-height: 1;
}

.rating-card span,
.review-grid span {
  color: #f3ad18;
  letter-spacing: 0;
}

.review-grid {
  display: grid;
  gap: 16px;
}

.review-grid article {
  padding: 20px;
}

.avatar {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(145deg, #72a8ff, #2458df);
  font-weight: 900;
}

.review-grid p {
  color: #3f4f63;
}

.metric-row {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding: 22px;
  border: 1px solid rgba(216, 226, 243, 0.92);
  border-radius: 8px;
  background: linear-gradient(135deg, #eef6ff, #fff);
}

.metric-row div {
  display: grid;
  gap: 4px;
}

.metric-row strong {
  color: #285eea;
  font-size: 34px;
}

.metric-row span {
  color: var(--muted);
}

.support-landing {
  padding-bottom: 64px;
}

.support-layout {
  display: grid;
  gap: 24px;
  align-items: start;
  padding: 34px;
  border: 1px solid rgba(216, 226, 243, 0.92);
  border-radius: 8px;
  background:
    radial-gradient(circle at 80% 14%, rgba(47, 111, 237, 0.14), transparent 24%),
    linear-gradient(135deg, #fff, #f0f6ff);
}

.support-layout p {
  color: var(--muted);
}

.support-card-grid {
  display: grid;
  gap: 14px;
}

.support-topic {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 14px;
  align-items: center;
  padding: 18px;
}

.support-topic strong,
.support-topic p {
  grid-column: 2;
}

.support-topic p {
  margin: 0;
  color: var(--muted);
}

@media (min-width: 760px) {
  .product-page .header-actions {
    grid-template-columns: 1fr auto auto;
  }

  .mini-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-showcase {
    grid-template-columns: 360px minmax(0, 1fr);
  }

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

  .review-hero,
  .support-layout {
    grid-template-columns: minmax(0, 1fr) 360px;
  }

  .review-grid,
  .metric-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .landing-hero-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

@media (max-width: 760px) {
  .header-cta {
    display: none;
  }

  .landing-hero-grid,
  .support-layout,
  .review-hero {
    padding: 22px;
  }

  .landing-hero-grid {
    min-height: auto;
  }

  .phone-ui {
    min-height: 420px;
    border-width: 9px;
  }
}


/* ================= Policy / Support menu ================= */
.policy-header-inner { position: relative; }
.policy-menu-wrap { position: relative; display: inline-flex; align-items: center; }
.policy-menu-toggle {
  display: inline-flex; align-items: center; gap: 7px; min-height: 40px; padding: 8px 15px;
  border: 1px solid var(--line, #dfe7f3); border-radius: 999px; background: rgba(255,255,255,.88);
  color: var(--ink-2, #24344f); font: inherit; font-size: 14px; font-weight: 760; cursor: pointer;
  transition: background .2s, color .2s, box-shadow .2s, transform .2s;
}
.policy-menu-toggle:hover, .policy-menu-toggle[aria-expanded="true"] { color: var(--blue-deep, #1f4fd8); background: var(--sky, #eaf2ff); box-shadow: var(--shadow-sm, 0 8px 24px rgba(18,42,84,.07)); }
.policy-menu-toggle .chev { font-size: 15px; transform: translateY(-1px); }
.policy-menu-popover {
  position: absolute; top: calc(100% + 12px); right: 0; z-index: 80; width: min(360px, calc(100vw - 28px));
  padding: 12px; border: 1px solid rgba(223,231,243,.92); border-radius: 22px; background: rgba(255,255,255,.96);
  box-shadow: 0 24px 70px rgba(18,42,84,.18); backdrop-filter: blur(20px); opacity: 0; transform: translateY(8px) scale(.98); pointer-events: none; transition: .2s ease;
}
.policy-menu-open .policy-menu-popover { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.policy-menu-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 7px 8px 11px; color: var(--ink, #0d1b33); }
.policy-menu-close { border: 0; background: var(--sky, #eaf2ff); color: var(--ink-2, #24344f); border-radius: 50%; width: 30px; height: 30px; cursor: pointer; font-weight: 900; }
.policy-menu-item { display: grid; grid-template-columns: 42px 1fr; gap: 12px; align-items: center; padding: 13px 12px; border-radius: 16px; transition: background .2s, transform .2s; }
.policy-menu-item:hover { background: var(--sky-2, #f4f8ff); transform: translateY(-1px); }
.policy-menu-icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 14px; background: linear-gradient(135deg, rgba(47,111,237,.12), rgba(236,192,90,.14)); font-size: 20px; }
.policy-menu-item strong { display: block; font-size: 14px; color: var(--ink, #0d1b33); }
.policy-menu-item small { display: block; margin-top: 2px; font-size: 12.5px; color: var(--muted, #5b6b80); line-height: 1.35; }
.policy-sheet-backdrop { display: none; position: fixed; inset: 0; z-index: 88; background: rgba(8,18,38,.42); opacity: 0; pointer-events: none; transition: opacity .2s; }
.policy-sheet { position: fixed; left: 10px; right: 10px; bottom: 10px; z-index: 89; padding: 12px; border-radius: 26px; background: #fff; box-shadow: 0 30px 90px rgba(0,0,0,.24); transform: translateY(calc(100% + 30px)); transition: transform .25s cubic-bezier(.22,.61,.36,1); display: none; }
.policy-sheet-handle { width: 46px; height: 4px; border-radius: 999px; background: #d8e2f0; margin: 4px auto 8px; }
@media (max-width: 760px) {
  .policy-sheet-backdrop { display: block; }
  .policy-menu-open .policy-sheet-backdrop { opacity: 1; pointer-events: auto; }
  .policy-menu-open .policy-sheet { transform: translateY(0); }
}
.policy-hub { background: linear-gradient(180deg, rgba(234,242,255,.58), rgba(255,255,255,.82)); }
.policy-hub-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.policy-hub-card { padding: 24px; border: 1px solid var(--line-soft, rgba(223,231,243,.7)); border-radius: 24px; background: rgba(255,255,255,.86); box-shadow: var(--shadow-sm, 0 8px 24px rgba(18,42,84,.07)); transition: transform .2s, box-shadow .2s; }
.policy-hub-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md, 0 18px 48px rgba(18,42,84,.1)); }
.policy-hub-card > span { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 16px; border-radius: 16px; background: linear-gradient(135deg, rgba(47,111,237,.12), rgba(236,192,90,.18)); font-size: 24px; }
.policy-hub-card strong { display: block; margin-bottom: 8px; color: var(--ink, #0d1b33); font-size: 17px; }
.policy-hub-card p { margin: 0; color: var(--muted, #5b6b80); font-size: 14px; line-height: 1.65; }
@media (max-width: 1080px) { .compact-nav { display: none; } .policy-hub-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 760px) { .policy-menu-popover { display: none; } .policy-sheet { display: block; } .policy-menu-toggle { min-height: 36px; padding: 7px 12px; font-size: 13px; } .policy-hub-grid { grid-template-columns: repeat(2,minmax(0,1fr)); } }
@media (max-width: 480px) { .policy-hub-grid { grid-template-columns: 1fr; } }

/* ================================================================
   Mobile hamburger menu (shared across all pages)
   ================================================================ */
.mob-toggle {
  display: none; flex-direction: column; justify-content: space-around; align-items: center;
  width: 42px; height: 42px; padding: 11px 10px;
  border: 1px solid var(--line); border-radius: 13px;
  background: rgba(255,255,255,.92); cursor: pointer; flex-shrink: 0; margin-left: auto;
  transition: background .2s; -webkit-tap-highlight-color: transparent;
}
.mob-toggle:hover { background: var(--blue-soft, #eaf2ff); }
.mob-toggle span {
  display: block; width: 18px; height: 2px; border-radius: 99px;
  background: var(--navy, #0a1630);
  transition: transform .28s cubic-bezier(.22,.61,.36,1), opacity .2s; pointer-events: none;
}
.mob-open .mob-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.mob-open .mob-toggle span:nth-child(2) { opacity: 0; }
.mob-open .mob-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mob-nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 90;
  background: rgba(8,18,38,.46); opacity: 0;
  transition: opacity .28s; pointer-events: none;
}
.mob-open .mob-nav-overlay { opacity: 1; pointer-events: auto; }
.mob-nav-panel {
  position: absolute; top: 0; left: 0; right: 0;
  padding: 18px 14px 26px; background: #fff;
  border-radius: 0 0 30px 30px;
  box-shadow: 0 22px 60px rgba(13,27,51,.16);
  max-height: 92vh; overflow-y: auto; -webkit-overflow-scrolling: touch;
  transform: translateY(-110%);
  transition: transform .3s cubic-bezier(.22,.61,.36,1);
}
.mob-open .mob-nav-panel { transform: translateY(0); }
.mob-main-nav { display: grid; gap: 2px; margin-bottom: 4px; }
.mob-main-nav a {
  display: flex; align-items: center; padding: 13px 14px; border-radius: 14px;
  font-size: 17px; font-weight: 700; color: var(--navy, #0a1630);
  transition: background .15s; touch-action: manipulation; -webkit-tap-highlight-color: rgba(0,0,0,.04);
}
.mob-main-nav a:active { background: var(--blue-soft, #eaf2ff); }
.mob-nav-sep { height: 1px; background: var(--line-soft, rgba(221,230,242,.72)); margin: 10px 0; }
.mob-nav-label {
  margin: 0 0 6px; padding: 0 14px;
  font-size: 11px; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted, #637083);
}
.mob-policy-nav { display: grid; gap: 2px; margin-bottom: 8px; }
.mob-policy-item {
  display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 14px;
  font-size: 15px; font-weight: 650; color: var(--navy-2, #13284a);
  transition: background .15s; touch-action: manipulation; -webkit-tap-highlight-color: rgba(0,0,0,.04);
}
.mob-policy-item:active { background: var(--blue-soft, #eaf2ff); }
.mob-ico { font-size: 18px; flex-shrink: 0; width: 28px; text-align: center; }
.mob-lang-row {
  display: flex; gap: 6px; padding: 12px 0;
  border-top: 1px solid var(--line-soft, rgba(221,230,242,.72));
  border-bottom: 1px solid var(--line-soft, rgba(221,230,242,.72));
  margin: 8px 0 14px;
}
.mob-lang-row button {
  flex: 1; padding: 9px 4px; border: 1px solid var(--line); border-radius: 10px;
  background: transparent; color: var(--muted, #637083);
  font: inherit; font-size: 13px; font-weight: 700; cursor: pointer;
  transition: all .15s; touch-action: manipulation;
}
.mob-lang-row button[aria-pressed="true"] {
  background: var(--blue); border-color: var(--blue); color: #fff;
}
.mob-dl-btn {
  display: flex; align-items: center; justify-content: center;
  padding: 15px; border-radius: 16px;
  background: linear-gradient(135deg, #3d7bff, #1f4fd8);
  color: #fff; font-size: 16px; font-weight: 750;
  box-shadow: 0 10px 28px rgba(47,111,237,.3);
  touch-action: manipulation; transition: opacity .15s;
}
.mob-dl-btn:active { opacity: .88; }
.mob-policy-item, .policy-menu-item {
  touch-action: manipulation; -webkit-tap-highlight-color: rgba(0,0,0,.04);
}
@media (max-width: 640px) {
  .mob-toggle { display: flex; }
  .mob-nav-overlay { display: block; }
  .policy-menu-wrap { display: none !important; }
  .language-switcher { display: none !important; }
  .header-cta { display: none !important; }
}


/* ================= Premium policy pages ================= */
.policy-page { background: radial-gradient(800px 420px at 84% -6%, rgba(47,111,237,.12), transparent 60%), linear-gradient(180deg, #f7faff 0%, #fff 520px); word-break: keep-all; }
.policy-page .site-header { z-index: 70; }
.policy-page .header-inner { display: flex; align-items: center; gap: 20px; padding: 13px 0; }
.policy-page .nav-links { margin-left: auto; }
.policy-hero { padding: 34px 0 14px; background: transparent; color: var(--ink, #111827); }
.policy-hero-card { padding: clamp(30px, 5vw, 58px); border: 1px solid rgba(223,231,243,.72); border-radius: 34px; background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(234,242,255,.74)); box-shadow: 0 24px 70px rgba(18,42,84,.09); }
.policy-hero .eyebrow { color: var(--blue, #2f6fed); }
.policy-hero h1 { color: var(--ink, #111827); font-size: clamp(36px, 6vw, 64px); }
.policy-hero p { color: var(--muted, #637083); max-width: 780px; }
.policy-meta-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.policy-meta-row span { display: inline-flex; align-items: center; min-height: 32px; padding: 6px 12px; border-radius: 999px; background: rgba(47,111,237,.08); color: var(--blue-deep, #1f4fd8); font-size: 13px; font-weight: 750; }
.quick-policy-nav { padding: 16px 0 8px; }
.quick-policy-inner { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 8px; }
.quick-policy-inner a { flex: 0 0 auto; padding: 10px 14px; border: 1px solid var(--line, #dfe7f3); border-radius: 999px; background: rgba(255,255,255,.86); color: var(--ink-2, #24344f); font-size: 14px; font-weight: 760; }
.quick-policy-inner a:hover { background: var(--sky, #eaf2ff); color: var(--blue-deep, #1f4fd8); }
.policy-doc-section { padding: 20px 0 80px; }
.policy-doc-grid { display: grid; grid-template-columns: 310px minmax(0, 1fr); gap: 24px; align-items: start; }
.policy-sidebar { position: sticky; top: 92px; display: grid; gap: 16px; min-width: 0; }
.side-card, .policy-doc-card, .support-card-large, .topic-grid article, .delete-steps article, .subscription-warning, .contact-cta, .link-panels a { border: 1px solid rgba(223,231,243,.82); border-radius: 24px; background: rgba(255,255,255,.92); box-shadow: 0 14px 40px rgba(18,42,84,.07); }
.side-card { padding: 20px; overflow-wrap: break-word; word-break: break-word; }
.side-card strong { display: block; margin-bottom: 10px; color: var(--ink, #111827); }
.side-card ul { margin: 0; padding-left: 19px; color: var(--muted, #637083); font-size: 14px; }
.side-card li { margin: 8px 0; overflow-wrap: break-word; word-break: break-word; }
.contact-side a { display: block; margin-top: 10px; color: var(--blue, #2f6fed); font-weight: 780; overflow-wrap: anywhere; }
.side-button { padding: 11px 12px; border-radius: 14px; background: var(--blue-soft, #eaf2ff); text-align: center; }
.policy-doc-card { padding: clamp(22px, 4vw, 40px); }
.doc-lang section + section { margin-top: 30px; padding-top: 4px; }
.doc-lang h2 { margin: 0 0 12px; color: var(--navy, #0a1630); font-size: clamp(22px, 2.6vw, 30px); }
.doc-lang p, .doc-lang li { color: var(--muted, #637083); font-size: 15.5px; line-height: 1.82; }
.doc-lang ul { margin: 0; padding-left: 22px; }
.doc-lang a { color: var(--blue, #2f6fed); font-weight: 780; }
.table-scroll { overflow-x: auto; border: 1px solid var(--line, #dfe7f3); border-radius: 18px; }
.info-table { width: 100%; border-collapse: collapse; min-width: 760px; background: #fff; }
.info-table th, .info-table td { padding: 14px 16px; border-bottom: 1px solid var(--line, #dfe7f3); vertical-align: top; text-align: left; font-size: 14px; }
.info-table th { background: var(--sky, #eaf2ff); color: var(--blue-ink, #14305f); font-weight: 850; }
.info-table tr:last-child td { border-bottom: 0; }
.support-section { padding: 34px 0 68px; }
.support-section.soft { background: linear-gradient(180deg, rgba(234,242,255,.48), rgba(255,255,255,.68)); }
.support-grid-main, .deletion-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: stretch; }
.support-card-large { padding: clamp(24px, 4vw, 34px); }
.support-card-large h2 { color: var(--navy, #0a1630); }
.contact-list { display: grid; gap: 14px; margin: 18px 0 0; }
.contact-list div { padding: 14px; border-radius: 16px; background: var(--sky-2, #f4f8ff); }
.contact-list dt { color: var(--muted, #637083); font-size: 12px; font-weight: 850; text-transform: uppercase; }
.contact-list dd { margin: 3px 0 0; color: var(--ink, #111827); font-weight: 760; overflow-wrap: anywhere; }
.muted-card { background: linear-gradient(180deg, #fff, #f7faff); }
.topic-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.topic-grid article { padding: 22px; }
.topic-grid article > span { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 14px; border-radius: 16px; background: linear-gradient(135deg, rgba(47,111,237,.12), rgba(236,192,90,.18)); font-size: 24px; }
.topic-grid h3 { color: var(--navy, #0a1630); }
.topic-grid p { color: var(--muted, #637083); font-size: 14px; }
.link-panels { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.link-panels a { padding: 22px; }
.link-panels strong { color: var(--navy, #0a1630); }
.link-panels p { color: var(--muted, #637083); margin: 8px 0 0; font-size: 14px; }
.delete-steps { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.delete-steps article { padding: 26px; }
.delete-steps article > span { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 14px; border-radius: 50%; background: var(--blue, #2f6fed); color: #fff; font-weight: 900; }
.delete-steps p, .support-card-large p, .subscription-warning p, .contact-cta p { color: var(--muted, #637083); }
.warning-card, .subscription-warning { background: linear-gradient(180deg, #fff8e8, #fffdf6); }
.subscription-warning { padding: 24px; border-color: rgba(236,192,90,.5); }
.subscription-warning strong { display: block; color: #8a5a00; font-size: 18px; margin-bottom: 8px; }
.contact-cta { margin-top: 18px; padding: 26px; text-align: center; }
.cta-mail { display: inline-flex; margin-top: 12px; padding: 13px 18px; border-radius: 999px; background: linear-gradient(135deg, #3d7bff, var(--blue-deep, #1f4fd8)); color: #fff !important; font-weight: 850; }
@media (max-width: 1120px) { .policy-doc-grid { grid-template-columns: 1fr; } .policy-sidebar { position: static; grid-template-columns: 1fr 1fr; } .topic-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 760px) {
  .policy-page .header-inner { flex-wrap: nowrap; gap: 10px; }
  .policy-page .nav-links { display: none; }
  .policy-doc-card, .policy-hero-card { border-radius: 24px; }
  .policy-sidebar, .support-grid-main, .deletion-grid, .delete-steps, .link-panels { grid-template-columns: 1fr; }
  .topic-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .policy-doc-section { padding-bottom: 48px; }
  .policy-hero-card { padding: 24px 20px; }
}
@media (max-width: 480px) {
  .topic-grid { grid-template-columns: 1fr; }
  .policy-hero-card { border-radius: 18px; }
  .doc-lang h2 { font-size: clamp(18px, 5.5vw, 24px); }
  .delete-steps article, .policy-doc-card, .support-card-large { padding: 20px 16px; }
}
