/* VesselOverview marketing pages. Namespaced vo-* so nothing here can collide
   with index.html's globals or the apx-* pricing styles. Tokens copied from
   index.html rather than imported, so the two cannot silently drift apart. */
.vo-body {
  --vo-bg: #040a07;
  --vo-bg-2: #07130d;
  --vo-bg-3: #0c1a13;
  --vo-accent: #0c7a44;
  --vo-accent-light: #2fc06f;
  --vo-emerald: #1f9e5f;
  --vo-text: #f6f4fb;
  --vo-text-2: #9bbfa9;
  --vo-muted: #799a85;
  --vo-border: rgba(255, 255, 255, 0.08);
  --vo-card: rgba(16, 40, 28, 0.4);
  --vo-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --vo-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --vo-body-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  margin: 0;
  background: var(--vo-bg);
  color: var(--vo-text);
  font-family: var(--vo-body-font);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

*, *::before, *::after { box-sizing: border-box; }

.vo-sr {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.vo-skip {
  position: absolute; left: -9999px; top: 0; z-index: 10;
  background: var(--vo-accent); color: #fff; padding: .75rem 1rem;
}
.vo-skip:focus { left: 0; }

.vo-body h1, .vo-body h2, .vo-body h3 {
  font-family: var(--vo-display);
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0 0 .6em;
}
.vo-body h1 { font-size: clamp(2.1rem, 6vw, 4rem); max-width: 18ch; }
.vo-body h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); max-width: 24ch; }
.vo-body h3 { font-size: 1.15rem; }
.vo-body p { margin: 0 0 1.1em; max-width: 68ch; }
.vo-body ul { max-width: 68ch; }

/* Prose links only. A blanket `.vo-body a` rule scores 0,1,1 and would beat every
   single-class component rule below it — .vo-btn-primary (0,1,0) included — painting
   button labels accent-green on an accent-green background. That is the same
   specificity trap that had index.html's featured pricing CTA at 2.29:1. Scoping to
   prose keeps components in charge of their own colour without a :not() chain, which
   is the other way this goes wrong: the chain silently stops covering new classes. */
.vo-body p a,
.vo-body li a,
.vo-body figcaption a { color: var(--vo-accent-light); }
.vo-muted { color: var(--vo-muted); }

/* focus visibility — keyboard users must always see where they are */
.vo-body a:focus-visible,
.vo-body [tabindex]:focus-visible {
  outline: 2px solid var(--vo-accent-light);
  outline-offset: 3px;
  border-radius: 4px;
}

/* nav */
.vo-nav {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  padding: 1rem clamp(1rem, 5vw, 4rem);
  border-bottom: 1px solid var(--vo-border);
  position: sticky; top: 0; z-index: 5;
  background: rgba(4, 10, 7, 0.86);
  backdrop-filter: blur(12px);
}
.vo-brand {
  display: flex; align-items: center; gap: .55rem;
  font-family: var(--vo-display); font-weight: 600; color: var(--vo-text);
  text-decoration: none;
}
.vo-nav-links { display: flex; gap: 1.25rem; flex-wrap: wrap; margin-right: auto; }
.vo-nav-links a { color: var(--vo-text-2); text-decoration: none; font-size: .95rem; }
.vo-nav-links a:hover { color: var(--vo-text); }
.vo-nav-cta {
  border: 1px solid var(--vo-border); border-radius: 999px;
  padding: .5rem 1rem; color: var(--vo-text); text-decoration: none; font-size: .9rem;
  white-space: nowrap;
}
.vo-nav-cta:hover { border-color: var(--vo-emerald); }

/* layout */
.vo-body main { max-width: 68rem; margin: 0 auto; padding: 0 clamp(1rem, 5vw, 2rem); }
.vo-body section { padding: clamp(3rem, 8vw, 6rem) 0; border-bottom: 1px solid var(--vo-border); }
.vo-body section:last-child { border-bottom: 0; }

.vo-hero { text-align: left; }
.vo-lead { font-size: clamp(1.05rem, 2.2vw, 1.35rem); color: var(--vo-text-2); max-width: 46ch; }
.vo-sub { color: var(--vo-muted); }
.vo-cta-row { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.5rem; }

.vo-btn {
  display: inline-block; padding: .8rem 1.4rem; border-radius: 10px;
  border: 1px solid var(--vo-border); color: var(--vo-text);
  text-decoration: none; font-weight: 600; font-size: .95rem;
  transition: transform .25s var(--vo-ease), border-color .25s var(--vo-ease);
}
.vo-btn:hover { transform: translateY(-1px); border-color: var(--vo-emerald); }
.vo-btn-primary { background: var(--vo-accent); border-color: var(--vo-accent); color: #fff; }
.vo-btn-primary:hover { background: var(--vo-emerald); border-color: var(--vo-emerald); color: #fff; }

/* prose helpers */
.vo-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); }
.vo-card {
  border: 1px solid var(--vo-border); border-radius: 14px;
  background: var(--vo-card); padding: 1.5rem;
}
.vo-card h3 { color: var(--vo-text); }
.vo-card p { color: var(--vo-text-2); }
.vo-card p:last-child { margin-bottom: 0; }

.vo-shot { width: 100%; height: auto; border: 1px solid var(--vo-border); border-radius: 14px; display: block; }
.vo-body figure { margin: 0 0 1.5rem; }
.vo-body figcaption { color: var(--vo-muted); font-size: .9rem; margin-top: .6rem; }

/* tiers */
.vo-tiers { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); }
.vo-tier {
  border: 1px solid var(--vo-border); border-radius: 16px; padding: 1.75rem;
  background: var(--vo-card); display: flex; flex-direction: column;
  position: relative;
}
.vo-tier-featured { border-color: var(--vo-emerald); }
/* Out of flow, matching the .apx-pop idiom on the main site. In flow it pushed the
   featured card's price down and the three cards stopped lining up. */
.vo-tier-badge {
  position: absolute; top: -.65rem; left: 1.75rem; margin: 0;
  font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: #04140b; background: var(--vo-accent-light);
  padding: .3rem .7rem; border-radius: 999px;
}
/* Two lines' worth, so a one-line tagline does not raise its card's price above
   its neighbours'. Cheaper and more robust than a subgrid for three cards. */
.vo-tier-tagline { color: var(--vo-text-2); min-height: 3.2em; }
.vo-tier-price strong { font-family: var(--vo-display); font-size: 2rem; display: block; }
.vo-tier-price span { color: var(--vo-muted); font-size: .9rem; }
.vo-tier ul { list-style: none; padding: 0; margin: 1rem 0 1.5rem; color: var(--vo-text-2); }
.vo-tier li { padding: .35rem 0 .35rem 1.4rem; position: relative; font-size: .95rem; }
.vo-tier li::before {
  content: '●'; position: absolute; left: 0; color: var(--vo-emerald);
  font-size: .7rem; top: .55rem;
}
.vo-tier .vo-btn { margin-top: auto; text-align: center; }

/* table */
/* position:relative is load-bearing. The .vo-sr spans inside cells are absolutely
   positioned; without a positioned ancestor their containing block is the initial
   containing block, so they escape this overflow container and widen the whole
   document at phone width. The table scrolls correctly either way — it is the
   invisible labels that leak. */
.vo-table-scroll { overflow-x: auto; position: relative; }
.vo-table { border-collapse: collapse; width: 100%; min-width: 34rem; font-size: .95rem; }
.vo-table th, .vo-table td { padding: .8rem 1rem; border-bottom: 1px solid var(--vo-border); text-align: left; }
.vo-table thead th { font-family: var(--vo-display); color: var(--vo-text); }
.vo-table tbody th { color: var(--vo-text-2); font-weight: 400; }
.vo-table td { text-align: center; }
.vo-yes { color: var(--vo-accent-light); }
.vo-no { color: var(--vo-muted); }

/* Marks a module that is not finished. Deliberately plain rather than a bright
   badge — it is an honest caveat, not a feature announcement. */
.vo-status {
  display: inline-block;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--vo-bg);
  background: var(--vo-text-2);
  border-radius: 4px;
  padding: .1rem .4rem;
  margin-left: .4rem;
  vertical-align: middle;
  white-space: nowrap;
}
.vo-price-row td strong { font-family: var(--vo-display); font-size: 1.15rem; }

/* footer */
.vo-footer { border-top: 1px solid var(--vo-border); padding: clamp(2rem, 6vw, 4rem) clamp(1rem, 5vw, 4rem); }
.vo-footer-grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr)); max-width: 68rem; margin: 0 auto; }
.vo-footer h3 { font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; color: var(--vo-muted); }
.vo-footer a { display: block; color: var(--vo-text-2); text-decoration: none; padding: .2rem 0; font-size: .95rem; }
/* The block rule above is for the link columns. A link inside a sentence must stay
   inline, or it breaks the line and strands the punctuation after it on its own. */
.vo-footer p a { display: inline; padding: 0; color: var(--vo-accent-light); }
.vo-footer a:hover { color: var(--vo-text); }
.vo-footer-lead { font-family: var(--vo-display); color: var(--vo-text); }
.vo-footer-mark { display: inline-block; margin-bottom: 1rem; }
.vo-footer-mark img { display: block; height: auto; max-width: 160px; }

@media (prefers-reduced-motion: reduce) {
  .vo-btn { transition: none; }
  .vo-btn:hover { transform: none; }
}
