/* CueCap marketing site — shared styles. Dark theme by design (not adaptive). */

:root {
  --bg: #101119;
  --surface: #1a1c28;
  --surface-2: #20222f;
  --border: #2b2e3e;
  --ink: #eef0f7;
  --ink-muted: #a3a7bd;
  --ink-faint: #6a6e85;
  --accent: #8e97ff;
  --accent-hover: #a3abff;
  --accent-soft: #262a49;
  --accent-ink: #12131c;
  --ok: #45cf94;
  --ok-soft: #123526;
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 12px 28px -14px rgba(0, 0, 0, 0.6);
  --radius: 12px;
  --max-width: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', 'Segoe UI Variable', 'Segoe UI', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

::selection { background: var(--accent-soft); color: var(--ink); }

a { color: inherit; }

h1, h2, h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; }

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

/* --- Nav --- */
.site-nav {
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(16, 17, 25, 0.92);
  backdrop-filter: blur(8px);
  z-index: 10;
}
.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-mark {
  width: 30px; height: 30px; border-radius: 8px;
  background: linear-gradient(150deg, var(--accent), var(--accent-hover));
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: 0 6px 14px -6px rgba(142, 151, 255, 0.55);
}
.brand-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.nav-link {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-muted);
  text-decoration: none;
}
.nav-link:hover { color: var(--ink); }
.nav-link.active { color: var(--accent); }
.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.lang-switch a {
  text-decoration: none;
  color: var(--ink-faint);
  padding: 4px 6px;
  border-radius: 5px;
}
.lang-switch a.current { color: var(--ink); cursor: default; }
.lang-switch a:not(.current):hover { color: var(--accent); }
.lang-switch span { color: var(--ink-faint); }

/* --- Hero --- */
.hero {
  padding: 88px 0 72px;
  text-align: center;
}
.eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: 44px;
  max-width: 780px;
  margin: 0 auto;
}
.hero-sub {
  font-size: 17px;
  color: var(--ink-muted);
  max-width: 620px;
  margin: 22px auto 0;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 9px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { background: var(--accent-hover); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--ink-faint); }

/* --- Features --- */
.features {
  padding: 20px 0 88px;
}
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}
.section-head h2 { font-size: 30px; }
.section-head p { color: var(--ink-muted); margin-top: 12px; font-size: 15.5px; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow);
}
.feature-icon {
  width: 38px; height: 38px; border-radius: 9px;
  background: var(--accent-soft); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.feature-card h3 { font-size: 16.5px; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--ink-muted); }

/* --- CTA band --- */
.cta-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 56px 0;
  text-align: center;
}
.cta-band h2 { font-size: 26px; }
.cta-band p { color: var(--ink-muted); margin-top: 10px; font-size: 15px; }
.cta-band .hero-actions { margin-top: 26px; }

/* --- Page header (price / privacy) --- */
.page-header {
  padding: 64px 0 40px;
  text-align: center;
}
.page-header h1 { font-size: 36px; }
.page-header p { color: var(--ink-muted); margin-top: 14px; font-size: 15.5px; max-width: 560px; margin-left: auto; margin-right: auto; }
.page-header-note {
  color: var(--ok);
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Pricing --- */
.pricing-section { padding: 0 0 96px; }

.per-seat-note {
  max-width: 720px;
  margin: 0 auto 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  font-size: 14.5px;
  color: var(--ink-muted);
  text-align: center;
}
.per-seat-note strong { color: var(--ink); }

.price-group { margin-bottom: 48px; }
.price-group-label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 16px;
  text-align: center;
}

.price-grid {
  display: grid;
  gap: 18px;
}
.price-grid.solo { grid-template-columns: minmax(0, 320px); justify-content: center; }
.price-grid.trio { grid-template-columns: repeat(3, 1fr); }

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.price-card.highlight {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow);
}
.price-card-tier { font-size: 14px; font-weight: 700; color: var(--ink-muted); }
.price-card-amount { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 30px; }
.price-card-amount span { font-size: 14px; font-weight: 600; color: var(--ink-faint); }
.price-card-year { font-size: 13.5px; color: var(--ink-muted); font-variant-numeric: tabular-nums; }
.price-card-badge {
  align-self: flex-start;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.03em;
  color: var(--accent); background: var(--accent-soft);
  padding: 4px 10px; border-radius: 999px;
}

.price-block { display: flex; flex-direction: column; gap: 6px; }
.price-tags { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; }
.vat-tag {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase;
  color: var(--ink-faint); background: var(--surface-2); border: 1px solid var(--border);
  padding: 2px 8px; border-radius: 999px; white-space: nowrap;
}
.savings-badge {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.02em;
  color: var(--ok); background: var(--ok-soft);
  padding: 2px 9px; border-radius: 999px; white-space: nowrap;
}
.price-card-incl-vat { font-size: 12px; color: var(--ink-faint); }

/* --- Calculator --- */
.calculator {
  max-width: 560px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px 28px;
}
.calculator h3 { font-size: 18px; margin-bottom: 6px; }
.calculator > p { color: var(--ink-muted); font-size: 13.5px; margin-bottom: 22px; }
.calc-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.calc-field label { font-size: 13px; font-weight: 600; color: var(--ink-muted); }
.calc-field input {
  font: inherit; font-size: 16px; color: var(--ink); background: var(--surface-2);
  border: 1px solid var(--border); border-radius: 8px; padding: 11px 14px;
}
.calc-field input:focus-visible { outline: 2px solid var(--accent); outline-offset: 1px; }
.calc-results { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.calc-result {
  background: var(--surface-2); border: 1px solid var(--border); border-radius: 9px;
  padding: 16px 18px;
}
.calc-result-label { font-size: 12px; font-weight: 600; color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.04em; }
.calc-result-value { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 22px; margin-top: 6px; font-variant-numeric: tabular-nums; }
.calc-result-value span { font-size: 12.5px; font-weight: 600; color: var(--ink-faint); }
.calc-result .vat-tag { display: inline-block; margin-top: 8px; }
.calc-savings {
  grid-column: 1 / -1;
  background: var(--ok-soft); color: var(--ok);
  border-radius: 8px; padding: 10px 14px;
  font-size: 13px; font-weight: 600;
}
.calc-savings strong { font-variant-numeric: tabular-nums; }
.calc-rate { grid-column: 1 / -1; font-size: 12.5px; color: var(--ink-faint); margin-top: 2px; }

/* --- Legal / privacy content --- */
.legal { padding: 0 0 96px; }
.legal-body {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.legal-body h2 { font-size: 19px; margin-bottom: 10px; }
.legal-body .section p + p { margin-top: 10px; }
.legal-body p { font-size: 15px; color: var(--ink-muted); }
.legal-body ul { margin: 10px 0 0; padding-left: 20px; color: var(--ink-muted); font-size: 15px; }
.legal-body li + li { margin-top: 6px; }
.legal-updated {
  font-size: 13px; color: var(--ink-faint); text-align: center;
}
.legal-body a.inline-link { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }

/* --- Footer --- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
}
.site-footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--ink-faint);
}
.footer-links { display: flex; gap: 20px; }
.footer-links a { text-decoration: none; color: var(--ink-faint); }
.footer-links a:hover { color: var(--ink); }

/* --- Responsive --- */
@media (max-width: 860px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid.trio { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .hero { padding: 56px 0 48px; }
  .hero h1 { font-size: 32px; }
  .hero-sub { font-size: 15.5px; }
  .feature-grid { grid-template-columns: 1fr; }
  .price-grid.trio { grid-template-columns: 1fr; }
  .section-head h2 { font-size: 24px; }
  .page-header h1 { font-size: 28px; }
  .site-nav .wrap { flex-wrap: wrap; row-gap: 10px; }
  .nav-links { gap: 16px; }
  .calc-results { grid-template-columns: 1fr; }
}
