/* VPN Try — editorial dark, single accent, mobile-first */
:root {
  --bg: #0b0c0e;
  --bg-elev: #12141a;
  --bg-card: #161922;
  --bg-card-hover: #1c2030;
  --ink: #f4f1ea;
  --muted: #9a958c;
  --faint: #6b675f;
  --line: #2a2d36;
  --line-soft: #1e2129;
  --accent: #e8a54b;
  --accent-dim: rgba(232, 165, 75, 0.14);
  --accent-ink: #1a1206;
  --ok: #6bcf9a;
  --warn: #e8a54b;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 24px 48px -28px rgba(0, 0, 0, 0.75);
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --max: 1080px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(232, 165, 75, 0.09), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 0%, rgba(80, 100, 160, 0.06), transparent 50%),
    linear-gradient(180deg, #0e1014 0%, var(--bg) 40%);
}

a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { color: #f0bc6e; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem 4rem;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(11, 12, 14, 0.82);
  border-bottom: 1px solid var(--line-soft);
}

.site-header .inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.9rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
}

.logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}
.logo:hover { color: var(--ink); text-decoration: none; }
.logo span { color: var(--accent); }

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
}
nav a {
  color: var(--muted);
  text-decoration: none;
  padding: 0.2rem 0;
}
nav a:hover,
nav a[aria-current="page"] { color: var(--ink); }
nav a[aria-current="page"] {
  box-shadow: inset 0 -2px 0 var(--accent);
}

/* —— Disclosure strip —— */
.aff-strip {
  font-size: 0.8rem;
  color: var(--faint);
  background: var(--bg-elev);
  border-bottom: 1px solid var(--line-soft);
  padding: 0.55rem 1.25rem;
  text-align: center;
}
.aff-strip a { color: var(--muted); }
.aff-strip a:hover { color: var(--accent); }

/* —— Hero —— */
.hero {
  padding: 3.25rem 0 2.5rem;
  max-width: 42rem;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1rem;
}
.eyebrow::before {
  content: "";
  width: 1.4rem;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

h1 {
  font-family: var(--font-display);
  font-weight: 550;
  font-size: clamp(2rem, 5.5vw, 3.15rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin: 0 0 1rem;
  color: var(--ink);
}

.lead {
  color: var(--muted);
  font-size: 1.125rem;
  line-height: 1.6;
  margin: 0 0 1.75rem;
  max-width: 36rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

/* —— Buttons / CTAs —— */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  background: var(--accent);
  color: var(--accent-ink) !important;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 999px;
  text-decoration: none !important;
  border: 1px solid transparent;
  box-shadow: 0 8px 24px -10px rgba(232, 165, 75, 0.55);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.cta:hover {
  background: #f0bc6e;
  color: var(--accent-ink) !important;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -10px rgba(232, 165, 75, 0.65);
}
.cta.secondary {
  background: transparent;
  color: var(--ink) !important;
  border-color: var(--line);
  box-shadow: none;
  font-weight: 600;
}
.cta.secondary:hover {
  background: var(--bg-card);
  border-color: var(--muted);
  transform: none;
}
.cta.block {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1.05rem;
  border-radius: var(--radius-sm);
}

/* —— Product offer card (Nord CTA) —— */
.offer {
  margin: 2.5rem 0;
  background: linear-gradient(145deg, var(--bg-card) 0%, #1a1e2a 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.35rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.offer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #c4782a);
}
.offer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1rem;
}
.offer-brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 0.25rem;
}
.offer-plan {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}
.pending-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--warn);
  background: var(--accent-dim);
  border: 1px solid rgba(232, 165, 75, 0.35);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  white-space: nowrap;
}
.offer-points {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: grid;
  gap: 0.45rem;
}
.offer-points li {
  color: var(--muted);
  font-size: 0.95rem;
  padding-left: 1.35rem;
  position: relative;
}
.offer-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.85;
}
.offer-foot {
  font-size: 0.8rem;
  color: var(--faint);
  margin: 0.85rem 0 0;
  line-height: 1.45;
}

/* —— Section —— */
.section { margin: 3rem 0 2rem; }
.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin-bottom: 1.15rem;
}
h2 {
  font-family: var(--font-display);
  font-weight: 550;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
  line-height: 1.25;
}
.section-head h2 { margin: 0; }
.section-sub {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 1.25rem;
  max-width: 36rem;
}

/* —— Use-case cards —— */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .grid { grid-template-columns: repeat(3, 1fr); }
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem 1.25rem;
  text-decoration: none !important;
  color: inherit;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
  min-height: 100%;
}
.card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(232, 165, 75, 0.45);
  transform: translateY(-2px);
  color: inherit;
}
.card-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 8px;
  background: var(--accent-dim);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 0.9rem;
  font-weight: 700;
}
.card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.45rem;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.card p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
  flex: 1;
}
.card-link {
  font-size: 0.88rem;
  font-weight: 650;
  color: var(--accent);
  margin-top: auto;
}

/* —— Comparison table —— */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-card);
  -webkit-overflow-scrolling: touch;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  margin: 0;
  min-width: 520px;
}
th, td {
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
}
tr:last-child td { border-bottom: none; }
th {
  color: var(--faint);
  font-weight: 650;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--bg-elev);
}
td strong { color: var(--ink); font-weight: 650; }
.fit-yes { color: var(--ok); }
.fit-mid { color: var(--warn); }
.fit-note { color: var(--muted); font-size: 0.88rem; }

/* —— Criteria / prose —— */
ul.criteria {
  padding-left: 1.15rem;
  color: var(--muted);
  margin: 0.5rem 0 1.25rem;
}
ul.criteria li { margin: 0.4rem 0; }

.prose p { color: var(--muted); margin: 0 0 1rem; }
.prose p:last-child { margin-bottom: 0; }

.badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(232, 165, 75, 0.3);
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}

.note {
  font-size: 0.88rem;
  color: var(--muted);
  border-left: 3px solid var(--accent);
  padding: 0.55rem 0 0.55rem 0.95rem;
  margin: 1.5rem 0;
  background: var(--accent-dim);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.page-intro {
  padding: 2.5rem 0 0.5rem;
  max-width: 40rem;
}

/* —— How we compare strip —— */
.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin: 1.25rem 0 0;
}
@media (min-width: 640px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
}
.pillar {
  background: var(--bg-elev);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
}
.pillar strong {
  display: block;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.pillar span {
  font-size: 0.88rem;
  color: var(--muted);
}

/* —— Footer —— */
.site-footer {
  margin-top: 3.5rem;
  padding: 2rem 0 0;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--faint);
}
.site-footer p { margin: 0 0 0.65rem; }
.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--accent); }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.1rem;
  margin-bottom: 1.25rem;
  font-size: 0.88rem;
}
.footer-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}
.footer-nav a:hover { color: var(--ink); }

@media (min-width: 768px) {
  .offer {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.5rem 2rem;
    align-items: center;
    padding: 1.75rem 1.85rem;
  }
  .offer-top { margin-bottom: 0.65rem; }
  .offer-cta-col {
    min-width: 240px;
    text-align: center;
  }
  .offer-points { margin-bottom: 0.5rem; }
}
