﻿/* ============================================================
   WavyCloud â€” Exact LeaderOS.net Design Clone
   Background: #000 (pure black)
   Font: Inter (variable, 100..900)
   Buttons: white pill / secondary ghost pill
   Nav: glass pill (rgba(255,255,255,0.05) + border rgba(255,255,255,0.1))
   Cards: rgba(255,255,255,0.05) bg + rgba(255,255,255,0.1) border + 1.25rem radius
   Blue gradient text: #60a5fa â†’ #3b82f6
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-width: 0;
  border-style: solid;
}

:root {
  color-scheme: dark;

  /* Exact LeaderOS values */
  --bg:          #000000;
  --bg-card:     rgba(255, 255, 255, 0.05);
  --border:      rgba(255, 255, 255, 0.1);
  --border-hover:rgba(255, 255, 255, 0.2);

  --text:        #ffffff;
  --text-muted:  rgba(255, 255, 255, 0.6);
  --text-dim:    rgba(255, 255, 255, 0.4);
  --text-faint:  rgba(255, 255, 255, 0.25);

  --blue-400:    #60a5fa;
  --blue-500:    #3b82f6;
  --blue-800:    #1e40af;
  --cyan:        #0096C1;

  --green:       #28b284;
  --yellow:      #fbbf24;
  --red:         #f87171;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --r-sm:   0.5rem;    /* 8px  */
  --r:      0.75rem;   /* 12px */
  --r-md:   1rem;      /* 16px */
  --r-lg:   1.25rem;   /* 20px â€” same as LeaderOS cards */
  --r-xl:   1.5rem;    /* 24px */
  --r-full: 9999px;

  --container: 1200px;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  font-family: var(--font);
  font-feature-settings: normal;
  font-variation-settings: normal;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  line-height: inherit;
  background-color: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a  { color: inherit; text-decoration: inherit; }
img { max-width: 100%; display: block; }
ul  { list-style: none; }
button { cursor: pointer; font-family: inherit; background: none; border: none; }

/* â”€â”€ SCROLLBAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 3px; }

/* â”€â”€ CONTAINER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* â”€â”€ TOPBAR ANNOUNCEMENT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.topbar {
  background: linear-gradient(90deg,
    rgba(0, 150, 193, 0.15),
    rgba(30, 64, 175, 0.1),
    rgba(0, 150, 193, 0.15));
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  padding: 9px 24px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  position: relative;
  z-index: 101;
  letter-spacing: -0.01em;
}
.topbar a { color: #fff; font-weight: 700; }

/* â”€â”€ HEADER / NAV â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* LeaderOS: position sticky, top: 0.5rem, z-index 999 */
header, .nav {
  position: sticky;
  top: 0.5rem;
  z-index: 999;
  padding: 0.5rem 0;
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* LeaderOS navbar pill: bg rgba(255,255,255,0.05), border rgba(255,255,255,0.1), border-radius 40px */
.header-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Brand */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  flex-shrink: 0;
}
.nav-brand svg { width: 28px; height: 28px; }

/* Nav links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}

/* LeaderOS nav-item: pill, color rgba(255,255,255,0.6), hover bg rgba(255,255,255,0.15) */
.nav-item {
  border-radius: var(--r-full);
  color: rgba(255, 255, 255, 0.6);
  transition: color 150ms, background-color 150ms;
  padding: 0.325rem 0.75rem;
  font-size: 0.938rem;
  letter-spacing: -0.01em;
  display: inline-block;
}
.nav-item:hover, .nav-item.active {
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* LeaderOS sign-in / CTA: white pill, black text */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: var(--r-full);
  background-color: #ffffff;
  color: #000000 !important;
  font-weight: 600;
  font-size: 0.938rem;
  padding: 6px 16px;
  letter-spacing: -0.01em;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}
.nav-cta:hover {
  background-color: rgba(255, 255, 255, 0.85);
}

/* Burger (mobile) */
.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  width: 20px;
  height: 2px;
  background: #fff;
  display: block;
  border-radius: 8px;
}

/* â”€â”€ MOBILE NAV â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mob-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 998;
  padding: 72px 24px 40px;
  flex-direction: column;
  gap: 2px;
  overflow-y: auto;
}
.mob-nav.open { display: flex; }
.mob-nav a {
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  border-radius: var(--r);
  letter-spacing: -0.01em;
  transition: background 0.15s, color 0.15s;
}
.mob-nav a:hover { background: rgba(255,255,255,0.08); color: #fff; }
.mob-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  transition: color 0.15s;
}
.mob-close:hover { color: #fff; }

/* â”€â”€ BUTTONS â€” exact LeaderOS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn {
  display: inline-flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: var(--r-full);
  transition: background-color 150ms, opacity 150ms, transform 150ms;
  font-size: 0.938rem;
  font-weight: 500;
  padding: 10px 18px;
  letter-spacing: -0.02em;
  line-height: 1em;
  font-family: var(--font);
  border: none;
  white-space: nowrap;
}
.btn svg { width: 15px; height: 15px; flex-shrink: 0; }

/* btn-white: white bg, black text (LeaderOS primary) */
.btn-white {
  background-color: #ffffff;
  color: #000000 !important;
}
.btn-white:hover { background-color: rgba(255,255,255,0.85); }

/* btn-secondary: ghost border (LeaderOS secondary) */
.btn-secondary {
  background-color: transparent;
  color: rgba(255,255,255,0.8) !important;
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-secondary:hover {
  background-color: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.35);
  color: #fff !important;
}

/* keep backwards compat */
.btn-p { @extend .btn-white; background-color: #fff; color: #000 !important; }
.btn-s { @extend .btn-secondary; background-color: transparent; color: rgba(255,255,255,0.8) !important; border: 1px solid rgba(255,255,255,0.2); }

/* â”€â”€ HERO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: 9rem;
  padding-bottom: 5rem;
  text-align: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* LeaderOS radial glow SVG behind hero */
.hero-glow {
  position: absolute;
  left: 50%;
  top: -100px;
  z-index: -1;
  transform: translateX(-50%);
  width: clamp(600px, 80vw, 1000px);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
  width: 100%;
}

/* LeaderOS badge/status pill */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: var(--r-full);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
  background-color: rgba(40, 178, 132, 0.1);
  border: 1px solid rgba(40, 178, 132, 0.2);
  color: #28b284;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #28b284;
  animation: pulse-green 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse-green {
  0%   { box-shadow: 0 0 0 0 rgba(40,178,132,0.3); }
  70%  { box-shadow: 0 0 0 8px rgba(40,178,132,0); }
  100% { box-shadow: 0 0 0 0 rgba(40,178,132,0); }
}

/* LeaderOS page-title large */
.page-title {
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  color: #fff;
}
/* Blue gradient text â€” exact from LeaderOS: from-blue-400 to-blue-500 */
.text-gradient {
  background: linear-gradient(to right, #60a5fa, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: rgba(255,255,255,0.6);
  max-width: 720px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  letter-spacing: -0.01em;
}

.hero-btns {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Trust strip */
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: -0.01em;
}
.hero-trust-item svg { width: 14px; height: 14px; opacity: 0.6; }

/* â”€â”€ STATS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.stats { padding: 0 0 5rem; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.stat {
  text-align: center;
  padding: 2rem 1rem;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat .num {
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat .lbl { font-size: 0.82rem; color: rgba(255,255,255,0.5); font-weight: 500; }

/* â”€â”€ SECTIONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sec { padding: 6rem 0; }
.sec-alt {
  position: relative;
}
.sec-alt::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.01);
  pointer-events: none;
}

/* Section header */
.sec-hdr {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}
.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-full);
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.sec-tag svg { width: 10px; height: 10px; }

.sec-hdr h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: 0.875rem;
  color: #fff;
}
.sec-hdr p {
  font-size: 0.975rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  letter-spacing: -0.01em;
}

/* â”€â”€ CARDS â€” exact LeaderOS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* .card: bg rgba(255,255,255,0.05), border rgba(255,255,255,0.1), radius 1.25rem */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: border-color 200ms, background 200ms;
}
.card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.18);
}

/* â”€â”€ FEATURE CARDS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}
.feat {
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: border-color 200ms, background 200ms;
}
.feat:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.18);
}
.feat .ico {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--r);
  display: grid;
  place-items: center;
  margin-bottom: 1.125rem;
}
.feat .ico svg { width: 20px; height: 20px; }
.feat h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
  letter-spacing: -0.02em;
}
.feat p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  letter-spacing: -0.005em;
}
/* ── PRICING CARDS — WH PLANS ───────────────────────────────── */

/* Plans layout: 3 on row 1, 2 centered on row 2 */
.wh-plans-wrap {
  margin-top: 2rem;
}

/* Row 1: 3 cards */
.wh-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

/* Row 2: 2 cards centered */
.wh-plans-row2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: calc(66.666% - 0.33rem);
  margin: 0 auto;
}

/* Individual card */
.wh-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl);
  padding: 1.625rem 1.375rem 1.625rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 250ms, background 250ms, transform 250ms, box-shadow 250ms;
  overflow: hidden;
}
/* Top shimmer line */
.wh-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}
.wh-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}

/* Popular — blue accent */
.wh-card.popular {
  background: linear-gradient(175deg, rgba(37,99,235,0.18) 0%, rgba(96,165,250,0.06) 50%, rgba(255,255,255,0.03) 100%);
  border-color: rgba(59,130,246,0.45);
  box-shadow: 0 0 0 1px rgba(59,130,246,0.15), 0 8px 32px rgba(37,99,235,0.12);
}
.wh-card.popular::before {
  background: linear-gradient(90deg, transparent, rgba(96,165,250,0.6), transparent);
}
.wh-card.popular:hover {
  border-color: rgba(59,130,246,0.65);
  box-shadow: 0 0 0 1px rgba(59,130,246,0.25), 0 28px 64px rgba(37,99,235,0.22);
}

/* Popular badge */
.wh-popular-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--r-full);
  margin-bottom: 0.875rem;
  width: fit-content;
  box-shadow: 0 2px 10px rgba(37,99,235,0.4);
}

.wh-plan-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 3px;
  letter-spacing: -0.03em;
}
.wh-plan-tagline {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.125rem;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

/* Price */
.wh-price-row {
  display: flex;
  align-items: flex-end;
  gap: 1px;
  margin-bottom: 3px;
}
.wh-price-cur {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-400);
  line-height: 1;
  margin-bottom: 4px;
}
.wh-price-amt {
  font-size: 2.25rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.05em;
}
.wh-price-per {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}

/* Pills row (sites + mailbox) */
.wh-pills {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 1.125rem;
}
.wh-sites-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(96,165,250,0.1);
  border: 1px solid rgba(96,165,250,0.22);
  color: #93c5fd;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--r-sm);
  letter-spacing: -0.01em;
}
.wh-sites-pill svg { width: 10px; height: 10px; stroke: #93c5fd; fill: none; stroke-width: 2; }

.wh-mail-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(40,178,132,0.1);
  border: 1px solid rgba(40,178,132,0.22);
  color: #6ee7b7;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--r-sm);
  letter-spacing: -0.01em;
}
.wh-mail-pill svg { width: 10px; height: 10px; stroke: #6ee7b7; fill: none; stroke-width: 2; }

/* Divider */
.wh-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 0 0 1.125rem;
}

/* Feature list */
.wh-feats {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.wh-feats li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.815rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.45;
  letter-spacing: -0.005em;
}
.wh-feats li svg {
  width: 12px; height: 12px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2.5;
}

/* Inline feature tags */
.wh-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 1px 4px;
  border-radius: 3px;
  margin-left: 4px;
  vertical-align: middle;
  line-height: 1.6;
}
.wh-tag.new  { background: rgba(96,165,250,0.12); color: #93c5fd; border: 1px solid rgba(96,165,250,0.25); }
.wh-tag.free { background: rgba(40,178,132,0.12); color: #6ee7b7; border: 1px solid rgba(40,178,132,0.25); }

/* CTA buttons */
.wh-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.65rem 1rem;
  border-radius: var(--r-full);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 200ms;
  box-sizing: border-box;
  font-family: var(--font);
  letter-spacing: -0.01em;
  cursor: pointer;
}
.wh-btn.primary {
  background-color: #fff;
  color: #000 !important;
  box-shadow: 0 2px 12px rgba(255,255,255,0.1);
}
.wh-btn.primary:hover {
  background-color: rgba(255,255,255,0.88);
  transform: translateY(-1px);
}
.wh-btn.outline {
  background: transparent;
  color: rgba(255,255,255,0.75) !important;
  border: 1px solid rgba(255,255,255,0.16);
}
.wh-btn.outline:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.32);
  color: #fff !important;
  transform: translateY(-1px);
}
.wh-all-tag {
  display: block;
  text-align: center;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.25);
  margin-top: 6px;
  letter-spacing: -0.01em;
}

/* â”€â”€ TESTIMONIAL CARDS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.test-wrap { overflow: hidden; position: relative; padding: 8px 0; }
.test-wrap::before,
.test-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 1;
  pointer-events: none;
}
.test-wrap::before { left: 0; background: linear-gradient(to right, #000, transparent); }
.test-wrap::after  { right: 0; background: linear-gradient(to left, #000, transparent); }
.test-track {
  display: flex;
  gap: 1rem;
  animation: scroll-x 50s linear infinite;
  width: max-content;
}
.test-track:hover { animation-play-state: paused; }
@keyframes scroll-x {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.test-card {
  flex-shrink: 0;
  width: 300px;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: border-color 200ms;
}
.test-card:hover { border-color: rgba(255,255,255,0.2); }
.test-stars { display: flex; gap: 2px; margin-bottom: 0.75rem; }
.test-stars svg { width: 12px; height: 12px; fill: var(--yellow); }
.test-txt {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 1rem;
  letter-spacing: -0.005em;
}
.test-author { display: flex; align-items: center; gap: 0.625rem; }
.test-av {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.68rem;
  color: #fff;
  flex-shrink: 0;
}
.test-name { font-weight: 600; font-size: 0.84rem; color: #fff; letter-spacing: -0.02em; }
.test-role { font-size: 0.73rem; color: rgba(255,255,255,0.35); }

/* â”€â”€ FAQ â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.faq-list { max-width: 680px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
.faq-q {
  width: 100%;
  padding: 1.125rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  text-align: left;
  letter-spacing: -0.02em;
}
.faq-q .ic { transition: transform 0.3s; flex-shrink: 0; margin-left: 1rem; }
.faq-q .ic svg { width: 15px; height: 15px; stroke: rgba(255,255,255,0.35); transition: stroke 0.3s; }
.faq-item.on .faq-q .ic { transform: rotate(45deg); }
.faq-item.on .faq-q .ic svg { stroke: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a p {
  padding: 0 0 1.125rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  letter-spacing: -0.01em;
}

/* â”€â”€ CTA SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cta { padding: 6rem 0; text-align: center; }
.cta-box {
  padding: 5rem 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
}
/* radial glow inside CTA box */
.cta-box::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 300px;
  background: radial-gradient(closest-side, rgba(96,165,250,0.06), transparent);
  pointer-events: none;
}
.cta-box h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 0.75rem;
  color: #fff;
  position: relative;
}
.cta-box p {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  letter-spacing: -0.01em;
  position: relative;
}
.cta-box .hero-btns { position: relative; }

/* â”€â”€ FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
footer, .footer {
  padding: 3.5rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.f-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.f-brand .logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.875rem;
  color: #fff;
  letter-spacing: -0.02em;
}
.f-brand .logo svg { width: 26px; height: 26px; }
.f-brand p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-bottom: 1.125rem;
  letter-spacing: -0.005em;
}
.f-social { display: flex; gap: 0.5rem; }
.f-social a {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  transition: background 0.15s, border-color 0.15s;
}
.f-social a svg { width: 14px; height: 14px; fill: rgba(255,255,255,0.5); transition: fill 0.15s; }
.f-social a:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
.f-social a:hover svg { fill: #fff; }
.f-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
  letter-spacing: -0.01em;
}
.f-col a {
  display: block;
  padding: 3px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: -0.005em;
  transition: color 0.15s;
}
.f-col a:hover { color: #fff; }
.f-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: -0.01em;
}

/* â”€â”€ PAGE HERO (inner pages) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.pg-hero {
  padding: 8rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pg-hero::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(closest-side, rgba(96,165,250,0.06), transparent);
  pointer-events: none;
}
.pg-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 0.875rem;
  color: #fff;
  position: relative;
}
.pg-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
  position: relative;
  letter-spacing: -0.01em;
}

/* â”€â”€ CONTACT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ct-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.ct-form { display: flex; flex-direction: column; gap: 1rem; }
.fg label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.6);
  letter-spacing: -0.01em;
}
.fg input, .fg textarea, .fg select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r);
  color: #fff;
  font-size: 0.9rem;
  font-family: var(--font);
  transition: border-color 200ms, box-shadow 200ms;
  outline: none;
  letter-spacing: -0.01em;
}
.fg input:focus, .fg textarea:focus, .fg select:focus {
  border-color: rgba(96,165,250,0.5);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}
.fg textarea { resize: vertical; min-height: 120px; }
.ct-cards { display: flex; flex-direction: column; gap: 0.875rem; }
.ct-card {
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  transition: border-color 200ms;
}
.ct-card:hover { border-color: rgba(255,255,255,0.2); }
.ct-card .ib {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--r);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.ct-card .ib svg { width: 18px; height: 18px; }
.ct-card h4 { font-size: 0.875rem; font-weight: 700; margin-bottom: 2px; color: #fff; letter-spacing: -0.02em; }
.ct-card p  { font-size: 0.82rem; color: rgba(255,255,255,0.5); letter-spacing: -0.01em; }

/* â”€â”€ ABOUT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ab-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; margin-bottom: 4rem; }
.ab-txt h2 { font-size: 1.9rem; font-weight: 800; margin-bottom: 1rem; letter-spacing: -0.04em; color: #fff; }
.ab-txt p  { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 0.75rem; letter-spacing: -0.01em; }
.ab-vis {
  padding: 2.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.ab-vis .big { font-size: 5rem; font-weight: 800; color: var(--blue-400); line-height: 1; letter-spacing: -0.05em; }
.ab-vis .lbl { font-size: 0.95rem; color: rgba(255,255,255,0.5); margin-top: 6px; }

/* â”€â”€ BADGE TAGS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.badge-new  { font-size: 0.62rem; font-weight: 700; background: rgba(96,165,250,0.12); color: #93c5fd; border: 1px solid rgba(96,165,250,0.25); border-radius: 4px; padding: 2px 6px; margin-left: 5px; letter-spacing: 0.03em; text-transform: uppercase; }
.badge-free { font-size: 0.62rem; font-weight: 700; background: rgba(40,178,132,0.12); color: #6ee7b7; border: 1px solid rgba(40,178,132,0.25); border-radius: 4px; padding: 2px 6px; margin-left: 5px; letter-spacing: 0.03em; text-transform: uppercase; }

/* â”€â”€ PLAN TABLE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.pt-wrap { overflow-x: auto; margin-top: 1.5rem; }
.pt {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.pt thead { background: rgba(255,255,255,0.03); }
.pt th {
  padding: 10px 16px;
  text-align: left;
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pt td {
  padding: 12px 16px;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.6);
  letter-spacing: -0.01em;
}
.pt tbody tr:last-child td { border: none; }
.pt tbody tr:hover td { background: rgba(255,255,255,0.02); }
.pt .pn { font-weight: 700; color: #fff; }
.pt .pc { font-weight: 700; color: #fff; }

/* â”€â”€ SCROLL ANIMATIONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.vis { opacity: 1; transform: translateY(0); }

/* â”€â”€ DROPDOWN â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.dropdown { position: relative; }
.dropdown-content {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: rgba(10,10,10,0.97);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 200ms, transform 200ms, visibility 200ms;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
}
.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-content a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: var(--r-sm);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  width: 100%;
  letter-spacing: -0.01em;
}
.dropdown-content a:hover { background: rgba(255,255,255,0.08); color: #fff; }
.dropdown-content a svg { width: 14px; height: 14px; flex-shrink: 0; opacity: 0.6; }

/* â”€â”€ RESPONSIVE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1024px) {
  .f-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .ab-grid, .ct-grid { grid-template-columns: 1fr; gap: 2rem; }
  .wh-plans { grid-template-columns: 1fr 1fr; }
  .wh-plans-row2 { grid-template-columns: 1fr 1fr; max-width: 100%; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .burger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
  .stat:nth-last-child(-n+2) { border-bottom: none; }
  .feat-grid { grid-template-columns: 1fr; }
  .wh-plans { grid-template-columns: 1fr; }
  .wh-plans-row2 { grid-template-columns: 1fr; max-width: 100%; }
  .f-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .f-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero { padding-top: 5rem; min-height: auto; }
  .page-title { font-size: 2rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .cta-box { padding: 2.5rem 1.25rem; }
  .hero-trust { gap: 1rem; }
  .pg-hero { padding: 6rem 0 2.5rem; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat:last-child { border-bottom: none; }
  .stat:nth-child(odd) { border-right: none; }
}
