/* ==========================================================================
   Volkers Studio — site styles
   Palette: bg #17130E · ink #F2EBE0 · accent #E8A33D · heat #D84B3A
   ========================================================================== */

:root {
  --bg: #17130E;
  --bg-2: #1D1710;
  --bg-footer: #14100B;
  --ink: #F2EBE0;
  --accent: #E8A33D;
  --accent-hover: #F2C066;
  --heat: #D84B3A;
  --motion: running;
}

@media (prefers-reduced-motion: reduce) {
  :root { --motion: paused; }
  * { scroll-behavior: auto !important; }
}

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

html { scroll-behavior: smooth; }

html, body { margin: 0; padding: 0; background: var(--bg); }

body {
  font-family: 'Instrument Sans', 'Helvetica Neue', sans-serif;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: clip;
}

a { color: var(--accent); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent-hover); }

img { max-width: 100%; display: block; }

::selection { background: var(--accent); color: var(--bg); }

h1, h2, h3 { font-family: 'Archivo', sans-serif; }

.wrap { max-width: 1160px; margin: 0 auto; }
.container { min-height: 100vh; background: var(--bg); color: var(--ink); overflow-x: clip; }

/* Keyframes ---------------------------------------------------------------- */
@keyframes vsFloat  { 0%, 100% { transform: translateY(0); }               50% { transform: translateY(-14px); } }
@keyframes vsFloatB { 0%, 100% { transform: translateY(0) rotate(45deg); } 50% { transform: translateY(-10px) rotate(45deg); } }
@keyframes vsGlow   { 0%, 100% { opacity: .55; }                           50% { opacity: .9; } }
@keyframes vsRise   { from { opacity: 0; transform: translateY(18px); }    to  { opacity: 1; transform: translateY(0); } }

/* Reveal on scroll (progressive enhancement) ------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Buttons ------------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Archivo', sans-serif; font-size: 16px;
  border-radius: 12px; padding: 15px 30px; cursor: pointer;
}
.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--heat));
  color: var(--bg); font-weight: 800; letter-spacing: .02em;
  box-shadow: 0 8px 28px rgba(232, 163, 61, .28);
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(232, 163, 61, .4);
  color: var(--bg);
}
.btn--ghost {
  border: 1px solid rgba(242, 235, 224, .18); color: var(--ink); font-weight: 700;
  transition: border-color .2s ease, background .2s ease;
}
.btn--ghost:hover { border-color: rgba(242, 235, 224, .4); background: rgba(242, 235, 224, .05); color: var(--ink); }

/* Eyebrow / pill ----------------------------------------------------------- */
.eyebrow { font-size: 13px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.eyebrow--accent { color: var(--accent); }
.eyebrow--heat { color: var(--heat); }

.badge-live {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px; border-radius: 99px;
  border: 1px solid rgba(242, 235, 224, .14); background: rgba(242, 235, 224, .04);
  font-size: 13.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(242, 235, 224, .7);
}
.badge-live .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
  animation: vsGlow 2.4s ease-in-out infinite; animation-play-state: var(--motion);
}

.status-pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 18px; border-radius: 99px;
  background: rgba(232, 163, 61, .12); border: 1px solid rgba(232, 163, 61, .4);
  color: var(--accent); font-size: 14px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}

/* Nav ---------------------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  background: rgba(23, 19, 14, .78); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(242, 235, 224, .07);
}
.nav__brand { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.logo-mark {
  display: grid; place-items: center; border-radius: 9px;
  background: linear-gradient(135deg, var(--accent), var(--heat));
  font-family: 'Archivo', sans-serif; font-weight: 900; color: var(--bg);
  width: 36px; height: 36px; font-size: 19px;
}
.nav__name { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 17px; letter-spacing: .02em; }
.nav__links { display: flex; align-items: center; gap: clamp(16px, 3vw, 32px); font-size: 14.5px; font-weight: 500; }
.nav__link { color: rgba(242, 235, 224, .75); }
.nav__link:hover { color: var(--ink); }
.nav__cta {
  display: inline-flex; align-items: center; padding: 9px 18px; border-radius: 99px;
  border: 1px solid rgba(232, 163, 61, .45); color: var(--accent); font-weight: 600;
}
.nav__cta:hover { background: rgba(232, 163, 61, .12); color: var(--accent-hover); }

/* Hero --------------------------------------------------------------------- */
.hero {
  position: relative; text-align: center; overflow: clip;
  padding: clamp(80px, 14vh, 150px) clamp(20px, 5vw, 64px) clamp(90px, 14vh, 160px);
}
.hero__glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 50% -5%, rgba(232, 163, 61, .17), transparent 65%),
    radial-gradient(ellipse 45% 40% at 82% 88%, rgba(216, 75, 58, .10), transparent 70%);
}
.hero__grid {
  position: absolute; inset: 0; pointer-events: none; opacity: .35;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 71px, rgba(242, 235, 224, .04) 71px, rgba(242, 235, 224, .04) 72px),
    repeating-linear-gradient(90deg, transparent, transparent 71px, rgba(242, 235, 224, .04) 71px, rgba(242, 235, 224, .04) 72px);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 30%, black, transparent 75%);
          mask-image: radial-gradient(ellipse 60% 60% at 50% 30%, black, transparent 75%);
}
.spark { position: absolute; pointer-events: none; animation-play-state: var(--motion); }
.spark--a { top: 22%; left: 12%; width: 14px; height: 14px; background: var(--accent); border-radius: 3px; opacity: .5;  animation: vsFloatB 7s ease-in-out infinite; }
.spark--b { top: 34%; right: 14%; width: 10px; height: 10px; background: var(--heat);   border-radius: 50%; opacity: .55; animation: vsFloat 5.5s ease-in-out infinite .8s; }
.spark--c { bottom: 24%; left: 20%; width: 8px; height: 8px;  background: var(--accent); border-radius: 50%; opacity: .35; animation: vsFloat 6.5s ease-in-out infinite 1.6s; }

.hero__inner {
  position: relative; max-width: 900px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 28px;
  animation: vsRise .7s ease-out both;
}
.hero__title {
  margin: 0; font-weight: 900; text-transform: uppercase;
  font-size: clamp(52px, 10vw, 118px); line-height: .96; letter-spacing: -.02em;
}
.text-gradient {
  background: linear-gradient(100deg, var(--accent) 20%, var(--heat) 85%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero__text {
  margin: 0; max-width: 560px; text-wrap: pretty;
  font-size: clamp(17px, 2.2vw, 21px); line-height: 1.55; color: rgba(242, 235, 224, .78);
}
.hero__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 6px; }

/* Section shells ----------------------------------------------------------- */
.section { padding: clamp(70px, 10vh, 120px) clamp(20px, 5vw, 64px); border-top: 1px solid rgba(242, 235, 224, .06); }
.section--featured { position: relative; background: linear-gradient(180deg, var(--bg), var(--bg-2) 45%, var(--bg)); }

.section-head {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 18px;
  margin-bottom: clamp(48px, 7vh, 72px);
}
.section-title {
  margin: 0; font-weight: 900; text-transform: uppercase;
  font-size: clamp(38px, 6vw, 68px); line-height: 1.02; letter-spacing: -.015em;
}
.section-text {
  margin: 0; max-width: 640px; text-wrap: pretty;
  font-size: clamp(16px, 2vw, 19px); line-height: 1.6; color: rgba(242, 235, 224, .75);
}

/* Phone mockups ------------------------------------------------------------ */
.phones {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: flex-end;
  gap: clamp(20px, 3.5vw, 44px); margin-bottom: clamp(56px, 8vh, 88px);
}
.phone {
  border: 7px solid #2B231A; background: #211A12; border-radius: 34px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
  width: clamp(180px, 22vw, 230px);
}
.phone__screen { position: relative; aspect-ratio: 9 / 19.2; }
.phone__screen img { width: 100%; height: 100%; object-fit: cover; }
.phone--left  { transform: rotate(-3deg); }
.phone--right { transform: rotate(3deg); }
.phone--center {
  width: clamp(200px, 25vw, 260px); border-width: 8px; border-radius: 38px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .55); margin-bottom: 24px;
  animation: vsFloat 8s ease-in-out infinite; animation-play-state: var(--motion);
}

/* Feature cards ------------------------------------------------------------ */
.features {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px; margin-bottom: clamp(56px, 8vh, 80px);
}
.feature {
  padding: 26px 24px; border-radius: 16px;
  background: rgba(242, 235, 224, .035); border: 1px solid rgba(242, 235, 224, .08);
  transition: border-color .25s ease, transform .25s ease;
}
.feature:hover { border-color: rgba(232, 163, 61, .4); transform: translateY(-3px); }
.feature__num { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 15px; color: var(--accent); letter-spacing: .1em; margin-bottom: 14px; }
.feature__title { margin: 0 0 8px; font-weight: 700; font-size: 18px; }
.feature__text { margin: 0; font-size: 15px; line-height: 1.55; color: rgba(242, 235, 224, .65); }

/* CTA / store badge -------------------------------------------------------- */
.cta { display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
.cta__line { margin: 0; font-family: 'Archivo', sans-serif; font-weight: 700; font-size: clamp(19px, 2.6vw, 24px); }
.cta__note { font-size: 13px; color: rgba(242, 235, 224, .45); }

.store-badge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 22px; border-radius: 12px;
  background: #000; border: 1px solid rgba(242, 235, 224, .18);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .4);
  transition: border-color .2s ease, transform .2s ease;
}
.store-badge:hover { border-color: rgba(242, 235, 224, .4); transform: translateY(-2px); }
.store-badge svg { width: 26px; height: 28px; flex: none; }
.store-badge__text { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.store-badge__top { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: rgba(242, 235, 224, .7); }
.store-badge__name { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 18px; color: var(--ink); }

/* About -------------------------------------------------------------------- */
.about__inner {
  max-width: 780px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 22px;
}
.about__title { margin: 0; font-weight: 900; font-size: clamp(30px, 4.6vw, 48px); line-height: 1.08; letter-spacing: -.01em; }
.about__text { margin: 0; text-wrap: pretty; font-size: clamp(16px, 2vw, 18.5px); line-height: 1.7; color: rgba(242, 235, 224, .75); }
.tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 6px; }
.tag { padding: 9px 20px; border-radius: 99px; border: 1px solid rgba(242, 235, 224, .14); font-size: 14px; font-weight: 600; color: rgba(242, 235, 224, .8); }

/* Footer ------------------------------------------------------------------- */
.footer { position: relative; overflow: clip; background: var(--bg-footer); border-top: 1px solid rgba(242, 235, 224, .06); padding: clamp(70px, 10vh, 110px) clamp(20px, 5vw, 64px) 40px; }
.footer__glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 55% 60% at 50% 115%, rgba(232, 163, 61, .1), transparent 70%); }
.footer__inner { position: relative; max-width: 1160px; margin: 0 auto; display: flex; flex-direction: column; gap: clamp(48px, 7vh, 64px); }
.contact { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 18px; }
.contact__title { margin: 0; font-weight: 900; font-size: clamp(28px, 4.4vw, 44px); letter-spacing: -.01em; }
.contact__text { margin: 0; max-width: 480px; text-wrap: pretty; font-size: 16.5px; line-height: 1.6; color: rgba(242, 235, 224, .7); }
.contact__cta {
  display: inline-flex; align-items: center; gap: 10px; padding: 15px 30px; border-radius: 12px;
  background: rgba(232, 163, 61, .12); border: 1px solid rgba(232, 163, 61, .4);
  color: var(--accent); font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 16.5px;
  transition: background .2s ease;
}
.contact__cta:hover { background: rgba(232, 163, 61, .2); color: var(--accent-hover); }

.footer__bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px;
  padding-top: 28px; border-top: 1px solid rgba(242, 235, 224, .08);
  font-size: 14px; color: rgba(242, 235, 224, .5);
}
.footer__copy { display: flex; align-items: center; gap: 10px; }
.footer__logo { width: 26px; height: 26px; font-size: 14px; border-radius: 7px; }
.footer__links { display: flex; align-items: center; gap: 24px; }
.footer__links a { color: rgba(242, 235, 224, .6); }
.footer__links a:hover { color: var(--ink); }
