@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Newsreader:opsz,wght@6..72,400;6..72,500&display=swap');

:root {
  --v3-ink: #0a2c53;
  --v3-ink-soft: #405b74;
  --v3-ivory: #f3f7fa;
  --v3-paper: #fffdf8;
  --v3-sand: #d8e6ef;
  --v3-eucalyptus: #66796b;
  --v3-blue: #1766ad;
  --v3-gold: #6f9fc5;
  --v3-line: rgba(10, 44, 83, 0.16);
  --v3-page: 1320px;
  --v3-serif: 'Newsreader', Georgia, 'Times New Roman', serif;
  --v3-sans: 'Inter', Arial, sans-serif;
}

html { scroll-behavior: auto; }

body.v3-body {
  margin: 0;
  background: var(--v3-ivory);
  color: var(--v3-ink);
  font-family: var(--v3-sans);
}

.v3-site, .v3-site * { box-sizing: border-box; }
.v3-site { overflow: clip; background: var(--v3-ivory); }
.v3-site img { display: block; width: 100%; height: 100%; object-fit: cover; }
.v3-site a { color: inherit; text-decoration: none; }
.v3-site button, .v3-site input { font: inherit; }
.v3-site button { color: inherit; }

.v3-skip {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  padding: 10px 14px;
  background: var(--v3-ink);
  color: #fff !important;
}
.v3-skip:focus { transform: none; }

.v3-header {
  height: 82px;
  background: rgba(248, 251, 253, 0.97);
  border-bottom: 1px solid var(--v3-line);
  position: relative;
  z-index: 20;
}
.v3-header__inner {
  max-width: var(--v3-page);
  height: 100%;
  margin: 0 auto;
  padding: 0 34px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.v3-wordmark {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.26em;
}
.v3-header .v3-wordmark {
  width: 154px;
  height: 46px;
  display: block;
  position: relative;
  color: transparent;
  background: none;
}
.v3-header .v3-wordmark::before,
.v3-header .v3-wordmark::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.v3-header .v3-wordmark::before {
  left: 0;
  width: 38px;
  height: 38px;
  background-image: url('assets/vi/vitaxis-mark.png');
}
.v3-header .v3-wordmark::after {
  left: 48px;
  width: 106px;
  height: 24px;
  background-image: url('assets/vi/vitaxis-wordmark.png');
}
.v3-nav { display: flex; gap: 34px; align-items: center; }
.v3-nav a, .v3-search-trigger {
  font-size: 13px;
  line-height: 1;
  border: 0;
  background: transparent;
  padding: 10px 0;
  cursor: pointer;
  border-bottom: 1px solid transparent;
}
.v3-nav a:hover, .v3-nav a:focus-visible, .v3-search-trigger:hover, .v3-search-trigger:focus-visible { border-color: currentColor; }
.v3-header__actions { justify-self: end; }
.v3-menu { display: none; border: 1px solid var(--v3-line); background: transparent; padding: 9px 12px; }

.v3-kicker {
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.v3-display, .v3-section-title, .v3-story__title, .v3-journal__title {
  margin: 0;
  font-family: var(--v3-serif);
  font-weight: 400;
  letter-spacing: -0.025em;
}
.v3-text { color: var(--v3-ink-soft); font-size: 16px; line-height: 1.65; }
.v3-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}
.v3-link:hover, .v3-link:focus-visible { color: var(--v3-blue); }

.v3-hero {
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  background: #8f897d;
}
.v3-hero__media { position: absolute; inset: 0; }
.v3-hero__media img { object-position: 50% 50%; }
.v3-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 44, 83, 0.04);
  pointer-events: none;
}
.v3-hero__inner {
  width: min(100%, var(--v3-page));
  margin: 0 auto;
  padding: 70px 34px;
  position: relative;
  z-index: 2;
}
.v3-hero__card {
  width: min(530px, 47vw);
  padding: 58px 56px 50px;
  background: rgba(255, 253, 248, 0.96);
  border-top: 3px solid var(--v3-gold);
  box-shadow: 0 20px 60px rgba(10, 44, 83, 0.14);
}
.v3-display { font-size: clamp(52px, 5.2vw, 80px); line-height: 0.98; }
.v3-hero__rule { width: 38px; height: 1px; margin: 28px 0; background: var(--v3-ink); }
.v3-hero__card .v3-text { max-width: 390px; margin: 0; }

.v3-story {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(380px, 2fr);
  min-height: 460px;
  background: var(--v3-paper);
}
.v3-story--reverse { grid-template-columns: minmax(380px, 2fr) minmax(0, 3fr); }
.v3-story__media { min-height: 460px; overflow: hidden; }
.v3-story__media img { transition: transform 800ms ease; }
.v3-story:hover .v3-story__media img { transform: scale(1.015); }
.v3-story__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px clamp(44px, 6vw, 94px);
}
.v3-story__title { font-size: clamp(38px, 3.8vw, 52px); line-height: 1.05; max-width: 520px; }
.v3-story__content .v3-text { max-width: 440px; margin: 24px 0 0; }

.v3-manifesto {
  padding: 72px 34px 64px;
  background: var(--v3-ivory);
  border-top: 1px solid var(--v3-line);
  border-bottom: 1px solid var(--v3-line);
}
.v3-manifesto__inner { max-width: var(--v3-page); margin: 0 auto; text-align: center; }
.v3-section-title { font-size: clamp(42px, 5vw, 68px); line-height: 1.03; max-width: 820px; margin: 0 auto; }
.v3-manifesto__grid { margin-top: 44px; display: grid; grid-template-columns: repeat(4, 1fr); }
.v3-principle { padding: 0 32px; border-right: 1px solid var(--v3-line); }
.v3-principle:last-child { border-right: 0; }
.v3-principle h3 { margin: 0 0 12px; font-family: var(--v3-serif); font-size: 25px; font-weight: 500; }
.v3-principle p { margin: 0; color: var(--v3-ink-soft); font-size: 13px; line-height: 1.6; }

.v3-standards {
  max-width: var(--v3-page);
  margin: 0 auto;
  padding: 72px 34px;
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.4fr);
  gap: 70px;
}
.v3-standards__intro .v3-section-title { margin: 0; max-width: 430px; font-size: clamp(42px, 4.5vw, 64px); }
.v3-standards__intro .v3-text { max-width: 420px; }
.v3-ledger { border-top: 1px solid var(--v3-line); }
.v3-ledger__row {
  min-height: 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--v3-line);
  font-size: 14px;
}
.v3-ledger__status { color: #1e5f82; font-size: 12px; font-weight: 600; }

.v3-products {
  padding: 80px 34px 88px;
  background: #e9f2f7;
  border-top: 1px solid var(--v3-line);
}
.v3-products__inner { max-width: var(--v3-page); margin: 0 auto; }
.v3-products__header {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 70px;
  align-items: end;
}
.v3-products__title {
  max-width: 760px;
  margin: 0;
  font-family: var(--v3-serif);
  font-size: clamp(44px, 5vw, 70px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
}
.v3-products__header .v3-text { max-width: 470px; margin: 0; }
.v3-products__grid {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.v3-product-card {
  --sku: #0f5aa6;
  --sku-paper: #eef4f8;
  min-width: 0;
  background: var(--v3-paper);
  border: 1px solid rgba(11, 44, 82, 0.14);
  border-top: 4px solid var(--sku);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.v3-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(11, 44, 82, 0.1);
}
.v3-product-card--coral { --sku: #d54b2d; --sku-paper: #f8eee8; }
.v3-product-card--eucalyptus { --sku: #167f7c; --sku-paper: #e9f2ef; }
.v3-product-card--violet { --sku: #46369b; --sku-paper: #efedf8; }
.v3-product-card--sand { --sku: #9b865d; --sku-paper: #f4efe4; }
.v3-product-card__media {
  width: 100%;
  aspect-ratio: 4 / 5;
  margin: 0;
  padding: 26px 20px 22px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--sku-paper);
}
.v3-site .v3-product-card__media img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}
.v3-product-card__body { padding: 24px 20px 22px; border-top: 1px solid var(--v3-line); }
.v3-product-card__eyebrow {
  margin: 0 0 10px;
  color: var(--sku);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.v3-product-card h3 {
  margin: 0;
  font-family: var(--v3-serif);
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 500;
  line-height: 1.02;
}
.v3-product-card__type { min-height: 38px; margin: 10px 0 0; color: var(--v3-ink-soft); font-size: 12px; line-height: 1.45; }
.v3-product-card__status {
  margin: 18px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--v3-line);
  color: var(--v3-ink-soft);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.45;
}
.v3-product-card__link {
  display: inline-flex;
  margin-top: 16px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  font-weight: 600;
}
.v3-product-card__link:hover, .v3-product-card__link:focus-visible { color: var(--sku); }
.v3-products__notice {
  max-width: 880px;
  margin: 30px 0 0;
  color: var(--v3-ink-soft);
  font-size: 12px;
  line-height: 1.6;
}

.v3-journal {
  padding: 76px 34px 86px;
  background: var(--v3-paper);
  border-top: 1px solid var(--v3-line);
}
.v3-journal__inner {
  max-width: var(--v3-page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.8fr);
  gap: 54px;
}
.v3-journal__title { font-size: clamp(42px, 4.8vw, 66px); line-height: 1.03; }
.v3-journal__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.v3-article { display: flex; flex-direction: column; min-width: 0; }
.v3-article__media { aspect-ratio: 4 / 3; overflow: hidden; background: #dbe8f0; }
.v3-article__media img { transition: transform 600ms ease; }
.v3-article:hover img { transform: scale(1.025); }
.v3-article__meta { margin: 18px 0 10px; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; }
.v3-article h3 { margin: 0; font-family: var(--v3-serif); font-size: 25px; font-weight: 500; line-height: 1.1; }
.v3-article p { margin: 13px 0 0; color: var(--v3-ink-soft); font-size: 13px; line-height: 1.55; }

.v3-coming {
  min-height: 220px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  position: relative;
  color: var(--v3-ink);
  background: #cbdde9;
  overflow: hidden;
}
.v3-coming__image { position: absolute; inset: 0; opacity: 0.32; }
.v3-coming__image img { filter: saturate(0.7); }
.v3-coming__content {
  width: min(100%, var(--v3-page));
  margin: 0 auto;
  padding: 58px 34px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: center;
  position: relative;
}
.v3-coming h2 { margin: 0; font-family: var(--v3-serif); font-size: clamp(40px, 4vw, 58px); font-weight: 400; line-height: 1; }
.v3-coming p { max-width: 560px; margin: 0; font-size: 15px; line-height: 1.6; }

.v3-footer { background: var(--v3-ink); color: #fff; padding: 72px 34px 38px; border-top: 4px solid var(--v3-gold); }
.v3-footer .v3-wordmark { color: #d8e8f3; }
.v3-footer { padding-top: 60px; padding-bottom: 32px; }
.v3-footer__grid {
  max-width: var(--v3-page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 48px;
}
.v3-footer h3 { margin: 0 0 18px; font-size: 13px; font-weight: 600; }
.v3-footer p, .v3-footer a { font-size: 12px; line-height: 1.65; color: rgba(255,255,255,0.78); }
.v3-footer ul { list-style: none; margin: 0; padding: 0; }
.v3-footer li + li { margin-top: 8px; }
.v3-footer a:hover, .v3-footer a:focus-visible { color: #fff; text-decoration: underline; }
.v3-footer__legal {
  max-width: var(--v3-page);
  margin: 52px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.2);
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.v3-search {
  width: min(680px, calc(100vw - 32px));
  border: 1px solid var(--v3-line);
  padding: 0;
  background: var(--v3-paper);
  color: var(--v3-ink);
}
.v3-search::backdrop { background: rgba(5, 20, 35, 0.5); }
.v3-search__inner { padding: 34px; }
.v3-search__top { display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.v3-search h2 { margin: 0; font-family: var(--v3-serif); font-size: 38px; font-weight: 400; }
.v3-search__close { border: 0; background: transparent; text-decoration: underline; cursor: pointer; }
.v3-search label { display: block; margin: 26px 0 9px; font-size: 13px; font-weight: 600; }
.v3-search input { width: 100%; border: 1px solid var(--v3-line); background: #fff; padding: 15px; color: inherit; }
.v3-search__note { color: var(--v3-ink-soft); font-size: 13px; line-height: 1.6; }

@media (max-width: 900px) {
  .v3-header { height: 70px; }
  .v3-header__inner { grid-template-columns: 1fr auto; padding: 0 20px; }
  .v3-menu { display: inline-block; }
  .v3-header__actions { display: flex; gap: 10px; align-items: center; }
  .v3-search-trigger { display: none; }
  .v3-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 70px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 20px 24px;
    background: var(--v3-paper);
    border-bottom: 1px solid var(--v3-line);
  }
  .v3-nav[data-open='true'] { display: flex; }
  .v3-nav a { padding: 15px 0; border-bottom: 1px solid var(--v3-line); }
  .v3-hero { min-height: 720px; align-items: end; }
  .v3-hero__media img { object-position: 64% 50%; }
  .v3-hero__inner { padding: 0 20px 26px; }
  .v3-hero__card { width: min(100%, 520px); padding: 36px 30px 32px; }
  .v3-display { font-size: clamp(48px, 12vw, 68px); }
  .v3-story, .v3-story--reverse { grid-template-columns: 1fr; }
  .v3-story--reverse .v3-story__content { order: 2; }
  .v3-story--reverse .v3-story__media { order: 1; }
  .v3-story__media { min-height: 440px; }
  .v3-story__content { padding: 54px 28px 64px; }
  .v3-manifesto { padding: 76px 24px 66px; }
  .v3-manifesto__grid { grid-template-columns: 1fr 1fr; gap: 34px 0; }
  .v3-principle:nth-child(2) { border-right: 0; }
  .v3-standards { grid-template-columns: 1fr; gap: 46px; padding: 76px 24px; }
  .v3-products { padding: 76px 24px 82px; }
  .v3-products__header { grid-template-columns: 1fr; gap: 30px; }
  .v3-products__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
  .v3-journal { padding: 76px 24px 88px; }
  .v3-journal__inner { grid-template-columns: 1fr; gap: 44px; }
  .v3-coming__content { grid-template-columns: 1fr; gap: 22px; padding: 54px 24px; }
  .v3-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .v3-wordmark { font-size: 16px; }
  .v3-header .v3-wordmark { width: 132px; height: 42px; }
  .v3-header .v3-wordmark::before { width: 34px; height: 34px; }
  .v3-header .v3-wordmark::after { left: 43px; width: 89px; height: 21px; }
  .v3-hero { min-height: 690px; }
  .v3-hero__card { padding: 32px 24px 28px; }
  .v3-display { font-size: 47px; }
  .v3-text { font-size: 15px; }
  .v3-story__media { min-height: 360px; }
  .v3-story__content { padding: 48px 22px 56px; }
  .v3-story__title { font-size: 41px; }
  .v3-manifesto { padding-inline: 20px; }
  .v3-section-title { font-size: 44px; }
  .v3-manifesto__grid { grid-template-columns: 1fr; gap: 0; }
  .v3-principle { border-right: 0; border-bottom: 1px solid var(--v3-line); padding: 24px 8px; }
  .v3-principle:last-child { border-bottom: 0; }
  .v3-standards { padding-inline: 20px; }
  .v3-ledger__row { grid-template-columns: 1fr; gap: 5px; padding: 18px 0; }
  .v3-products { padding-inline: 20px; }
  .v3-products__title { font-size: 44px; }
  .v3-products__grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(245px, 78vw);
    gap: 16px;
    margin-inline: -20px;
    padding-inline: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .v3-product-card { scroll-snap-align: start; }
  .v3-product-card__media { width: 100%; }
  .v3-journal { padding-inline: 20px; }
  .v3-journal__grid { grid-template-columns: 1fr; gap: 38px; }
  .v3-coming { min-height: 320px; }
  .v3-footer { padding-inline: 20px; }
  .v3-footer__grid { grid-template-columns: 1fr; gap: 34px; }
  .v3-footer__legal { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .v3-story__media img, .v3-article__media img, .v3-product-card { transition: none; }
}
