/* Venuoro marketing site — Aeonik + shadcn neutral monochrome (matches eventhub-saas app.css) */

@font-face { font-family: 'Aeonik'; src: url('/fonts/Aeonik-Regular.woff2') format('woff2');  font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Aeonik'; src: url('/fonts/Aeonik-Medium.woff2') format('woff2');   font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Aeonik'; src: url('/fonts/Aeonik-SemiBold.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Aeonik'; src: url('/fonts/Aeonik-Bold.woff2') format('woff2');     font-weight: 700; font-style: normal; font-display: swap; }

:root {
  --bg: oklch(1 0 0);
  --fg: oklch(0.145 0 0);
  --muted: oklch(0.5 0 0);
  --faint: oklch(0.66 0 0);
  --border: oklch(0.922 0 0);
  --surface: oklch(0.985 0 0);
  --surface-2: oklch(0.97 0 0);
  --primary: oklch(0.205 0 0);
  --primary-fg: oklch(0.985 0 0);
  /* the dark band keeps its own fixed tokens in both themes */
  --band-bg: oklch(0.145 0 0);
  --band-fg: oklch(0.985 0 0);
  --band-muted: oklch(0.72 0 0);
  --band-border: oklch(1 0 0 / 12%);
  --band-surface: oklch(0.19 0 0);
  --radius: 16px;
  --maxw: 1120px;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: oklch(0.145 0 0);
    --fg: oklch(0.985 0 0);
    --muted: oklch(0.72 0 0);
    --faint: oklch(0.55 0 0);
    --border: oklch(1 0 0 / 10%);
    --surface: oklch(0.175 0 0);
    --surface-2: oklch(0.205 0 0);
    --primary: oklch(0.922 0 0);
    --primary-fg: oklch(0.205 0 0);
    --band-bg: oklch(0.11 0 0);
    --band-surface: oklch(0.165 0 0);
  }
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
body {
  font-family: 'Aeonik', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--fg);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--fg); outline-offset: 3px; border-radius: 4px; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }

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

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklch, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 24px; }
.wordmark { font-weight: 600; font-size: 23px; letter-spacing: -0.03em; line-height: 1; white-space: nowrap; }
.wordmark .dot { color: var(--faint); }
.site-nav { display: flex; align-items: center; gap: 32px; }
.site-nav a { font-size: 15px; font-weight: 500; color: var(--muted); transition: color .15s ease; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--fg); }
.header-cta { display: flex; align-items: center; gap: 12px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-size: 15.5px; font-weight: 500; line-height: 1;
  padding: 15px 26px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:active { transform: scale(.98); }
.btn-primary { background: var(--primary); color: var(--primary-fg); }
.btn-primary:hover { background: color-mix(in oklch, var(--primary) 88%, var(--bg)); }
.btn-ghost { border-color: var(--border); color: var(--fg); background: transparent; }
.btn-ghost:hover { border-color: var(--faint); }
.btn-sm { padding: 11px 20px; font-size: 14.5px; }
/* buttons on the dark band */
.band .btn-primary { background: var(--band-fg); color: oklch(0.145 0 0); }
.band .btn-ghost { border-color: var(--band-border); color: var(--band-fg); }
.band .btn-ghost:hover { border-color: var(--band-muted); }

/* ---------- type ---------- */
.eyebrow {
  display: inline-block; font-size: 12.5px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 20px;
}
h1, h2, h3 { text-wrap: balance; }
.h-display { font-size: clamp(46px, 7.2vw, 92px); font-weight: 600; letter-spacing: -0.045em; line-height: 1.02; }
.h-section { font-size: clamp(32px, 4.2vw, 48px); font-weight: 600; letter-spacing: -0.035em; line-height: 1.08; }
.h-card { font-size: 19px; font-weight: 600; letter-spacing: -0.015em; }
.lede { font-size: clamp(17px, 1.8vw, 20px); color: var(--muted); max-width: 56ch; }

/* ---------- sections ---------- */
.section { padding: 104px 0; border-top: 1px solid var(--border); }
.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head .lede { margin-top: 18px; }

/* ---------- hero ---------- */
.hero { padding: 96px 0 88px; }
.hero .h-display .quiet { color: var(--faint); }
.hero .lede { margin: 28px 0 40px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-note { margin-top: 22px; font-size: 14px; color: var(--faint); }

/* ---------- hero mock: browser + ticket ---------- */
.hero-mock { position: relative; margin-top: 84px; }
.mock-browser {
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--surface); overflow: hidden;
  box-shadow: 0 24px 60px -32px oklch(0 0 0 / 25%);
}
.mock-bar {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 18px; border-bottom: 1px solid var(--border); background: var(--bg);
}
.mock-dots { display: flex; gap: 6px; }
.mock-dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--border); }
.mock-url {
  flex: 1; max-width: 380px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--muted);
  background: var(--surface-2); border-radius: 8px; padding: 7px 14px;
}
.mock-url svg { width: 12px; height: 12px; stroke: var(--faint); }
.mock-url em { font-style: normal; color: var(--fg); }
.mock-body { display: grid; grid-template-columns: 1.6fr 1fr; gap: 0; min-height: 340px; }
.mock-page { padding: 44px 48px; border-right: 1px solid var(--border); }
.mock-org { display: flex; align-items: center; gap: 10px; margin-bottom: 30px; }
.mock-org-badge {
  width: 34px; height: 34px; border-radius: 9px; background: var(--fg); color: var(--bg);
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px;
}
.mock-org-name { font-weight: 600; font-size: 15px; letter-spacing: -0.01em; }
.mock-org-sub { font-size: 12px; color: var(--faint); }
.mock-title { font-size: clamp(22px, 2.6vw, 32px); font-weight: 600; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 12px; }
.mock-meta { display: flex; flex-wrap: wrap; gap: 18px; font-size: 13.5px; color: var(--muted); margin-bottom: 30px; }
.mock-meta span { display: flex; align-items: center; gap: 7px; }
.mock-meta svg { width: 14px; height: 14px; stroke: var(--faint); }
.mock-tickets { display: flex; flex-direction: column; gap: 10px; max-width: 400px; }
.mock-ticket-row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  border: 1px solid var(--border); border-radius: 12px; padding: 13px 18px; background: var(--bg);
  font-size: 14px;
}
.mock-ticket-row .t-name { font-weight: 500; }
.mock-ticket-row .t-vat { font-size: 11.5px; color: var(--faint); display: block; }
.mock-ticket-row .t-price { font-weight: 600; font-variant-numeric: tabular-nums; }
.mock-ticket { padding: 40px 34px; background: var(--surface-2); display: flex; align-items: center; justify-content: center; }
.ticket-card {
  width: 100%; max-width: 250px; background: var(--bg); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden; box-shadow: 0 16px 40px -24px oklch(0 0 0 / 30%);
}
.ticket-top { padding: 20px 22px 16px; }
.ticket-label { font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); margin-bottom: 6px; }
.ticket-event { font-weight: 600; font-size: 15.5px; letter-spacing: -0.01em; line-height: 1.25; }
.ticket-holder { font-size: 12.5px; color: var(--muted); margin-top: 4px; }
.ticket-divider { border-top: 1px dashed var(--border); position: relative; margin: 0 -1px; }
.ticket-divider::before, .ticket-divider::after {
  content: ""; position: absolute; top: -8px; width: 16px; height: 16px; border-radius: 50%;
  background: var(--surface-2); border: 1px solid var(--border);
}
.ticket-divider::before { left: -9px; }
.ticket-divider::after { right: -9px; }
.ticket-bottom { padding: 18px 22px 20px; display: flex; gap: 16px; align-items: center; }
.qr { width: 62px; height: 62px; flex: none; display: grid; grid-template-columns: repeat(7, 1fr); grid-template-rows: repeat(7, 1fr); gap: 1.5px; }
.qr i { background: var(--fg); border-radius: 1px; }
.qr i.off { background: transparent; }
.ticket-mark { min-width: 0; }
.ticket-mark .mark-label { font-size: 9.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); }
.ticket-mark .mark-value { font-size: 11.5px; font-weight: 500; font-variant-numeric: tabular-nums; word-break: break-all; line-height: 1.35; margin-top: 3px; }
.ticket-mark .mark-note { font-size: 10px; color: var(--faint); margin-top: 5px; }

/* ---------- audience strip ---------- */
.audience { padding: 34px 0; border-top: 1px solid var(--border); }
.audience .wrap { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 40px; }
.audience-label { font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); font-weight: 500; }
.audience ul { display: flex; flex-wrap: wrap; gap: 12px 36px; font-size: 15px; font-weight: 500; color: var(--muted); }

/* ---------- feature grid ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--surface); padding: 30px 28px;
}
.card .icon {
  width: 42px; height: 42px; border-radius: 11px;
  background: var(--surface-2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
}
.card .icon svg { width: 20px; height: 20px; stroke: var(--fg); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.card p { font-size: 15px; color: var(--muted); margin-top: 9px; }

/* ---------- dark compliance band ---------- */
.band { background: var(--band-bg); color: var(--band-fg); padding: 112px 0; }
.band .eyebrow { color: var(--band-muted); }
.band .lede { color: var(--band-muted); }
.band-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 60px; }
.band-card {
  border: 1px solid var(--band-border); border-radius: var(--radius);
  background: var(--band-surface); padding: 28px 28px 26px;
}
.band-chip {
  display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--band-fg);
  border: 1px solid var(--band-border); border-radius: 999px; padding: 5px 12px; margin-bottom: 18px;
}
.band-card h3 { font-size: 18px; font-weight: 600; letter-spacing: -0.015em; }
.band-card p { font-size: 15px; color: var(--band-muted); margin-top: 8px; }
.band-foot { margin-top: 52px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
.band-foot p { font-size: 16px; color: var(--band-muted); max-width: 52ch; }
.band-foot p strong { color: var(--band-fg); font-weight: 600; }

/* ---------- how it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; }
.step { border-top: 1px solid var(--border); padding-top: 26px; counter-increment: step; }
.step::before {
  content: counter(step, decimal-leading-zero);
  display: block; font-size: 13px; font-weight: 500; letter-spacing: 0.1em;
  color: var(--faint); font-variant-numeric: tabular-nums; margin-bottom: 16px;
}
.step h3 { font-size: 19px; font-weight: 600; letter-spacing: -0.015em; }
.step p { font-size: 15px; color: var(--muted); margin-top: 9px; }

/* ---------- pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.price-card {
  border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface);
  padding: 34px 30px; display: flex; flex-direction: column; gap: 0;
}
.price-card.featured { border-color: var(--fg); position: relative; }
.price-flag {
  position: absolute; top: -13px; left: 28px;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--fg); color: var(--bg); border-radius: 999px; padding: 5px 12px;
}
.price-name { font-size: 15px; font-weight: 600; letter-spacing: 0.02em; }
.price-value { margin: 18px 0 4px; font-size: 40px; font-weight: 600; letter-spacing: -0.03em; line-height: 1; font-variant-numeric: tabular-nums; }
.price-value small { font-size: 16px; font-weight: 500; letter-spacing: 0; color: var(--muted); }
.price-sub { font-size: 13.5px; color: var(--faint); min-height: 42px; }
.price-desc { font-size: 15px; color: var(--muted); margin: 14px 0 22px; }
.price-list { display: flex; flex-direction: column; gap: 11px; margin-bottom: 30px; flex: 1; }
.price-list li { display: flex; gap: 11px; font-size: 14.5px; align-items: flex-start; }
.price-list li svg { width: 16px; height: 16px; flex: none; margin-top: 3px; stroke: var(--fg); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.price-list li.na { color: var(--faint); }
.price-list li.na svg { stroke: var(--faint); }
.price-card .btn { width: 100%; }

/* academic / ΕΛΚΕ callout under the plan grid */
.plan-callout {
  margin-top: 20px; border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--surface); padding: 30px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
}
.callout-flag {
  display: inline-block; font-size: 11.5px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted);
  border: 1px solid var(--border); border-radius: 999px; padding: 5px 12px; margin-bottom: 14px;
}
.plan-callout h3 { font-size: 19px; font-weight: 600; letter-spacing: -0.015em; }
.plan-callout p { font-size: 15px; color: var(--muted); margin-top: 8px; max-width: 72ch; }
.plan-callout p strong { color: var(--fg); font-weight: 600; }
.plan-callout .btn { flex: none; }

/* ---------- comparison table ---------- */
.compare-scroll { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); }
table.compare { width: 100%; border-collapse: collapse; font-size: 14.5px; min-width: 720px; background: var(--surface); }
.compare th, .compare td { padding: 15px 20px; text-align: left; border-bottom: 1px solid var(--border); }
.compare thead th { font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); background: var(--surface-2); }
.compare tbody tr:last-child td, .compare tbody tr:last-child th { border-bottom: none; }
.compare tbody th { font-weight: 500; color: var(--fg); width: 34%; }
.compare td { color: var(--muted); font-variant-numeric: tabular-nums; }
.compare td .yes { font-weight: 600; color: var(--fg); }
.compare td .no { color: var(--faint); }

/* ---------- final CTA ---------- */
.cta-final { text-align: center; padding: 120px 0; border-top: 1px solid var(--border); }
.cta-final .h-section { max-width: 18ch; margin: 0 auto; }
.cta-final .lede { margin: 20px auto 38px; }
.cta-final .hero-ctas { justify-content: center; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--border); padding: 64px 0 48px; }
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 40px; margin-bottom: 48px; }
.footer-brand .wordmark { font-size: 26px; }
.footer-brand p { font-size: 14.5px; color: var(--muted); margin-top: 12px; max-width: 34ch; }
.footer-cols { display: flex; gap: 72px; flex-wrap: wrap; }
.footer-col h4 { font-size: 12.5px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14.5px; color: var(--muted); }
.footer-col a:hover { color: var(--fg); }
.footer-legal {
  border-top: 1px solid var(--border); padding-top: 28px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px 32px;
  font-size: 13px; color: var(--faint); line-height: 1.7;
}
.footer-legal .entity { max-width: 72ch; }

/* ---------- legal / prose pages ---------- */
.page-head { padding: 72px 0 20px; }
.page-head .lede { margin-top: 16px; }
.prose { max-width: 720px; padding: 28px 0 104px; }
.prose h1 { font-size: clamp(34px, 4.6vw, 52px); font-weight: 600; letter-spacing: -0.035em; line-height: 1.06; margin-bottom: 14px; }
.prose h2 { font-size: 21px; font-weight: 600; letter-spacing: -0.02em; margin: 44px 0 12px; }
.prose p { color: var(--muted); margin-bottom: 14px; }
.prose p strong { color: var(--fg); font-weight: 600; }
.prose ul { list-style: disc; padding-left: 22px; margin-bottom: 14px; display: block; }
.prose li { color: var(--muted); margin-bottom: 8px; }
.prose li strong { color: var(--fg); font-weight: 600; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.prose .notice {
  font-size: 14px; color: var(--faint); border: 1px solid var(--border);
  border-radius: 12px; padding: 14px 18px; margin: 20px 0 8px; background: var(--surface);
}

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .grid-3, .pricing-grid { grid-template-columns: 1fr 1fr; }
  .band-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 36px; }
  .mock-body { grid-template-columns: 1fr; }
  .mock-page { border-right: none; border-bottom: 1px solid var(--border); }
}
@media (max-width: 680px) {
  .site-nav { display: none; }
  .section { padding: 76px 0; }
  .hero { padding: 64px 0; }
  .grid-3, .pricing-grid { grid-template-columns: 1fr; }
  .mock-page { padding: 30px 24px; }
  .footer-cols { gap: 40px; }
}
