/* Vozeru: black, gold, loud. The artwork carries the energy; the layout stays out of its way. */

@font-face { font-family: "Metropolis"; font-weight: 400; font-display: swap; src: url(/assets/fonts/metropolis-regular.woff2) format("woff2"); }
@font-face { font-family: "Metropolis"; font-weight: 500; font-display: swap; src: url(/assets/fonts/metropolis-medium.woff2) format("woff2"); }
@font-face { font-family: "Metropolis"; font-weight: 600; font-display: swap; src: url(/assets/fonts/metropolis-semi-bold.woff2) format("woff2"); }
@font-face { font-family: "Metropolis"; font-weight: 800; font-display: swap; src: url(/assets/fonts/metropolis-extra-bold.woff2) format("woff2"); }

:root {
  --black: #000;
  --surface: #0c0c10;
  --raised: #16161d;
  --raised-2: #1e1e27;
  --ink: #f3f3f6;
  --dim: rgba(243, 243, 246, 0.66);
  --faint: rgba(243, 243, 246, 0.4);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.22);
  --yellow: #ffca41;
  --gold: #ffbd14;
  --cream: #fff1cd;
  --on-yellow: #111;
  --wrap: 1120px;
  --font: "Metropolis", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 5rem; }
body { margin: 0; background: var(--black); color: var(--ink); font-family: var(--font); font-size: 17px; line-height: 1.5; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; height: auto; }
a { color: var(--yellow); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
h1, h2, h3 { font-weight: 800; letter-spacing: -0.035em; line-height: 0.98; margin: 0 0 0.45em; text-wrap: balance; }
h1 { font-size: clamp(2.8rem, 7.5vw, 6rem); text-transform: uppercase; font-style: italic; }
h2 { font-size: clamp(2.1rem, 5vw, 3.8rem); text-transform: uppercase; font-style: italic; }
h3 { font-size: 1.3rem; letter-spacing: -0.02em; }
.hl { color: var(--yellow); }
p { margin: 0 0 1em; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--yellow); color: var(--on-yellow); padding: 8px 12px; border-radius: 8px; z-index: 100; }
.skip:focus { left: 8px; }
.lede { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--dim); max-width: 34em; }
.kicker { color: var(--yellow); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; margin: 0 0 12px; }

/* Buttons and the badge. */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 15px 26px; border-radius: 12px; background: var(--yellow); color: var(--on-yellow); font-weight: 800; font-size: 1.05rem; border: 0; cursor: pointer; transition: transform 0.15s var(--ease), box-shadow 0.25s var(--ease), background 0.15s var(--ease); }
.btn:hover { text-decoration: none; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255, 214, 10, 0.35); background: #ffd770; }
.btn:active { transform: translateY(0) scale(0.98); }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 2px var(--line-strong); }
.btn-ghost:hover { background: var(--raised); box-shadow: inset 0 0 0 2px var(--cream); }
.badge { display: inline-block; line-height: 0; transition: transform 0.15s var(--ease), filter 0.25s var(--ease); }
.badge img { height: 64px; width: auto; }
.badge:hover { transform: translateY(-2px); filter: drop-shadow(0 12px 30px rgba(255, 214, 10, 0.3)); }
.badge-sm img { height: 40px; }

/* Masthead. */
.top { position: sticky; top: 0; z-index: 20; background: rgba(0, 0, 0, 0.75); backdrop-filter: blur(14px) saturate(1.3); -webkit-backdrop-filter: blur(14px) saturate(1.3); border-bottom: 1px solid var(--line); }
.top-inner { display: flex; align-items: center; gap: 28px; height: 64px; }
.top-mark { display: flex; align-items: center; flex: none; }
.top-mark img { height: 30px; width: auto; display: block; }
.top-nav { display: flex; gap: 22px; flex: 1; }
.top-nav a { color: var(--dim); font-weight: 600; font-size: 0.98rem; }
.top-nav a:hover { color: var(--ink); text-decoration: none; }

/* Bands. */
.band { position: relative; padding: 96px 0; }
.band-tone { background: var(--surface); }
.band + .band { border-top: 1px solid var(--line); }

/* Hero: art fills the right, copy stands on the left over a fade. */
.hero { position: relative; min-height: min(92vh, 900px); display: flex; align-items: center; overflow: hidden; padding: 56px 0 72px; }
.hero-art { position: absolute; inset: 0; z-index: 0; }
.hero-art img { position: absolute; right: 0; top: 0; height: 100%; width: auto; max-width: none; object-fit: cover; object-position: top; -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 35%, #000 100%); mask-image: linear-gradient(90deg, transparent 0, #000 35%, #000 100%); }
.hero-glow { position: absolute; right: 8%; top: 20%; width: 60vmin; height: 60vmin; background: radial-gradient(circle, rgba(255, 214, 10, 0.28), transparent 60%); filter: blur(30px); z-index: 0; pointer-events: none; }
.hero .wrap { width: 100%; }
.hero-copy { position: relative; z-index: 2; max-width: 620px; }
.hero-copy h1 { margin-bottom: 20px; text-shadow: 0 6px 40px rgba(0, 0, 0, 0.8); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin: 28px 0 18px; }
.hero-facts { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px 20px; color: var(--dim); font-size: 0.95rem; font-weight: 500; }
.hero-facts li::before { content: "\2713\00a0"; color: var(--yellow); font-weight: 800; }

/* Steps: three numbered blocks. */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 28px 26px 26px; }
.step .n { display: block; font-size: 3.4rem; font-weight: 800; font-style: italic; letter-spacing: -0.06em; line-height: 0.8; color: var(--yellow); margin-bottom: 18px; }
.step p { color: var(--dim); margin: 0; }

/* Voice wall: art cards with a label, and a text card that lists the rest. */
.wall { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.vcard { position: relative; aspect-ratio: 3 / 4; border-radius: 20px; overflow: hidden; background: var(--raised); border: 1px solid var(--line); }
.vcard img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s var(--ease); }
.vcard:hover img { transform: scale(1.04); }
.vcard .tag { position: absolute; left: 14px; right: 14px; bottom: 14px; padding: 10px 14px; border-radius: 12px; background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(8px); font-weight: 800; font-size: 1.05rem; }
.vcard .tag small { display: block; font-weight: 500; color: var(--dim); font-size: 0.82rem; }
.vcard-text { display: flex; flex-direction: column; justify-content: flex-end; padding: 22px; background: var(--yellow); color: var(--on-yellow); }
.vcard-text b { font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 800; letter-spacing: -0.05em; line-height: 0.9; font-style: italic; }
.vcard-text span { font-weight: 600; margin-top: 8px; }

/* Split band with a big image. */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split .art img { border-radius: 24px; display: block; width: 100%; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--line); }
.list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px; }
.list li { display: flex; gap: 12px; color: var(--dim); }
.list li::before { content: "\2713"; color: var(--yellow); font-weight: 800; }
.list b { color: var(--ink); }

/* Pricing. */
.tiers { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 44px; }
.tier { border: 1px solid var(--line); background: var(--surface); border-radius: 24px; padding: 34px 32px; }
.tier-premium { background: var(--yellow); color: var(--on-yellow); border-color: var(--yellow); box-shadow: 0 30px 80px rgba(255, 214, 10, 0.18); }
.tier h3 { font-size: 0.95rem; letter-spacing: 0.14em; text-transform: uppercase; }
.tier .price { font-size: clamp(2.4rem, 4.5vw, 3.6rem); font-weight: 800; font-style: italic; letter-spacing: -0.05em; line-height: 0.95; margin: 6px 0 20px; }
.tier .price small { font-size: 1rem; font-weight: 600; font-style: normal; letter-spacing: 0; }
.tier ul { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 10px; }
.tier li::before { content: "\2713\00a0\00a0"; font-weight: 800; color: var(--yellow); }
.tier-premium li::before { color: var(--on-yellow); }
.tier .fine { opacity: 0.7; font-size: 0.9rem; margin: 14px 0 0; }

/* FAQ. */
.faq { max-width: 760px; margin-top: 36px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 20px 40px 20px 0; font-weight: 700; font-size: 1.1rem; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 16px; font-size: 1.6rem; color: var(--yellow); font-weight: 800; }
.faq details[open] summary::after { content: "\2212"; }
.faq details p { color: var(--dim); margin: -6px 0 22px; max-width: 62ch; }

/* Closing band over the wide art. */
.close-band { position: relative; overflow: hidden; padding: 140px 0; text-align: center; }
.close-art { position: absolute; inset: 0; z-index: 0; }
.close-art img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0.55; -webkit-mask-image: linear-gradient(180deg, transparent, #000 25%, #000 75%, transparent); mask-image: linear-gradient(180deg, transparent, #000 25%, #000 75%, transparent); }
.close-band .wrap { position: relative; z-index: 1; }
.close-band h2 { font-size: clamp(2.6rem, 8vw, 6.5rem); text-shadow: 0 6px 40px rgba(0, 0, 0, 0.9); }
.close-band .lede { margin: 0 auto 30px; }

/* Footer. */
.foot { border-top: 1px solid var(--line); background: var(--surface); padding: 56px 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
.foot-brand p { color: var(--dim); margin: 12px 0 0; }
.foot-h { font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.78rem; color: var(--faint); margin: 8px 0 12px; }
.foot ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.foot ul a { color: var(--ink); font-weight: 500; }
.foot small { color: var(--faint); }
.foot-line { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--faint); font-size: 0.85rem; }

/* Legal pages. */
.doc { padding: 64px 0 96px; }
.doc-head { margin-bottom: 40px; }
.doc-head h1 { font-style: normal; text-transform: none; font-size: clamp(2.4rem, 5vw, 4rem); }
.doc-head .updated { color: var(--faint); font-size: 0.9rem; }
.doc-grid { display: grid; grid-template-columns: minmax(0, 68ch) 300px; gap: 56px; align-items: start; }
.prose { font-size: 1.05rem; }
.prose h2 { font-size: 1.5rem; font-style: normal; text-transform: none; margin: 2.2em 0 0.6em; }
.prose h3 { font-size: 1.12rem; margin: 1.8em 0 0.5em; color: var(--cream); }
.prose p, .prose li { color: var(--dim); }
.prose b, .prose strong { color: var(--ink); }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: 0.4em; }
.prose table { border-collapse: collapse; width: 100%; font-size: 0.95rem; margin: 1em 0; }
.prose th, .prose td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose th { color: var(--faint); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; }
.prose td { color: var(--dim); }
.prose td:first-child { color: var(--ink); font-weight: 600; }
.prose code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.9em; background: var(--raised); padding: 2px 6px; border-radius: 6px; color: var(--cream); }
.aside { position: sticky; top: 90px; }
.summary { border: 1px solid var(--line); background: var(--surface); border-radius: 20px; padding: 22px; }
.summary .cap { display: block; font-weight: 800; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--yellow); margin-bottom: 12px; }
.summary ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: 0.95rem; color: var(--dim); }
.summary li::before { content: "\2713\00a0\00a0"; color: var(--yellow); font-weight: 800; }

/* Forms. */
.form { display: grid; gap: 20px; margin-top: 30px; }
.field { display: grid; gap: 8px; }
.field label, .field legend { font-weight: 700; }
.field small { color: var(--faint); }
.field input:not([type=radio]):not([type=checkbox]), .field textarea { font: inherit; color: var(--ink); background: var(--raised); border: 2px solid var(--line-strong); border-radius: 12px; padding: 14px 16px; width: 100%; }
.field textarea { min-height: 150px; resize: vertical; }
.field input:not([type=radio]):not([type=checkbox]):focus, .field textarea:focus { outline: 0; border-color: var(--yellow); box-shadow: 0 0 0 4px rgba(255, 214, 10, 0.18); }
.choices { display: grid; gap: 10px; }
.choice { display: flex; gap: 12px; align-items: flex-start; padding: 12px 14px; border: 2px solid var(--line); border-radius: 12px; cursor: pointer; }
.choice:has(input:checked) { border-color: var(--yellow); background: rgba(255, 214, 10, 0.06); }
.choice input { margin: 4px 0 0; width: 18px; height: 18px; flex: none; accent-color: var(--yellow); }
.choice span { color: var(--dim); }
.choice b { color: var(--ink); display: block; }
.check { display: flex; gap: 12px; align-items: flex-start; color: var(--dim); }
.check input { margin-top: 5px; accent-color: var(--yellow); }
.form-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.form-note { color: var(--faint); font-size: 0.9rem; }
.preview { display: none; }
.preview.is-open { display: block; }
.preview pre { white-space: pre-wrap; background: var(--raised); border: 1px solid var(--line); border-radius: 12px; padding: 16px; font-size: 0.9rem; color: var(--dim); }

/* Widths. */
@media (max-width: 960px) {
  .split, .doc-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .wall { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .aside { position: static; }
  .hero { min-height: 0; padding: 40px 0 56px; }
  .hero-art img { right: -20%; opacity: 0.55; -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 45%); mask-image: linear-gradient(90deg, transparent 0, #000 45%); }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .band { padding: 60px 0; }
  .top-nav { display: none; }
  .top-inner { gap: 14px; }
  .top-inner .badge-sm { margin-left: auto; }
  .hero-art img { right: -45%; opacity: 0.45; }
  .hero-copy h1 { font-size: clamp(2.6rem, 13vw, 3.6rem); }
  .badge img { height: 56px; }
  .tiers, .foot-grid, .wall { grid-template-columns: 1fr; }
  .wall { gap: 14px; }
  .vcard { aspect-ratio: 4 / 3; }
  .vcard-text { aspect-ratio: auto; padding: 26px 22px; }
  .split { gap: 32px; }
  .close-band { padding: 96px 0; }
  .form-actions .btn { width: 100%; }
  /* Tables stack into rows of label and value; the header row goes. */
  .prose table, .prose tbody, .prose tr, .prose td { display: block; width: 100%; }
  .prose thead, .prose th { display: none; }
  .prose tr { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .prose td { padding: 2px 0; border: 0; }
  .prose td:first-child { padding-bottom: 4px; }
}
