/* ═══════════════════════════════════════════════════════════════
   ValueFlows — Main Stylesheet
   Extracted from index.html and organized into sections.
   ═══════════════════════════════════════════════════════════════ */

/* ── 1. Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  background: var(--bg-0);
  color: var(--text-2);
  line-height: 1.75;
  font-size: 15px;
  font-weight: 300;
}
a { color: inherit; text-decoration: none; }

/* ── 2. Design Tokens ── */
:root {
  --bg-0: #06080D;
  --bg-1: #0B0E16;
  --bg-2: #111520;
  --bg-3: #181D2C;
  --bg-4: #1F2538;
  --border: #232A3D;
  --border-hi: #2E3852;
  --gold: #C49A38;
  --gold-lt: #DEB95A;
  --gold-dim: rgba(196,154,56,0.12);
  --gold-glow: rgba(196,154,56,0.06);
  --teal: #35B8B0;
  --teal-dim: rgba(53,184,176,0.10);
  --rose: #C45C5C;
  --text-1: #E4E6EE;
  --text-2: #8B95A8;
  --text-3: #4D576A;
}

/* ── 3. Global Effects (dot-grid, scrollbar, cursor-glow) ── */

/* Full-page dot-grid texture */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-1); }
::-webkit-scrollbar-thumb { background: var(--border-hi); border-radius: 2px; }

/* Cursor Glow */
#cursor-glow {
  position: fixed;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,154,56,0.04) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: left 0.6s ease, top 0.6s ease;
  z-index: 1; left: -999px; top: -999px;
}

/* ── 4. Animations (@keyframes) ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── 5. Utility Classes ── */

/* Scroll Reveals */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Container */
.container { max-width: 1120px; margin: 0 auto; padding: 0 2rem; }

/* Tag */
.tag {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid rgba(196,154,56,0.22);
  padding: 0.3rem 0.9rem; border-radius: 3px;
  margin-bottom: 1.75rem;
}

/* Section Label */
.section-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 8px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 20px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* Headings */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--text-1);
  font-weight: 300;
}
h1 em, h2 em, h3 em { color: var(--gold-lt); font-style: italic; }

/* Divider */
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ── 6. Navigation ── */
nav {
  position: fixed; top: 0; z-index: 100;
  width: 100%;
  background: rgba(6,8,13,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s;
}
nav.scrolled { border-bottom-color: rgba(35,42,61,0.8); }
nav .inner {
  max-width: 1120px; margin: 0 auto; padding: 0 2rem;
  height: 64px; display: flex; align-items: center; justify-content: space-between;
}
.logo { font-family: 'IBM Plex Mono', monospace; font-size: 1rem; font-weight: 400; letter-spacing: 0.04em; }
.logo span { color: var(--gold); }
.nav-links {
  display: flex; gap: 2rem; list-style: none;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-2);
}
.nav-links a:hover { color: var(--text-1); }
.nav-cta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  background: transparent; color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.5rem 1.2rem; border-radius: 4px;
  transition: background 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.nav-cta:hover { background: var(--gold-dim); box-shadow: 0 0 12px var(--gold-glow); }

/* Language Switcher */
.lang-switcher {
  display: flex; align-items: center; gap: 0.35rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase;
}
.lang-opt { color: var(--text-3); text-decoration: none; }
.lang-opt:hover { color: var(--text-1); }
.lang-opt.lang-active { color: var(--gold); }
.lang-sep { color: var(--border); user-select: none; }

/* ── 7. Buttons ── */
.btn-primary {
  display: inline-block;
  background: var(--gold); color: var(--bg-0);
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.85rem 2rem; border-radius: 4px;
  transition: filter 0.2s, transform 0.15s;
}
.btn-primary:hover { filter: brightness(1.1); transform: translateY(-1px); }
.btn-ghost {
  display: inline-block;
  background: transparent; color: var(--text-2);
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.85rem 2rem; border-radius: 4px;
  border: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-ghost:hover { border-color: var(--border-hi); color: var(--text-1); transform: translateY(-1px); }

/* ── 8. Hero ── */
.hero {
  padding: calc(8rem + 64px) 0 5.5rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% -5%, rgba(196,154,56,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero .tag { animation: fadeUp 0.55s ease both; }
.hero h1   { animation: fadeUp 0.55s 0.08s ease both; }
.hero-kw   { animation: fadeUp 0.55s 0.16s ease both; }
.hero-sub  { animation: fadeUp 0.55s 0.22s ease both; }
.hero-detail { animation: fadeUp 0.55s 0.28s ease both; }
.hero-actions { animation: fadeUp 0.55s 0.34s ease both; }
.hero-stats { animation: fadeIn 0.7s 0.52s ease both; }
.hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 300; letter-spacing: -0.01em; line-height: 1.02;
  max-width: 860px; margin: 0 auto 1rem;
  color: var(--text-1);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-lt);
}
.hero-kw {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 300; color: var(--text-2);
  max-width: 680px; margin: 0 auto 1.25rem;
  line-height: 1.75;
}
.hero-sub {
  font-size: 1rem; color: var(--text-2);
  max-width: 600px; margin: 0 auto 1rem; line-height: 1.75;
}
.hero-sub strong { color: var(--text-1); font-weight: 500; }
.hero-detail {
  font-size: 0.95rem; color: var(--text-3);
  max-width: 520px; margin: 0 auto 2.75rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── 9. Hero Stats ── */
.hero-stats {
  display: flex; gap: 0; justify-content: center; flex-wrap: wrap;
  margin-top: 4rem; padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.hero-stat {
  text-align: center;
  padding: 0 2.75rem;
  border-right: 1px solid var(--border);
}
.hero-stat:last-child { border-right: none; }
.stat-num {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 52px; font-weight: 300;
  color: var(--gold); letter-spacing: -0.02em; line-height: 1;
}
.stat-label {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-3); margin-top: 0.5rem;
}

/* ── 10. Sections (definition, problem, positioning, etc.) ── */

/* Definition */
.definition-section {
  padding: 3rem 0;
  background: var(--bg-1);
}
.definition-box {
  background: var(--bg-2);
  border: 1px solid rgba(196,154,56,0.15);
  border-left: 3px solid var(--gold);
  border-radius: 8px; padding: 1.75rem 2rem;
  max-width: 820px; margin: 0 auto;
}
.def-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 0.75rem;
}
.definition-box p {
  font-size: 0.9rem; color: var(--text-2); line-height: 1.75; margin: 0;
}
.definition-box strong { color: var(--text-1); font-weight: 500; }

/* Problem Statement */
.problem-section {
  padding: 5rem 0;
  background: var(--bg-0);
}
.problem-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.problem-text h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 300; letter-spacing: -0.01em;
  line-height: 1.08; margin-bottom: 1.25rem;
}
.problem-text p {
  color: var(--text-2); font-size: 0.9rem; margin-bottom: 1rem; line-height: 1.75;
}
.problem-text p:last-child { margin-bottom: 0; }
.problem-text strong { color: var(--text-1); font-weight: 500; }
.problem-stat {
  display: inline-block;
  margin-top: 0.5rem;
  background: var(--gold-dim);
  border: 1px solid rgba(196,154,56,0.2);
  border-radius: 6px; padding: 0.6rem 1rem;
  font-size: 0.85rem; color: var(--text-2); line-height: 1.5;
}
.problem-stat strong { color: var(--gold-lt); font-weight: 500; }
.work-types {
  display: flex; flex-direction: column; gap: 0.875rem;
}
.work-type {
  display: flex; align-items: center; gap: 1rem;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 8px; padding: 1rem 1.25rem;
}
.work-type .wt-icon {
  font-size: 1.3rem; flex-shrink: 0;
}
.work-type .wt-text { font-size: 0.875rem; color: var(--text-2); }
.work-type .wt-text strong { color: var(--text-1); font-weight: 500; display: block; margin-bottom: 0.1rem; }

/* Positioning */
.positioning-section { padding: 5.5rem 0; background: var(--bg-1); }
.positioning-header { text-align: center; margin-bottom: 3.5rem; }
.positioning-header h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 300; letter-spacing: -0.01em; margin-bottom: 0.75rem;
  line-height: 1.08;
}
.positioning-header p { color: var(--text-2); max-width: 540px; margin: 0 auto; }

/* Non-Integration Strip */
.nonint-strip {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr;
  gap: 1rem; align-items: center;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 8px; padding: 2rem 2.5rem;
  margin-bottom: 3rem;
}
.nonint-box { text-align: center; }
.nonint-icon { font-size: 2rem; margin-bottom: 0.6rem; }
.nonint-title { font-size: 0.9rem; font-weight: 500; color: var(--text-1); margin-bottom: 0.5rem; }
.nonint-items {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; letter-spacing: 0.05em;
  color: var(--text-3); line-height: 1.65;
}
.nonint-arrow { text-align: center; font-size: 1.4rem; color: var(--gold); }
.nonint-footer {
  grid-column: 1 / -1; margin-top: 1.25rem; padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  display: flex; gap: 2.5rem; justify-content: center; flex-wrap: wrap;
}
.nonint-check {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 400; color: var(--teal);
}
.nonint-check::before { content: '✓'; font-weight: 700; }

/* Comparison Table */
.comparison-wrapper { margin-top: 1rem; }
.comparison-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 400; text-align: center;
  color: var(--text-3); margin-bottom: 1.25rem;
  letter-spacing: 0.2em; text-transform: uppercase;
}
.comparison-table-scroll { overflow-x: auto; }
.comparison-table {
  width: 100%; border-collapse: collapse; font-size: 0.875rem;
  border: 1px solid var(--border); border-radius: 8px; overflow: hidden;
}
.comparison-table th, .comparison-table td {
  padding: 0.85rem 1.25rem; text-align: left;
  border-bottom: 1px solid var(--border);
}
.comparison-table th {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-3); background: var(--bg-2);
}
.comparison-table th.col-valueflows {
  color: var(--teal);
  background: var(--teal-dim);
}
.comparison-table td { color: var(--text-2); background: var(--bg-1); }
.comparison-table td.col-valueflows {
  color: var(--text-1); font-weight: 400;
  background: rgba(53,184,176,0.04);
  border-left: 2px solid rgba(53,184,176,0.2);
  border-right: 2px solid rgba(53,184,176,0.2);
}
.comparison-table td:first-child { color: var(--text-1); font-weight: 400; }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: rgba(255,255,255,0.01); }
.comparison-table tr:hover td.col-valueflows { background: rgba(53,184,176,0.06); }
.col-check { color: var(--teal); font-weight: 500; }
.col-no { color: var(--text-3); }

/* Packages */
.packages-section { padding: 5.5rem 0; background: var(--bg-0); }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 300; letter-spacing: -0.01em; margin-bottom: 0.75rem;
  line-height: 1.08;
}
.section-header p { color: var(--text-2); max-width: 540px; margin: 0 auto; }
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* Featured (Procurement) – full-width top card */
.pkg-card-featured {
  grid-column: 1 / -1;
  border-color: rgba(196,154,56,0.2);
  background: linear-gradient(135deg, rgba(196,154,56,0.04) 0%, rgba(53,184,176,0.02) 100%);
}
.pkg-card-featured:hover { border-color: rgba(196,154,56,0.4); transform: none; }
.pkg-featured-inner {
  display: flex; flex-direction: column; gap: 1.5rem;
}
.pkg-featured-header {
  display: flex; align-items: flex-start; gap: 1.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.pkg-featured-header .pkg-icon { flex-shrink: 0; margin: 0.1rem 0 0; }
.pkg-featured-header-text { display: flex; flex-direction: column; gap: 0.25rem; }
.pkg-featured-badge {
  display: inline-block; align-self: flex-start;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px; font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--teal); background: var(--teal-dim);
  border: 1px solid rgba(53,184,176,0.25); padding: 0.22rem 0.7rem; border-radius: 3px;
}
.pkg-featured-body {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; align-items: start;
}
.pkg-featured-desc {
  font-size: 0.85rem; color: var(--text-3); margin: 0; line-height: 1.75;
}
.pkg-featured-agents { display: contents; }
.pkg-agent-box {
  background: rgba(11,14,22,0.5); border: 1px solid var(--border);
  border-radius: 8px; padding: 1.1rem;
}
.pkg-agent-box .agent-name {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem; font-weight: 400;
  color: var(--text-1); margin-bottom: 0.4rem;
}
.pkg-agent-box p {
  font-size: 0.78rem; color: var(--text-3); line-height: 1.65; margin: 0;
}
.pkg-card {
  background: var(--bg-1); border: 1px solid var(--border);
  border-radius: 8px; padding: 1.75rem;
  transition: border-color 0.2s, transform 0.2s;
}
.pkg-card:hover { border-color: rgba(196,154,56,0.25); transform: translateY(-3px); }
.pkg-icon {
  width: 44px; height: 44px; border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; margin-bottom: 1rem;
  border: 1px solid var(--border);
}
.pkg-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem; font-weight: 400; margin-bottom: 0.3rem;
}
.pkg-card .pkg-sub {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 1.25rem;
}
.agent-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.agent-list li {
  display: flex; align-items: flex-start; gap: 0.65rem;
  font-size: 0.84rem; color: var(--text-2); line-height: 1.5;
}
.agent-list li::before {
  content: '→'; color: var(--gold);
  flex-shrink: 0; font-size: 0.75rem; margin-top: 0.15rem;
}
.agent-name { font-weight: 400; color: var(--text-1); }
.pkg-use-case {
  margin-top: 1.25rem; padding-top: 1.1rem;
  border-top: 1px solid var(--border);
  font-size: 0.78rem; color: var(--text-3); line-height: 1.65;
  font-style: italic;
}

/* Package icon color variants */
.pkg-1 .pkg-icon { background: rgba(196,154,56,0.08); color: var(--gold); }
.pkg-2 .pkg-icon { background: rgba(53,184,176,0.08); color: var(--teal); }
.pkg-3 .pkg-icon { background: rgba(255,170,50,0.08); color: #ffaa32; }
.pkg-4 .pkg-icon { background: rgba(160,100,255,0.08); color: #a064ff; }
.pkg-5 .pkg-icon { background: rgba(196,92,92,0.08);  color: var(--rose); }
.pkg-6 .pkg-icon { background: rgba(53,184,176,0.08); color: var(--teal); }
.pkg-7 .pkg-icon { background: rgba(196,154,56,0.08); color: var(--gold); }

/* Vote Banner */
.vote-banner {
  margin-top: 1.5rem;
  padding: 0.75rem 1rem;
  background: rgba(196,154,56,0.04);
  border: 1px dashed rgba(196,154,56,0.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.vote-banner:hover { background: var(--gold-dim); border-color: rgba(196,154,56,0.4); }
.vote-banner-text { font-size: 0.8rem; color: var(--text-2); }
.vote-banner-text strong { color: var(--gold); display: block; font-size: 0.82rem; }
.vote-banner-btn {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 500; letter-spacing: 0.1em; white-space: nowrap;
  background: transparent; color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.35rem 0.8rem; border-radius: 4px; flex-shrink: 0;
}

/* Benefits */
.benefits-section { padding: 5.5rem 0; background: var(--bg-1); }
.benefits-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.benefit-card {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 8px; padding: 2rem;
}
.benefit-icon {
  font-size: 1.8rem; margin-bottom: 0.85rem; display: block; line-height: 1;
}
.benefit-number {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.6rem;
}
.benefit-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem; font-weight: 400; margin-bottom: 0.6rem;
}
.benefit-card .benefit-what {
  font-size: 0.875rem; color: var(--text-2); margin-bottom: 1rem; line-height: 1.75;
}
.benefit-card .benefit-value {
  font-size: 0.82rem; color: var(--teal);
  background: var(--teal-dim); border: 1px solid rgba(53,184,176,0.15);
  border-radius: 4px; padding: 0.6rem 0.85rem;
  line-height: 1.5;
}
.benefit-card .benefit-value::before {
  content: '✓ '; font-weight: 700;
}

/* Team / Authority */
.team-section {
  padding: 4.5rem 0;
  background: var(--bg-0);
}
.team-inner {
  max-width: 720px; margin: 0 auto; text-align: center;
}
.team-inner h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 300; margin-bottom: 1rem; letter-spacing: -0.01em; line-height: 1.08;
}
.team-inner p {
  color: var(--text-2); font-size: 0.9rem; line-height: 1.75; margin-bottom: 1rem;
}
.team-inner p:last-of-type { margin-bottom: 0; }
.team-links {
  display: flex; gap: 1rem; justify-content: center;
  flex-wrap: wrap; margin-top: 1.75rem;
}
.team-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(196,154,56,0.25);
  border-radius: 4px; padding: 0.45rem 1rem;
  transition: background 0.2s;
}
.team-link:hover { background: var(--gold-dim); }

/* FAQ */
.faq-section { padding: 5.5rem 0; background: var(--bg-1); }
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.25rem; margin-top: 3rem;
}
.faq-item {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 8px; padding: 1.75rem;
}
.faq-q {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.95rem; font-weight: 500; color: var(--text-1);
  margin-bottom: 0.75rem; line-height: 1.4;
}
.faq-a { font-size: 0.875rem; color: var(--text-2); line-height: 1.75; margin: 0; }

/* CTA */
.cta-section {
  padding: 7rem 0;
  text-align: center;
  position: relative; overflow: hidden;
  background: var(--bg-0);
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 75% at 50% 110%, rgba(196,154,56,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300; letter-spacing: -0.01em; margin-bottom: 1rem; line-height: 1.1;
}
.cta-section p { color: var(--text-2); font-size: 1rem; margin-bottom: 2.5rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── 11. Modals ── */

/* Shared modal base */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(6,8,13,0.85); backdrop-filter: blur(8px);
  align-items: center; justify-content: center;
  padding: 1rem;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: 8px; padding: 2.5rem; max-width: 440px; width: 100%;
  position: relative;
}
.modal-close {
  position: absolute; top: 1.1rem; right: 1.25rem;
  background: none; border: none; color: var(--text-3);
  font-size: 1.3rem; cursor: pointer; line-height: 1;
}
.modal-close:hover { color: var(--text-1); }
.modal-icon { font-size: 2rem; margin-bottom: 1rem; }
.modal h3 { font-size: 1.6rem; font-weight: 300; margin-bottom: 0.5rem; }
.modal p { font-size: 0.875rem; color: var(--text-2); margin-bottom: 1.5rem; line-height: 1.65; }
.modal-pkg-name {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 400; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.35rem; display: block;
}
.modal-form { display: flex; flex-direction: column; gap: 0.75rem; }
.modal-input {
  width: 100%; padding: 0.75rem 1rem;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 4px; color: var(--text-1); font-size: 0.9rem;
  outline: none; font-family: inherit;
}
.modal-input:focus { border-color: var(--gold); }
.modal-input::placeholder { color: var(--text-3); }
.modal-submit {
  width: 100%; padding: 0.8rem;
  background: var(--gold); color: var(--bg-0);
  border: none; border-radius: 4px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; transition: filter 0.2s;
}
.modal-submit:hover { filter: brightness(1.1); }
.modal-submit:disabled { background: var(--text-3); color: var(--bg-1); cursor: not-allowed; filter: none; }
.modal-success {
  display: none; text-align: center; padding: 1rem 0;
}
.modal-success .success-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.modal-success p { color: var(--text-2); margin-bottom: 0; }

/* Vote Modal: Consent & Privacy Note */
.vote-privacy-note {
  font-size: 0.76rem; color: var(--text-3);
  line-height: 1.55; margin-top: 0.25rem;
}
.vote-privacy-note a {
  color: var(--gold); text-decoration: underline; cursor: pointer;
}
.vote-consent {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.8rem; color: var(--text-2); line-height: 1.5;
}
.vote-consent input[type="checkbox"] {
  margin-top: 0.2rem; flex-shrink: 0;
  accent-color: var(--gold);
  width: 15px; height: 15px; cursor: pointer;
}
.vote-consent label { cursor: pointer; }
.vote-consent a {
  color: var(--gold); text-decoration: underline; cursor: pointer;
}

/* ── 12. Footer ── */
footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  padding: 2rem; text-align: center;
  font-size: 0.8rem; color: var(--text-3);
}
.footer-links {
  display: flex; gap: 1.5rem; justify-content: center;
  margin-top: 0.6rem; flex-wrap: wrap;
}
.footer-links a {
  color: var(--text-3); font-size: 0.8rem;
}
.footer-links a:hover { color: var(--gold); text-decoration: underline; }

/* ── 13. Responsive / Media Queries ── */
@media (max-width: 900px) {
  .packages-grid { grid-template-columns: 1fr 1fr; }
  .pkg-featured-body { grid-template-columns: 1fr 1fr; }
  .pkg-featured-header { flex-direction: column; align-items: flex-start; }
  .nonint-strip { grid-template-columns: 1fr; }
  .nonint-arrow { transform: rotate(90deg); }
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 800px) {
  .problem-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .nav-links { display: none; }
  .packages-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
}
@media (max-width: 600px) {
  .comparison-table th, .comparison-table td { padding: 0.65rem 0.75rem; font-size: 0.8rem; }
}
