/* ==========================================================================
   Vinonee Technologies — design system
   Hand-written CSS, no build step, no external dependencies.
   ========================================================================== */

:root {
  /* Vinonee brand palette — sampled from the logo (deep navy + brushed champagne gold) */
  --bg: #080d1a;
  --bg-soft: #0e1b38;
  --elevated: #101f3d;
  --panel: #16294c;
  --panel-2: #0c1830;
  --line: rgba(202, 165, 96, 0.14);
  --line-strong: rgba(202, 165, 96, 0.28);
  --text: #f7f2e7;
  --text-dim: #b8c0d2;
  --text-faint: #737b93;
  --gold-light: #e6d3a3;
  --gold: #caa059;
  --bronze-light: #b98f47;
  --bronze: #8f6a34;
  --cream: #f1e8d2;
  /* Legacy token names kept as aliases so every existing usage below (and in
     /content/*.html inline styles) picks up the new palette automatically. */
  --blue: var(--gold);
  --blue-light: var(--gold-light);
  --violet: var(--bronze);
  --violet-light: var(--bronze-light);
  --cyan: var(--cream);
  --green: #34d399;
  --amber: #fbbf24;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1240px;
  --shadow-card: 0 1px 0 rgba(255, 255, 255, 0.06) inset, 0 30px 80px -30px rgba(0, 0, 0, 0.7);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

h1, h2, h3, h4 {
  margin: 0 0 0.5em;
  font-family: "Montserrat", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.12;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4.4rem); letter-spacing: -0.02em; font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { margin: 0 0 1em; color: var(--text-dim); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--text-dim); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }

.section { position: relative; padding: 96px 0; }
.section-tight { padding: 64px 0; }
@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .section-tight { padding: 44px 0; }
}
.section-alt { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* Background textures */
.bg-grid {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 20%, #000 40%, transparent 85%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 20%, #000 40%, transparent 85%);
}
.bg-glow { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.glow-orb {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.35;
  animation: float 9s ease-in-out infinite;
}
.glow-orb.blue { background: var(--blue); }
.glow-orb.violet { background: var(--violet); animation-delay: -3s; }
.glow-orb.cyan { background: var(--cyan); animation-delay: -6s; }

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-22px) translateX(10px); }
}
@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes pulseGlow {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 1; }
}
@keyframes dashMove {
  to { stroke-dashoffset: -240; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1.in-view { transition-delay: 0.08s; }
.reveal-delay-2.in-view { transition-delay: 0.16s; }
.reveal-delay-3.in-view { transition-delay: 0.24s; }
.reveal-delay-4.in-view { transition-delay: 0.32s; }

/* Eyebrow / kicker */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue-light); margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 0 10px var(--blue);
}

.gradient-text {
  background: linear-gradient(100deg, var(--blue-light) 0%, var(--violet-light) 50%, var(--cyan) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 28px; border-radius: 999px; font-weight: 600; font-size: 0.98rem;
  border: 1px solid transparent; cursor: pointer; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(100deg, var(--gold-light) 0%, var(--gold) 55%, var(--bronze) 100%);
  color: #1b2338; box-shadow: 0 12px 30px -10px rgba(202, 160, 89, 0.55);
}
.btn-primary:hover { box-shadow: 0 16px 40px -8px rgba(202, 160, 89, 0.7); transform: translateY(-2px); }
.btn-secondary {
  background: rgba(255,255,255,0.04); color: var(--text); border-color: var(--line-strong);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.3); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.88rem; }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.trust-line {
  margin-top: 26px; font-size: 0.85rem; color: var(--text-faint);
  letter-spacing: 0.02em;
}

/* Navbar */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
}
.navbar.scrolled {
  background: rgba(8, 13, 26, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.navbar .container { max-width: 1360px; }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; height: 76px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: "Montserrat", "Inter", sans-serif; font-weight: 700; font-size: 1.1rem; letter-spacing: 0.01em; flex-shrink: 0; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0; overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: 0 8px 20px -8px rgba(202,160,89,0.55);
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-full { height: 30px; width: auto; display: block; }
.brand-full-lg { height: 46px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 18px; flex-wrap: nowrap; }
.nav-links a { font-size: 0.89rem; color: var(--text-dim); font-weight: 500; transition: color 0.2s; position: relative; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-actions .btn { padding: 10px 16px; font-size: 0.84rem; }
.nav-toggle { display: none; background: none; border: 1px solid var(--line-strong); border-radius: 10px; width: 44px; height: 44px; color: var(--text); align-items: center; justify-content: center; }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: rgba(8,13,26,0.98);
  display: none; flex-direction: column; padding: 100px 28px 28px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.15rem; padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--text); }
.mobile-menu .cta-row { margin-top: 24px; flex-direction: column; align-items: stretch; }

@media (max-width: 1180px) {
  .nav-actions .btn-secondary { display: none; }
  .nav-links { gap: 15px; }
  .nav-links a { font-size: 0.84rem; }
}
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* Cards */
.card {
  background: linear-gradient(180deg, var(--panel) 0%, var(--elevated) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.card-hover:hover { transform: translateY(-6px); border-color: rgba(255,255,255,0.22); }
.card-icon {
  width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(202,160,89,0.2), rgba(143,106,52,0.2));
  border: 1px solid rgba(202,165,96,0.16); margin-bottom: 20px; color: var(--gold-light);
}
.card-icon svg { width: 26px; height: 26px; }

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

/* Section header */
.section-head { max-width: 720px; margin: 0 0 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-bottom: 0; }

/* Tech marquee / badges */
.tech-strip {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}
.tech-badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 10px 18px;
  border-radius: 999px; border: 1px solid var(--line); background: rgba(255,255,255,0.03);
  font-size: 0.88rem; color: var(--text-dim); font-weight: 500;
}
.tech-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-light); }
.tech-badge svg, .integration-layer svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--gold-light); }

/* Tech marquee (auto-scrolling logo strip) */
.tech-marquee {
  overflow: hidden; width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.tech-marquee-track { display: flex; width: max-content; animation: marqueeLeft 34s linear infinite; }
.tech-marquee:hover .tech-marquee-track { animation-play-state: paused; }
.tech-marquee-group { display: flex; flex-shrink: 0; gap: 12px; padding-right: 12px; }
@keyframes marqueeLeft { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.tech-group-title { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-faint); margin: 30px 0 14px; text-align: center; font-weight: 700; }

/* Hero */
.hero { padding: 168px 0 90px; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; } .hero { padding: 140px 0 60px; } }
.hero h1 { margin-bottom: 22px; }
.hero-sub { max-width: 560px; }

/* Hero flow visual */
.flow-card {
  position: relative; border-radius: var(--radius-lg); border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(16,21,42,0.9), rgba(7,11,22,0.9));
  padding: 34px 26px; box-shadow: var(--shadow-card);
  backdrop-filter: blur(6px);
}
.flow-steps { display: flex; flex-direction: column; gap: 0; position: relative; z-index: 1; }
.flow-node {
  display: flex; align-items: center; gap: 14px; padding: 16px 18px;
  border-radius: var(--radius-sm); border: 1px solid var(--line); background: rgba(255,255,255,0.03);
  animation: floatSlow 5s ease-in-out infinite;
}
.flow-node .flow-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--gold-light), var(--bronze)); color: #1b2338;
}
.flow-node .flow-icon svg { width: 20px; height: 20px; }
.flow-node strong { display: block; font-size: 0.95rem; }
.flow-node span { font-size: 0.8rem; color: var(--text-faint); }
.flow-connector { display: flex; justify-content: center; padding: 6px 0; }
.flow-connector svg { width: 20px; height: 26px; color: var(--blue-light); animation: pulseGlow 2.4s ease-in-out infinite; }
.flow-particles { position: absolute; inset: 0; pointer-events: none; }

/* Problem / solution list */
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--text-dim); }
.check-list li svg { flex-shrink: 0; width: 20px; height: 20px; margin-top: 2px; color: var(--green); }
.x-list li svg { color: #f87171; }

/* Pricing */
.pricing-card { position: relative; display: flex; flex-direction: column; }
.pricing-card.featured { border-color: rgba(202,160,89,0.5); box-shadow: 0 0 0 1px rgba(202,160,89,0.35), var(--shadow-card); }
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(100deg, var(--gold-light), var(--bronze)); color: #1b2338; font-size: 0.72rem;
  font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px;
}
.price-tier { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-faint); font-weight: 700; }
.price-value { font-size: 2.6rem; font-weight: 700; margin: 10px 0 4px; letter-spacing: -0.02em; }
.price-value span { font-size: 1rem; color: var(--text-faint); font-weight: 500; }
.price-desc { color: var(--text-dim); font-size: 0.92rem; margin-bottom: 24px; }
.price-features { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 12px; flex: 1; }
.price-features li { display: flex; gap: 10px; font-size: 0.92rem; color: var(--text-dim); }
.price-features li svg { width: 18px; height: 18px; color: var(--blue-light); flex-shrink: 0; margin-top: 2px; }
.pricing-disclaimer { text-align: center; color: var(--text-faint); font-size: 0.9rem; margin-top: 34px; }

/* Industries */
.industry-card { text-align: left; }
.industry-card h3 { margin-bottom: 8px; }
.industry-card p { font-size: 0.92rem; margin-bottom: 0; }

/* Process steps */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
@media (max-width: 900px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process-grid { grid-template-columns: 1fr; } }
.process-step .step-num {
  font-size: 2.6rem; font-weight: 800; letter-spacing: -0.02em;
  background: linear-gradient(100deg, var(--blue-light), var(--violet-light));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 10px;
}

/* Integration diagram */
.integration-stack { display: flex; flex-direction: column; gap: 18px; max-width: 640px; margin: 0 auto; }
.integration-layer {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 24px;
  background: rgba(255,255,255,0.03); text-align: center;
}
.integration-layer strong { display: inline-flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 4px; }
.integration-layer span { font-size: 0.85rem; color: var(--text-faint); }
.integration-arrow { display: flex; justify-content: center; color: var(--blue-light); }
.integration-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 14px; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: none; color: var(--text); text-align: left; padding: 22px 4px; font-size: 1.02rem; font-weight: 600; cursor: pointer;
}
.faq-question svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--text-faint); transition: transform 0.3s var(--ease); }
.faq-item.open .faq-question svg { transform: rotate(45deg); color: var(--blue-light); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-answer-inner { padding: 0 4px 22px; color: var(--text-dim); }
.faq-item.open .faq-answer { max-height: 400px; }

/* Case studies */
.case-card { position: relative; overflow: hidden; }
.case-card .coming-soon-tag {
  position: absolute; top: 20px; right: 20px; background: rgba(202,160,89,0.18);
  border: 1px solid rgba(202,160,89,0.4); color: var(--gold-light); font-size: 0.72rem;
  font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px;
  white-space: nowrap;
}
.case-card h3 { padding-right: 108px; }
.case-card .card-icon { position: relative; }
.case-card .card-icon::before {
  content: ""; position: absolute; inset: -12px; border-radius: 50%; z-index: -1;
  background: radial-gradient(circle, rgba(202,160,89,0.4), transparent 70%);
  animation: pulseGlow 2.6s ease-in-out infinite;
}
.case-card .card-icon svg { animation: floatSlow 6s ease-in-out infinite; }

/* Founder story */
.founder-story { display: flex; flex-direction: column; gap: 40px; }
.founder-story-item { padding-bottom: 40px; border-bottom: 1px solid var(--line); }
.founder-story-item:last-child { padding-bottom: 0; border-bottom: none; }

/* Why us */
.why-card { display: flex; gap: 16px; align-items: flex-start; }
.why-card .card-icon { margin-bottom: 0; }

/* Forms */
.form-card { border-radius: var(--radius-lg); border: 1px solid var(--line); background: linear-gradient(180deg, var(--panel), var(--elevated)); padding: 40px; box-shadow: var(--shadow-card); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } .form-card { padding: 26px; } }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--text-dim); }
.field .req { color: var(--violet-light); }
.field input, .field select, .field textarea {
  background: rgba(255,255,255,0.03); border: 1px solid var(--line-strong); border-radius: 10px;
  padding: 13px 15px; color: var(--text); font-size: 0.95rem; font-family: inherit; outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); background: rgba(255,255,255,0.05); }
.field textarea { resize: vertical; min-height: 100px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23b8c0d2' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.form-note { font-size: 0.8rem; color: var(--text-faint); margin-top: 16px; }
.form-status { margin-top: 18px; padding: 16px 18px; border-radius: 12px; font-size: 0.92rem; display: none; }
.form-status.show { display: block; }
.form-status.success { background: rgba(52,211,153,0.12); border: 1px solid rgba(52,211,153,0.35); color: #6ee7b7; }
.form-status.error { background: rgba(248,113,113,0.12); border: 1px solid rgba(248,113,113,0.35); color: #fca5a5; }

/* Final CTA band */
.final-cta {
  border-radius: var(--radius-lg); padding: 64px 40px; text-align: center; position: relative; overflow: hidden;
  background: radial-gradient(circle at 50% 0%, rgba(202,160,89,0.18), transparent 60%), linear-gradient(180deg, var(--panel), var(--elevated));
  border: 1px solid var(--line);
}
@media (max-width: 640px) { .final-cta { padding: 44px 22px; } }

/* Sticky mobile CTA */
.mobile-sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; display: none;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(8,13,26,0.92); backdrop-filter: blur(14px); border-top: 1px solid var(--line);
}
@media (max-width: 720px) { .mobile-sticky-cta { display: block; } body { padding-bottom: 76px; } }

/* Footer */
footer { border-top: 1px solid var(--line); padding: 64px 0 32px; background: var(--bg-soft); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-faint); margin-bottom: 16px; }
.footer-col a, .footer-col p { display: block; color: var(--text-dim); font-size: 0.92rem; margin-bottom: 11px; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; padding-top: 28px; border-top: 1px solid var(--line); font-size: 0.85rem; color: var(--text-faint); }
.social-links { display: flex; gap: 12px; }
.social-links a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--line-strong); display: flex; align-items: center; justify-content: center; }
.social-links a:hover { background: rgba(255,255,255,0.06); }

/* Page hero (inner pages) */
.page-hero { padding: 156px 0 70px; text-align: center; position: relative; overflow: hidden; }
.page-hero .section-head { margin-left: auto; margin-right: auto; }

/* Breadcrumb-esque back link */
.back-link { display: inline-flex; align-items: center; gap: 6px; color: var(--text-faint); font-size: 0.88rem; margin-bottom: 18px; }

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.stack-sm > * + * { margin-top: 10px; }
.divider { height: 1px; background: var(--line); margin: 60px 0; border: none; }
.badge-pill { display: inline-block; padding: 5px 14px; border-radius: 999px; border: 1px solid var(--line-strong); font-size: 0.78rem; color: var(--text-dim); }
.avatar-placeholder {
  width: 180px; height: 180px; border-radius: 24px; border: 1px solid var(--line-strong);
  background: linear-gradient(135deg, rgba(202,160,89,0.16), rgba(143,106,52,0.16));
  display: flex; align-items: center; justify-content: center; color: var(--text-faint); font-size: 0.85rem; text-align: center;
}
.founder-photo {
  width: 240px; height: 240px; border-radius: 24px; border: 1px solid var(--line-strong);
  object-fit: cover; object-position: top center; box-shadow: var(--shadow-card);
}
.counter-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
@media (max-width: 780px) { .counter-row { grid-template-columns: repeat(2, 1fr); } }
.counter-num { font-size: 2.4rem; font-weight: 800; letter-spacing: -0.02em; }
.counter-label { font-size: 0.85rem; color: var(--text-faint); margin-top: 6px; }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--panel); color: var(--text);
  padding: 12px 18px; border-radius: 10px; z-index: 200;
}
.skip-link:focus { left: 16px; top: 16px; }

::selection { background: rgba(202,160,89,0.35); }
