/* ============================================================
   VenturePage — base styles
   Palette is placeholder (amber → cyan) until logo colors land.
   All colors live in CSS custom properties below, easy to swap.
   ============================================================ */

:root {
  --bg: #0b0d12;
  --bg-alt: #0e1119;
  --surface: #131722;
  --surface-border: #232838;
  --text: #f3f5f9;
  --text-dim: #aab1c2;
  --text-dimmer: #7c8496;

  --accent-indigo: #6C63FF;
  --accent-cyan: #22D3EE;
  --accent-green: #34d399;

  --gradient-brand: linear-gradient(90deg, var(--accent-indigo), var(--accent-cyan));

  --radius: 14px;
  --radius-sm: 8px;
  --max-width: 1180px;

  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-head: 'Space Grotesk', 'Inter', system-ui, sans-serif;

  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-head); line-height: 1.15; margin: 0 0 0.5em; color: var(--text); }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); font-weight: 600; }
h3 { font-size: 1.15rem; font-weight: 600; }
p { margin: 0 0 1em; color: var(--text-dim); }
a { color: inherit; }
ul { padding-left: 0; list-style: none; margin: 0; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 1000;
  background: var(--accent-cyan); color: #061018; padding: 0.75em 1.25em;
  border-radius: 0 0 8px 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

#dot-canvas {
  position: fixed; inset: 0; width: 100vw; height: 100vh;
  pointer-events: none; z-index: 1; mix-blend-mode: screen;
}

/* ---------- layout helpers ---------- */
.section-inner, .header-inner, .footer-inner, .hero-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem;
}
.section { position: relative; padding: 6.5rem 0; z-index: 2; }
.section-alt { background: none; }
.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-lead { max-width: 640px; margin-left: auto; margin-right: auto; font-size: 1.05rem; }
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem;
  font-weight: 700; color: var(--accent-cyan); margin-bottom: 0.75em;
}

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

.card {
  background: var(--surface); border: 1px solid var(--surface-border);
  border-radius: var(--radius); padding: 1.75rem; position: relative;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.card:hover { border-color: var(--accent-cyan); transform: translateY(-3px); }
.card p:last-child { margin-bottom: 0; }

/* ---------- icon slot (dot-morph target) ---------- */
.icon-slot {
  width: 160px; height: 160px; margin: 0 auto 1rem;
  border: 1px dashed var(--surface-border); border-radius: 50%;
  opacity: 0.4;
}
.hero-logo-slot {
  width: 270px; height: 130px; border-radius: 14px; margin: 0 auto 1.5rem;
}

/* ---------- header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 13, 18, 0.72); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--surface-border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 0.9rem; padding-bottom: 0.9rem;
}
.brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.brand-logo-img { height: 30px; width: auto; display: block; }
.brand-wordmark {
  font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; color: var(--text);
}
.brand-wordmark em {
  font-style: normal; background: var(--gradient-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.main-nav ul { display: flex; align-items: center; gap: 1.75rem; }
.main-nav a {
  text-decoration: none; color: var(--text-dim); font-size: 0.95rem; font-weight: 500;
  transition: color 0.2s ease;
}
.main-nav a:hover { color: var(--text); }
.main-nav a.nav-cta {
  color: #061018; background: var(--gradient-brand); padding: 0.5em 1.1em;
  border-radius: 999px; font-weight: 600;
}
.main-nav a.nav-cta:hover { color: #061018; filter: brightness(1.08); }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; background: none; border: 1px solid var(--surface-border);
  border-radius: 8px; cursor: pointer;
}
.nav-toggle span { width: 18px; height: 2px; background: var(--text); margin: 0 auto; }

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0; background: var(--bg-alt);
    border-bottom: 1px solid var(--surface-border);
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  }
  .main-nav.open { max-height: 400px; }
  .main-nav ul { flex-direction: column; align-items: flex-start; padding: 1.25rem 1.5rem 1.75rem; gap: 1.1rem; }
}

/* ---------- hero ---------- */
.hero {
  min-height: 92vh; display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 2; padding: 6rem 0 3rem;
}
.hero-inner { text-align: center; }
.eyebrow.center, .hero .eyebrow { display: block; text-align: center; }
.highlight {
  background: var(--gradient-brand); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { max-width: 620px; margin: 0 auto 2rem; font-size: 1.1rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }

.btn {
  display: inline-block; padding: 0.85em 1.7em; border-radius: 999px; font-weight: 600;
  text-decoration: none; font-size: 0.98rem; border: 1px solid transparent; cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.btn-primary { background: var(--gradient-brand); color: #061018; }
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.08); }
.btn-ghost { border-color: var(--surface-border); color: var(--text); background: transparent; }
.btn-ghost:hover { border-color: var(--accent-cyan); transform: translateY(-2px); }

.hero-trust {
  display: flex; gap: 1.75rem; justify-content: center; flex-wrap: wrap;
  font-size: 0.85rem; color: var(--text-dimmer);
}
.hero-trust li::before { content: '✦ '; color: var(--accent-indigo); }

.scroll-cue {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dimmer);
}
.scroll-cue span {
  width: 1px; height: 26px; background: linear-gradient(var(--accent-cyan), transparent);
  animation: scrollcue 1.8s ease-in-out infinite;
}
@keyframes scrollcue { 0%,100% { opacity: 0.2; } 50% { opacity: 1; } }

/* ---------- process ---------- */
.process-list { max-width: 720px; margin: 3rem auto 0; display: flex; flex-direction: column; gap: 1.75rem; }
.process-list li { display: flex; gap: 1.5rem; align-items: flex-start; }
.step-num {
  font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; color: var(--accent-cyan);
  min-width: 2.4rem;
}
.process-list h3 { display: flex; align-items: baseline; gap: 0.6rem; }
.process-list h3 small { font-weight: 500; font-size: 0.8rem; color: var(--text-dimmer); }

/* ---------- pricing ---------- */
.pricing-grid { margin-top: 3rem; align-items: stretch; }
.price-card { display: flex; flex-direction: column; }
.price-card.featured { border-color: var(--accent-cyan); box-shadow: 0 0 0 1px var(--accent-cyan), 0 20px 50px -20px rgba(34,211,238,0.35); }
.price-badge {
  position: absolute; top: -0.7rem; left: 1.75rem; background: var(--gradient-brand);
  color: #061018; font-size: 0.7rem; font-weight: 700; padding: 0.25em 0.8em; border-radius: 999px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.price { font-family: var(--font-head); font-size: 1.9rem; font-weight: 700; margin: 0.3em 0 0.15em; }
.price-period { font-size: 1rem; color: var(--text-dimmer); font-weight: 500; }
.price-compare { font-size: 0.82rem; color: var(--text-dimmer); margin-bottom: 0.9em; }
.price-compare span { text-decoration: line-through; text-decoration-color: var(--accent-indigo); }
.price-desc { font-size: 0.92rem; }
.price-card ul { display: flex; flex-direction: column; gap: 0.55rem; margin-top: auto; padding-top: 0.75rem; }
.price-card ul li { font-size: 0.9rem; color: var(--text-dim); padding-left: 1.3em; position: relative; }
.price-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--accent-green); font-weight: 700; }
.fine-print { max-width: 760px; margin: 2.5rem auto 0; font-size: 0.78rem; color: var(--text-dimmer); text-align: center; }

/* ---------- about ---------- */
.about-grid { margin-top: 3rem; gap: 3rem; }
.check-list li { padding-left: 1.6em; position: relative; margin-bottom: 0.85em; color: var(--text-dim); font-size: 0.95rem; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--accent-green); font-weight: 700; }

/* ---------- faq ---------- */
.faq-list { max-width: 720px; margin: 3rem auto 0; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-list details {
  background: var(--surface); border: 1px solid var(--surface-border); border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
}
.faq-list summary { cursor: pointer; font-weight: 600; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; float: right; color: var(--accent-cyan); }
.faq-list details[open] summary::after { content: '−'; }
.faq-list details p { margin: 0.85em 0 0; font-size: 0.93rem; }

/* ---------- contact ---------- */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 2rem; margin-top: 3rem; align-items: start; }
@media (max-width: 780px) { .contact-wrap { grid-template-columns: 1fr; } }
.contact-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  display: flex; flex-direction: column; gap: 0.25rem; background: var(--surface);
  border: 1px solid var(--surface-border); border-radius: var(--radius); padding: 1.25rem 1.5rem;
  text-decoration: none; transition: border-color 0.2s ease;
}
.contact-card:hover { border-color: var(--accent-cyan); }
.contact-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dimmer); }
.contact-value { font-size: 1.1rem; font-weight: 600; color: var(--text); }

.contact-form {
  background: var(--surface); border: 1px solid var(--surface-border); border-radius: var(--radius);
  padding: 1.75rem;
}
.form-row { margin-bottom: 1.1rem; display: flex; flex-direction: column; gap: 0.4rem; }
.form-row label { font-size: 0.85rem; color: var(--text-dim); font-weight: 500; }
.form-row input, .form-row textarea {
  background: var(--bg); border: 1px solid var(--surface-border); border-radius: var(--radius-sm);
  padding: 0.7em 0.9em; color: var(--text); font-family: inherit; font-size: 0.95rem; resize: vertical;
}
.form-row input:focus, .form-row textarea:focus { outline: 2px solid var(--accent-cyan); outline-offset: 1px; }
.form-note { margin-top: 0.9rem; font-size: 0.78rem; color: var(--text-dimmer); }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--surface-border); padding: 3rem 0; position: relative; z-index: 2; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; text-align: center; }
.footer-inner nav { display: flex; gap: 1.4rem; flex-wrap: wrap; justify-content: center; }
.footer-inner nav a { text-decoration: none; color: var(--text-dim); font-size: 0.9rem; }
.footer-inner nav a:hover { color: var(--text); }
.footer-meta { font-size: 0.78rem; color: var(--text-dimmer); margin: 0; }
.footer-meta a { color: var(--text-dim); }
