/* ========================================
   Prism Web Security — Theme Stylesheet
   All CSS custom properties and component
   styles extracted verbatim from the
   original design handoff HTML files.
   ======================================== */

:root {
  --bg: #0a0a0f;
  --surface: #0f0f1a;
  --fg: #f8fafc;
  --muted: #94a3b8;
  --border: #8b5cf6;
  --accent: #8b5cf6;
  --cyan: #22d3ee;
  --green: #4ade80;
  --amber: #fbbf24;

  --accent-soft: color-mix(in oklch, var(--accent) 14%, transparent);
  --cyan-soft: color-mix(in oklch, var(--cyan) 12%, transparent);
  --green-soft: color-mix(in oklch, var(--green) 12%, transparent);

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --fs-h1: clamp(38px, 5.5vw, 72px);
  --fs-h2: clamp(28px, 3.5vw, 44px);
  --fs-h3: 20px;
  --fs-lead: 17px;
  --fs-body: 15px;
  --fs-meta: 12px;

  --gap-xs: 8px;
  --gap-sm: 12px;
  --gap-md: 20px;
  --gap-lg: 32px;
  --gap-xl: 56px;
  --gap-2xl: 96px;
  --container: 1120px;
  --gutter: 24px;
  --radius: 8px;
  --radius-lg: 14px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
p { text-wrap: pretty; margin: 0; }
h1, h2, h3, h4 { text-wrap: balance; margin: 0; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(48px, 7vw, var(--gap-2xl)); }

.h1, h1 { font-family: var(--font-display); font-size: var(--fs-h1); line-height: 1.05; letter-spacing: -0.02em; font-weight: 700; }
.h2, h2 { font-family: var(--font-display); font-size: var(--fs-h2); line-height: 1.12; letter-spacing: -0.015em; font-weight: 600; }
.h3, h3 { font-family: var(--font-display); font-size: var(--fs-h3); line-height: 1.3; letter-spacing: -0.01em; font-weight: 600; }
.lead { font-size: var(--fs-lead); line-height: 1.6; color: var(--muted); max-width: 60ch; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  display: inline-flex;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: var(--gap-md);
  background: var(--accent-soft);
}
.meta { font-family: var(--font-mono); font-size: var(--fs-meta); color: var(--muted); }
.num { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }

/* ── Navigation ────────────────────── */
.topnav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}
.topnav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.topnav .logo-wrap { display: flex; align-items: center; gap: 10px; }
.topnav .logo-icon svg { width: 28px; height: 28px; }
.topnav .logo-text {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.topnav nav { display: flex; gap: var(--gap-lg); }
.topnav nav a {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.topnav nav a:hover,
.topnav nav a.active { color: var(--fg); }
.topnav nav a.active::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1.5px;
  background: var(--accent);
  border-radius: 2px;
}
.nav-clock {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.topnav-cta { display: flex; align-items: center; gap: var(--gap-md); }
.hamburger { display: none; flex-direction: column; gap: 4px; background: none; border: none; padding: 4px; cursor: pointer; }
.hamburger span { display: block; width: 20px; height: 2px; background: var(--fg); border-radius: 2px; transition: 0.2s; }

@media (max-width: 860px) {
  .topnav nav { display: none; }
  .topnav nav.open { display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: rgba(10,10,15,0.98); padding: var(--gap-md); border-bottom: 1px solid rgba(139,92,246,0.2); }
  .hamburger { display: flex; }
  .topnav .nav-clock,
  .topnav .topnav-cta .btn { display: none; }
}

/* ── Buttons ───────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.25);
}
.btn-primary:hover {
  background: color-mix(in srgb, var(--accent) 85%, #fff);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
}
.btn-secondary {
  background: transparent;
  color: var(--fg);
  border-color: var(--accent);
}
.btn-secondary:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
}
.btn-ghost {
  background: transparent;
  color: var(--muted);
  border-color: transparent;
}
.btn-ghost:hover { color: var(--fg); }
.btn-arrow::after { content: '→'; transition: transform 0.2s; }
.btn-arrow:hover::after { transform: translateX(3px); }

/* ── Card ──────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 24px rgba(139, 92, 246, 0.1);
}

/* ── Grids ─────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap-lg); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap-lg); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap-lg); }
.grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: var(--gap-xl); }
.grid-1-2 { display: grid; grid-template-columns: 1fr 2fr; gap: var(--gap-xl); }
.stack { display: flex; flex-direction: column; }
.stack > * + * { margin-top: var(--gap-md); }
.row { display: flex; align-items: center; gap: var(--gap-md); flex-wrap: wrap; }
.row-between { display: flex; align-items: center; justify-content: space-between; gap: var(--gap-md); flex-wrap: wrap; }

@media (max-width: 920px) {
  .grid-2, .grid-3, .grid-4, .grid-2-1, .grid-1-2 { grid-template-columns: 1fr; }
}

/* ── Page Hero ─────────────────────── */
.page-hero {
  padding-block: clamp(100px, 14vw, 180px);
  position: relative;
  background:
    radial-gradient(ellipse 60% 50% at 30% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 70% 50%, rgba(34, 211, 238, 0.06) 0%, transparent 70%);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }

/* ── Ticker ────────────────────────── */
.ticker-wrap {
  margin-top: 64px;
  overflow: hidden;
  background: rgba(139, 92, 246, 0.04);
  border-top: 1px solid rgba(139, 92, 246, 0.12);
  border-bottom: 1px solid rgba(139, 92, 246, 0.12);
  padding: 12px 0;
}
.ticker-track {
  display: flex;
  gap: 48px;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}
.ticker-track span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Hero (home) ─────────────────── */
.hero {
  padding-top: 80px;
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse 70% 60% at 25% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 75% 50%, rgba(34, 211, 238, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; width: 100%; }
.hero h1 { margin-bottom: var(--gap-md); }
.hero .lead { margin-bottom: var(--gap-lg); font-size: 18px; }
.hero .hero-cta { display: flex; gap: var(--gap-sm); flex-wrap: wrap; margin-bottom: var(--gap-xl); }

.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Stats bar ─────────────────────── */
.stats-bar {
  display: flex; gap: var(--gap-xl);
  padding-top: var(--gap-lg);
  border-top: 1px solid rgba(139, 92, 246, 0.15);
}
.stats-bar .stat-item {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
}
.stats-bar .stat-item span { display: block; font-family: var(--font-body); font-size: 12px; font-weight: 400; color: var(--muted); margin-top: 2px; }

/* ── Icon square ─────────────────── */
.icon-square {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 10px;
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: var(--gap-md);
  flex-shrink: 0;
}
.icon-square.violet { background: var(--accent-soft); color: var(--accent); border: 1px solid rgba(139, 92, 246, 0.3); }
.icon-square.cyan { background: var(--cyan-soft); color: var(--cyan); border: 1px solid rgba(34, 211, 238, 0.3); }
.icon-square.green { background: var(--green-soft); color: var(--green); border: 1px solid rgba(74, 222, 128, 0.3); }
.icon-square.amber { background: rgba(251, 191, 36, 0.1); color: var(--amber); border: 1px solid rgba(251, 191, 36, 0.3); }

/* ── Numbered cards ───────────────── */
.num-card {
  background: var(--surface);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}
.num-card .num-badge {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: var(--gap-sm);
  display: block;
}
.num-card h3 { margin-bottom: 8px; }
.num-card p { color: var(--muted); font-size: 14px; line-height: 1.6; }

/* ── Testimonials ─────────────────── */
.testimonial-card {
  background: var(--surface);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 24px;
}
.testimonial-card .stars { color: var(--amber); font-size: 14px; letter-spacing: 2px; margin-bottom: var(--gap-sm); }
.testimonial-card blockquote {
  margin: 0 0 var(--gap-md);
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  font-style: italic;
}
.testimonial-card .author { display: flex; align-items: center; gap: var(--gap-sm); }
.testimonial-card .avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid rgba(139, 92, 246, 0.3);
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
}
.testimonial-card .author-info { font-size: 13px; }
.testimonial-card .author-info strong { display: block; color: var(--fg); font-weight: 600; }
.testimonial-card .author-info span { color: var(--muted); font-size: 12px; }

/* ── CTA band ─────────────────────── */
.cta-band {
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
  border-top: 1px solid rgba(139, 92, 246, 0.15);
  border-bottom: 1px solid rgba(139, 92, 246, 0.15);
}

/* ── Footer ────────────────────────── */
.pagefoot {
  padding-block: var(--gap-xl) var(--gap-lg);
  border-top: 1px solid rgba(139, 92, 246, 0.1);
  font-size: 13px;
  color: var(--muted);
}
.pagefoot .grid-4 { gap: var(--gap-lg); }
.pagefoot h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: var(--gap-md);
  letter-spacing: 0.03em;
}
.pagefoot a { display: block; color: var(--muted); margin-bottom: 6px; transition: color 0.2s; }
.pagefoot a:hover { color: var(--accent); }
.pagefoot .foot-tagline { font-size: 12px; margin-top: var(--gap-sm); line-height: 1.6; }
.pagefoot .foot-contact { margin-top: var(--gap-sm); }
.pagefoot .foot-contact span { display: block; font-family: var(--font-mono); font-size: 11px; margin-bottom: 4px; }
.foot-bottom {
  margin-top: var(--gap-lg);
  padding-top: var(--gap-md);
  border-top: 1px solid rgba(139, 92, 246, 0.1);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--gap-sm);
  font-size: 12px;
}
.foot-bottom .live-dot {
  display: inline-flex; align-items: center; gap: 6px;
}
.foot-bottom .live-dot::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.5);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; } 50% { opacity: 0.4; }
}

/* ── Cert bar ───────────────────────── */
.cert-bar {
  display: flex; gap: var(--gap-md); flex-wrap: wrap;
  justify-content: center;
}
.cert-bar .cert-item {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--muted);
}

/* ── Service detail card ───────────── */
.service-card {
  background: var(--surface);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.service-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 24px rgba(139, 92, 246, 0.08);
}
.service-card .sc-head { display: flex; align-items: flex-start; gap: var(--gap-md); margin-bottom: var(--gap-md); }
.service-card h3 { margin-bottom: 8px; }
.service-card .sc-desc { color: var(--muted); font-size: 14px; line-height: 1.6; margin-bottom: var(--gap-md); }
.service-card .sc-deliverables { margin-bottom: var(--gap-md); padding: 0; list-style: none; }
.service-card .sc-deliverables li {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
  padding-left: 16px;
  position: relative;
}
.service-card .sc-deliverables li::before {
  content: '>';
  position: absolute; left: 0;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 11px;
}
.duration-badge {
  display: inline-flex;
  padding: 3px 10px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
}
.duration-badge.violet { background: var(--accent-soft); color: var(--accent); border: 1px solid rgba(139, 92, 246, 0.3); }
.duration-badge.cyan { background: var(--cyan-soft); color: var(--cyan); border: 1px solid rgba(34, 211, 238, 0.3); }
.duration-badge.green { background: var(--green-soft); color: var(--green); border: 1px solid rgba(74, 222, 128, 0.3); }
.duration-badge.amber { background: rgba(251, 191, 36, 0.1); color: var(--amber); border: 1px solid rgba(251, 191, 36, 0.3); }

/* ── Pricing card ──────────────────── */
.pricing-card {
  background: var(--surface);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.15);
}
.pricing-card .popular-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  display: inline-flex; padding: 4px 14px;
  background: var(--accent);
  color: #fff;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pricing-card .price {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--fg);
  margin: var(--gap-md) 0 4px;
}
.pricing-card .price span { font-size: 16px; font-weight: 400; color: var(--muted); }
.pricing-card .p-sub { color: var(--muted); font-size: 13px; margin-bottom: var(--gap-lg); }
.pricing-card ul { text-align: left; list-style: none; padding: 0; margin: 0 0 var(--gap-lg); }
.pricing-card ul li {
  padding: 8px 0;
  font-size: 13px;
  color: var(--muted);
  border-bottom: 1px solid rgba(139, 92, 246, 0.08);
}
.pricing-card ul li::before {
  content: '✓';
  color: var(--green);
  margin-right: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
}

/* ── Forms ─────────────────────────── */
.form-group { margin-bottom: var(--gap-md); }
.form-group label { display: block; font-size: 12px; color: var(--muted); margin-bottom: 6px; font-weight: 500; }
.form-group .input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  background: rgba(15, 15, 26, 0.6);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--radius);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group .input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.15);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.form-group textarea { min-height: 100px; resize: vertical; }

/* ── Info card ─────────────────────── */
.info-card {
  background: var(--surface);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.info-card .ic-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.info-card .ic-value {
  font-size: 14px;
  color: var(--fg);
  line-height: 1.5;
}

/* ── Live status ─────────────────── */
.live-status {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--green);
  letter-spacing: 0.04em;
}
.live-status::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(74, 222, 128, 0.6);
  animation: pulse-dot 2s ease-in-out infinite;
}

/* ── FAQ accordion ─────────────────── */
.faq-item {
  border-bottom: 1px solid rgba(139, 92, 246, 0.1);
  padding: 18px 0;
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%;
  background: none; border: none;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  padding: 0;
  cursor: pointer;
}
.faq-question .chevron {
  transition: transform 0.3s;
  color: var(--accent);
  font-size: 12px;
  font-family: var(--font-mono);
  flex-shrink: 0;
  margin-left: var(--gap-sm);
}
.faq-question.open .chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.faq-answer.open {
  max-height: 300px;
  padding-top: var(--gap-sm);
}

/* ── Chi Siamo specific ──────────────── */
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-md);
}
.stat-grid .sg-item {
  background: var(--surface);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
}
.stat-grid .sg-item .sg-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
}
.stat-grid .sg-item .sg-label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

.team-card {
  background: var(--surface);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}
.team-card .team-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 2px solid rgba(139, 92, 246, 0.3);
  display: grid; place-items: center;
  margin: 0 auto var(--gap-md);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}
.team-card h3 { margin-bottom: 4px; }
.team-card .team-role { color: var(--muted); font-size: 13px; margin-bottom: var(--gap-sm); }
.team-card .team-tag {
  display: inline-flex;
  padding: 3px 10px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--cyan);
}

.value-card {
  background: var(--surface);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.value-card .vc-icon {
  font-size: 24px;
  margin-bottom: var(--gap-sm);
}
.value-card h3 { margin-bottom: 6px; }
.value-card p { color: var(--muted); font-size: 14px; line-height: 1.6; }

/* ── Info stack ────────────────────── */
.info-stack { display: flex; flex-direction: column; gap: var(--gap-md); }

/* ── Page label ────────────────────── */
.page-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(139, 92, 246, 0.4);
  margin-bottom: var(--gap-xs);
}

/* ── Utilities ─────────────────────── */
.text-center { text-align: center; }
.mb-sm { margin-bottom: var(--gap-sm); }
.mb-md { margin-bottom: var(--gap-md); }
.mb-lg { margin-bottom: var(--gap-lg); }

.ph-img {
  background: var(--surface);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 10;
  display: grid; place-items: center;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
}
