/* === Kangaroo VPN — shared landing-page theme === */
:root {
  color-scheme: dark;
  --bg: #000;
  --text: #f4f5f7;
  --text-soft: #d3d6dc;
  --muted: #9aa0a8;
  --accent: #6cffb1;
  --accent-2: #6cb6ff;
  --accent-pink: #ff77c6;
  --glass: rgba(255, 255, 255, 0.04);
  --glass-mid: rgba(255, 255, 255, 0.07);
  --glass-strong: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(255, 255, 255, 0.10);
  --glass-border-hi: rgba(255, 255, 255, 0.25);
  --radius: 20px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html, body {
  margin: 0;
  background: #000;
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.55;
}
body::before {
  content: "";
  position: fixed; inset: -10%; z-index: -2;
  background:
    radial-gradient(45vw 45vw at 18% 12%, rgba(108, 255, 177, 0.28), transparent 60%),
    radial-gradient(38vw 38vw at 88% 22%, rgba(108, 182, 255, 0.24), transparent 60%),
    radial-gradient(50vw 50vw at 50% 90%, rgba(255, 119, 198, 0.20), transparent 60%);
  filter: saturate(130%) blur(20px);
  animation: drift 28s ease-in-out infinite alternate;
}
@keyframes drift {
  0%   { transform: translate3d(0, 0, 0) rotate(0deg); }
  50%  { transform: translate3d(-3%, 2%, 0) rotate(2deg); }
  100% { transform: translate3d(2%, -3%, 0) rotate(-2deg); }
}

a { color: var(--accent-2); text-decoration: none; }
a:hover { text-decoration: underline; }

.shell { max-width: 920px; margin: 0 auto; padding: 1.5rem; position: relative; z-index: 1; }

.topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 0; gap: 1rem; flex-wrap: wrap;
}
.brand {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-weight: 700; font-size: 1.05rem; color: var(--text); text-decoration: none;
}
.brand .logo {
  width: 32px; height: 32px; border-radius: 8px;
  background: linear-gradient(135deg, #6cffb1 0%, #6cb6ff 55%, #ff77c6 100%);
  display: grid; place-items: center; font-size: 18px;
}
.topnav { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.topnav a {
  color: var(--text-soft); padding: 0.45rem 0.85rem; border-radius: 999px;
  font-size: 0.92rem; border: 1px solid transparent;
}
.topnav a:hover { color: var(--text); background: var(--glass); border-color: var(--glass-border); text-decoration: none; }

.eyebrow {
  color: var(--accent); text-transform: uppercase;
  letter-spacing: 0.18em; font-size: 0.78rem; font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.06; margin: 0.6rem 0 1rem;
  background: linear-gradient(180deg, #fff 0%, #b4c2d8 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  margin: 2rem 0 0.75rem; letter-spacing: -0.01em;
  background: linear-gradient(180deg, #fff 0%, #c9d0db 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
h3 { font-size: 1.1rem; margin: 1.25rem 0 0.5rem; color: var(--text); }
p, li { color: var(--text-soft); }
strong, b { color: var(--text); }

.lead {
  font-size: 1.1rem; color: var(--text-soft);
  max-width: 60ch; margin: 0 0 1.5rem;
}

.panel {
  padding: 1.75rem; border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(28px) saturate(170%);
  -webkit-backdrop-filter: blur(28px) saturate(170%);
  box-shadow: 0 24px 60px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.10);
  margin: 1.25rem 0;
}

.cta-row { display: flex; gap: 0.75rem; flex-wrap: wrap; margin: 1.5rem 0; }
.btn {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.85rem 1.4rem; border-radius: 14px;
  font-weight: 600; font-size: 1rem; text-decoration: none;
  border: 1px solid transparent; cursor: pointer;
  transition: transform 0.12s, filter 0.15s, background 0.15s;
}
.btn-primary {
  background: linear-gradient(180deg, #7cffba 0%, #43e89a 100%);
  color: #002818; border-color: rgba(108,255,177,0.45);
  box-shadow: 0 8px 24px rgba(108,255,177,0.25);
}
.btn-primary:hover { transform: translateY(-1px); filter: brightness(1.07); text-decoration: none; }
.btn-secondary {
  background: var(--glass); color: var(--text);
  border-color: var(--glass-border);
  backdrop-filter: blur(14px);
}
.btn-secondary:hover { background: var(--glass-strong); border-color: var(--glass-border-hi); text-decoration: none; }

.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0 1.5rem; }
.chip {
  padding: 0.4rem 0.85rem; border-radius: 999px;
  background: var(--glass-mid); border: 1px solid var(--glass-border);
  font-size: 0.88rem; color: var(--text-soft);
}

.feature-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem; margin: 1.5rem 0;
}
.feature-card {
  padding: 1rem 1.1rem; border-radius: 14px;
  background: var(--glass-mid); border: 1px solid var(--glass-border);
}
.feature-card .icon { font-size: 1.5rem; }
.feature-card h4 { margin: 0.4rem 0 0.25rem; font-size: 1rem; color: var(--text); }
.feature-card p { margin: 0; font-size: 0.9rem; color: var(--muted); }

.steps { counter-reset: step; padding-left: 0; list-style: none; }
.steps li {
  position: relative; padding: 0.85rem 1rem 0.85rem 3.25rem;
  margin: 0.5rem 0; border-radius: 14px;
  background: var(--glass-mid); border: 1px solid var(--glass-border);
}
.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
  width: 1.85rem; height: 1.85rem; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #6cffb1, #6cb6ff);
  color: #002818; font-weight: 700; font-size: 0.9rem;
}

table.compare {
  width: 100%; border-collapse: collapse; margin: 1rem 0;
  background: var(--glass-mid); border-radius: 14px; overflow: hidden;
}
table.compare th, table.compare td {
  padding: 0.7rem 0.9rem; text-align: left;
  border-bottom: 1px solid var(--glass-border);
  color: var(--text-soft); font-size: 0.95rem;
}
table.compare th { color: var(--text); background: rgba(255,255,255,0.04); font-weight: 600; }
table.compare tr:last-child td { border-bottom: none; }

details.faq {
  padding: 1rem 1.1rem; border-radius: 14px;
  background: var(--glass-mid); border: 1px solid var(--glass-border);
  margin: 0.5rem 0;
}
details.faq summary {
  cursor: pointer; font-weight: 600; color: var(--text);
  list-style: none; padding-right: 1.5rem; position: relative;
}
details.faq summary::after {
  content: "+"; position: absolute; right: 0; top: 0; font-size: 1.2rem; color: var(--muted);
}
details.faq[open] summary::after { content: "−"; }
details.faq p { margin: 0.6rem 0 0; }

.breadcrumbs { font-size: 0.85rem; color: var(--muted); margin: 0.5rem 0 1rem; }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--text-soft); }

.footer {
  margin: 3rem 0 1rem; padding: 1.5rem 0;
  border-top: 1px solid var(--glass-border);
  color: var(--muted); font-size: 0.88rem;
  display: flex; gap: 1rem; justify-content: space-between; flex-wrap: wrap;
}
.footer a { color: var(--muted); }

@media (max-width: 600px) {
  .shell { padding: 1rem; }
  .panel { padding: 1.25rem; }
  .btn { width: 100%; justify-content: center; }
}
