/* Vuvi marketing website — Master Components v2.2 implementation. */

@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/geist-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/geist-medium.woff2') format('woff2');
}

@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/geist-semibold.woff2') format('woff2');
}

:root {
  --ink: #15101C;
  --ink-deep: #1A1027;
  --plum: #241335;
  --plum2: #3D1F55;
  --magenta: #D94F8A;
  --magentaD: #A83068;
  --magentaL: #FAE8F2;
  --gold: #FFB25B;
  --goldD: #CC7A20;
  --goldL: #FFF4E6;
  --ivory: #F8F1EC;
  --ivoryD: #EDE5DC;
  --ivoryDD: #D8CFC4;
  --violet-pale: #F3ECFA;
  --violet-mist: #EDE3F5;
  --violet-light: #D5C5EF;
  --violet-soft: #C6A9F0;
  --violet-mid: #B39DDB;
  --violet: #8B6FBF;
  --violet-deep: #5B3B86;
  --violet-vivid: #6E3FB8;
  --go: #5BAF92;
  --goL: #E8F5F0;
  --goD: #2E7A5E;
  --caution: #F0A050;
  --cautionL: #FEF7EC;
  --on-photo-bright: #FFFFFF;
  /* The approved ivory lockup PNG is baked onto this package-defined ground. */
  --logo-ivory-ground: #E9E0E2;

  --sans: 'Geist', 'Noto Sans', system-ui, sans-serif;
  --r-sharp: 2px;
  --r-pill: 999px;
  --r-dot: 50%;
  --bw-hair: 1px;
  --bw-emph: 1.5px;
  --bw-status: 3px;

  --web-1: 8px;
  --web-2: 16px;
  --web-3: 24px;
  --web-4: 32px;
  --web-5: 40px;
  --web-6: 48px;
  --web-8: 64px;
  --web-10: 80px;
  --web-12: 96px;
  --web-15: 120px;

  --tr-display: -0.025em;
  --tr-title: -0.015em;
  --tr-body: 0;
  --tr-meta: 0.02em;
  --tr-micro: 0.14em;
  --tr-eyebrow: 0.2em;

  --focus-w: 2px;
  --focus-color: var(--violet-soft);
  --focus-offset: 2px;
  --measure: 68ch;
  --shell: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625;
  letter-spacing: var(--tr-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
.page { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1 0 auto; }

.shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--web-4);
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: var(--web-1) var(--web-2);
  border-radius: 0 0 var(--r-sharp) 0;
  background: var(--plum);
  color: var(--ivory);
  text-decoration: none;
}
.skip:focus { left: 0; }

.masthead {
  background: var(--logo-ivory-ground);
  border-bottom: var(--bw-hair) solid var(--ivoryDD);
}
.masthead-inner {
  min-height: 80px;
  padding-top: var(--web-2);
  padding-bottom: var(--web-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--web-4);
}
.wordmark { display: inline-block; flex: 1 1 auto; min-width: 0; line-height: 1; text-decoration: none; }
.wordmark img {
  width: 672px;
  max-width: 100%;
  height: auto;
  /* The approved master has 31.4167% built-in left ground around the artwork. */
  transform: translateX(-31.4167%);
}
.nav { display: flex; flex: 0 0 auto; align-items: center; gap: var(--web-3); }
.nav a {
  padding: var(--web-1) 0;
  border-bottom: var(--bw-hair) solid transparent;
  color: var(--plum2);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: var(--tr-body);
  text-decoration: none;
}
.nav a:hover { color: var(--violet-deep); border-bottom-color: var(--violet-light); }
.nav a[aria-current='page'] { color: var(--plum); border-bottom-color: var(--magenta); }

.hero { padding: var(--web-12) 0; }
.hero-eyebrow,
.eyebrow {
  margin: 0 0 var(--web-2);
  color: var(--violet-deep);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: var(--tr-eyebrow);
  text-transform: uppercase;
}
.hero h1 {
  margin: 0 0 var(--web-3);
  color: var(--plum);
  font-size: clamp(48px, 8vw, 72px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: var(--tr-display);
}
.hero .lede {
  max-width: 30ch;
  margin: 0 0 var(--web-2);
  color: var(--plum2);
  font-size: 24px;
  line-height: 1.333;
  letter-spacing: var(--tr-title);
}
.hero .sub {
  max-width: 52ch;
  margin: 0 0 var(--web-4);
  color: var(--violet-deep);
}
.rule-accent {
  width: 48px;
  height: 2px;
  margin: 0 0 var(--web-4);
  border: 0;
  border-radius: var(--r-sharp);
  background: var(--magenta);
}

.btn,
.btn-quiet {
  display: inline-block;
  padding: var(--web-2) var(--web-4);
  border: var(--bw-hair) solid var(--plum);
  border-radius: var(--r-sharp);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: var(--tr-body);
  text-decoration: none;
}
.btn { background: var(--magenta); border-color: var(--magenta); color: var(--on-photo-bright); }
.btn:hover { background: var(--magentaD); border-color: var(--magentaD); color: var(--on-photo-bright); }
.btn-quiet { background: transparent; color: var(--plum); }
.btn-quiet:hover { border-color: var(--violet-deep); color: var(--violet-deep); }

.band { padding: var(--web-10) 0; border-top: var(--bw-hair) solid var(--ivoryDD); }
.band-alt { background: var(--violet-pale); }
h2, h3 { color: var(--plum); font-weight: 600; }
h2 {
  margin: 0 0 var(--web-2);
  font-size: 32px;
  line-height: 1.25;
  letter-spacing: var(--tr-title);
}
h3 {
  margin: var(--web-5) 0 var(--web-2);
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: var(--tr-title);
}
p { max-width: var(--measure); margin: 0 0 var(--web-2); }
p:last-child { margin-bottom: 0; }
a { color: var(--violet-deep); }
a:hover { color: var(--magentaD); }
ul, ol { max-width: var(--measure); margin: 0 0 var(--web-2); padding-left: var(--web-3); }
li { margin-bottom: var(--web-1); }

.facts { max-width: var(--measure); margin: 0; }
.facts div {
  display: flex;
  flex-wrap: wrap;
  gap: var(--web-1) var(--web-3);
  padding: var(--web-2) 0;
  border-bottom: var(--bw-hair) solid var(--ivoryDD);
}
.facts div:first-child { border-top: var(--bw-hair) solid var(--ivoryDD); }
.facts dt {
  flex: 0 0 192px;
  color: var(--violet-deep);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: var(--tr-meta);
}
.facts dd { flex: 1 1 224px; margin: 0; color: var(--ink); }

.doc { padding-top: var(--web-10); padding-bottom: var(--web-12); }
.doc h1 {
  margin: 0 0 var(--web-2);
  color: var(--plum);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.167;
  letter-spacing: var(--tr-display);
}
.doc-meta {
  margin: 0 0 var(--web-5);
  padding-bottom: var(--web-3);
  border-bottom: var(--bw-hair) solid var(--ivoryDD);
  color: var(--violet-deep);
  font-size: 14px;
  font-variant-numeric: tabular-nums;
  letter-spacing: var(--tr-meta);
}
.doc-meta span { display: block; }
.doc h2 { margin: var(--web-6) 0 var(--web-2); font-size: 24px; }
.doc h2:first-of-type { margin-top: 0; }
.note {
  max-width: var(--measure);
  margin: 0 0 var(--web-3);
  padding: var(--web-3);
  border-left: var(--bw-status) solid var(--magenta);
  border-radius: 0 var(--r-sharp) var(--r-sharp) 0;
  background: var(--violet-pale);
}
.note p { margin-bottom: 0; }

.notfound { padding-top: var(--web-15); padding-bottom: var(--web-15); }
.notfound h1 {
  margin: 0 0 var(--web-2);
  color: var(--plum);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.167;
  letter-spacing: var(--tr-display);
}
.notfound p { margin-bottom: var(--web-4); color: var(--violet-deep); font-size: 18px; }

.footer {
  margin-top: var(--web-8);
  padding: var(--web-6) 0;
  border-top: var(--bw-hair) solid var(--ivoryDD);
  background: var(--logo-ivory-ground);
}
.footer-brand { display: flex; align-items: center; gap: var(--web-2); margin-bottom: var(--web-3); }
.footer-mark { width: 32px; height: 32px; }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--web-2) var(--web-4);
}
.footer-nav,
.social-nav { display: flex; flex-wrap: wrap; gap: var(--web-3); }
.footer-nav a,
.social-nav a { color: var(--plum2); font-size: 14px; font-weight: 500; text-decoration: none; }
.footer-nav a:hover,
.social-nav a:hover { color: var(--magentaD); }
.footer-legal { margin: 0; color: var(--violet-deep); font-size: 14px; }
.footer-tm { margin: var(--web-2) 0 0; color: var(--violet-deep); font-size: 13px; }
.social-nav { margin-top: var(--web-2); }

a:focus-visible,
.btn:focus-visible,
.btn-quiet:focus-visible {
  outline: var(--focus-w) solid var(--focus-color);
  outline-offset: var(--focus-offset);
  border-radius: var(--r-sharp);
}

@media (max-width: 640px) {
  .shell { padding-right: var(--web-2); padding-left: var(--web-2); }
  .masthead-inner { align-items: center; flex-direction: row; gap: var(--web-1); }
  .wordmark img { width: 576px; }
  .nav { width: auto; justify-content: flex-end; gap: var(--web-1); }
  .nav a { font-size: 12px; }
  .hero { padding: var(--web-8) 0; }
  .hero .lede { font-size: 22px; }
  .band { padding: var(--web-8) 0; }
  h2 { font-size: 28px; }
  .doc { padding-top: var(--web-8); padding-bottom: var(--web-10); }
  .doc h1,
  .notfound h1 { font-size: 40px; }
  .facts dt,
  .facts dd { flex-basis: 100%; }
  .notfound { padding-top: var(--web-10); padding-bottom: var(--web-10); }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}

@media print {
  .masthead, .footer-nav, .social-nav, .skip { display: none; }
  body { background: var(--on-photo-bright); font-size: 12pt; }
  .doc { padding: 0; }
  a { color: inherit; text-decoration: underline; }
}
