:root {
  --bg: #fff7e5;
  --paper: #fffdf7;
  --card: #ffffff;
  --text: #17231f;
  --muted: #5d6d67;
  --dark: #15231f;
  --dark-soft: #20322d;
  --accent: #f2bd4b;
  --accent-soft: #ffe8ac;
  --line: rgba(21, 35, 31, 0.12);
  --shadow: 0 24px 70px rgba(21, 35, 31, 0.12);
  --container: 1140px;
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 0%, rgba(242, 189, 75, 0.34), transparent 32rem),
    radial-gradient(circle at 86% 10%, rgba(255, 232, 172, 0.72), transparent 30rem),
    linear-gradient(180deg, var(--bg) 0%, var(--paper) 42%, #fff9ed 100%);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; }

a {
  color: inherit;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 99;
  transform: translateY(-150%);
  background: var(--dark);
  color: #fff;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 247, 229, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(21, 35, 31, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: -0.035em;
  color: var(--dark);
}

.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  object-fit: cover;
  background: #050505;
  box-shadow: 0 12px 26px rgba(21, 35, 31, 0.18);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.nav a {
  text-decoration: none;
  font-weight: 720;
}

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

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(5.2rem, 9vw, 8.4rem) 0 clamp(4.2rem, 8vw, 7rem);
}

.hero-with-image {
  color: #fffdf5;
  background:
    linear-gradient(90deg, rgba(2, 7, 6, 0.92) 0%, rgba(8, 13, 11, 0.78) 44%, rgba(8, 13, 11, 0.30) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.16), rgba(0,0,0,0.34)),
    url("hero-shield-banner.webp") center / cover no-repeat;
}

.hero-with-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(255, 247, 229, 0.96));
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.72fr);
  align-items: center;
  gap: clamp(2.5rem, 5vw, 5rem);
}

.eyebrow,
.section-label {
  margin: 0 0 0.9rem;
  color: var(--dark-soft);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero .eyebrow { color: var(--accent-soft); }

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

h1 {
  max-width: 11ch;
  margin: 0;
  color: #fffdf7;
  font-size: clamp(3.4rem, 8.8vw, 7.4rem);
  line-height: 0.88;
  letter-spacing: -0.075em;
  text-shadow: 0 14px 42px rgba(0, 0, 0, 0.38);
}

h2 {
  margin: 0;
  color: var(--dark);
  font-size: clamp(2.1rem, 5.2vw, 4.5rem);
  line-height: 0.96;
  letter-spacing: -0.058em;
}

h3 {
  margin: 0 0 1rem;
  color: var(--dark);
  font-size: 1.2rem;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.lead {
  max-width: 58ch;
  margin: 1.9rem 0 0;
  color: rgba(255, 253, 247, 0.86);
  font-size: clamp(1.12rem, 2vw, 1.34rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.16rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 850;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover { transform: translateY(-1px); }

.button-primary {
  background: var(--accent);
  color: #111a17;
  box-shadow: 0 16px 34px rgba(242, 189, 75, 0.25);
}

.button-primary:hover { background: #ffd26b; }

.button-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fffdf7;
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
}

.hero-card,
.feature-card,
.privacy-card,
.step-card,
.cta-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.hero-card {
  border-radius: var(--radius-lg);
  padding: clamp(1.35rem, 3vw, 2rem);
  background: rgba(255, 253, 247, 0.92);
  border-color: rgba(255, 255, 255, 0.44);
  backdrop-filter: blur(18px);
}

.hero-logo {
  width: min(225px, 72%);
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  margin: 0 auto 1.3rem;
  border-radius: 32px;
  background: #050505;
  box-shadow: 0 22px 54px rgba(21, 35, 31, 0.24);
}

.hero-card-title {
  margin: 0;
  color: var(--dark);
  font-size: 1.35rem;
  font-weight: 880;
  letter-spacing: -0.03em;
}

.hero-card-text {
  margin: 0.65rem 0 0.8rem;
  color: var(--muted);
}

.card-link {
  display: inline-flex;
  margin-bottom: 1.15rem;
  color: var(--dark);
  font-weight: 820;
}

.status-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
}

.status-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  background: var(--dark);
  color: #fff;
}

.status-list dt {
  color: rgba(255,255,255,0.78);
  font-weight: 780;
}

.status-list dd {
  margin: 0;
  color: #fff;
  font-weight: 900;
}

.section { padding: clamp(4.5rem, 8vw, 7rem) 0; }

.intro-grid,
.privacy-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.section-copy p:not(.section-label),
.section-heading p {
  max-width: 68ch;
  margin: 1.15rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.feature-card,
.step-card {
  border-radius: var(--radius-md);
  padding: clamp(1.5rem, 3vw, 2rem);
}

.card-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 1.8rem;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--dark);
  font-weight: 900;
}

.feature-card h3 {
  max-width: 8ch;
  margin-bottom: 1.2rem;
  font-size: clamp(2rem, 4.5vw, 3.7rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.feature-card p,
.step-card p,
.privacy-card p { color: var(--muted); }

.privacy-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.55), rgba(255,247,229,0.55));
}

.privacy-card {
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.1rem);
}

.plain-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.3rem;
  display: grid;
  gap: 0.85rem;
}

.plain-list li {
  position: relative;
  padding-left: 2rem;
  font-weight: 760;
}

.plain-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--dark);
  font-weight: 900;
}

.soft-note {
  border-top: 1px solid var(--line);
  margin-top: 1.45rem;
  padding-top: 1.45rem;
}

.soft-note h3 { margin-bottom: 0.7rem; }
.soft-note p { margin: 0; }

.access-section {
  position: relative;
  overflow: hidden;
  color: #fffdf7;
}

.access-with-image {
  background:
    linear-gradient(90deg, rgba(2, 7, 6, 0.94) 0%, rgba(8, 13, 11, 0.72) 46%, rgba(8, 13, 11, 0.24) 100%),
    url("access-laptop-banner.webp") center / cover no-repeat;
}

.access-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 28%, rgba(242, 189, 75, 0.22), transparent 28rem),
    linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.42));
  pointer-events: none;
}

.access-content {
  position: relative;
  z-index: 1;
}

.access-section .section-label,
.access-section h2 { color: #fffdf7; }

.access-section .section-heading p {
  color: rgba(255, 253, 247, 0.82);
  max-width: 58ch;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.1rem;
}

.step-card {
  background: rgba(255, 253, 247, 0.92);
  backdrop-filter: blur(14px);
}

.step-card span {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 1.3rem;
  border-radius: 999px;
  background: var(--dark);
  color: #fff;
  font-weight: 900;
}

.cta-section { padding-top: clamp(4rem, 7vw, 6rem); }

.cta-card {
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.7rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-card p:not(.section-label) {
  margin: 1rem 0 0;
  max-width: 70ch;
  color: var(--muted);
}

.site-footer {
  padding: 3rem 0 1.4rem;
  background: var(--dark);
  color: rgba(255,255,255,0.78);
}

.footer-layout {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-start;
}

.footer-brand {
  color: #fff;
}

.site-footer h2 {
  margin: 0 0 0.9rem;
  color: #fff;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.35rem;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.92rem;
}

.footer-bottom p { margin: 0; }

@media (max-width: 900px) {
  .hero-layout,
  .intro-grid,
  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .hero-with-image {
    background:
      linear-gradient(180deg, rgba(2, 7, 6, 0.88), rgba(2, 7, 6, 0.78)),
      url("hero-shield-banner.webp") center / cover no-repeat;
  }

  h1 { max-width: 9.5ch; }

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

  .feature-card h3 { max-width: 11ch; }

  .cta-card,
  .footer-layout {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .header-inner { min-height: 68px; }

  .nav { display: none; }

  .brand-logo {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

  .hero { padding: 4rem 0 3.7rem; }

  h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
    letter-spacing: -0.07em;
  }

  h2 { font-size: clamp(2.3rem, 12vw, 3.3rem); }

  .hero-logo {
    width: min(190px, 72%);
    border-radius: 26px;
  }

  .hero-actions { align-items: stretch; }

  .button { width: 100%; }
}


.lead-spaced { margin-top: 2.35rem; }

.platforms-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.75), rgba(255,248,234,0.92));
}

.platforms-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.platform-card {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.88);
  box-shadow: var(--shadow);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.2rem;
  text-align: center;
}

.platform-icon {
  width: 60px;
  height: 60px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffd770, var(--accent));
  color: var(--dark);
  box-shadow: 0 16px 28px rgba(242, 189, 75, 0.25);
}

.platform-icon svg {
  width: 28px;
  height: 28px;
  display: block;
}

.platform-card h3 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.faq-section {
  background: linear-gradient(180deg, rgba(245,247,251,0.95), rgba(255,255,255,0.96));
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(1.6rem, 4vw, 3.5rem);
  align-items: start;
}

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

.faq-intro p:not(.section-label) {
  margin: 1rem 0 0;
  color: var(--muted);
  max-width: 26ch;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  border: 1px solid rgba(21,35,31,0.12);
  background: rgba(255,255,255,0.95);
  border-radius: 22px;
  box-shadow: 0 10px 28px rgba(21,35,31,0.05);
  overflow: clip;
}

.faq-item summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 1.45rem 4rem 1.45rem 1.6rem;
  font-weight: 850;
  color: var(--dark);
  font-size: 1.18rem;
}

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

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(21,35,31,0.06);
  color: var(--dark);
  font-size: 1.3rem;
  font-weight: 500;
}

.faq-item[open] summary::after {
  content: '–';
}

.faq-answer {
  padding: 0 1.6rem 1.5rem;
  color: var(--muted);
}

.faq-answer p {
  margin: 0.75rem 0 0;
}

.faq-answer p:first-child {
  margin-top: 0;
}

.cta-button {
  min-width: 220px;
  min-height: 78px;
  padding-inline: 1.6rem;
  white-space: normal;
  text-align: center;
  align-self: center;
  justify-self: center;
  line-height: 1.2;
}

@media (max-width: 980px) {
  .platforms-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

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

  .faq-intro {
    position: static;
  }
}

@media (max-width: 640px) {
  .platform-grid { grid-template-columns: 1fr 1fr; }
  .faq-item summary {
    font-size: 1.02rem;
    padding: 1.1rem 3.4rem 1.1rem 1.1rem;
  }
  .faq-answer { padding: 0 1.1rem 1.1rem; }
  .cta-button { width: 100%; min-height: 58px; white-space: nowrap; }
}


/* v7 polish: policy section + premium FAQ */
h1, h2, h3, p { overflow-wrap: break-word; }

.policy-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(242, 189, 75, 0.16), transparent 24rem),
    linear-gradient(180deg, rgba(255,253,247,0.92), rgba(255,247,229,0.8));
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(2rem, 4vw, 3.6rem);
  align-items: start;
}

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

.policy-card {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.88);
  border-radius: var(--radius-md);
  padding: 1.35rem;
  box-shadow: 0 16px 38px rgba(21,35,31,0.08);
}

.policy-kicker {
  display: inline-flex;
  margin-bottom: 1.1rem;
  color: var(--accent);
  font-weight: 950;
  letter-spacing: 0.08em;
}

.policy-card h3 {
  margin-bottom: 0.75rem;
}

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

.faq-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(242, 189, 75, 0.12), transparent 26rem),
    linear-gradient(180deg, #f2f5fa 0%, #f8fafc 44%, #fffaf0 100%);
}

.faq-layout {
  grid-template-columns: minmax(280px, 0.56fr) minmax(0, 1.44fr);
  gap: clamp(2rem, 4.2vw, 4rem);
}

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

.faq-intro .split-title {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  max-width: 8.5ch;
}

.faq-intro .split-title span {
  display: block;
}

.faq-intro p:not(.section-label) {
  max-width: 31ch;
}

.vpn-explain-card {
  margin-top: 1.6rem;
  padding: 1.35rem;
  border-radius: 26px;
  background: var(--dark);
  color: rgba(255,255,255,0.78);
  box-shadow: 0 24px 60px rgba(21,35,31,0.18);
}

.vpn-explain-card h3 {
  color: #fff;
  margin-bottom: 0.7rem;
}

.vpn-explain-card p {
  margin: 0;
  color: rgba(255,255,255,0.76);
}

.vpn-explain-icon {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--dark);
  font-weight: 950;
}

.faq-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.faq-column {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.faq-list {
  display: contents;
}

.faq-item {
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.92));
  border: 1px solid rgba(21,35,31,0.11);
  box-shadow: 0 16px 36px rgba(21,35,31,0.06);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.faq-item:hover {
  transform: translateY(-1px);
  border-color: rgba(242,189,75,0.45);
  box-shadow: 0 22px 44px rgba(21,35,31,0.09);
}

.faq-item summary {
  font-size: clamp(1rem, 1.45vw, 1.14rem);
  line-height: 1.25;
  padding: 1.3rem 4rem 1.3rem 1.35rem;
}

.faq-item summary::after {
  background: var(--accent-soft);
  color: var(--dark);
}

.faq-item[open] {
  border-color: rgba(242,189,75,0.58);
}

.faq-item[open] summary {
  padding-bottom: 1rem;
}

.faq-answer {
  font-size: 0.98rem;
  line-height: 1.68;
}

@media (max-width: 980px) {
  .policy-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
  }

  .faq-intro .split-title {
    max-width: 12ch;
  }

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

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

  .faq-intro .split-title {
    max-width: none;
  }

  .faq-intro .split-title span {
    display: inline;
  }

  .faq-intro .split-title span + span::before {
    content: " ";
  }
}


/* v8 FAQ cleanup */
.faq-intro .split-title {
  max-width: 7.1ch;
  font-size: clamp(2.7rem, 6vw, 5.2rem);
  line-height: 0.92;
}

.faq-intro .split-title span {
  display: block;
}

.vpn-explain-card {
  display: none;
}

@media (max-width: 720px) {
  .faq-intro .split-title {
    max-width: 9ch;
    font-size: clamp(2.4rem, 12vw, 4rem);
  }
}


/* v9 FAQ title short */
.faq-short-title {
  max-width: none;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 0.95;
}

.faq-short-title span {
  display: block;
}


/* v10: clickable policy cards and separate policy pages */
.policy-link-card {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.policy-link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(242,189,75,0.62);
  box-shadow: 0 24px 56px rgba(21,35,31,0.12);
}

.policy-page {
  background:
    radial-gradient(circle at 10% 0%, rgba(242,189,75,0.24), transparent 30rem),
    linear-gradient(180deg, var(--bg), #fffdf7 34%, #fff9ee 100%);
}

.policy-hero {
  padding: clamp(4.8rem, 8vw, 7.4rem) 0 clamp(2.6rem, 5vw, 4.6rem);
}

.policy-hero-inner {
  max-width: 920px;
}

.policy-hero h1 {
  max-width: 10ch;
  color: var(--dark);
  text-shadow: none;
  font-size: clamp(3.2rem, 8vw, 6.6rem);
}

.policy-hero p:not(.section-label) {
  max-width: 62ch;
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
}

.policy-content-section {
  padding: 0 0 clamp(5rem, 8vw, 7rem);
}

.policy-content-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}

.policy-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,0.82);
  box-shadow: 0 18px 42px rgba(21,35,31,0.08);
}

.sidebar-title {
  margin: 0 0 0.3rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.policy-sidebar a {
  display: block;
  padding: 0.75rem 0.85rem;
  border-radius: 14px;
  color: var(--dark);
  font-weight: 800;
  text-decoration: none;
}

.policy-sidebar a:hover {
  background: var(--accent-soft);
}

.policy-article {
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow);
  padding: clamp(1.4rem, 4vw, 3rem);
}

.policy-article .updated {
  display: inline-flex;
  margin: 0 0 1.8rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--dark);
  font-size: 0.88rem;
  font-weight: 850;
}

.policy-article h2 {
  margin: 2.4rem 0 0.85rem;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.policy-article h2:first-child {
  margin-top: 0;
}

.policy-article p {
  max-width: 78ch;
  margin: 0.85rem 0 0;
  color: var(--muted);
}

.policy-article ul {
  max-width: 78ch;
  margin: 1rem 0 1.3rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.policy-article li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--muted);
}

.policy-article li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--dark);
  font-weight: 950;
}

.policy-article a {
  color: var(--dark);
  font-weight: 850;
}

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

  .policy-sidebar {
    position: static;
  }

  .policy-hero h1 {
    max-width: 12ch;
  }
}

@media (max-width: 640px) {
  .policy-hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.4rem);
  }

  .policy-article {
    border-radius: 26px;
  }
}

/* v11: shield card image + tighter readable headings */
.brand span,
.footer-brand span {
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
}

.faq-item summary,
.hero-card-title,
.policy-card h3,
.feature-card h3,
.step-card h3,
.privacy-card h3 {
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.16;
}

.faq-item summary {
  font-size: clamp(1rem, 1.05vw, 1.12rem);
}

.hero-logo {
  width: min(100%, 14rem);
  height: 14rem;
  object-fit: cover;
  object-position: center;
  border-radius: 1.6rem;
}

/* v11b: show full shield image in hero card */
.hero-logo {
  width: min(100%, 14rem);
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: #050505;
  padding: 0.35rem;
  border-radius: 1.6rem;
  display: block;
}

/* v11c: correct centered shield image for hero card */
.hero-logo {
  width: min(100%, 15rem);
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: #050505;
  padding: 0.15rem;
  border-radius: 1.6rem;
  display: block;
  margin: 0 auto 1rem;
}

/* v11d: subtle image glow + tighter FAQ typography */
.hero-card {
  box-shadow:
    0 18px 48px rgba(14, 25, 22, 0.12),
    0 0 0 1px rgba(226, 188, 84, 0.16),
    0 0 28px rgba(226, 188, 84, 0.10);
}

.hero-logo {
  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.34),
    0 0 18px rgba(226, 188, 84, 0.14);
}

.faq-item summary {
  font-weight: 780;
  letter-spacing: -0.028em;
  line-height: 1.14;
  font-size: clamp(0.98rem, 1vw, 1.08rem);
}

.brand span,
.footer-brand span {
  letter-spacing: -0.04em;
  font-weight: 800;
}

/* v11e: cleaner OdieVPN wordmark in header and footer */
.brand span,
.footer-brand span {
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
  font-size: 0.98rem;
}

/* v12: static NL/EN language switch */
.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-left: 0.2rem;
  padding: 0.35rem 0.62rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}

.language-switch a {
  color: var(--muted);
  text-decoration: none;
}

.language-switch a:hover,
.language-switch a[aria-current="page"] {
  color: var(--dark);
}

.language-switch span {
  color: rgba(21, 35, 31, 0.28);
}

@media (max-width: 640px) {
  .language-switch {
    margin-left: auto;
    padding: 0.34rem 0.56rem;
    font-size: 0.82rem;
  }
}


/* Slightly smaller title for long English card headings */
.compact-card-title {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1;
}

/* Compact long English card heading so "unnecessary" stays on one line */
.card h3.compact-card-title,
.policy-card h3.compact-card-title,
.info-card h3.compact-card-title,
.feature-card h3.compact-card-title,
h3.compact-card-title {
  font-size: clamp(2.15rem, 4.5vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

/* Final fix for long English card title: keep "unnecessary" unbroken */
h3.no-break-title {
  font-size: clamp(1.85rem, 6vw, 2.4rem) !important;
  line-height: 1.08;
  letter-spacing: -0.035em;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}

h3.no-break-title .nowrap-word {
  white-space: nowrap;
}
