/* ==========================================================================
   Block The Spot — Design System
   Premium privacy & security SaaS. Deep midnight, premium blue, electric cyan.
   ========================================================================== */

:root {
  --midnight: #080B14;
  --midnight-soft: #0D1220;
  --midnight-elevated: #10162A;
  --blue: #2563EB;
  --blue-soft: #3B82F6;
  --cyan: #22D3EE;
  --white: #F8FAFC;
  --white-dim: #C9D2E3;
  --white-faint: #8A93AC;
  --border-soft: rgba(255, 255, 255, 0.08);
  --border-softer: rgba(255, 255, 255, 0.14);
  --shadow-color: 220 60% 3%;

  --gradient-brand: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
  --gradient-hero: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(37, 99, 235, 0.35), transparent),
                    radial-gradient(ellipse 60% 40% at 85% 15%, rgba(34, 211, 238, 0.18), transparent);
  --gradient-text: linear-gradient(135deg, #FFFFFF 0%, #B9C6E8 60%, var(--cyan) 100%);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-display);
  background: var(--white);
  color: var(--midnight);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }

.section-pad { padding: 120px 0; }
@media (max-width: 768px) {
  .section-pad { padding: 72px 0; }
}

/* ---------- Typography ---------- */

h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gradient-brand);
}
.section--dark .eyebrow { color: var(--cyan); }

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--midnight);
  max-width: 720px;
}
.section--dark .section-title { color: var(--white); }

.section-sub {
  margin-top: 18px;
  font-size: 18px;
  color: #56607A;
  max-width: 620px;
  line-height: 1.65;
}
.section--dark .section-sub { color: var(--white-dim); }

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto 64px;
}
.section-head .section-title,
.section-head .section-sub { max-width: 640px; }

.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Dark section base ---------- */

.section--dark {
  background: var(--midnight);
  color: var(--white);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-brand);
  color: white;
  box-shadow: 0 8px 24px -6px rgba(37, 99, 235, 0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px -8px rgba(37, 99, 235, 0.65); }

.btn-ghost {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-softer);
  color: var(--midnight);
  backdrop-filter: blur(12px);
}
.section--dark .btn-ghost,
.btn-ghost.on-dark { color: var(--white); }
.btn-ghost:hover { border-color: rgba(37,99,235,0.5); transform: translateY(-2px); }

.btn-white {
  background: var(--white);
  color: var(--midnight);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 14px 32px -10px rgba(0,0,0,0.3); }

.btn-sm { padding: 11px 20px; font-size: 14px; }
.btn-lg { padding: 18px 34px; font-size: 16px; }
.btn-block { width: 100%; }

/* ---------- Navigation ---------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), padding 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(8, 11, 20, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--border-soft);
  padding: 14px 0;
}
.nav .container { display: flex; align-items: center; justify-content: space-between; }

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px -2px rgba(37,99,235,0.6);
}
.brand-mark svg { width: 18px; height: 18px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--white-dim);
  transition: color 0.25s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  color: var(--white);
}
.nav-toggle svg { width: 22px; height: 22px; }

.nav-mobile-cta { display: none; }

@media (max-width: 900px) {
  .nav-links { position: fixed; top: 0; right: -100%; height: 100vh; width: min(320px, 82vw);
    background: var(--midnight-soft); flex-direction: column; justify-content: center;
    align-items: flex-start; padding: 40px; gap: 26px; transition: right 0.45s var(--ease);
    border-left: 1px solid var(--border-soft); }
  .nav-links.is-open { right: 0; }
  .nav-links a { font-size: 20px; }
  .nav-toggle { display: flex; }
  .nav-actions .btn-ghost, .nav-actions .btn-primary { display: none; }
  .nav-mobile-cta { display: flex; flex-direction: column; gap: 14px; width: 100%; margin-top: 8px; }
  .nav-mobile-cta .btn { width: 100%; }
}

.nav-scrim {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease); z-index: 99;
}
.nav-scrim.is-open { opacity: 1; pointer-events: auto; }

/* ---------- Hero ---------- */

.hero {
  background: var(--midnight);
  color: var(--white);
  padding: 168px 0 120px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--gradient-hero);
  pointer-events: none;
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black, transparent 75%);
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 2; text-align: center; max-width: 780px; margin: 0 auto; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-softer);
  font-size: 13.5px; font-weight: 500; color: var(--white-dim);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 3px rgba(34,211,238,0.2); }

.hero h1 {
  font-size: clamp(40px, 6vw, 68px);
  letter-spacing: -0.03em;
}

.hero p.lead {
  margin: 26px auto 0;
  font-size: 19px;
  color: var(--white-dim);
  max-width: 560px;
  line-height: 1.65;
}

.hero-ctas {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin-top: 40px; flex-wrap: wrap;
}

.hero-microcopy {
  margin-top: 20px; font-size: 13.5px; color: var(--white-faint);
}

/* ---------- Dashboard preview ---------- */

.dash-wrap {
  position: relative;
  margin-top: 80px;
  z-index: 2;
}
.dash-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--border-softer);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(20px);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.06);
  padding: 28px;
  max-width: 980px;
  margin: 0 auto;
}
.dash-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 20px; margin-bottom: 24px; border-bottom: 1px solid var(--border-soft);
}
.dash-dots { display: flex; gap: 7px; }
.dash-dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.dash-status {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: #34D399;
}
.dash-status .dot { width: 8px; height: 8px; border-radius: 50%; background: #34D399; box-shadow: 0 0 0 4px rgba(52,211,153,0.18); animation: pulse 2s infinite; }

.dash-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 860px) { .dash-grid { grid-template-columns: repeat(2, 1fr); } }

.dash-stat {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 22px;
}
.dash-stat .label { font-size: 13px; color: var(--white-faint); margin-bottom: 10px; }
.dash-stat .value { font-size: 30px; font-weight: 700; letter-spacing: -0.02em; }
.dash-stat.accent .value { background: var(--gradient-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.dash-stat .trend { margin-top: 10px; font-size: 12.5px; color: #34D399; display: flex; align-items: center; gap: 4px; }

.dash-ring-row {
  display: grid; grid-template-columns: 220px 1fr; gap: 24px;
  margin-top: 16px;
}
@media (max-width: 860px) { .dash-ring-row { grid-template-columns: 1fr; } }

.ring-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
}
.ring { position: relative; width: 140px; height: 140px; }
.ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.ring circle { fill: none; stroke-width: 10; }
.ring .bg { stroke: rgba(255,255,255,0.08); }
.ring .fg { stroke: url(#ringGradient); stroke-linecap: round; transition: stroke-dashoffset 1.4s var(--ease); }
.ring-value { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; flex-direction: column; }
.ring-value .num { font-size: 30px; font-weight: 700; }
.ring-value .cap { font-size: 11.5px; color: var(--white-faint); }
.ring-label { font-size: 14px; color: var(--white-dim); font-weight: 500; }

.bars-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex; flex-direction: column; gap: 16px; justify-content: center;
}
.bar-row { display: grid; grid-template-columns: 90px 1fr 60px; align-items: center; gap: 14px; }
.bar-row .name { font-size: 13.5px; color: var(--white-dim); }
.bar-track { height: 8px; border-radius: 100px; background: rgba(255,255,255,0.07); overflow: hidden; }
.bar-fill { height: 100%; border-radius: 100px; background: var(--gradient-brand); width: 0%; transition: width 1.4s var(--ease); }
.bar-row .num { font-size: 13.5px; font-weight: 600; text-align: right; }

@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ---------- Trust strip ---------- */

.trust-strip { background: var(--white); padding: 56px 0; border-bottom: 1px solid rgba(8,11,20,0.06); }
.trust-label { text-align: center; font-size: 13.5px; font-weight: 600; color: var(--white-faint); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 32px; }
.trust-logos {
  display: flex; align-items: center; justify-content: center; gap: 56px; flex-wrap: wrap;
  opacity: 0.55;
}
.trust-logos span { font-weight: 700; font-size: 17px; color: var(--midnight); letter-spacing: -0.01em; }

.badge-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 36px;
}
.badge-pill {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 100px;
  background: #F1F5FB; border: 1px solid #E2E8F5;
  font-size: 13.5px; font-weight: 600; color: #1E293B;
}
.badge-pill svg { width: 15px; height: 15px; color: var(--blue); }

/* ---------- Feature cards ---------- */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .features-grid { grid-template-columns: 1fr; } }

.feature-card {
  background: white;
  border: 1px solid #E7EBF3;
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color .4s var(--ease);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -16px rgba(15,23,42,0.14);
  border-color: #D7E0F3;
}
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gradient-brand);
  margin-bottom: 22px;
  box-shadow: 0 10px 24px -8px rgba(37,99,235,0.45);
}
.feature-icon svg { width: 24px; height: 24px; color: white; }
.feature-card h3 { font-size: 19px; margin-bottom: 10px; letter-spacing: -0.01em; }
.feature-card p { font-size: 15px; color: #56607A; line-height: 1.6; }

/* ---------- How it works ---------- */

.steps-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  position: relative;
}
@media (max-width: 860px) { .steps-row { grid-template-columns: 1fr; } }

.step-card { text-align: center; position: relative; padding: 0 16px; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gradient-brand);
  color: white; font-weight: 700; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 12px 28px -8px rgba(37,99,235,0.5);
}
.step-card h3 { font-size: 20px; margin-bottom: 10px; }
.step-card p { font-size: 15px; color: #56607A; max-width: 280px; margin: 0 auto; }

.step-connector {
  position: absolute; top: 28px; left: calc(16.66% + 28px); right: calc(16.66% + 28px);
  height: 1px; background: repeating-linear-gradient(90deg, #CBD5E1 0 8px, transparent 8px 16px);
  z-index: 0;
}
@media (max-width: 860px) { .step-connector { display: none; } }

/* ---------- Analytics / bars generic ---------- */

.analytics-card {
  background: white; border: 1px solid #E7EBF3; border-radius: var(--radius-lg);
  padding: 28px;
}

/* ---------- AI assistant section ---------- */

.ai-panel {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
@media (max-width: 900px) { .ai-panel { grid-template-columns: 1fr; gap: 40px; } }

.ai-chat {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-softer);
  border-radius: var(--radius-lg);
  padding: 26px;
  backdrop-filter: blur(16px);
}
.ai-msg { display: flex; gap: 12px; margin-bottom: 18px; }
.ai-msg:last-child { margin-bottom: 0; }
.ai-avatar {
  width: 32px; height: 32px; border-radius: 9px; flex-shrink: 0;
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
}
.ai-avatar svg { width: 16px; height: 16px; color: white; }
.ai-bubble {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-soft);
  border-radius: 14px 14px 14px 4px;
  padding: 14px 16px;
  font-size: 14.5px;
  color: var(--white-dim);
  line-height: 1.55;
}
.ai-bubble strong { color: var(--white); }
.ai-stat-line { display: flex; align-items: center; gap: 10px; margin-top: 14px; font-size: 13px; color: var(--white-faint); }
.ai-stat-line .chip { padding: 3px 10px; border-radius: 100px; background: rgba(34,211,238,0.12); color: var(--cyan); font-weight: 600; }

.ai-feature-list { display: flex; flex-direction: column; gap: 20px; }
.ai-feature-item { display: flex; gap: 16px; align-items: flex-start; }
.ai-feature-item .ico {
  width: 40px; height: 40px; border-radius: 11px; flex-shrink: 0;
  background: rgba(37,99,235,0.15); border: 1px solid rgba(37,99,235,0.3);
  display: flex; align-items: center; justify-content: center;
}
.ai-feature-item .ico svg { width: 19px; height: 19px; color: var(--cyan); }
.ai-feature-item h4 { font-size: 16px; margin-bottom: 4px; color: var(--white); }
.ai-feature-item p { font-size: 14.5px; color: var(--white-dim); line-height: 1.6; }

/* ---------- Comparison table ---------- */

.compare-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid #E7EBF3; }
table.compare {
  width: 100%; border-collapse: collapse; min-width: 640px; background: white;
}
table.compare th, table.compare td {
  padding: 20px 24px; text-align: left; font-size: 15px; border-bottom: 1px solid #EEF1F7;
}
table.compare thead th {
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--white-faint);
  background: #F8FAFC;
}
table.compare th:first-child, table.compare td:first-child { font-weight: 600; }
table.compare th:not(:first-child), table.compare td:not(:first-child) { text-align: center; }
table.compare .col-brand { color: var(--blue); font-weight: 700; }
table.compare tbody tr:last-child td { border-bottom: none; }
.icon-yes { color: #16A34A; }
.icon-no { color: #CBD5E1; }

/* ---------- Reviews ---------- */

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 980px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .reviews-grid { grid-template-columns: 1fr; } }

.review-card {
  background: white; border: 1px solid #E7EBF3; border-radius: var(--radius-lg);
  padding: 28px; display: flex; flex-direction: column; gap: 18px;
}
.review-stars { display: flex; gap: 3px; color: #F59E0B; }
.review-stars svg { width: 16px; height: 16px; }
.review-quote { font-size: 15px; color: #334155; line-height: 1.65; }
.review-person { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gradient-brand); color: white;
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px;
}
.review-person .name { font-size: 14.5px; font-weight: 600; color: var(--midnight); }
.review-person .role { font-size: 13px; color: var(--white-faint); }

/* ---------- EEAT ---------- */

.eeat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 980px) { .eeat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .eeat-grid { grid-template-columns: 1fr; } }

.eeat-card {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg); padding: 28px;
}
.eeat-card .num { font-size: 13px; font-weight: 700; color: var(--cyan); letter-spacing: 0.05em; margin-bottom: 14px; }
.eeat-card h3 { font-size: 19px; color: var(--white); margin-bottom: 12px; }
.eeat-card p { font-size: 14.5px; color: var(--white-dim); line-height: 1.65; margin-bottom: 14px; }
.eeat-card ul { display: flex; flex-direction: column; gap: 8px; }
.eeat-card li { font-size: 14px; color: var(--white-dim); display: flex; gap: 8px; align-items: flex-start; }
.eeat-card li svg { width: 15px; height: 15px; color: var(--cyan); flex-shrink: 0; margin-top: 3px; }

/* ---------- Blog / Knowledge hub ---------- */

.blog-tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 48px; flex-wrap: wrap; }
.blog-tab {
  padding: 10px 20px; border-radius: 100px; font-size: 14px; font-weight: 600;
  background: #F1F5FB; color: #475569; border: 1px solid #E2E8F5;
}
.blog-tab.active { background: var(--gradient-brand); color: white; border-color: transparent; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 980px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  background: white; border: 1px solid #E7EBF3; border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column; transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px -16px rgba(15,23,42,0.14); }
.blog-thumb { height: 150px; background: var(--gradient-brand); position: relative; overflow: hidden; }
.blog-thumb::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.25), transparent 60%); }
.blog-thumb svg { position: absolute; bottom: 16px; left: 20px; width: 30px; height: 30px; color: rgba(255,255,255,0.9); }
.blog-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-cat { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--blue); }
.blog-body h3 { font-size: 17px; line-height: 1.35; }
.blog-body p { font-size: 14px; color: #56607A; line-height: 1.6; }
.blog-meta { margin-top: auto; padding-top: 14px; display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--white-faint); }

/* ---------- Pricing ---------- */

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
@media (max-width: 980px) { .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }

.price-card {
  background: white; border: 1px solid #E7EBF3; border-radius: var(--radius-lg);
  padding: 36px 32px; display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px -16px rgba(15,23,42,0.14); }
.price-card.featured {
  background: var(--midnight); color: white; border-color: var(--midnight);
  position: relative; transform: scale(1.03);
  box-shadow: 0 32px 64px -16px rgba(8,11,20,0.4);
}
.price-card.featured:hover { transform: scale(1.03) translateY(-6px); }
.price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gradient-brand); color: white; font-size: 12.5px; font-weight: 700;
  padding: 7px 18px; border-radius: 100px; white-space: nowrap;
}
.price-plan { font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--blue); margin-bottom: 16px; }
.price-card.featured .price-plan { color: var(--cyan); }
.price-amount { display: flex; align-items: flex-end; gap: 6px; margin-bottom: 6px; }
.price-amount .num { font-size: 44px; font-weight: 700; letter-spacing: -0.03em; }
.price-amount .period { font-size: 15px; color: #56607A; padding-bottom: 8px; }
.price-card.featured .price-amount .period { color: var(--white-faint); }
.price-desc { font-size: 14.5px; color: #56607A; margin-bottom: 28px; }
.price-card.featured .price-desc { color: var(--white-dim); }
.price-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; flex: 1; }
.price-features li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; }
.price-features svg { width: 17px; height: 17px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.price-card.featured .price-features svg { color: var(--cyan); }

/* ---------- Generic content blocks (about/contact/faq) ---------- */

.page-hero {
  background: var(--midnight); color: white; padding: 168px 0 88px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before { content: ""; position: absolute; inset: 0; background: var(--gradient-hero); pointer-events: none; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(34px, 5vw, 52px); }
.page-hero p { margin: 20px auto 0; max-width: 580px; color: var(--white-dim); font-size: 18px; line-height: 1.6; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 40px; } }
.split-media {
  border-radius: var(--radius-lg); background: var(--midnight);
  aspect-ratio: 4/3; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.split-media::before { content: ""; position: absolute; inset: 0; background: var(--gradient-hero); }
.split-media svg { width: 88px; height: 88px; color: var(--cyan); position: relative; z-index: 2; opacity: 0.9; }

.value-list { display: flex; flex-direction: column; gap: 22px; margin-top: 24px; }
.value-item { display: flex; gap: 16px; }
.value-item .ico { width: 40px; height: 40px; border-radius: 11px; background: #EFF4FF; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.value-item .ico svg { width: 19px; height: 19px; color: var(--blue); }
.value-item h4 { font-size: 16px; margin-bottom: 4px; }
.value-item p { font-size: 14.5px; color: #56607A; line-height: 1.6; }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 980px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .team-grid { grid-template-columns: 1fr; } }
.team-card { text-align: center; }
.team-avatar {
  width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 16px;
  background: var(--gradient-brand); color: white; font-weight: 700; font-size: 24px;
  display: flex; align-items: center; justify-content: center;
}
.team-card h4 { font-size: 15.5px; margin-bottom: 3px; }
.team-card p { font-size: 13.5px; color: var(--white-faint); }

/* ---------- Contact ---------- */

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

.form-card { background: white; border: 1px solid #E7EBF3; border-radius: var(--radius-lg); padding: 36px; }
.form-row { margin-bottom: 20px; }
.form-row label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 8px; color: #334155; }
.form-row input, .form-row textarea {
  width: 100%; padding: 13px 16px; border-radius: 12px; border: 1px solid #E2E8F5;
  font-family: inherit; font-size: 14.5px; background: #FBFCFE; transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(37,99,235,0.12); }
.form-row textarea { resize: vertical; min-height: 130px; }

.contact-info-card {
  background: var(--midnight); color: white; border-radius: var(--radius-lg); padding: 36px;
  display: flex; flex-direction: column; gap: 24px;
}
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-info-item .ico { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,0.06); border: 1px solid var(--border-soft); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-item .ico svg { width: 18px; height: 18px; color: var(--cyan); }
.contact-info-item h4 { font-size: 15px; margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { font-size: 14px; color: var(--white-dim); line-height: 1.6; }
.contact-info-item a:hover { color: var(--cyan); }

/* ---------- FAQ ---------- */

.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: white; border: 1px solid #E7EBF3; border-radius: var(--radius-md); overflow: hidden; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 26px; font-size: 16px; font-weight: 600; text-align: left; color: var(--midnight);
}
.faq-q .plus { width: 22px; height: 22px; flex-shrink: 0; position: relative; }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; background: var(--blue); border-radius: 2px; transition: transform .35s var(--ease); }
.faq-q .plus::before { width: 100%; height: 2px; top: 50%; left: 0; transform: translateY(-50%); }
.faq-q .plus::after { height: 100%; width: 2px; left: 50%; top: 0; transform: translateX(-50%); }
.faq-item.is-open .faq-q .plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a-inner { padding: 0 26px 22px; font-size: 15px; color: #56607A; line-height: 1.65; }
.faq-item.is-open .faq-a { max-height: 320px; }

/* ---------- Article body (blog posts) ---------- */

.article-body { max-width: 720px; margin: 0 auto; }
.article-body h2 { font-size: 24px; margin: 40px 0 14px; }
.article-body p { font-size: 16.5px; color: #334155; line-height: 1.8; margin-bottom: 18px; }
.article-body ul { margin: 0 0 18px 20px; list-style: disc; }
.article-body li { font-size: 16.5px; color: #334155; line-height: 1.8; margin-bottom: 8px; }
.article-meta { display: flex; align-items: center; justify-content: center; gap: 14px; color: var(--white-faint); font-size: 13.5px; margin-top: 20px; }

/* ---------- Download page ---------- */

.download-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--border-softer); border-radius: var(--radius-xl);
  padding: 48px; text-align: center; max-width: 640px; margin: 0 auto;
  backdrop-filter: blur(20px);
}
.download-icon {
  width: 76px; height: 76px; border-radius: 20px; margin: 0 auto 24px;
  background: var(--gradient-brand); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 16px 40px -10px rgba(37,99,235,0.55);
}
.download-icon svg { width: 36px; height: 36px; color: white; }
.download-meta { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 24px; font-size: 13.5px; color: var(--white-faint); flex-wrap: wrap; }
.download-meta strong { color: var(--white); }
.platform-row { display: flex; gap: 12px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }
.platform-pill {
  display: flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 100px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border-softer); font-size: 13.5px; font-weight: 500;
}
.platform-pill.active { border-color: var(--cyan); color: var(--cyan); }
.platform-pill svg { width: 15px; height: 15px; }

.checksum-box {
  margin-top: 28px; padding: 14px 18px; background: rgba(0,0,0,0.25); border: 1px solid var(--border-soft);
  border-radius: 10px; font-family: "SF Mono", Consolas, monospace; font-size: 12px; color: var(--white-faint);
  text-align: left; word-break: break-all;
}

.steps-mini { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 64px; }
@media (max-width: 860px) { .steps-mini { grid-template-columns: 1fr 1fr; } }
.step-mini { text-align: center; padding: 24px; background: rgba(255,255,255,0.03); border: 1px solid var(--border-soft); border-radius: var(--radius-md); }
.step-mini .n { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 1px solid var(--border-softer); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-weight: 700; font-size: 14px; }
.step-mini h4 { font-size: 14.5px; margin-bottom: 6px; }
.step-mini p { font-size: 13px; color: var(--white-faint); line-height: 1.55; }

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--midnight); color: white; text-align: center; padding: 96px 0; position: relative; overflow: hidden;
}
.cta-band::before { content: ""; position: absolute; inset: 0; background: var(--gradient-hero); }
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { font-size: clamp(28px, 4vw, 42px); max-width: 620px; margin: 0 auto; }
.cta-band p { margin: 18px auto 0; color: var(--white-dim); max-width: 480px; font-size: 16.5px; }
.cta-band .hero-ctas { margin-top: 36px; }

/* ---------- Footer ---------- */

.footer { background: var(--midnight-soft); color: var(--white-dim); padding: 80px 0 32px; border-top: 1px solid var(--border-soft); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 56px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand p { font-size: 14px; margin: 16px 0 20px; max-width: 260px; line-height: 1.6; color: var(--white-faint); }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,0.05); border: 1px solid var(--border-soft); display: flex; align-items: center; justify-content: center; transition: background .3s var(--ease), border-color .3s var(--ease); }
.footer-social a:hover { background: rgba(37,99,235,0.2); border-color: rgba(37,99,235,0.4); }
.footer-social svg { width: 16px; height: 16px; }
.footer-col h5 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--white-faint); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14.5px; transition: color .25s var(--ease); }
.footer-col a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; border-top: 1px solid var(--border-soft); font-size: 13px; color: var(--white-faint); flex-wrap: wrap; gap: 12px; }
.footer-legal { display: flex; gap: 20px; }

/* ---------- Reveal animation ---------- */

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible .reveal-child { opacity: 1; transform: translateY(0); }
.reveal-child { opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }

/* ---------- Utilities ---------- */

.mt-0 { margin-top: 0 !important; }
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.glass-note {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--white-faint);
  margin-top: 18px;
}
