/* ═══════════════════════════════════════════
   Veritas Protocol — Stylesheet
   Linear-inspired · Dark · Premium
   "HTTPS for truth"
   ═══════════════════════════════════════════ */

/* ─── Reset ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* ─── Design Tokens ─── */
:root {
  /* Palette — deep midnight with electric indigo accent */
  --bg: #06070b;
  --bg-surface: #0c0d12;
  --bg-elevated: #12141b;
  --bg-hover: #1a1c25;
  --bg-card: #0f1017;

  --text: #e8e9ed;
  --text-secondary: #8b8d97;
  --text-muted: #55565e;
  --text-inverse: #06070b;

  --accent: #6366f1;           /* indigo-500 */
  --accent-light: #818cf8;     /* indigo-400 */
  --accent-dark: #4f46e5;      /* indigo-600 */
  --accent-bg: rgba(99, 102, 241, 0.08);
  --accent-border: rgba(99, 102, 241, 0.2);
  --accent-glow: rgba(99, 102, 241, 0.15);

  --green: #22c55e;
  --green-bg: rgba(34, 197, 94, 0.08);
  --green-border: rgba(34, 197, 94, 0.2);
  --yellow: #eab308;
  --yellow-bg: rgba(234, 179, 8, 0.08);
  --red: #ef4444;
  --red-bg: rgba(239, 68, 68, 0.08);

  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(99, 102, 241, 0.3);

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.4);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.5);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.6);
  --shadow-glow: 0 0 60px rgba(99, 102, 241, 0.08);

  /* Fonts */
  --font-display: 'Sora', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Consolas, monospace;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 10rem;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --transition: 0.2s ease;
}

/* ─── Base ─── */
html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-display);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

a { color: inherit; text-decoration: none; }
em { font-style: italic; color: var(--accent-light); }

/* ─── Section Headers ─── */
.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: var(--space-sm);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
}

.btn--primary {
  background: var(--accent);
  color: white;
}
.btn--primary:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  color: var(--text);
  border-color: var(--accent-border);
  background: var(--accent-bg);
}

.btn--lg { padding: 1rem 2rem; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

.btn__arrow {
  transition: transform var(--transition);
}
.btn:hover .btn__arrow { transform: translateX(3px); }

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(6, 7, 11, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  height: 56px;
  gap: var(--space-md);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.nav__logo-icon {
  color: var(--accent);
  font-size: 1.1rem;
}

.nav__links {
  display: flex;
  gap: var(--space-md);
  margin-left: auto;
}

.nav__links a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--text); }

.nav__cta {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent);
  margin-left: var(--space-sm);
  transition: color var(--transition);
}
.nav__cta:hover { color: var(--accent-light); }

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__cta { margin-left: auto; }
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, black 20%, transparent 70%);
  opacity: 0.4;
}

.hero__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(99,102,241,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 750px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  border: 1px solid var(--accent-border);
  background: var(--accent-bg);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent-light);
  margin-bottom: var(--space-md);
  animation: fadeDown 0.6s ease both;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: var(--space-md);
}

.hero__line {
  display: block;
  animation: fadeUp 0.7s ease both;
}
.hero__line:nth-child(1) { animation-delay: 0.1s; }
.hero__line:nth-child(2) { animation-delay: 0.2s; color: var(--text-secondary); }
.hero__line--accent { color: var(--text); }
.hero__line:nth-child(3) { animation-delay: 0.3s; }
.hero__line:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto var(--space-lg);
  animation: fadeUp 0.7s ease 0.5s both;
}

.hero__actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.7s ease 0.6s both;
}

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  animation: fadeUp 0.7s ease 0.8s both;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero__stat-num {
  font-family: var(--font-mono);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
}

.hero__stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero__stat-sep {
  width: 1px;
  height: 30px;
  background: var(--border);
}

@media (max-width: 600px) {
  .hero__stats { flex-direction: column; gap: var(--space-sm); }
  .hero__stat-sep { display: none; }
}

/* ─── Demo Section ─── */
.demo {
  padding: var(--space-2xl) 0;
}

.demo__widget {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  max-width: 700px;
  margin: 0 auto;
}

.demo__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.demo__dots {
  display: flex;
  gap: 5px;
}
.demo__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bg-hover);
}
.demo__dots span:first-child { background: #ff5f57; }
.demo__dots span:nth-child(2) { background: #febc2e; }
.demo__dots span:last-child { background: #28c840; }

.demo__header-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.demo__header-badge {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.demo__header-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}

.demo__body {
  padding: var(--space-md);
}

/* Demo Input */
.demo__input-section { }

.demo__input-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition);
}
.demo__input-wrap:focus-within {
  border-color: var(--accent-border);
}

.demo__input-icon {
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}

.demo__input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.9rem;
}
.demo__input::placeholder { color: var(--text-muted); }

.demo__btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.6rem 1.2rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.demo__btn:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}
.demo__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.demo__meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: var(--space-sm);
}

/* Streaming */
.demo__stream[hidden] { display: none !important; }
.demo__results[hidden] { display: none !important; }

.demo__progress {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--space-md);
}

.demo__progress-bar {
  flex: 1;
  height: 3px;
  background: var(--bg-hover);
  border-radius: 3px;
  overflow: hidden;
}

.demo__progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent), var(--accent-light));
  border-radius: 3px;
  transition: width 0.3s ease;
}

.demo__progress-pct {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  min-width: 3ch;
  text-align: right;
}

.demo__log {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 300px;
  overflow-y: auto;
}

.demo__log-line {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--text-secondary);
  animation: fadeUp 0.3s ease both;
}

.demo__log-line--phase {
  color: var(--accent);
  font-weight: 600;
  margin-top: 0.5rem;
}

.demo__log-line--claim {
  color: var(--text);
  padding-left: 1rem;
}

.demo__log-line--verified {
  color: var(--green);
}

.demo__log-line--warning {
  color: var(--yellow);
}

.demo__log-line--unverified {
  color: var(--red);
}

.demo__log-time {
  color: var(--text-muted);
  flex-shrink: 0;
  min-width: 5ch;
}

/* Results */
.demo__score-section {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  margin-bottom: var(--space-md);
}

.demo__score-ring-wrap {
  position: relative;
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

.demo__score-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.demo__score-bg {
  fill: none;
  stroke: var(--bg-hover);
  stroke-width: 5;
}

.demo__score-fill {
  fill: none;
  stroke: var(--accent);
  stroke-width: 5;
  stroke-linecap: round;
  transition: stroke-dashoffset 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.demo__score-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 700;
}

.demo__score-meta { flex: 1; }

.demo__score-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}

.demo__score-grade {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.25rem;
}

.grade--high { background: var(--green-bg); color: var(--green); border: 1px solid var(--green-border); }
.grade--medium { background: var(--yellow-bg); color: var(--yellow); border: 1px solid rgba(234,179,8,0.2); }
.grade--low { background: var(--red-bg); color: var(--red); border: 1px solid rgba(239,68,68,0.2); }

.demo__score-url {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Claims */
.demo__claims-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-sm);
}

.demo__claims-title {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.demo__claims-count {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.demo__claims {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
}

.demo__claim {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--border);
  font-size: 0.85rem;
  line-height: 1.5;
  animation: fadeUp 0.4s ease both;
}

.demo__claim--verified { border-left-color: var(--green); }
.demo__claim--partial { border-left-color: var(--yellow); }
.demo__claim--unverified { border-left-color: var(--red); }

.demo__claim-icon { flex-shrink: 0; font-size: 0.9rem; }
.demo__claim-text { flex: 1; color: var(--text-secondary); }
.demo__claim-source {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent);
  margin-top: 0.25rem;
  display: block;
}

/* Demo Actions */
.demo__actions {
  display: flex;
  gap: 0.5rem;
}

.demo__action {
  flex: 1;
  padding: 0.7rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}
.demo__action:hover {
  border-color: var(--accent-border);
  color: var(--text);
  background: var(--accent-bg);
}

.demo__action--accent {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}
.demo__action--accent:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
}

.demo__disclaimer {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: var(--space-sm);
  line-height: 1.5;
  padding: 0 var(--space-sm);
}
.demo__disclaimer a {
  color: var(--accent);
  text-decoration: none;
}
.demo__disclaimer a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .demo__input-wrap { flex-direction: column; }
  .demo__btn { width: 100%; justify-content: center; }
  .demo__score-section { flex-direction: column; text-align: center; }
  .demo__actions { flex-direction: column; }
}

/* ─── How It Works ─── */
.how {
  padding: var(--space-2xl) 0;
}

.how__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.how__step {
  position: relative;
  padding: var(--space-md) 0;
}

.how__step-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: var(--space-sm);
}

.how__step-line {
  width: 30px;
  height: 2px;
  background: var(--accent);
  margin-bottom: var(--space-sm);
  border-radius: 2px;
}

.how__step h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.how__step p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .how__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .how__grid { grid-template-columns: 1fr; }
}

/* ─── Use Cases ─── */
.use-cases {
  padding: var(--space-2xl) 0;
}

.cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.case-card {
  padding: var(--space-md);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}
.case-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.case-card--featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--accent-bg), transparent);
  border-color: var(--accent-border);
}

.case-card__icon {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.case-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.case-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.case-card__tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .cases__grid { grid-template-columns: 1fr; }
  .case-card--featured { grid-column: 1; }
}

/* ─── Problem ─── */
.problem {
  padding: var(--space-2xl) 0;
}

.problem__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.problem__text p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.problem__text strong { color: var(--text); }

.problem__visual {
  display: flex;
  justify-content: center;
}

.problem__layers {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 320px;
}

.problem__layer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
}

.problem__layer--done {
  opacity: 0.5;
}

.problem__layer--missing {
  border-color: var(--accent-border);
  background: var(--accent-bg);
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 transparent; }
  50% { box-shadow: 0 0 20px rgba(99,102,241,0.1); }
}

.problem__layer-check {
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.problem__layer--done .problem__layer-check { color: var(--green); }
.problem__layer--missing .problem__layer-check { color: var(--accent); }

.problem__layer-proto {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.problem__layer-proto--accent {
  color: var(--accent);
  font-weight: 700;
}

@media (max-width: 768px) {
  .problem__inner { grid-template-columns: 1fr; gap: var(--space-lg); }
}

/* ─── Pricing ─── */
.pricing {
  padding: var(--space-2xl) 0;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  align-items: start;
}

.pricing__card {
  position: relative;
  padding: var(--space-md);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}
.pricing__card:hover {
  border-color: var(--border-hover);
}

.pricing__card--featured {
  border-color: var(--accent-border);
  background: linear-gradient(180deg, var(--accent-bg) 0%, var(--bg-surface) 40%);
  transform: scale(1.02);
}

.pricing__badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white;
  background: var(--accent);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing__name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.pricing__price {
  margin-bottom: var(--space-md);
}

.pricing__amount {
  font-family: var(--font-mono);
  font-size: 2.2rem;
  font-weight: 700;
}

.pricing__period {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-left: 0.25rem;
}

.pricing__features {
  list-style: none;
  margin-bottom: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pricing__features li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding-left: 1.2rem;
  position: relative;
}
.pricing__features li::before {
  content: '◈';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.6rem;
  top: 0.3rem;
}

@media (max-width: 768px) {
  .pricing__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing__card--featured { transform: none; }
}

/* ─── CTA ─── */
.cta {
  padding: var(--space-2xl) 0;
}

.cta__inner {
  text-align: center;
  padding: var(--space-xl);
  background: linear-gradient(135deg, var(--accent-bg), transparent);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-lg);
}

.cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-sm);
}

.cta p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: var(--space-md);
}

/* ─── Footer ─── */
.footer {
  padding: var(--space-xl) 0 var(--space-md);
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.footer__name {
  font-weight: 600;
  font-size: 1rem;
  margin-left: 0.5rem;
}

.footer__tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: var(--space-sm);
  line-height: 1.6;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.footer__col h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.footer__col a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 0.25rem 0;
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--text); }

.footer__bottom {
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
}

.footer__bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .footer__inner { grid-template-columns: 1fr; gap: var(--space-lg); }
  .footer__links { grid-template-columns: repeat(2, 1fr); }
}
