/* ============================================
   Gonka Labs — Proposal Page
   Clean, professional document layout
   ============================================ */

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

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

.p-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e8e8e8;
}

.p-nav-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.p-logo {
  font-size: 17px;
  font-weight: 700;
  color: #111;
  text-decoration: none;
  letter-spacing: -0.3px;
}

.p-nav-links {
  display: flex;
  gap: 28px;
}

.p-nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}

.p-nav-links a:hover {
  color: #111;
}

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

.p-hero {
  padding: 140px 0 80px;
  text-align: center;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  border-bottom: 1px solid #e8e8e8;
}

.p-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #6366f1;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.15);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.p-title {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.15;
  color: #111;
  margin-bottom: 20px;
}

.p-title-accent {
  color: #666;
}

.p-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  max-width: 600px;
  margin: 0 auto 24px;
}

.p-hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: #888;
  flex-wrap: wrap;
}

.p-meta-sep {
  color: #ccc;
}

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

.p-hero-video {
  position: relative;
  max-width: 720px;
  margin: 40px auto 0;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #f0f0f0;
  box-shadow: 0 20px 60px -20px rgba(17, 17, 17, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.p-hero-video-thumb {
  appearance: none;
  border: none;
  padding: 0;
  margin: 0;
  background: transparent;
  width: 100%;
  height: 100%;
  cursor: pointer;
  display: block;
  position: relative;
  font-family: inherit;
}

.p-hero-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.p-hero-video-thumb:hover img {
  transform: scale(1.02);
}

.p-hero-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 17, 17, 0.85);
  color: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.2s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
}

.p-hero-video-thumb:hover .p-hero-video-play {
  background: #6366f1;
  transform: translate(-50%, -50%) scale(1.06);
}

.p-hero-video-play svg {
  width: 36px;
  height: 36px;
  margin-left: 4px;
}

.p-hero-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ---- Table of Contents ---- */

.p-toc {
  margin: 48px 0;
  padding: 28px 32px;
  background: #f8f9fa;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
}

.p-toc h3 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
  margin-bottom: 16px;
}

.p-toc ol {
  list-style: none;
  counter-reset: toc;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 32px;
}

.p-toc li {
  counter-increment: toc;
}

.p-toc li::before {
  content: counter(toc) ".";
  color: #999;
  font-size: 13px;
  margin-right: 8px;
  font-variant-numeric: tabular-nums;
}

.p-toc a {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
}

.p-toc a:hover {
  color: #6366f1;
}

/* ---- Content Sections ---- */

.p-section {
  padding: 48px 0;
  border-bottom: 1px solid #f0f0f0;
}

.p-section:last-child {
  border-bottom: none;
}

.p-section h2 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: 32px;
  color: #111;
  margin-bottom: 20px;
}

.p-section p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 16px;
}

.p-section p:last-child {
  margin-bottom: 0;
}

.p-section ul, .p-section ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.p-section li {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 8px;
}

.p-section a {
  color: #6366f1;
  text-decoration: underline;
  text-decoration-color: rgba(99, 102, 241, 0.3);
  transition: text-decoration-color 0.2s;
}

.p-section a:hover {
  text-decoration-color: #6366f1;
}

/* ---- Callout ---- */

.p-callout {
  background: #f0f0ff;
  border: 1px solid rgba(99, 102, 241, 0.15);
  border-left: 4px solid #6366f1;
  border-radius: 8px;
  padding: 24px 28px;
}

.p-callout p {
  color: #333;
}

/* ---- Products Grid ---- */

.p-products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}

.p-product {
  background: #f8f9fa;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 20px;
}

.p-product h4 {
  font-size: 15px;
  font-weight: 600;
  color: #111;
  margin-bottom: 6px;
}

.p-product p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 0;
}

.p-product p a {
  color: #6366f1;
  text-decoration: none;
}

.p-product p a:hover {
  text-decoration: underline;
}

.p-product-flagship {
  grid-column: 1 / -1;
  background: linear-gradient(180deg, #f8f9fa 0%, #f0f0ff 100%);
  border-color: rgba(99, 102, 241, 0.2);
}

.p-product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.p-product-tags span {
  font-size: 12px;
  font-weight: 500;
  color: #4338ca;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
}

.p-product-repo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 500;
  font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  color: #555;
  text-decoration: none !important;
  transition: color 0.15s;
}

.p-product-repo:hover {
  color: #111;
}

.p-product-repo svg {
  flex-shrink: 0;
}

.p-callout-os {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin: 24px 0 0;
  padding: 22px 26px;
  background: #111;
  border: 1px solid #222;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.p-callout-os:hover {
  border-color: #6366f1;
  transform: translateY(-1px);
  box-shadow: 0 12px 32px -12px rgba(99, 102, 241, 0.5);
}

.p-callout-os-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: #fff;
}

.p-callout-os h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.p-callout-os p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75) !important;
  margin-bottom: 0;
}

.p-callout-os strong {
  color: #fff;
}

.p-callout-os-link {
  color: #a5b4fc;
  font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
}

/* ---- Hero Update Link ---- */

.p-hero-update-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 10px 18px;
  background: rgba(245, 158, 11, 0.18);
  border: 1px solid rgba(245, 158, 11, 0.55);
  border-radius: 999px;
  color: #a18513;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.p-hero-update-link:hover {
  background: rgba(245, 158, 11, 0.28);
  border-color: rgba(245, 158, 11, 0.8);
  transform: translateY(-1px);
}

.p-hero-update-link strong {
  display: inline-block;
  padding: 2px 8px;
  margin: 0 2px;
  background: #f59e0b;
  color: #1a1a1a;
  font-weight: 700;
  border-radius: 6px;
  font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  font-size: 13px;
  letter-spacing: 0.2px;
}

.p-hero-update-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f59e0b;
  box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
  animation: p-hero-update-pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes p-hero-update-pulse {
  0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(245, 158, 11, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

.p-hero-update-arrow {
  font-size: 16px;
  line-height: 1;
  transition: transform 0.18s ease;
}

.p-hero-update-link:hover .p-hero-update-arrow {
  transform: translateX(3px);
}

/* ---- TOC Badge ---- */

.p-toc-badge {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  background: #f59e0b;
  color: #1a1a1a;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 999px;
  vertical-align: middle;
}

/* ---- Updates / Changelog ---- */

.p-changelog-intro {
  margin-bottom: 24px;
}

.p-changelog {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 24px 0;
}

.p-changelog-entry {
  position: relative;
  padding: 24px 28px;
  background: #fefce8;
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-left: 4px solid #f59e0b;
  border-radius: 12px;
}

.p-changelog-latest {
  background: linear-gradient(135deg, #fefce8 0%, #fef3c7 100%);
}

.p-changelog-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 13px;
}

.p-changelog-head time {
  color: #92400e;
  font-weight: 600;
  font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.p-changelog-tag {
  display: inline-block;
  padding: 3px 10px;
  background: #f59e0b;
  color: #1a1a1a;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 999px;
}

.p-changelog-entry h4 {
  margin: 0 0 14px 0;
  font-size: 18px;
  color: #78350f;
  font-weight: 600;
}

.p-changelog-entry ul {
  margin: 0 0 16px 0;
  padding-left: 20px;
}

.p-changelog-entry ul li {
  margin-bottom: 8px;
  color: #422006;
  line-height: 1.6;
}

.p-changelog-entry ul li strong {
  color: #78350f;
}

.p-changelog-entry ul li a,
.p-changelog-credit a,
.p-changelog-foot a {
  color: #b45309;
  text-decoration: underline;
  text-decoration-color: rgba(180, 83, 9, 0.4);
  text-underline-offset: 2px;
}

.p-changelog-entry ul li a:hover,
.p-changelog-credit a:hover,
.p-changelog-foot a:hover {
  text-decoration-color: #b45309;
}

.p-changelog-credit {
  margin: 0;
  padding-top: 12px;
  border-top: 1px dashed rgba(245, 158, 11, 0.4);
  font-size: 14px;
  font-style: italic;
  color: #78350f;
}

.p-changelog-foot {
  margin-top: 24px;
  padding: 16px 20px;
  background: #f9fafb;
  border: 1px dashed #d1d5db;
  border-radius: 10px;
  font-size: 14px;
  color: #4b5563;
  text-align: center;
}

@media (max-width: 700px) {
  .p-hero-update-link {
    font-size: 13px;
    padding: 9px 14px;
    gap: 10px;
  }
  .p-changelog-entry {
    padding: 20px;
  }
  .p-changelog-entry h4 {
    font-size: 16px;
  }
}

/* ---- Ask Card ---- */

.p-ask-card {
  text-align: center;
  padding: 48px 32px;
  background: #111;
  border-radius: 16px;
  margin: 24px 0;
}

.p-ask-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
}

.p-ask-number {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 64px;
  font-weight: 400;
  color: #fff;
  letter-spacing: -2px;
}

.p-ask-currency {
  font-size: 24px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}

.p-ask-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4) !important;
  margin-top: 12px;
}

/* ---- Vesting Grid ---- */

.p-vesting-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0;
}

.p-vesting-card {
  background: #f8f9fa;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 28px;
}

.p-vesting-card-locked {
  background: #111;
  border-color: #333;
}

.p-vesting-card-locked * {
  color: rgba(255, 255, 255, 0.85) !important;
}

.p-vesting-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
  margin-bottom: 8px;
}

.p-vesting-card-locked .p-vesting-label {
  color: rgba(255, 255, 255, 0.4) !important;
}

.p-vesting-amount {
  display: block;
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 28px;
  color: #111;
  margin-bottom: 12px;
}

.p-vesting-card p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ---- Flow Steps (Disbursement) ---- */

.p-flow {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0;
}

.p-flow-step {
  display: flex;
  gap: 20px;
  background: #f8f9fa;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 24px 28px;
  position: relative;
}

.p-flow-step-locked {
  background: #111;
  border-color: #333;
}

.p-flow-step-locked h4,
.p-flow-step-locked .p-flow-amount {
  color: #fff !important;
}

.p-flow-step-locked p,
.p-flow-step-locked strong {
  color: rgba(255, 255, 255, 0.78) !important;
}

.p-flow-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #6366f1;
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
  margin-top: 2px;
}

.p-flow-step-locked .p-flow-num {
  background: #6366f1;
  color: #fff;
}

.p-flow-content {
  flex: 1;
  min-width: 0;
}

.p-flow-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.p-flow-head h4 {
  font-size: 17px;
  font-weight: 600;
  color: #111;
  line-height: 1.3;
}

.p-flow-amount {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 22px;
  color: #111;
  white-space: nowrap;
  letter-spacing: -0.5px;
}

.p-flow-step p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 0;
}

/* ---- Callout variants ---- */

.p-callout-warning {
  background: #fffbeb;
  border-color: rgba(217, 119, 6, 0.2);
  border-left-color: #d97706;
  margin: 16px 0 24px;
}

.p-callout-warning .p-callout-title {
  font-size: 15px;
  font-weight: 700;
  color: #92400e;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.p-callout-list {
  list-style: none;
  padding-left: 0 !important;
  margin-bottom: 0 !important;
}

.p-callout-list li {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 6px;
  padding-left: 18px;
  position: relative;
}

.p-callout-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  background: #d97706;
  border-radius: 50%;
}

.p-callout-list li:last-child {
  margin-bottom: 0;
}

/* ---- Budget Grid ---- */

.p-budget-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0;
}

.p-budget-card {
  background: #f8f9fa;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.p-budget-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--pct);
  height: 3px;
  background: #6366f1;
  border-radius: 0 3px 3px 0;
}

.p-budget-pct {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: #6366f1;
  margin-bottom: 8px;
}

.p-budget-card h4 {
  font-size: 17px;
  font-weight: 600;
  color: #111;
  margin-bottom: 4px;
}

.p-budget-amount {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #888;
  margin-bottom: 12px;
}

.p-budget-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 0;
}

/* ---- Roadmap ---- */

.p-roadmap {
  margin: 24px 0;
}

.p-roadmap-phase {
  position: relative;
  padding: 28px 28px 28px 32px;
  border-left: 2px solid #e8e8e8;
  margin-left: 12px;
}

.p-roadmap-phase:last-child {
  border-left-color: transparent;
}

.p-roadmap-phase::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 32px;
  width: 12px;
  height: 12px;
  background: #6366f1;
  border-radius: 50%;
  border: 2px solid #fff;
}

.p-roadmap-quarter {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6366f1;
  background: rgba(99, 102, 241, 0.08);
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.p-roadmap-phase h4 {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin-bottom: 12px;
}

.p-roadmap-phase ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.p-roadmap-phase li {
  font-size: 15px;
  color: #555;
  margin-bottom: 6px;
}

/* ---- Team Growth ---- */

.p-team-grid {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 24px 0;
}

.p-team-card {
  flex: 1;
  background: #f8f9fa;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 28px;
  text-align: center;
}

.p-team-card-future {
  background: #111;
  border-color: #333;
}

.p-team-card-future * {
  color: rgba(255, 255, 255, 0.85) !important;
}

.p-team-size {
  display: block;
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 48px;
  color: #111;
  margin-bottom: 4px;
}

.p-team-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #888;
  margin-bottom: 12px;
}

.p-team-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 0;
}

.p-team-arrow {
  font-size: 28px;
  color: #ccc;
  flex-shrink: 0;
}

/* ---- Vote Section ---- */

.p-section-vote {
  background: #f8f9fa;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 48px 40px;
  margin: 48px 0;
}

.p-vote-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 24px 0;
}

.p-vote-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.p-vote-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ecfdf5;
  color: #059669;
  border-radius: 50%;
  font-weight: 700;
  font-size: 16px;
}

.p-vote-icon-no {
  background: #fef2f2;
  color: #dc2626;
}

.p-vote-point h4 {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  margin-bottom: 4px;
}

.p-vote-point p {
  font-size: 15px;
  color: #555;
  margin-bottom: 0;
}

.p-vote-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.p-vote-status {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  background: #fffbeb;
  border: 1px solid rgba(217, 119, 6, 0.2);
  border-left: 4px solid #d97706;
  border-radius: 10px;
  margin: 24px 0 0;
}

.p-vote-status-dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  background: #d97706;
  border-radius: 50%;
  margin-top: 9px;
  position: relative;
  box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.6);
  animation: p-vote-pulse 2s ease-out infinite;
}

@keyframes p-vote-pulse {
  0% { box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.55); }
  70% { box-shadow: 0 0 0 12px rgba(217, 119, 6, 0); }
  100% { box-shadow: 0 0 0 0 rgba(217, 119, 6, 0); }
}

.p-vote-status h4 {
  font-size: 15px;
  font-weight: 700;
  color: #92400e;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.p-vote-status p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 0;
}

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

.p-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}

.p-btn-primary {
  background: #111;
  color: #fff;
  border: none;
  font-family: inherit;
}

.p-btn-primary:hover {
  background: #333;
}

.p-btn[disabled] {
  cursor: not-allowed;
  background: #d1d5db;
  color: #6b7280;
  border-color: transparent;
  box-shadow: none;
}

.p-btn[disabled]:hover {
  background: #d1d5db;
  color: #6b7280;
}

.p-btn-outline {
  background: transparent;
  color: #333;
  border: 1px solid #ddd;
}

.p-btn-outline:hover {
  border-color: #999;
  color: #111;
}

/* ---- Summary Table ---- */

.p-section-summary {
  margin-bottom: 48px;
}

.p-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}

.p-table td {
  padding: 14px 0;
  font-size: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.p-table td:first-child {
  color: #666;
}

.p-table td:last-child {
  text-align: right;
  color: #111;
}

.p-table tr:last-child td {
  border-bottom: none;
}

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

.p-footer {
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid #e8e8e8;
}

.p-footer p {
  font-size: 14px;
  color: #888;
  margin-bottom: 8px;
}

.p-footer a {
  color: #555;
  text-decoration: underline;
  text-decoration-color: rgba(0, 0, 0, 0.15);
}

.p-footer a:hover {
  color: #111;
}

.p-footer-note {
  font-size: 13px !important;
  color: #aaa !important;
  font-style: italic;
}

/* ---- Language Toggle ---- */

.p-lang-toggle {
  display: flex;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  margin-left: 20px;
  flex-shrink: 0;
}

.p-lang-toggle button {
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 12px;
  border: none;
  background: transparent;
  color: #999;
  cursor: pointer;
  transition: all 0.2s;
  line-height: 1;
}

.p-lang-toggle button.active {
  background: #111;
  color: #fff;
}

.p-lang-toggle button:hover:not(.active) {
  color: #333;
  background: #f5f5f5;
}

/* ---- Responsive ---- */

@media (max-width: 700px) {
  .p-hero { padding: 120px 0 60px; }
  .p-title { font-size: 32px; }
  .p-subtitle { font-size: 16px; }

  .p-toc ol {
    grid-template-columns: 1fr;
  }

  .p-products-grid,
  .p-vesting-grid,
  .p-budget-grid {
    grid-template-columns: 1fr;
  }

  .p-hero-video {
    margin-top: 32px;
    border-radius: 12px;
  }

  .p-hero-video-play {
    width: 64px;
    height: 64px;
  }

  .p-hero-video-play svg {
    width: 28px;
    height: 28px;
  }

  .p-flow-step {
    padding: 20px;
    gap: 14px;
  }

  .p-flow-head {
    gap: 8px;
  }

  .p-flow-head h4 {
    font-size: 16px;
  }

  .p-flow-amount {
    font-size: 20px;
  }

  .p-team-grid {
    flex-direction: column;
  }

  .p-team-arrow {
    transform: rotate(90deg);
  }

  .p-ask-number {
    font-size: 48px;
  }

  .p-section-vote {
    padding: 32px 24px;
  }

  .p-vote-cta {
    flex-direction: column;
  }

  .p-hero-meta {
    flex-direction: column;
    gap: 4px;
  }

  .p-meta-sep {
    display: none;
  }

  .p-nav-links {
    gap: 16px;
  }

  .p-lang-toggle {
    margin-left: 12px;
  }
}
