/* ==========================================================================
   Veentic Theme — public stylesheet
   Premium business defaults · auto light/dark · mobile-first.
   ========================================================================== */

/* Tokens
   ------------------------------------------------------------------------- */
:root {
  /* Light tokens */
  --vt-bg:        oklch(0.985 0.005 250);
  --vt-bg-soft:   oklch(0.97 0.005 250);
  --vt-surface:   #ffffff;
  --vt-surface-2: oklch(0.96 0.005 250);
  --vt-ink:       oklch(0.21 0.04 250);
  --vt-ink-soft:  oklch(0.36 0.03 250);
  --vt-muted:     oklch(0.55 0.02 250);
  --vt-line:      oklch(0.92 0.005 250);
  --vt-line-strong: oklch(0.84 0.005 250);
  --vt-accent:    var(--veentic-accent, #2a6bff);
  --vt-accent-ink:#ffffff;
  --vt-champagne: var(--veentic-champagne, #c8a35a);

  /* Layered shadow (soft, layered, premium) */
  --vt-shadow-1: 0 1px 1px rgba(10, 18, 36, .04), 0 2px 6px rgba(10, 18, 36, .04);
  --vt-shadow-2: 0 6px 20px rgba(10, 18, 36, .08), 0 1px 2px rgba(10, 18, 36, .04);
  --vt-shadow-3: 0 24px 60px rgba(10, 18, 36, .14), 0 6px 14px rgba(10, 18, 36, .06);
  --vt-shadow-glow: 0 12px 36px color-mix(in oklch, var(--vt-accent), transparent 70%);

  /* Geometry */
  --vt-radius:     var(--veentic-radius, 16px);
  --vt-radius-sm:  10px;
  --vt-radius-lg:  calc(var(--vt-radius) * 1.5);
  --vt-radius-xl:  calc(var(--vt-radius) * 2);
  --vt-pad:        clamp(1rem, 2vw, 1.75rem);
  --vt-gap:        clamp(1rem, 2vw, 1.5rem);
  --vt-max:        var(--veentic-max, 1280px);

  /* Type */
  --vt-font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --vt-font-serif: 'Fraunces', 'Iowan Old Style', Georgia, serif;

  /* Easing */
  --vt-ease: cubic-bezier(.22, 1, .36, 1);
  --vt-ease-in: cubic-bezier(.55, 0, .68, .53);
}

@media (prefers-color-scheme: dark) {
  html:not([data-veentic-mode="light"]) {
    --vt-bg:        oklch(0.16 0.025 260);
    --vt-bg-soft:   oklch(0.19 0.03 260);
    --vt-surface:   oklch(0.22 0.03 260);
    --vt-surface-2: oklch(0.26 0.03 260);
    --vt-ink:       oklch(0.97 0.005 250);
    --vt-ink-soft:  oklch(0.86 0.01 250);
    --vt-muted:     oklch(0.7 0.015 250);
    --vt-line:      oklch(0.32 0.02 260);
    --vt-line-strong: oklch(0.42 0.02 260);
    --vt-shadow-1: 0 1px 1px rgba(0,0,0,.45), 0 2px 6px rgba(0,0,0,.35);
    --vt-shadow-2: 0 6px 20px rgba(0,0,0,.45), 0 1px 2px rgba(0,0,0,.35);
    --vt-shadow-3: 0 24px 60px rgba(0,0,0,.6), 0 6px 14px rgba(0,0,0,.4);
  }
}

html[data-veentic-mode="dark"] {
  --vt-bg:        oklch(0.16 0.025 260);
  --vt-bg-soft:   oklch(0.19 0.03 260);
  --vt-surface:   oklch(0.22 0.03 260);
  --vt-surface-2: oklch(0.26 0.03 260);
  --vt-ink:       oklch(0.97 0.005 250);
  --vt-ink-soft:  oklch(0.86 0.01 250);
  --vt-muted:     oklch(0.7 0.015 250);
  --vt-line:      oklch(0.32 0.02 260);
  --vt-line-strong: oklch(0.42 0.02 260);
  --vt-shadow-1: 0 1px 1px rgba(0,0,0,.45), 0 2px 6px rgba(0,0,0,.35);
  --vt-shadow-2: 0 6px 20px rgba(0,0,0,.45), 0 1px 2px rgba(0,0,0,.35);
  --vt-shadow-3: 0 24px 60px rgba(0,0,0,.6), 0 6px 14px rgba(0,0,0,.4);
}

html[data-veentic-mode="light"] {
  --vt-bg:        oklch(0.985 0.005 250);
  --vt-bg-soft:   oklch(0.97 0.005 250);
  --vt-surface:   #ffffff;
  --vt-surface-2: oklch(0.96 0.005 250);
  --vt-ink:       oklch(0.21 0.04 250);
  --vt-ink-soft:  oklch(0.36 0.03 250);
  --vt-muted:     oklch(0.55 0.02 250);
  --vt-line:      oklch(0.92 0.005 250);
  --vt-line-strong: oklch(0.84 0.005 250);
}

/* Reset
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-rendering: optimizeLegibility; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  background: var(--vt-bg);
  color: var(--vt-ink);
  font-family: var(--vt-font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
  text-underline-offset: 0.18em;
}

img, video, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--vt-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  margin: 0 0 0.5em;
  letter-spacing: -0.012em;
  color: var(--vt-ink);
}
h1, h2 { font-family: var(--vt-font-serif); font-weight: 500; line-height: 1.05; letter-spacing: -0.022em; }
h3, h4 { font-weight: 600; }

button { font: inherit; }

::selection { background: color-mix(in oklch, var(--vt-accent), transparent 70%); }

.screen-reader-text { position: absolute !important; clip: rect(1px,1px,1px,1px); height: 1px; width: 1px; overflow: hidden; }

.vt-skip {
  position: absolute; top: -3rem; left: 1rem; background: var(--vt-ink); color: var(--vt-bg);
  padding: .5rem .75rem; border-radius: 999px; z-index: 1000;
  transition: top .2s var(--vt-ease);
}
.vt-skip:focus-visible { top: .75rem; outline: 2px solid var(--vt-accent); }

/* Buttons & pills
   ------------------------------------------------------------------------- */
.vt-btn {
  --bg: var(--vt-accent);
  --fg: var(--vt-accent-ink);
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .68rem 1.05rem;
  font-weight: 600; font-size: .9375rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--bg); color: var(--fg);
  cursor: pointer;
  transition: transform .2s var(--vt-ease), box-shadow .2s var(--vt-ease), background .2s, color .2s;
  text-decoration: none;
}
.vt-btn:hover { text-decoration: none; transform: translateY(-1px); box-shadow: var(--vt-shadow-glow); }
.vt-btn:focus-visible { outline: 2px solid color-mix(in oklch, var(--vt-accent), white 30%); outline-offset: 3px; }
.vt-btn--primary {
  background: linear-gradient(180deg, color-mix(in oklch, var(--vt-accent), white 5%), var(--vt-accent));
  box-shadow: 0 1px 0 rgba(255,255,255,.2) inset, var(--vt-shadow-2);
}
.vt-btn--ghost {
  --bg: transparent; --fg: var(--vt-ink);
  border-color: var(--vt-line-strong);
  background: var(--vt-surface);
}
.vt-btn--ghost:hover { background: var(--vt-surface-2); }

.vt-pill {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .25rem .55rem; font-size: .75rem; font-weight: 600;
  border-radius: 999px; background: var(--vt-surface-2); color: var(--vt-ink-soft);
  border: 1px solid var(--vt-line);
}

.vt-icon { flex: 0 0 auto; }

/* Container
   ------------------------------------------------------------------------- */
.vt-container { width: 100%; max-width: var(--vt-max); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }

/* Topbar / company bar
   ------------------------------------------------------------------------- */
.vt-cobar {
  background: var(--vt-bg-soft);
  border-bottom: 1px solid var(--vt-line);
  font-size: .82rem; color: var(--vt-ink-soft);
}
.vt-cobar--below-menu, .vt-cobar--below-slider, .vt-cobar--below-footer { background: transparent; border: none; }
.vt-cobar--below-footer {
  background: color-mix(in oklch, var(--vt-bg), var(--vt-ink) 6%);
  color: var(--vt-ink-soft);
  border-top: 1px solid var(--vt-line);
}
.vt-cobar__inner {
  width: 100%; max-width: var(--vt-max); margin-inline: auto;
  padding: .55rem clamp(1rem, 4vw, 2rem);
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between;
}
.vt-cobar__contacts { display: flex; flex-wrap: wrap; gap: 1.1rem; }
.vt-cobar__item { display: inline-flex; align-items: center; gap: .35rem; color: inherit; text-decoration: none; }
.vt-cobar__item:hover { color: var(--vt-ink); }
.vt-cobar__socials { list-style: none; margin: 0; padding: 0; display: flex; gap: .5rem; }
.vt-cobar__socials a { color: inherit; opacity: .7; transition: opacity .2s; }
.vt-cobar__socials a:hover { opacity: 1; }

/* Header
   ------------------------------------------------------------------------- */
.vt-header {
  background: var(--vt-surface);
  border-bottom: 1px solid var(--vt-line);
  position: relative; z-index: 50;
  transition: background .25s var(--vt-ease), box-shadow .25s var(--vt-ease);
}
.vt-header.is-sticky { position: sticky; top: 0; }
.vt-header.is-glass {
  background: color-mix(in oklch, var(--vt-surface), transparent 18%);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: color-mix(in oklch, var(--vt-line), transparent 30%);
}
.vt-header.is-scrolled { box-shadow: var(--vt-shadow-2); }

.vt-header__inner {
  width: 100%; max-width: var(--vt-max); margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: .75rem clamp(1rem, 4vw, 2rem);
  position: relative;
}

/* Header layouts (dropdown in Theme Settings → Header Menu) */
/* Classic — logo left, menu centered, tools right (default) */
.vt-header[data-layout="classic"] .vt-nav { justify-self: center; }

/* Centered — logo on top centered, menu on second row centered, tools floated right */
@media (min-width: 921px) {
  .vt-header[data-layout="centered"] .vt-header__inner {
    grid-template-columns: 1fr;
    grid-template-areas: "brand" "nav";
    gap: .35rem 1rem;
    padding-block: 1rem;
    justify-items: center;
    text-align: center;
  }
  .vt-header[data-layout="centered"] .vt-header__brand { grid-area: brand; justify-self: center; }
  .vt-header[data-layout="centered"] .vt-nav          { grid-area: nav;   justify-self: center; }
  .vt-header[data-layout="centered"] .vt-header__tools{
    position: absolute;
    top: 1rem;
    right: clamp(1rem, 4vw, 2rem);
  }
  .vt-header[data-layout="centered"] .vt-burger {
    position: absolute;
    top: 1rem;
    left: clamp(1rem, 4vw, 2rem);
  }

  /* Split — menu left, logo center, tools right */
  .vt-header[data-layout="split"] .vt-header__inner {
    grid-template-columns: 1fr auto 1fr;
  }
  .vt-header[data-layout="split"] .vt-header__brand { grid-column: 2; justify-self: center; order: 2; }
  .vt-header[data-layout="split"] .vt-nav           { grid-column: 1; justify-self: start;  order: 1; }
  .vt-header[data-layout="split"] .vt-header__tools { grid-column: 3; justify-self: end;    order: 3; }
}

.vt-header__brand { display: flex; align-items: center; gap: .9rem; min-width: 0; }
.vt-brand { display: inline-flex; align-items: center; gap: .55rem; color: inherit; text-decoration: none; }
.vt-brand__svg { display: inline-flex; align-items: center; line-height: 0; }
.vt-brand__svg svg { height: 38px; width: auto; max-width: 200px; }
.vt-brand__mark {
  display: inline-grid; place-items: center;
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--vt-accent), color-mix(in oklch, var(--vt-accent), var(--vt-champagne) 50%));
  color: white; font-weight: 700; border-radius: 12px;
  box-shadow: var(--vt-shadow-2);
}
.vt-brand__name { font-weight: 600; letter-spacing: -.012em; font-size: 1.05rem; }
.vt-brand__logo { max-height: 40px; width: auto; }

/* Light/dark logo swap — both variants are output by PHP, CSS picks one. */
.vt-brand__logo--dark,
.vt-brand__svg--dark { display: none; }

/* Manual dark mode (user clicked the toggle) */
html[data-veentic-mode="dark"] .vt-brand__logo--light,
html[data-veentic-mode="dark"] .vt-brand__svg--light { display: none; }
html[data-veentic-mode="dark"] .vt-brand__logo--dark,
html[data-veentic-mode="dark"] .vt-brand__svg--dark { display: inline-block; }

/* Auto mode — follow OS unless the user explicitly chose Light */
@media (prefers-color-scheme: dark) {
  html:not([data-veentic-mode="light"]) .vt-brand__logo--light,
  html:not([data-veentic-mode="light"]) .vt-brand__svg--light { display: none; }
  html:not([data-veentic-mode="light"]) .vt-brand__logo--dark,
  html:not([data-veentic-mode="light"]) .vt-brand__svg--dark { display: inline-block; }
}

@media (max-width: 540px) {
  .vt-brand__svg svg { height: 32px; }
}

.vt-nav { display: flex; gap: .35rem; justify-self: center; flex-wrap: wrap; align-items: center; }

/* Header item types */
.vt-hdr-link {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .55rem .85rem; border-radius: 999px;
  color: var(--vt-ink); text-decoration: none; font-weight: 500; font-size: .95rem;
  transition: background .2s var(--vt-ease);
}
.vt-hdr-link:hover { background: var(--vt-surface-2); text-decoration: none; }

.vt-hdr-cta { padding: .55rem 1rem; height: 38px; font-size: .9rem; font-weight: 600; }

.vt-hdr-phone {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .5rem .75rem; border-radius: 999px;
  color: var(--vt-ink); text-decoration: none; font-weight: 600; font-size: .92rem;
  transition: color .2s;
}
.vt-hdr-phone:hover { color: var(--vt-accent); }

.vt-hdr-html { display: inline-flex; align-items: center; padding: 0 .25rem; font-size: .92rem; color: var(--vt-ink-soft); }

.vt-hdr-searchform {
  display: inline-grid; grid-template-columns: auto 1fr; align-items: center; gap: .3rem;
  padding: .25rem .65rem .25rem .55rem; border-radius: 999px;
  background: var(--vt-bg-soft); border: 1px solid var(--vt-line);
  max-width: 240px;
}
.vt-hdr-searchform__icon { color: var(--vt-muted); display: inline-grid; place-items: center; }
.vt-hdr-searchform input { border: 0; background: transparent; padding: .35rem .25rem; font: inherit; color: var(--vt-ink); outline: 0; min-width: 0; }

.vt-hdr-socials { gap: .25rem; }

.vt-hdr-text { padding: 0 .55rem; color: var(--vt-ink-soft); font-size: .9rem; }
.vt-hdr-badge {
  display: inline-flex; padding: .2rem .55rem; border-radius: 999px;
  background: color-mix(in oklch, var(--vt-accent), white 80%);
  color: color-mix(in oklch, var(--vt-accent), black 25%);
  font-weight: 700; letter-spacing: .04em; font-size: .72rem; text-transform: uppercase;
}

.vt-hdr-spacer { flex: 1; min-width: .5rem; }

/* Dropdown trigger */
.vt-drop { position: relative; }
.vt-drop__btn {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .55rem .9rem;
  background: transparent; border: 0; color: var(--vt-ink);
  border-radius: 999px;
  font-weight: 500; font-size: .95rem;
  cursor: pointer;
  transition: background .2s var(--vt-ease), color .2s;
}
.vt-drop__btn:hover, .vt-drop__btn[aria-expanded="true"] {
  background: var(--vt-surface-2);
}
.vt-drop__btn .veentic-icon { transition: transform .2s var(--vt-ease); }
.vt-drop__btn[aria-expanded="true"] .veentic-icon { transform: rotate(180deg); }

/* Dropdown panel — full-width mega menu on desktop */
.vt-drop__panel {
  position: absolute; top: calc(100% + 8px);
  left: 50%; transform: translateX(-50%) translateY(-6px);
  min-width: 280px; max-width: min(840px, calc(100vw - 32px));
  background: var(--vt-surface);
  border: 1px solid var(--vt-line);
  border-radius: var(--vt-radius-lg);
  box-shadow: var(--vt-shadow-3);
  padding: clamp(1rem, 2vw, 1.5rem);
  opacity: 0; pointer-events: none;
  transition: opacity .2s var(--vt-ease), transform .25s var(--vt-ease);
}
.vt-drop__panel:not([hidden]) { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }

.vt-drop__empty { color: var(--vt-muted); }

.vt-mega { list-style: none; margin: 0; padding: 0; display: grid; gap: .25rem 1.5rem; grid-template-columns: 1fr; }
.vt-mega--cols-2 { grid-template-columns: repeat(2, minmax(220px, 1fr)); }

.vt-mega__item { display: block; }
.vt-mega__link {
  display: grid; gap: .15rem;
  padding: .55rem .65rem; border-radius: var(--vt-radius-sm);
  color: var(--vt-ink); text-decoration: none;
  transition: background .2s var(--vt-ease), color .2s;
}
.vt-mega__link:hover { background: var(--vt-surface-2); }
.vt-mega__title { font-weight: 600; }
.vt-mega__desc  { color: var(--vt-muted); font-size: .82rem; }
.vt-mega__col { list-style: none; padding: 0; margin: 0; }

/* Header tools */
.vt-header__tools { display: flex; align-items: center; gap: .5rem; justify-self: end; }
.vt-tool {
  display: inline-grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 999px;
  background: var(--vt-surface);
  border: 1px solid var(--vt-line);
  color: var(--vt-ink);
  cursor: pointer;
  transition: background .2s, color .2s, transform .2s;
}
.vt-tool:hover { background: var(--vt-surface-2); transform: translateY(-1px); }
.vt-tool--theme .veentic-icon:nth-of-type(2) { display: none; }
html[data-veentic-mode="dark"] .vt-tool--theme .veentic-icon:nth-of-type(1) { display: none; }
html[data-veentic-mode="dark"] .vt-tool--theme .veentic-icon:nth-of-type(2) { display: inline-block; }

/* Login pill — same visual language as the round search/theme tools, just longer. */
.vt-tool--login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 40px;
  padding: 0 1rem;
  border-radius: 999px;
  background: var(--vt-surface);
  border: 1px solid var(--vt-line);
  color: var(--vt-ink);
  font: inherit;
  font-size: .9rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  gap: .5rem;
  transition: background .2s var(--vt-ease), color .2s, transform .2s var(--vt-ease), border-color .2s;
  cursor: pointer;
}
.vt-tool--login:hover {
  background: var(--vt-surface-2);
  text-decoration: none;
  transform: translateY(-1px);
}
.vt-tool--login .veentic-icon { width: 16px; height: 16px; flex: 0 0 auto; color: var(--vt-ink-soft); }
.vt-tool--login span { font-weight: 600; }

/* Search pane (slides down) */
.vt-searchpane {
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--vt-surface);
  border-bottom: 1px solid var(--vt-line);
  box-shadow: var(--vt-shadow-3);
  transform: translateY(-6px);
  opacity: 0; transition: opacity .2s var(--vt-ease), transform .2s var(--vt-ease);
}
.vt-searchpane:not([hidden]) { opacity: 1; transform: translateY(0); }
.vt-searchpane__inner { max-width: var(--vt-max); margin-inline: auto; padding: 1rem clamp(1rem, 4vw, 2rem); }

.vt-search {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: .25rem;
  background: var(--vt-bg-soft);
  border: 1px solid var(--vt-line);
  border-radius: 999px;
  padding: .25rem;
}
.vt-search__icon { display: inline-grid; place-items: center; color: var(--vt-muted); }
.vt-search__input { border: 0; background: transparent; padding: .6rem .25rem; color: var(--vt-ink); font: inherit; outline: 0; min-width: 0; }
.vt-search__submit {
  border: 0; padding: .55rem 1rem; border-radius: 999px;
  background: var(--vt-accent); color: var(--vt-accent-ink); font-weight: 600;
  cursor: pointer;
}

/* Burger / mobile menu */
.vt-burger {
  display: none;
  width: 44px; height: 44px;
  background: transparent; border: 1px solid var(--vt-line); border-radius: 12px;
  color: var(--vt-ink); cursor: pointer; place-items: center;
}
.vt-mobile {
  display: none;
  background: var(--vt-surface);
  border-bottom: 1px solid var(--vt-line);
}
.vt-mobile__inner { padding: clamp(1rem, 4vw, 1.5rem); display: grid; gap: .75rem; }
.vt-mobile__group {
  background: var(--vt-bg-soft);
  border: 1px solid var(--vt-line);
  border-radius: var(--vt-radius);
  padding: .85rem 1rem;
}
.vt-mobile__group > summary { font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; }
.vt-mobile__group > summary::after { content: "+"; }
.vt-mobile__group[open] > summary::after { content: "−"; }
.vt-mobile__menu { list-style: none; margin: .75rem 0 0; padding: 0; display: grid; gap: .25rem; }
.vt-mobile__menu a { display: block; padding: .5rem 0; color: var(--vt-ink); border-bottom: 1px solid var(--vt-line); }

@media (max-width: 920px) {
  .vt-burger { display: inline-grid; }
  .vt-nav, .vt-tool--theme, .vt-tool--search { display: none; }
  .vt-header__inner { grid-template-columns: auto 1fr auto; }
}
@media (max-width: 540px) {
  .vt-brand__name { display: none; }
  /* Tighten the login button on small screens but keep the label readable. */
  .vt-tool--login { padding: 0 .85rem; height: 38px; font-size: .85rem; gap: .35rem; }
}

/* Main wrapper
   ------------------------------------------------------------------------- */
.vt-main { display: block; }
.vt-front, .vt-page, .vt-single, .vt-archive, .vt-404 {
  width: 100%; max-width: var(--vt-max); margin-inline: auto;
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1rem, 4vw, 2rem);
}
.vt-block + .vt-block { margin-top: clamp(2rem, 5vw, 4rem); }

/* Hero block */
.vt-hero { padding: clamp(2.5rem, 6vw, 5rem) 0; }
.vt-hero__inner { max-width: 760px; }
.vt-hero__eyebrow {
  display: inline-block;
  padding: .25rem .55rem; border-radius: 999px;
  background: color-mix(in oklch, var(--vt-accent), white 80%);
  color: color-mix(in oklch, var(--vt-accent), black 25%);
  font-weight: 600; letter-spacing: .04em; font-size: .78rem; text-transform: uppercase;
}
.vt-hero__title {
  font-family: var(--vt-font-serif); font-weight: 500;
  font-size: clamp(2.25rem, 1.6rem + 3.6vw, 4.25rem);
  letter-spacing: -.02em;
  margin: .8rem 0 1rem;
}
.vt-hero__body { color: var(--vt-ink-soft); font-size: 1.075rem; max-width: 60ch; }
.vt-hero__ctas { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.6rem; }

/* Features grid */
.vt-features__title { text-align: center; margin-bottom: 2rem; font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); }
.vt-features__grid { display: grid; gap: var(--vt-gap); grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.vt-feature {
  background: var(--vt-surface);
  border: 1px solid var(--vt-line);
  border-radius: var(--vt-radius-lg);
  padding: 1.5rem;
  box-shadow: var(--vt-shadow-1);
  transition: transform .25s var(--vt-ease), box-shadow .25s var(--vt-ease);
}
.vt-feature:hover { transform: translateY(-3px); box-shadow: var(--vt-shadow-2); }
.vt-feature__icon {
  display: inline-grid; place-items: center; width: 44px; height: 44px;
  border-radius: 12px;
  background: color-mix(in oklch, var(--vt-accent), transparent 90%);
  color: var(--vt-accent);
  margin-bottom: 1rem;
}
.vt-feature__title { margin: 0 0 .35rem; }
.vt-feature__body { color: var(--vt-ink-soft); margin: 0; }

/* Slider
   ------------------------------------------------------------------------- */
.vt-slider {
  position: relative;
  isolation: isolate;
  border-radius: var(--vt-radius-xl);
  overflow: hidden;
  background: var(--vt-surface-2);
  box-shadow: var(--vt-shadow-2);
  margin-block: clamp(1rem, 3vw, 2rem);
}
.vt-block--slider.is-full .vt-slider { border-radius: 0; box-shadow: none; }
.vt-slider--small  { aspect-ratio: 16 / 7; }
.vt-slider--medium { aspect-ratio: 16 / 8; }
.vt-slider--tall   { aspect-ratio: 16 / 10; }
.vt-slider--full   { aspect-ratio: auto; height: clamp(420px, 80svh, 760px); }

.vt-slider__track { position: absolute; inset: 0; }
.vt-slide {
  position: absolute; inset: 0;
  display: grid; align-items: center;
  padding: clamp(1.25rem, 4vw, 3rem);
  opacity: 0; transition: opacity .6s var(--vt-ease);
  pointer-events: none;
}
.vt-slide.is-active { opacity: 1; pointer-events: auto; }
.vt-slide--center { justify-items: center; text-align: center; }
.vt-slide--right  { justify-items: end; text-align: right; }

.vt-slide__bg, .vt-slide__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -2;
  transform: scale(1.05);
  transition: transform 6s var(--vt-ease);
}
.vt-slide.is-active .vt-slide__bg, .vt-slide.is-active .vt-slide__video { transform: scale(1); }

.vt-slide__shade {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,18,36,.05), rgba(10,18,36,.55));
}
.vt-slide--tone-light .vt-slide__shade { background: linear-gradient(180deg, rgba(10,18,36,.15), rgba(10,18,36,.65)); }
.vt-slide--tone-dark  .vt-slide__shade { background: linear-gradient(180deg, rgba(255,255,255,.0), rgba(255,255,255,.35)); }

.vt-slide__inner { max-width: 720px; color: white; }
.vt-slide--tone-dark .vt-slide__inner { color: var(--vt-ink); }
.vt-slide__eyebrow {
  display: inline-block; padding: .25rem .6rem; border-radius: 999px;
  background: rgba(255,255,255,.15); backdrop-filter: blur(10px);
  font-weight: 600; letter-spacing: .04em; font-size: .8rem; text-transform: uppercase;
}
.vt-slide__title  { font-family: var(--vt-font-serif); font-weight: 500; line-height: 1.05; font-size: clamp(2rem, 1.4rem + 3.6vw, 4rem); margin: .8rem 0 .8rem; letter-spacing: -.02em; }
.vt-slide__body   { font-size: 1.05rem; max-width: 60ch; opacity: .9; }
.vt-slide__ctas   { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.4rem; }

/* Slider controls */
.vt-slider__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 999px;
  background: rgba(255,255,255,.85); border: 0; cursor: pointer;
  display: grid; place-items: center;
  box-shadow: var(--vt-shadow-2);
  transition: transform .2s var(--vt-ease), background .2s;
  color: var(--vt-ink);
}
.vt-slider__arrow:hover { background: white; transform: translateY(-50%) scale(1.06); }
.vt-slider__arrow--prev { left: 1rem; }
.vt-slider__arrow--prev .veentic-icon { transform: rotate(180deg); }
.vt-slider__arrow--next { right: 1rem; }

.vt-slider__dots {
  position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: .35rem; padding: .35rem .55rem;
  background: rgba(0,0,0,.4); border-radius: 999px;
}
.vt-slider__dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: rgba(255,255,255,.5); border: 0; cursor: pointer; padding: 0;
  transition: background .2s, width .25s var(--vt-ease);
}
.vt-slider__dot.is-active { background: white; width: 22px; }

.vt-slider__play {
  position: absolute; top: 1rem; right: 1rem;
  width: 36px; height: 36px; border: 0; border-radius: 999px;
  background: rgba(0,0,0,.4); color: white; cursor: pointer;
  display: grid; place-items: center;
}
.vt-slider__play[aria-pressed="true"] .veentic-icon:nth-of-type(1) { display: none; }
.vt-slider__play[aria-pressed="false"] .veentic-icon:nth-of-type(2) { display: none; }

/* Feed
   ------------------------------------------------------------------------- */
.vt-feed { padding-block: clamp(1rem, 3vw, 2rem); }
.vt-feed__head { margin-bottom: 1.5rem; }
.vt-feed__title { font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); font-family: var(--vt-font-serif); font-weight: 500; }

.vt-feed__grid { display: grid; gap: var(--vt-gap); }
.vt-feed--grid .vt-feed__grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.vt-feed--list .vt-feed__grid { grid-template-columns: 1fr; }
.vt-feed--carousel .vt-feed__grid {
  grid-auto-flow: column; grid-auto-columns: minmax(280px, 1fr);
  overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-padding: 1rem;
  padding-bottom: 1rem;
}
.vt-feed--carousel .vt-card { scroll-snap-align: start; }

/* Card */
.vt-card {
  background: var(--vt-surface);
  border: 1px solid var(--vt-line);
  border-radius: var(--vt-radius-lg);
  overflow: hidden;
  box-shadow: var(--vt-shadow-1);
  transition: transform .25s var(--vt-ease), box-shadow .25s var(--vt-ease), border-color .25s;
}
.vt-card:hover { transform: translateY(-3px); box-shadow: var(--vt-shadow-3); border-color: color-mix(in oklch, var(--vt-line), var(--vt-accent) 25%); }
.vt-card__link { color: inherit; text-decoration: none; display: grid; grid-template-rows: auto 1fr; }
.vt-card__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--vt-bg-soft); }
.vt-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--vt-ease); }
.vt-card:hover .vt-card__img { transform: scale(1.05); }
.vt-card__img--ph { background: linear-gradient(135deg, var(--vt-bg-soft), var(--vt-surface-2)); }
.vt-card__body { padding: 1.1rem 1.25rem 1.25rem; display: grid; gap: .35rem; }
.vt-card__cat {
  font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em;
  color: var(--vt-accent);
}
.vt-card__title { margin: 0; font-size: 1.15rem; line-height: 1.3; }
.vt-card__excerpt { color: var(--vt-ink-soft); margin: 0; }
.vt-card__meta { color: var(--vt-muted); font-size: .82rem; margin: .4rem 0 0; display: flex; gap: .4rem; flex-wrap: wrap; align-items: center; }

/* Page / Single
   ------------------------------------------------------------------------- */
.vt-page__head, .vt-archive__head { margin-bottom: 2rem; }
.vt-page__title, .vt-archive__title { font-size: clamp(2rem, 1.5rem + 1.6vw, 2.875rem); }
.vt-page__lead { color: var(--vt-ink-soft); font-size: 1.1rem; max-width: 60ch; }
.vt-page__content, .vt-article__content {
  max-width: 760px; margin-inline: auto;
}
.vt-page__content > *, .vt-article__content > * { margin-block: 1em; }
.vt-page__content > *:first-child, .vt-article__content > *:first-child { margin-top: 0; }
.vt-page__content img, .vt-article__content img { border-radius: var(--vt-radius-sm); box-shadow: var(--vt-shadow-1); }

.vt-article__hero { margin: 1.5rem auto; max-width: 1080px; border-radius: var(--vt-radius-lg); overflow: hidden; box-shadow: var(--vt-shadow-2); }
.vt-article__head { max-width: 760px; margin: 0 auto 1rem; text-align: center; }
.vt-article__cat {
  display: inline-block; padding: .25rem .6rem; border-radius: 999px;
  background: color-mix(in oklch, var(--vt-accent), white 85%);
  color: color-mix(in oklch, var(--vt-accent), black 25%);
  font-weight: 600; letter-spacing: .04em; font-size: .78rem; text-transform: uppercase;
  text-decoration: none;
}
.vt-article__title { font-size: clamp(2rem, 1.4rem + 2.4vw, 3.25rem); margin: .75rem 0 .75rem; }
.vt-article__meta { color: var(--vt-muted); font-size: .92rem; display: flex; gap: .5rem; flex-wrap: wrap; justify-content: center; }

.vt-archive__grid { display: grid; gap: var(--vt-gap); grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

/* 404 */
.vt-404 { text-align: center; padding-block: clamp(3rem, 8vw, 6rem); }
.vt-404__code {
  display: inline-block;
  background: linear-gradient(135deg, var(--vt-accent), var(--vt-champagne));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-size: clamp(5rem, 4rem + 6vw, 9rem); line-height: 1; font-family: var(--vt-font-serif); font-weight: 500;
}
.vt-404__title { margin-top: .5rem; }
.vt-404__form { max-width: 480px; margin: 1.5rem auto; }

/* Comments */
.vt-comments { max-width: 760px; margin: 3rem auto 0; }
.vt-commentlist { list-style: none; padding: 0; display: grid; gap: 1rem; }
.vt-commentlist .comment {
  background: var(--vt-surface); border: 1px solid var(--vt-line); border-radius: var(--vt-radius);
  padding: 1rem 1.25rem;
}
.vt-commentform input, .vt-commentform textarea {
  width: 100%; padding: .65rem .9rem; border: 1px solid var(--vt-line);
  background: var(--vt-surface); color: var(--vt-ink); border-radius: var(--vt-radius-sm); font: inherit;
}
.vt-commentform input:focus, .vt-commentform textarea:focus {
  outline: 2px solid var(--vt-accent); outline-offset: 2px; border-color: transparent;
}

/* Footer
   ------------------------------------------------------------------------- */
:root {
  --vt-foot-bg: color-mix(in oklch, var(--vt-bg), var(--vt-ink) 6%);
  --vt-foot-fg: var(--vt-ink-soft);
  --vt-foot-head: var(--vt-ink);
}
body.vt-foot-preset-light    { --vt-foot-bg: var(--vt-surface); --vt-foot-fg: var(--vt-ink-soft); --vt-foot-head: var(--vt-ink); }
body.vt-foot-preset-dark     { --vt-foot-bg: oklch(0.16 0.025 260); --vt-foot-fg: oklch(0.84 0.01 250); --vt-foot-head: #fff; }
body.vt-foot-preset-gradient { --vt-foot-fg: rgba(255,255,255,.78); --vt-foot-head: #fff; }
body.vt-foot-preset-custom   { --vt-foot-head: var(--vt-foot-fg); }

/* Above-footer CTA band */
.vt-cta-band {
  margin-top: clamp(2rem, 5vw, 4rem);
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1rem, 4vw, 2rem);
  position: relative;
  isolation: isolate;
}
.vt-cta-band--card {
  width: 100%; max-width: var(--vt-max);
  margin-left: auto; margin-right: auto;
  border-radius: var(--vt-radius-xl);
  box-shadow: var(--vt-shadow-3);
}
.vt-cta-band--strip { width: 100%; max-width: none; border-radius: 0; }
.vt-cta-band--branded {
  background: linear-gradient(135deg, var(--vt-accent), color-mix(in oklch, var(--vt-accent), var(--vt-champagne) 60%)) !important;
  color: #fff !important;
}
.vt-cta-band__inner {
  width: 100%; max-width: var(--vt-max); margin-inline: auto;
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
  align-items: center;
}
.vt-cta-band--split .vt-cta-band__inner { grid-template-columns: 1fr auto; gap: 2rem; }
.vt-cta-band__eyebrow { margin: 0 0 .35rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; opacity: .85; font-size: .82rem; }
.vt-cta-band__title { margin: 0 0 .35rem; font-family: var(--vt-font-serif); font-weight: 500; font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.25rem); line-height: 1.1; color: inherit; }
.vt-cta-band__body { margin: 0; opacity: .9; max-width: 60ch; }
.vt-cta-band__actions { display: flex; gap: .6rem; flex-wrap: wrap; }
.vt-cta-band--branded .vt-btn--ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.3); }

.vt-footer {
  background: var(--vt-foot-bg);
  border-top: 1px solid var(--vt-line);
  margin-top: clamp(1.5rem, 4vw, 3rem);
  color: var(--vt-foot-fg);
}
body.vt-foot-cont-full .vt-footer__inner { max-width: none; }
body.vt-foot-cont-wide .vt-footer__inner { max-width: 1480px; }
body.vt-foot-density-compact  .vt-footer__inner { padding-block: clamp(1.5rem, 3vw, 2.5rem) clamp(1rem, 2vw, 1.5rem); }
body.vt-foot-density-spacious .vt-footer__inner { padding-block: clamp(3rem, 8vw, 6rem) clamp(2rem, 4vw, 3rem); }

/* Animation on entry */
@media (prefers-reduced-motion: no-preference) {
  body.vt-foot-anim-fade  .vt-footer { animation: vt-foot-fade .6s var(--vt-ease) both; }
  body.vt-foot-anim-slide .vt-footer { animation: vt-foot-slide .7s var(--vt-ease) both; }
}
@keyframes vt-foot-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes vt-foot-slide { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.vt-footer__inner {
  width: 100%; max-width: var(--vt-max); margin-inline: auto;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 2rem) clamp(1.5rem, 4vw, 3rem);
}
.vt-footer__grid { display: grid; gap: clamp(1.25rem, 3vw, 2rem); grid-template-columns: 1fr; }
@media (min-width: 720px) { .vt-footer__grid { grid-template-columns: 1.4fr repeat(var(--cols, 4), 1fr); } }
.vt-footer__grid[data-cols="1"] { --cols: 1; }
.vt-footer__grid[data-cols="2"] { --cols: 2; }
.vt-footer__grid[data-cols="3"] { --cols: 3; }
.vt-footer__grid[data-cols="4"] { --cols: 4; }

.vt-footer__col h4, .vt-footer__col .vt-widget__title, .vt-foot-col__head {
  color: var(--vt-foot-head); margin: 0 0 .85rem; font-size: .92rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
}
body.vt-foot-head-bold .vt-foot-col__head { text-transform: none; font-size: 1rem; letter-spacing: -.005em; }
body.vt-foot-head-serif .vt-foot-col__head { font-family: var(--vt-font-serif); font-weight: 500; text-transform: none; font-size: 1.1rem; letter-spacing: -.01em; }
body.vt-foot-head-regular .vt-foot-col__head { font-weight: 400; text-transform: none; font-size: .95rem; }

/* Footer column types */
.vt-foot-col { color: var(--vt-foot-fg); }
.vt-foot-col a { color: inherit; }
.vt-foot-col a:hover { color: var(--vt-foot-head); }
.vt-foot-col--company .vt-brand { color: var(--vt-foot-head); margin-bottom: 1rem; }
.vt-foot-menu { list-style: none; margin: 0; padding: 0; display: grid; gap: .35rem; }
.vt-foot-menu a { display: inline-block; padding: .15rem 0; }
.vt-foot-hours { display: grid; gap: .25rem; margin: 0; }
.vt-foot-hours__row { display: flex; justify-content: space-between; gap: 1rem; padding: .35rem 0; border-bottom: 1px dashed color-mix(in oklch, var(--vt-foot-fg), transparent 80%); }
.vt-foot-hours__row dt { font-weight: 500; color: var(--vt-foot-head); margin: 0; }
.vt-foot-hours__row dd { margin: 0; }
.vt-foot-feed { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.vt-foot-feed a { display: grid; gap: .15rem; }
.vt-foot-feed__title { font-weight: 500; color: var(--vt-foot-head); }
.vt-foot-feed__date { opacity: .65; font-size: .78rem; }
.vt-foot-news { display: flex; gap: .35rem; align-items: stretch; max-width: 380px; flex-wrap: wrap; }
.vt-foot-news__desc { margin: 0 0 .5rem; opacity: .85; font-size: .92rem; }
.vt-foot-news__success { background: color-mix(in oklch, var(--vt-accent), transparent 80%); color: var(--vt-foot-head); padding: .65rem .85rem; border-radius: var(--vt-radius-sm); }
.vt-foot-news input[type="email"] {
  flex: 1 1 200px;
  padding: .65rem .9rem;
  border: 1px solid color-mix(in oklch, var(--vt-foot-fg), transparent 60%);
  background: color-mix(in oklch, var(--vt-foot-bg), white 4%);
  color: var(--vt-foot-head);
  border-radius: var(--vt-radius-sm);
  font: inherit;
}
.vt-foot-news input[type="email"]:focus { outline: 2px solid var(--vt-accent); border-color: transparent; }
.vt-foot-image { max-width: 100%; height: auto; }
.vt-foot-html iframe, .vt-foot-html embed { max-width: 100%; }

/* App store badges */
.vt-foot-apps { display: flex; gap: .5rem; flex-wrap: wrap; }
.vt-app-badge {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .45rem .85rem;
  background: var(--vt-foot-head, #111);
  color: var(--vt-foot-bg, #fff);
  border-radius: 10px;
  text-decoration: none;
  font-size: .82rem;
}
.vt-app-badge:hover { color: var(--vt-foot-bg); transform: translateY(-1px); }
.vt-app-badge span { display: grid; line-height: 1.05; }
.vt-app-badge small { font-size: .65rem; opacity: .8; text-transform: uppercase; letter-spacing: .04em; }
.vt-app-badge strong { font-size: 1.05rem; font-weight: 700; }

/* Payment icons */
.vt-pay-list { list-style: none; padding: 0; margin: 0; display: flex; gap: .35rem; flex-wrap: wrap; }
.vt-pay-list li { background: rgba(255,255,255,.06); border: 1px solid color-mix(in oklch, var(--vt-foot-fg), transparent 70%); border-radius: 6px; padding: 2px 4px; }

/* Back-to-top floating button */
.vt-back-to-top {
  position: fixed; right: clamp(1rem, 4vw, 1.5rem); bottom: clamp(1rem, 4vw, 1.5rem);
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--vt-surface); color: var(--vt-ink);
  border: 1px solid var(--vt-line);
  border-radius: 999px;
  box-shadow: var(--vt-shadow-2);
  cursor: pointer;
  z-index: 100;
  transition: transform .2s var(--vt-ease), opacity .25s, visibility .25s;
}
.vt-back-to-top[hidden] { display: none; }
.vt-back-to-top.is-visible { display: grid; }
.vt-back-to-top:hover { transform: translateY(-2px); }
.vt-footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .35rem; }
.vt-footer__col a { color: var(--vt-ink-soft); }
.vt-footer__col a:hover { color: var(--vt-ink); }

.vt-footer__slogan { margin: .5rem 0 1rem; }
.vt-footer__contact { display: inline-flex; align-items: center; gap: .4rem; color: var(--vt-ink-soft); }
.vt-footer__contact:hover { color: var(--vt-ink); }

.vt-footer__nav { margin-top: 1.5rem; }
.vt-footer__menu { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 1rem; }
.vt-footer__menu a { color: var(--vt-ink-soft); }

.vt-socials {
  list-style: none; margin: 1rem 0 0; padding: 0;
}
/* Generic social list — used in topbar, footer, and below-footer slots. */
.vt-soc-list { display: flex; gap: .5rem; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; }
.vt-soc-list--compact { gap: .35rem; }

.vt-soc { --vt-brand: var(--vt-accent); display: inline-flex; }
.vt-soc a {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: 0 .55rem;
  height: 36px;
  border-radius: 999px;
  background: var(--vt-surface);
  border: 1px solid var(--vt-line);
  color: var(--vt-ink);
  text-decoration: none;
  transition: background .2s var(--vt-ease), color .2s, border-color .2s, transform .2s;
}
.vt-soc a:hover {
  background: var(--vt-brand);
  color: #fff;
  border-color: var(--vt-brand);
  transform: translateY(-1px);
}
.vt-soc__svg { width: 18px; height: 18px; flex: 0 0 auto; fill: currentColor; }
.vt-soc__label { font-size: .88rem; font-weight: 500; white-space: nowrap; }

/* Display mode: icon only — square button, compact */
.vt-soc--display-icon a { width: 36px; padding: 0; justify-content: center; }
/* Display mode: text only — drop the icon */
.vt-soc--display-text a { padding: 0 .85rem; }
.vt-soc--display-text .vt-soc__svg { display: none; }
/* Display mode: icon + text — pill with both */
.vt-soc--display-both a { padding: 0 .85rem 0 .65rem; }

.vt-soc-list--compact .vt-soc a { height: 28px; padding: 0 .45rem; font-size: .78rem; }
.vt-soc-list--compact .vt-soc__svg { width: 14px; height: 14px; }
.vt-soc-list--compact .vt-soc--display-icon a { width: 28px; padding: 0; }

.vt-footer__bottom {
  margin-top: 2rem; padding-top: 1rem;
  border-top: 1px solid var(--vt-line);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .85rem; color: var(--vt-muted);
}
.vt-footer__legal-menu { list-style: none; margin: 0; padding: 0; display: flex; gap: 1rem; }

/* Pagination */
.vt-pagination { margin-top: 2rem; display: flex; justify-content: center; }
.vt-pagination .page-numbers {
  padding: .55rem .85rem; border-radius: 999px; border: 1px solid var(--vt-line);
  margin: 0 .15rem; color: var(--vt-ink); background: var(--vt-surface);
}
.vt-pagination .current { background: var(--vt-accent); color: var(--vt-accent-ink); border-color: transparent; }

/* View transitions */
@view-transition { navigation: auto; }
::view-transition-old(root), ::view-transition-new(root) { animation-duration: .35s; }

/* ==========================================================================
   Front Page Builder — block wrappers + per-block-type styles
   ========================================================================== */
.vt-blk { display: block; width: 100%; }
.vt-blk__inner { width: 100%; max-width: var(--vt-max); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }
.vt-blk--w-wide .vt-blk__inner { max-width: 1480px; }
.vt-blk--w-full .vt-blk__inner { max-width: none; padding-inline: 0; }
.vt-blk--pad-none     { padding-block: 0; }
.vt-blk--pad-compact  { padding-block: clamp(1.5rem, 3vw, 2rem); }
.vt-blk--pad-regular  { padding-block: clamp(2.5rem, 6vw, 4rem); }
.vt-blk--pad-spacious { padding-block: clamp(4rem, 9vw, 6.5rem); }
.vt-blk--pad-huge     { padding-block: clamp(6rem, 12vw, 9rem); }

/* Hero — Split */
.vt-hero-split { display: grid; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; grid-template-columns: 1fr; }
@media (min-width: 820px) { .vt-hero-split { grid-template-columns: 1fr 1fr; } }
.vt-hero-split.is-flipped .vt-hero-split__copy { order: 2; }
.vt-hero-split__media img { width: 100%; height: auto; border-radius: var(--vt-radius-xl); box-shadow: var(--vt-shadow-3); }

/* Hero — Video */
.vt-hero-video { position: relative; isolation: isolate; min-height: clamp(360px, 60vh, 600px); border-radius: var(--vt-radius-xl); overflow: hidden; display: grid; align-items: center; }
.vt-blk--w-full .vt-hero-video { border-radius: 0; }
.vt-hero-video__media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.vt-hero-video__shade { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(10,18,36,.2), rgba(10,18,36,.6)); }
.vt-hero-video__shade.is-overlay-light  { background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.3)); }
.vt-hero-video__shade.is-overlay-medium { background: linear-gradient(180deg, rgba(10,18,36,.25), rgba(10,18,36,.6)); }
.vt-hero-video__shade.is-overlay-strong { background: linear-gradient(180deg, rgba(10,18,36,.5), rgba(10,18,36,.85)); }
.vt-hero-video__copy { position: relative; padding: clamp(1.5rem, 5vw, 3rem); color: #fff; max-width: 720px; }
.vt-hero-video__copy .vt-hero__title { color: #fff; }

/* Marquee */
.vt-marquee { overflow: hidden; padding: 1rem 0; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.vt-marquee__track { display: inline-flex; animation: vt-marq var(--vt-marquee-duration, 30s) linear infinite; animation-direction: var(--vt-marquee-direction, normal); }
.vt-marquee__list { display: inline-flex; gap: 3rem; list-style: none; padding: 0 1.5rem; margin: 0; font-size: clamp(1.25rem, 1.1rem + .8vw, 1.75rem); font-family: var(--vt-font-serif); font-weight: 500; opacity: .85; }
.vt-marquee__list li { white-space: nowrap; }
@keyframes vt-marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Logo cloud */
.vt-logos__eyebrow { text-align: center; color: var(--vt-muted); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; font-size: .82rem; margin: 0 0 1.25rem; }
.vt-logos { display: grid; gap: 1.5rem 2.5rem; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); list-style: none; padding: 0; margin: 0; align-items: center; justify-items: center; }
.vt-logos li { display: grid; place-items: center; }
.vt-logos img { max-height: 38px; width: auto; opacity: .85; transition: opacity .25s, filter .25s; }
.vt-logos.is-mono img { filter: grayscale(1); opacity: .55; }
.vt-logos li:hover img { filter: none; opacity: 1; }

/* Stats */
.vt-stats__eyebrow, .vt-test__eyebrow, .vt-prc__eyebrow, .vt-lead__eyebrow { text-align: center; color: var(--vt-accent); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; font-size: .82rem; margin: 0 0 .5rem; }
.vt-stats__title, .vt-test__title, .vt-prc__title, .vt-lead__title, .vt-cgrid__title, .vt-services__title, .vt-courses__title, .vt-team__title, .vt-faq__title, .vt-comp__title, .vt-steps__title, .vt-vshow__title, .vt-map__title { text-align: center; font-family: var(--vt-font-serif); font-weight: 500; font-size: clamp(1.75rem, 1.4rem + 1.6vw, 2.75rem); margin: 0 0 1.75rem; }
.vt-stats { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); text-align: center; }
.vt-stat { padding: 1rem; }
.vt-stat__num { font-family: var(--vt-font-serif); font-weight: 500; font-size: clamp(2.5rem, 1.8rem + 3vw, 4rem); line-height: 1; background: linear-gradient(135deg, var(--vt-accent), var(--vt-champagne)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.vt-stat__suffix { font-family: var(--vt-font-serif); color: var(--vt-accent); font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); }
.vt-stat__label { display: block; color: var(--vt-ink-soft); margin-top: .35rem; }

/* Testimonials */
.vt-tests { position: relative; max-width: 760px; margin: 0 auto; min-height: 220px; }
.vt-test { position: absolute; inset: 0; opacity: 0; transition: opacity .5s var(--vt-ease); padding: 1.5rem 2rem; text-align: center; }
.vt-test.is-active { opacity: 1; position: relative; }
.vt-test__quote { font-family: var(--vt-font-serif); font-size: clamp(1.25rem, 1.1rem + .8vw, 1.65rem); line-height: 1.45; margin: 0 0 1.25rem; color: var(--vt-ink); }
.vt-test__quote::before { content: '"'; color: var(--vt-accent); font-size: 2rem; padding-right: .25em; }
.vt-test__cite { display: inline-flex; align-items: center; gap: .65rem; color: var(--vt-ink-soft); }
.vt-test__ava { width: 36px; height: 36px; border-radius: 999px; }
.vt-test__name { font-weight: 600; color: var(--vt-ink); }
.vt-tests__dots { display: flex; gap: .35rem; justify-content: center; margin-top: 1rem; }
.vt-tests__dot { width: 8px; height: 8px; border-radius: 999px; background: var(--vt-line-strong); border: 0; padding: 0; cursor: pointer; transition: width .2s, background .2s; }
.vt-tests__dot.is-active { background: var(--vt-accent); width: 22px; }

/* Pricing */
.vt-prc__body { text-align: center; color: var(--vt-ink-soft); max-width: 60ch; margin: 0 auto 2rem; }
.vt-pricing { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); align-items: stretch; }
.vt-tier { background: var(--vt-surface); border: 1px solid var(--vt-line); border-radius: var(--vt-radius-lg); padding: 1.75rem 1.5rem; display: flex; flex-direction: column; box-shadow: var(--vt-shadow-1); position: relative; }
.vt-tier.is-highlight { border-color: var(--vt-accent); box-shadow: var(--vt-shadow-3), 0 0 0 2px color-mix(in oklch, var(--vt-accent), transparent 70%); transform: translateY(-4px); }
.vt-tier__pop { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--vt-accent); color: #fff; padding: .25rem .65rem; font-size: .72rem; font-weight: 700; letter-spacing: .04em; border-radius: 999px; text-transform: uppercase; }
.vt-tier__name { margin: 0 0 .35rem; font-size: 1.1rem; font-weight: 600; }
.vt-tier__price { margin: 0 0 1rem; font-size: 1rem; }
.vt-tier__price strong { font-family: var(--vt-font-serif); font-size: clamp(2.5rem, 2rem + 1.5vw, 3.25rem); font-weight: 500; color: var(--vt-ink); display: inline-block; vertical-align: middle; }
.vt-tier__price span { color: var(--vt-muted); margin-left: .25rem; }
.vt-tier__feats { list-style: none; padding: 0; margin: 0 0 1.25rem; flex: 1; display: grid; gap: .5rem; }
.vt-tier__feats li { padding-left: 1.5em; position: relative; color: var(--vt-ink-soft); }
.vt-tier__feats li::before { content: '✓'; position: absolute; left: 0; color: var(--vt-accent); font-weight: 700; }

/* Comparison */
.vt-comp { overflow-x: auto; border: 1px solid var(--vt-line); border-radius: var(--vt-radius-lg); }
.vt-comp table { width: 100%; border-collapse: collapse; min-width: 540px; }
.vt-comp th, .vt-comp td { padding: .85rem 1rem; text-align: center; border-bottom: 1px solid var(--vt-line); }
.vt-comp th[scope="row"] { text-align: left; font-weight: 500; background: var(--vt-bg-soft); }
.vt-comp thead th { background: var(--vt-bg-soft); font-weight: 600; }
.vt-comp tbody tr:last-child td { border-bottom: 0; }
.vt-comp__yes { color: var(--vt-accent); font-weight: 700; font-size: 1.1rem; }
.vt-comp__no { color: var(--vt-muted); }

/* Lead form / Inline newsletter */
.vt-lead, .vt-news-inline__form { display: grid; gap: .75rem; max-width: 520px; margin: 0 auto; }
.vt-lead label { display: grid; gap: .35rem; font-weight: 500; }
.vt-lead input, .vt-lead textarea, .vt-news-inline__form input[type="email"] {
  padding: .7rem .9rem; border: 1px solid var(--vt-line); background: var(--vt-bg-soft);
  color: var(--vt-ink); border-radius: var(--vt-radius-sm); font: inherit; width: 100%;
}
.vt-lead input:focus, .vt-lead textarea:focus, .vt-news-inline__form input[type="email"]:focus {
  outline: 2px solid var(--vt-accent); outline-offset: 1px; border-color: transparent;
}
.vt-lead__success, .vt-news-inline__success { background: color-mix(in oklch, var(--vt-accent), white 88%); color: color-mix(in oklch, var(--vt-accent), black 30%); padding: 1rem; border-radius: var(--vt-radius-sm); text-align: center; max-width: 520px; margin: 0 auto; }
.vt-lead__body, .vt-news-inline__body { text-align: center; color: var(--vt-ink-soft); max-width: 60ch; margin: 0 auto 1.25rem; }

/* Big CTA */
.vt-cta-blk { display: grid; gap: 1.5rem; padding: clamp(2rem, 5vw, 3.5rem); border-radius: var(--vt-radius-xl); align-items: center; grid-template-columns: 1fr; text-align: center; }
@media (min-width: 720px) { .vt-cta-blk { grid-template-columns: 1fr auto; text-align: left; } }
.vt-cta-blk--gradient { background: linear-gradient(135deg, var(--vt-accent), color-mix(in oklch, var(--vt-accent), var(--vt-champagne) 60%)); color: #fff; box-shadow: var(--vt-shadow-3); }
.vt-cta-blk--dark { background: oklch(0.16 0.025 260); color: #fff; }
.vt-cta-blk--light { background: var(--vt-surface); border: 1px solid var(--vt-line); color: var(--vt-ink); }
.vt-cta-blk__eyebrow { margin: 0 0 .5rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; font-size: .82rem; opacity: .85; }
.vt-cta-blk__title { margin: 0 0 .5rem; font-family: var(--vt-font-serif); font-weight: 500; font-size: clamp(1.75rem, 1.4rem + 1.5vw, 2.5rem); color: inherit; }
.vt-cta-blk__body { opacity: .9; margin: 0; }
.vt-cta-blk__actions { display: flex; gap: .65rem; flex-wrap: wrap; justify-content: center; }
.vt-cta-blk--gradient .vt-btn--primary { background: #fff; color: var(--vt-accent); }
.vt-cta-blk--gradient .vt-btn--ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.3); }

/* Countdown */
.vt-cd { display: grid; gap: 1.25rem; align-items: center; padding: clamp(1.5rem, 4vw, 2.5rem); background: var(--vt-surface); border: 1px solid var(--vt-line); border-radius: var(--vt-radius-xl); box-shadow: var(--vt-shadow-2); text-align: center; }
.vt-cd__title { margin: 0; font-family: var(--vt-font-serif); font-weight: 500; font-size: clamp(1.5rem, 1.3rem + 1vw, 2rem); }
.vt-cd__clock { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }
.vt-cd__clock span { background: var(--vt-bg-soft); border-radius: var(--vt-radius-sm); padding: .65rem .85rem; min-width: 70px; }
.vt-cd__clock strong { display: block; font-family: var(--vt-font-serif); font-weight: 500; font-size: clamp(1.5rem, 1.3rem + 1vw, 2rem); line-height: 1; }
.vt-cd__clock small { color: var(--vt-muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .04em; }
.vt-cd__action { margin: 0; }

/* Categories grid */
.vt-cgrid { display: grid; gap: 1rem; grid-template-columns: repeat(var(--vt-cgrid-cols, 4), minmax(0, 1fr)); }
@media (max-width: 640px) { .vt-cgrid { grid-template-columns: 1fr 1fr; } }
.vt-ctile { position: relative; isolation: isolate; aspect-ratio: 4 / 3; border-radius: var(--vt-radius-lg); overflow: hidden; color: #fff; text-decoration: none; box-shadow: var(--vt-shadow-1); transition: transform .25s var(--vt-ease); }
.vt-ctile:hover { transform: translateY(-3px); }
.vt-ctile__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .6s var(--vt-ease); }
.vt-ctile:hover .vt-ctile__img { transform: scale(1.05); }
.vt-ctile__shade { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, transparent 30%, rgba(10,18,36,.85)); }
.vt-ctile__copy { position: absolute; bottom: 1rem; left: 1rem; right: 1rem; }
.vt-ctile__copy strong { display: block; font-family: var(--vt-font-serif); font-weight: 500; font-size: 1.25rem; }
.vt-ctile__copy small { color: rgba(255,255,255,.75); }

/* Services */
.vt-services { display: grid; gap: var(--vt-gap); grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.vt-service { background: var(--vt-surface); border: 1px solid var(--vt-line); border-radius: var(--vt-radius-lg); padding: 1.5rem; box-shadow: var(--vt-shadow-1); display: block; color: inherit; text-decoration: none; transition: transform .25s var(--vt-ease), box-shadow .25s; }
.vt-service:hover { transform: translateY(-3px); box-shadow: var(--vt-shadow-3); text-decoration: none; }
.vt-service__icon { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: color-mix(in oklch, var(--vt-accent), transparent 88%); color: var(--vt-accent); margin-bottom: 1rem; }
.vt-service__title { margin: 0 0 .35rem; }
.vt-service__body { color: var(--vt-ink-soft); margin: 0 0 .75rem; }
.vt-service__more { color: var(--vt-accent); font-weight: 600; font-size: .9rem; }

/* Courses */
.vt-courses { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.vt-course { background: var(--vt-surface); border: 1px solid var(--vt-line); border-radius: var(--vt-radius-lg); overflow: hidden; box-shadow: var(--vt-shadow-1); display: flex; flex-direction: column; }
.vt-course__img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.vt-course__body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: .75rem; }
.vt-course__title { margin: 0; }
.vt-course__meta { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .5rem 1rem; color: var(--vt-ink-soft); font-size: .9rem; }
.vt-course__price { margin-left: auto; color: var(--vt-accent); font-weight: 700; }

/* Steps */
.vt-steps { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); list-style: none; padding: 0; margin: 0; counter-reset: vt-step; }
.vt-step { background: var(--vt-surface); border: 1px solid var(--vt-line); border-radius: var(--vt-radius-lg); padding: 1.5rem; box-shadow: var(--vt-shadow-1); position: relative; }
.vt-step__num { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 999px; background: linear-gradient(135deg, var(--vt-accent), color-mix(in oklch, var(--vt-accent), var(--vt-champagne) 50%)); color: #fff; font-family: var(--vt-font-serif); font-weight: 500; margin-bottom: .85rem; }
.vt-step__title { margin: 0 0 .25rem; }
.vt-step__body { color: var(--vt-ink-soft); margin: 0; }

/* Video showcase */
.vt-vshow__body { text-align: center; color: var(--vt-ink-soft); max-width: 60ch; margin: 0 auto 1.5rem; }
.vt-vshow__media { position: relative; aspect-ratio: 16 / 9; border-radius: var(--vt-radius-xl); overflow: hidden; box-shadow: var(--vt-shadow-3); background: var(--vt-bg-soft); max-width: 1000px; margin: 0 auto; }
.vt-vshow__media iframe, .vt-vshow__media video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Newsletter inline */
.vt-news-inline { display: grid; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; grid-template-columns: 1fr; }
@media (min-width: 720px) { .vt-news-inline:has(.vt-news-inline__media) { grid-template-columns: 1fr 1fr; } }
.vt-news-inline__title { font-family: var(--vt-font-serif); font-weight: 500; font-size: clamp(1.75rem, 1.4rem + 1.5vw, 2.5rem); margin: 0 0 .75rem; }
.vt-news-inline__media img { width: 100%; height: auto; border-radius: var(--vt-radius-lg); box-shadow: var(--vt-shadow-2); }

/* Team */
.vt-team { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.vt-person { background: var(--vt-surface); border: 1px solid var(--vt-line); border-radius: var(--vt-radius-lg); padding: 1.5rem; text-align: center; box-shadow: var(--vt-shadow-1); }
.vt-person__photo { width: 96px; height: 96px; border-radius: 999px; object-fit: cover; margin: 0 auto .75rem; display: block; }
.vt-person__photo--ph { background: linear-gradient(135deg, var(--vt-accent), var(--vt-champagne)); color: #fff; font-family: var(--vt-font-serif); font-size: 2rem; line-height: 96px; font-weight: 500; }
.vt-person__name { margin: 0 0 .15rem; }
.vt-person__role { color: var(--vt-accent); font-weight: 600; font-size: .85rem; margin: 0 0 .5rem; }
.vt-person__bio { color: var(--vt-ink-soft); margin: 0; font-size: .92rem; }

/* FAQ */
.vt-faq { max-width: 760px; margin: 0 auto; display: grid; gap: .65rem; }
.vt-faq__item { background: var(--vt-surface); border: 1px solid var(--vt-line); border-radius: var(--vt-radius-lg); padding: 1.1rem 1.25rem; transition: box-shadow .2s; }
.vt-faq__item[open] { box-shadow: var(--vt-shadow-2); }
.vt-faq__item summary { font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.vt-faq__item summary::after { content: '+'; color: var(--vt-accent); font-size: 1.5rem; line-height: 1; }
.vt-faq__item[open] summary::after { content: '−'; }
.vt-faq__a { padding-top: .75rem; color: var(--vt-ink-soft); }

/* Map */
.vt-map { display: grid; gap: 1.5rem; grid-template-columns: 1fr; align-items: stretch; }
@media (min-width: 720px) { .vt-map { grid-template-columns: 2fr 1fr; } }
.vt-map__embed { border-radius: var(--vt-radius-lg); overflow: hidden; box-shadow: var(--vt-shadow-2); min-height: 320px; aspect-ratio: 16 / 10; }
.vt-map__embed iframe { width: 100%; height: 100%; border: 0; }
.vt-map__info { background: var(--vt-surface); border: 1px solid var(--vt-line); border-radius: var(--vt-radius-lg); padding: 1.25rem; display: grid; gap: .85rem; align-content: start; }
.vt-map__hours { display: grid; gap: .35rem; margin: 0; }
.vt-map__hours div { display: flex; justify-content: space-between; padding: .25rem 0; border-bottom: 1px dashed var(--vt-line); }
.vt-map__hours dt { margin: 0; font-weight: 500; }
.vt-map__hours dd { margin: 0; color: var(--vt-ink-soft); }

/* Block admin sub-toggles & pickers (admin) — see admin.css for the rest */

/* ==========================================================================
   Member Area (portal)
   ========================================================================== */
.vt-port { width: 100%; max-width: var(--vt-max); margin-inline: auto; padding: clamp(1.5rem, 4vw, 3rem) clamp(1rem, 4vw, 2rem); }
.vt-port--auth { display: grid; place-items: center; min-height: 60vh; }
.vt-port__card {
  width: 100%; max-width: 460px;
  background: var(--vt-surface);
  border: 1px solid var(--vt-line);
  border-radius: var(--vt-radius-xl);
  box-shadow: var(--vt-shadow-3);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}
.vt-port__title { font-family: var(--vt-font-serif); font-weight: 500; font-size: clamp(1.75rem, 1.4rem + 1.4vw, 2.5rem); margin: 0 0 1rem; }
.vt-port__error { background: color-mix(in oklch, oklch(0.75 0.18 30), transparent 90%); color: oklch(0.4 0.18 30); padding: .65rem 1rem; border-radius: var(--vt-radius-sm); margin: 0 0 1rem; }
.vt-port__alt { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 1rem; color: var(--vt-muted); font-size: .9rem; }
.vt-port__alt a { color: var(--vt-accent); }

.vt-port__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.vt-port__signout { margin: 0; }
.vt-port__grid { display: grid; gap: var(--vt-gap); grid-template-columns: 1fr; }
@media (min-width: 720px) { .vt-port__grid { grid-template-columns: repeat(12, 1fr); } }

.vt-port__widget {
  background: var(--vt-surface);
  border: 1px solid var(--vt-line);
  border-radius: var(--vt-radius-lg);
  padding: clamp(1rem, 2vw, 1.75rem);
  box-shadow: var(--vt-shadow-1);
  grid-column: span 12;
}
@media (min-width: 720px) {
  .vt-port__widget--welcome,
  .vt-port__widget--feed,
  .vt-port__widget--html { grid-column: span 12; }
  .vt-port__widget--profile,
  .vt-port__widget--notifications { grid-column: span 6; }
  .vt-port__widget--kpis,
  .vt-port__widget--quick_actions { grid-column: span 12; }
}

.vt-port-h3 { font-family: var(--vt-font-serif); font-weight: 500; font-size: 1.35rem; margin: 0 0 1rem; }
.vt-port-empty { color: var(--vt-muted); margin: 0; }

/* Welcome widget */
.vt-port-welcome { display: flex; gap: 1rem; align-items: center; }
.vt-port-welcome__avatar { width: 64px; height: 64px; border-radius: 999px; box-shadow: var(--vt-shadow-1); }
.vt-port-welcome__eyebrow { font-size: .85rem; color: var(--vt-accent); margin: 0 0 .15rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.vt-port-welcome__title { margin: 0; font-family: var(--vt-font-serif); font-weight: 500; font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); }

/* Profile form */
.vt-port-form { display: grid; gap: .75rem; }
.vt-port-form label { display: grid; gap: .35rem; font-weight: 500; }
.vt-port-form input[type="text"],
.vt-port-form input[type="email"],
.vt-port-form input[type="password"] {
  padding: .65rem .9rem;
  border: 1px solid var(--vt-line);
  background: var(--vt-bg-soft);
  color: var(--vt-ink);
  border-radius: var(--vt-radius-sm);
  font: inherit;
  width: 100%;
}
.vt-port-form input:focus { outline: 2px solid var(--vt-accent); outline-offset: 1px; border-color: transparent; }
.vt-port-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.vt-port-form__pw { background: var(--vt-bg-soft); padding: .85rem 1rem; border-radius: var(--vt-radius-sm); }
.vt-port-form__pw summary { cursor: pointer; font-weight: 500; }
.vt-port-form__pw label { margin-top: .5rem; }
.vt-port-form__remember { display: inline-flex; flex-direction: row; align-items: center; gap: .4rem; font-weight: 400; color: var(--vt-muted); }

/* Feed widget */
.vt-port-feed { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.vt-port-feed a { display: grid; grid-template-columns: 64px 1fr auto; gap: .8rem; align-items: center; padding: .55rem .65rem; border-radius: var(--vt-radius-sm); color: inherit; text-decoration: none; transition: background .2s; }
.vt-port-feed a:hover { background: var(--vt-bg-soft); }
.vt-port-feed__img img { width: 64px; height: 48px; object-fit: cover; border-radius: 8px; }
.vt-port-feed__title { font-weight: 600; }
.vt-port-feed__meta  { color: var(--vt-muted); font-size: .82rem; }

/* Notifications */
.vt-port-notif { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.vt-port-notif__item { padding: .75rem 1rem; border-radius: var(--vt-radius-sm); background: var(--vt-bg-soft); border-left: 3px solid var(--vt-line); }
.vt-port-notif__item.is-unread { border-left-color: var(--vt-accent); }
.vt-port-notif__item p { margin: .25rem 0 .25rem; }
.vt-port-notif__item small { color: var(--vt-muted); font-size: .78rem; }

/* KPI cards */
.vt-port-kpi-grid { display: grid; gap: .75rem; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
.vt-port-kpi { background: linear-gradient(135deg, color-mix(in oklch, var(--vt-surface), var(--vt-accent) 4%), var(--vt-surface)); border: 1px solid var(--vt-line); border-radius: var(--vt-radius); padding: 1rem 1.15rem; }
.vt-port-kpi__label { display: block; color: var(--vt-muted); font-size: .82rem; }
.vt-port-kpi__value { display: block; font-family: var(--vt-font-serif); font-weight: 500; font-size: 1.5rem; margin-top: .15rem; }

/* Quick actions */
.vt-port-actions { display: flex; flex-wrap: wrap; gap: .5rem; }

/* HTML widget */
.vt-port-html { display: grid; gap: .75rem; }
