/* vectopus.com — the sections added below the existing page (2026-09-18).
   Everything is prefixed .vx- so it can never touch the original design above it.
   Tokens are taken from that design: Poppins body, Intro display, lime #D1E766,
   black buttons with the long-arrow, #FAFAFA surfaces, generous rounding. */
.vx {
  --vx-ink: #111111;
  --vx-ink-2: #3f3f46;
  --vx-muted: #71717a;
  --vx-line: #e9e9e4;
  --vx-surface: #fafafa;
  --vx-lime: #d1e766;
  --vx-lime-soft: #f2f8d9;
  --vx-blue: #1faefa;
  --vx-radius: 24px;
  --vx-display: "Intro", "Poppins", system-ui, sans-serif;
  color: var(--vx-ink);
}
.vx * { box-sizing: border-box; }
/* the base page is Tailwind-reset; these sections carry their own image reset so a
   width/height attribute can never push a grid wider than the viewport. */
.vx img { max-width: 100%; height: auto; display: block; }
.vx-rail { width: min(1280px, calc(100% - 40px)); margin: 0 auto; }
.vx-sec { padding: 84px 0; }
.vx-sec--tight { padding: 56px 0; }
.vx-sec--surface { background: var(--vx-surface); }
.vx-sec + .vx-sec { border-top: 1px solid var(--vx-line); }
.vx-sec--surface + .vx-sec, .vx-sec + .vx-sec--surface { border-top: 0; }

/* headings + eyebrows */
.vx-eyebrow { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: #52525b; background: var(--vx-lime-soft); border-radius: 999px; padding: 7px 14px; }
.vx-h2 { font-family: var(--vx-display); font-size: clamp(1.9rem, 3.4vw, 3rem); font-weight: 700; line-height: 1.08; letter-spacing: -0.01em; margin: 18px 0 0; }
.vx-h3 { font-family: var(--vx-display); font-size: 1.35rem; font-weight: 700; line-height: 1.2; margin: 0; }
.vx-lead { font-size: clamp(1rem, 1.15vw, 1.125rem); color: var(--vx-muted); line-height: 1.65; margin: 14px 0 0; max-width: 62ch; }
.vx-head { max-width: 780px; margin-bottom: 40px; }
.vx-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.vx-head--center .vx-lead { margin-left: auto; margin-right: auto; }

/* buttons — same shapes as the page above */
.vx-btn { display: inline-flex; align-items: center; gap: 12px; padding: 15px 28px; border-radius: 12px; font-weight: 600; font-size: 15px; text-decoration: none; background: #000; color: #fff; transition: background .18s, transform .18s, box-shadow .18s; }
.vx-btn:hover { background: #1f1f1f; transform: translateY(-1px); box-shadow: 0 10px 24px rgba(0,0,0,.14); color: #fff; }
.vx-btn--lime { background: var(--vx-lime); color: #111; border-radius: 12px; }
.vx-btn--lime:hover { background: #c0d35f; color: #111; }
.vx-btn--ghost { background: #fff; color: #111; border: 1.5px solid #111; }
.vx-btn--ghost:hover { background: #111; color: #fff; }
.vx-btn--blue { background: var(--vx-blue); color: #fff; }
.vx-btn--blue:hover { background: #20a0e4; color: #fff; }
.vx-btn svg { flex: 0 0 auto; }
.vx-btn:focus-visible, .vx a:focus-visible { outline: 3px solid var(--vx-blue); outline-offset: 3px; border-radius: 10px; }
.vx-cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.vx-head--center .vx-cta-row { justify-content: center; }
.vx-link { font-weight: 600; text-decoration: none; border-bottom: 2px solid var(--vx-lime); padding-bottom: 2px; }
.vx-link:hover { border-color: #111; }

/* two library cards */
.vx-libs { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.vx-lib { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--vx-line); border-radius: var(--vx-radius); padding: 32px; transition: transform .22s, box-shadow .22s, border-color .22s; }
.vx-lib:hover { transform: translateY(-4px); box-shadow: 0 22px 48px rgba(17,17,17,.10); border-color: #d9dfc0; }
.vx-lib__top { display: flex; align-items: center; gap: 12px; min-height: 44px; }
.vx-lib__top img { height: 30px; width: auto; }
.vx-lib__name { font-family: var(--vx-display); font-size: 1.45rem; font-weight: 700; letter-spacing: -0.01em; }
.vx-lib__kind { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--vx-muted); margin-top: 20px; }
.vx-lib h3 { font-family: var(--vx-display); font-size: 1.9rem; font-weight: 700; margin: 8px 0 0; }
.vx-lib p { color: var(--vx-ink-2); margin: 12px 0 0; line-height: 1.6; }
.vx-lib ul { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 10px; }
.vx-lib li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; }
.vx-lib li::before { content: ""; flex: 0 0 9px; width: 9px; height: 9px; border-radius: 50%; background: var(--vx-lime); margin-top: 8px; }
.vx-lib__foot { margin-top: auto; padding-top: 26px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.vx-lib__price { font-family: var(--vx-display); font-weight: 700; font-size: 1.15rem; }
.vx-lib__price span { display: block; font-family: "Poppins", sans-serif; font-weight: 400; font-size: 13px; color: var(--vx-muted); margin-top: 2px; }

/* pack gallery */
.vx-gallery { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 14px; }
.vx-card { position: relative; display: block; border-radius: 20px; overflow: hidden; background: var(--vx-surface); aspect-ratio: 1; text-decoration: none; }
.vx-card img { width: 100%; height: 100%; max-width: none; object-fit: cover; transition: transform .35s cubic-bezier(.2,.7,.3,1); }
.vx-card:hover img { transform: scale(1.06); }
.vx-card__label { position: absolute; left: 10px; right: 10px; bottom: 10px; background: rgba(255,255,255,.94); border-radius: 12px; padding: 9px 12px; font-size: 12.5px; font-weight: 600; color: #111; opacity: 0; transform: translateY(8px); transition: opacity .22s, transform .22s; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.vx-card:hover .vx-card__label, .vx-card:focus-visible .vx-card__label { opacity: 1; transform: none; }
.vx-card__label span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.vx-gallery__foot { display: flex; justify-content: center; margin-top: 26px; }

/* feature tiles */
.vx-tiles { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.vx-tile { background: #fff; border: 1px solid var(--vx-line); border-radius: 20px; padding: 26px; transition: transform .2s, box-shadow .2s; }
.vx-tile:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(17,17,17,.07); }
.vx-tile--wide { grid-column: span 2; }
.vx-tile--lime { background: var(--vx-lime); border-color: var(--vx-lime); }
.vx-tile__i { width: 46px; height: 46px; border-radius: 14px; background: var(--vx-lime-soft); display: grid; place-items: center; }
.vx-tile--lime .vx-tile__i { background: rgba(255,255,255,.75); }
.vx-tile h3 { font-family: var(--vx-display); font-size: 1.15rem; font-weight: 700; margin: 16px 0 0; }
.vx-tile p { color: var(--vx-ink-2); font-size: 15px; line-height: 1.6; margin: 8px 0 0; }
.vx-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 0; padding: 0; list-style: none; }
.vx-chips li { font-size: 13px; font-weight: 500; padding: 7px 13px; border-radius: 999px; background: #fff; border: 1px solid var(--vx-line); }
.vx-chips a { text-decoration: none; color: #111; }
.vx-chips li:hover { border-color: #111; }

/* plans */
.vx-plans { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; align-items: stretch; }
.vx-plan { position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--vx-line); border-radius: var(--vx-radius); padding: 30px; transition: transform .2s, box-shadow .2s; }
.vx-plan:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(17,17,17,.08); }
.vx-plan--hot { border: 2px solid #111; }
.vx-plan__badge { position: absolute; top: -14px; left: 28px; background: var(--vx-lime); color: #111; font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; }
.vx-plan__brand { font-size: 11.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--vx-muted); }
.vx-plan h3 { font-family: var(--vx-display); font-size: 1.4rem; font-weight: 700; margin: 8px 0 0; }
.vx-plan__for { color: var(--vx-muted); font-size: 14.5px; margin: 6px 0 0; min-height: 42px; }
.vx-plan__price { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.vx-plan__price strong { font-family: var(--vx-display); font-size: 2.6rem; font-weight: 700; line-height: 1; letter-spacing: -0.02em; }
.vx-plan__price em { font-style: normal; font-size: 14px; color: var(--vx-muted); }
.vx-plan__price s { font-size: 14px; color: #a1a1aa; }
.vx-plan ul { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 11px; font-size: 14.5px; }
.vx-plan li { display: flex; gap: 11px; align-items: flex-start; }
.vx-plan li svg { flex: 0 0 auto; margin-top: 3px; }
.vx-plan__foot { margin-top: auto; padding-top: 26px; }
.vx-plan__foot .vx-btn { width: 100%; justify-content: center; }
.vx-plan__note { text-align: center; font-size: 12.5px; color: var(--vx-muted); margin: 12px 0 0; }
.vx-mini { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 20px; }
.vx-mini > div { background: #fff; border: 1px solid var(--vx-line); border-radius: 18px; padding: 22px 24px; }
.vx-mini strong { font-family: var(--vx-display); font-size: 1.2rem; font-weight: 700; }
.vx-mini p { color: var(--vx-muted); font-size: 14.5px; margin: 6px 0 0; }
.vx-mini a { display: inline-block; margin-top: 12px; }

/* compare table */
.vx-table-wrap { border: 1px solid var(--vx-line); border-radius: 20px; overflow-x: auto; background: #fff; }
.vx-table { width: 100%; border-collapse: collapse; font-size: 14.5px; min-width: 680px; }
.vx-table th, .vx-table td { text-align: left; padding: 15px 18px; border-bottom: 1px solid var(--vx-line); vertical-align: top; }
.vx-table tbody tr:last-child td { border-bottom: 0; }
.vx-table th { font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--vx-muted); font-weight: 700; background: var(--vx-surface); }
.vx-table td:first-child { font-weight: 600; }
.vx-table tbody tr:hover td { background: #fcfdf6; }

/* dark band */
.vx-dark { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: 40px; align-items: center; background: #111; color: #fff; border-radius: 28px; padding: clamp(28px, 4.5vw, 56px); }
.vx-dark .vx-eyebrow { background: rgba(255,255,255,.1); color: var(--vx-lime); }
.vx-dark h2 { font-family: var(--vx-display); font-size: clamp(1.6rem, 2.9vw, 2.4rem); font-weight: 700; margin: 16px 0 0; }
.vx-dark p { color: rgba(255,255,255,.72); margin: 14px 0 0; line-height: 1.65; }
.vx-dark__art { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.vx-dark__art img { width: 100%; height: auto; border-radius: 14px; aspect-ratio: 1; object-fit: cover; background: #1c1c1c; }

/* faq */
.vx-faq { max-width: 900px; margin: 0 auto; display: grid; gap: 12px; }
.vx-faq details { background: #fff; border: 1px solid var(--vx-line); border-radius: 18px; padding: 0 24px; transition: border-color .18s; }
.vx-faq details[open] { border-color: #d9dfc0; }
.vx-faq summary { cursor: pointer; font-weight: 600; padding: 20px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.vx-faq summary::-webkit-details-marker { display: none; }
.vx-faq summary::after { content: ""; flex: 0 0 22px; width: 22px; height: 22px; border-radius: 50%; background: var(--vx-lime-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center/13px no-repeat; transition: transform .2s; }
.vx-faq details[open] summary::after { transform: rotate(45deg); }
.vx-faq p { color: var(--vx-ink-2); padding: 0 0 22px; line-height: 1.7; margin: 0; max-width: 78ch; }

/* stats strip */
.vx-stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; list-style: none; margin: 0; padding: 0; }
.vx-stats li { background: #fff; border: 1px solid var(--vx-line); border-radius: 18px; padding: 22px 24px; }
.vx-stats strong { display: block; font-family: var(--vx-display); font-size: 1.9rem; font-weight: 700; line-height: 1; }
.vx-stats span { display: block; color: var(--vx-muted); font-size: 14px; margin-top: 8px; }

/* about page pieces */
.vx-split { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 48px; align-items: start; }
.vx-prose p { color: var(--vx-ink-2); line-height: 1.75; margin: 0 0 16px; font-size: 1.02rem; }
.vx-prose a { color: #111; font-weight: 600; text-decoration: underline; text-decoration-color: var(--vx-lime); text-decoration-thickness: 2px; text-underline-offset: 3px; }
.vx-facts { display: grid; gap: 12px; }
.vx-fact { background: var(--vx-surface); border: 1px solid var(--vx-line); border-radius: 16px; padding: 18px 20px; }
.vx-fact strong { display: block; font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--vx-muted); }
.vx-fact span { display: block; margin-top: 6px; font-size: 15px; }
.vx-fact a { color: #111; }
.vx-brands { display: flex; flex-wrap: wrap; gap: 12px 28px; align-items: center; margin-top: 22px; color: #a1a1aa; font-weight: 600; font-size: 15px; }

/* page hero for the extra pages (matches the home page's type scale).
   The site header is position:fixed (h-14 / lg:h-20), so these pages need to clear it. */
.vx-hero { padding: 136px 0 12px; }
.vx-hero h1 { font-family: var(--vx-display); font-size: clamp(2.1rem, 4.6vw, 3.6rem); font-weight: 700; line-height: 1.06; margin: 20px 0 0; max-width: 20ch; }
.vx-hero .vx-lead { font-size: clamp(1.05rem, 1.3vw, 1.2rem); }
.vx-breadcrumb { font-size: 13px; color: var(--vx-muted); }
.vx-breadcrumb a { color: var(--vx-muted); text-decoration: none; }
.vx-breadcrumb a:hover { color: #111; }

/* reveal on scroll (no JS -> visible) */
.vx-reveal { opacity: 1; }
.vx-js .vx-reveal { opacity: 0; transform: translateY(18px); }
.vx-js .vx-reveal.is-in { opacity: 1; transform: none; transition: opacity .55s ease, transform .55s cubic-bezier(.2,.7,.3,1); }
@media (prefers-reduced-motion: reduce) {
  .vx-js .vx-reveal { opacity: 1; transform: none; transition: none; }
  .vx-card img, .vx-lib, .vx-tile, .vx-plan { transition: none !important; }
}

@media (max-width: 1100px) {
  .vx-gallery { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .vx-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .vx-hero { padding-top: 104px; }
  .vx-libs, .vx-plans, .vx-tiles, .vx-mini, .vx-split, .vx-dark { grid-template-columns: 1fr; }
  .vx-tile--wide { grid-column: auto; }
  .vx-sec { padding: 56px 0; }
  .vx-rail { width: calc(100% - 32px); }
}
@media (max-width: 560px) {
  .vx-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .vx-lib, .vx-plan { padding: 24px; }
  .vx-cta-row .vx-btn { width: 100%; justify-content: center; }
  .vx-plan__for { min-height: 0; }
}
