/* Velunoro style.css 22ea57f2532b */
:root {
  --bg: #FFF8F1;
  --surface: #FFFFFF;
  --text: #2A1F18;
  --soft: #7A6A5E;
  --accent: #E8744E;
  --accent2: #FFB07A;
  --border: #F0E2D2;
  --radius: 22px;
  --radius-sm: 12px;
  --shadow: 0 12px 32px rgba(232,116,78,.08);
}
*,*::before,*::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.18; margin: 0; color: var(--text); }
h1 { font-size: clamp(34px, 5vw, 58px); letter-spacing: -0.02em; }
h2 { font-size: clamp(26px, 3.5vw, 38px); letter-spacing: -0.01em; }
h3 { font-size: 20px; }
p { margin: 0 0 14px; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: #c95a36; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.container.narrow { max-width: 760px; }
.muted { color: var(--soft); }
.small { font-size: 13.5px; }
.center { text-align: center; }
.kicker {
  display: inline-block; padding: 6px 14px;
  background: rgba(232,116,78,0.12); color: var(--accent);
  border-radius: 999px; font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 22px;
}

/* === Top nav === */
.topnav {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 20;
}
.topnav-inner {
  max-width: 1180px; margin: 0 auto; padding: 16px 28px;
  display: flex; align-items: center; gap: 32px;
}
.brand { display: flex; align-items: center; gap: 10px; color: var(--text); font-weight: 800; }
.brand-mark {
  width: 36px; height: 36px; border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; display: grid; place-items: center;
  font-size: 18px; font-weight: 800; letter-spacing: -0.04em;
}
.brand-mark.sm { width: 28px; height: 28px; font-size: 14px; }
.brand-name { font-size: 20px; letter-spacing: -0.01em; }
.nav-links { list-style: none; padding: 0; margin: 0; display: flex; gap: 26px; flex: 1; }
.nav-links a { color: var(--soft); font-weight: 500; }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.link-quiet { color: var(--text); font-weight: 600; }
.link-quiet.inline { font-size: 15px; }

/* === Pill buttons === */
.btn-pill {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 26px; border-radius: 999px;
  background: var(--accent); color: #fff;
  font-weight: 700; font-size: 15px;
  border: 0; cursor: pointer; transition: all 0.15s;
  font-family: inherit;
}
.btn-pill:hover { background: #c95a36; color: #fff; transform: translateY(-1px); }
.btn-pill.big { padding: 16px 36px; font-size: 16.5px; }
.btn-pill.sm { padding: 8px 18px; font-size: 13.5px; }
.btn-pill.block { width: 100%; }
.btn-pill.inverse { background: #fff; color: var(--accent); }
.btn-pill.inverse:hover { background: var(--bg); color: #c95a36; }
.btn-ghost {
  display: inline-block; padding: 12px 24px; border-radius: 999px;
  background: transparent; color: var(--text); border: 1.5px solid var(--border);
  cursor: pointer; font-weight: 600; font-family: inherit;
}
.btn-ghost:hover { background: var(--bg); }

/* === Hero split === */
.hero-split {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 60px; align-items: center;
  max-width: 1280px; margin: 0 auto;
  padding: 80px 28px 100px;
}
.hero-left h1 { margin-bottom: 22px; }
.hero-left .lead { font-size: 19px; color: var(--soft); margin-bottom: 32px; max-width: 520px; line-height: 1.55; }
.hero-actions { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; margin-bottom: 44px; }
.hero-meta { display: flex; gap: 36px; padding-top: 28px; border-top: 1px solid var(--border); }
.hero-meta div { display: flex; flex-direction: column; gap: 4px; }
.hero-meta strong { font-size: 24px; font-weight: 800; }
.hero-meta span { font-size: 13px; color: var(--soft); }

.hero-right { position: relative; height: 460px; }
.hero-art { position: relative; width: 100%; height: 100%; }
.art-blob { position: absolute; border-radius: 50%; filter: blur(40px); opacity: 0.4; }
.art-blob-1 { width: 260px; height: 260px; background: var(--accent); top: 20px; right: 20px; }
.art-blob-2 { width: 200px; height: 200px; background: var(--accent2); bottom: 40px; left: 20px; }
.art-card {
  position: absolute; background: var(--surface); border-radius: var(--radius);
  padding: 18px; box-shadow: var(--shadow); width: 200px;
  display: flex; flex-direction: column; gap: 10px;
}
.art-card-a { top: 30px; left: 0; transform: rotate(-3deg); }
.art-card-b { top: 130px; right: 30px; transform: rotate(2deg); }
.art-card-c { bottom: 40px; left: 100px; transform: rotate(-1deg); }
.art-avatar { width: 54px; height: 54px; border-radius: 50%; }
.art-avatar.a1 { background: linear-gradient(135deg, #FFCBA1, #E8744E); }
.art-avatar.a2 { background: linear-gradient(135deg, #C7E5C2, #6FAA77); }
.art-avatar.a3 { background: linear-gradient(135deg, #BFD2E5, #5C7E9E); }
.art-line { height: 8px; background: #F0E2D2; border-radius: 4px; }
.art-line.w50 { width: 50%; }
.art-line.w60 { width: 60%; }
.art-line.w65 { width: 65%; }
.art-line.w70 { width: 70%; }
.art-line.w80 { width: 80%; }

/* === Bands === */
.band { padding: 80px 0; }
.band-pillars { background: var(--surface); }
.band-title { text-align: center; margin-bottom: 56px; }
.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; }
.pillar {
  background: var(--bg); border-radius: var(--radius); padding: 32px 28px;
  border: 1px solid var(--border);
}
.pillar-num {
  display: block; font-size: 14px; color: var(--accent); font-weight: 800;
  letter-spacing: 0.05em; margin-bottom: 16px;
}
.pillar h3 { margin-bottom: 10px; font-size: 19px; }
.pillar p { color: var(--soft); font-size: 15px; margin: 0; }

.band-quote { background: var(--bg); padding: 100px 28px; }
.band-quote blockquote { max-width: 760px; margin: 0 auto; padding: 0; text-align: center; }
.band-quote p { font-size: clamp(22px, 3vw, 30px); font-weight: 600; line-height: 1.4; margin-bottom: 24px; color: var(--text); }
.band-quote cite { font-style: normal; color: var(--soft); font-size: 15px; }

.band-faq { background: var(--surface); }
.faq-row {
  background: var(--bg); border-radius: var(--radius-sm); padding: 18px 22px;
  border: 1px solid var(--border); margin-bottom: 12px;
}
.faq-row summary { font-weight: 600; cursor: pointer; }
.faq-row p { color: var(--soft); margin: 12px 0 0; }

.band-cta { background: linear-gradient(135deg, var(--accent), var(--accent2)); color: #fff; text-align: center; }
.band-cta h2 { color: #fff; margin-bottom: 12px; }
.band-cta p { color: rgba(255,255,255,0.9); margin-bottom: 28px; font-size: 17px; }

/* === Forms (split form layout) === */
.form-split {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px;
  max-width: 1080px; margin: 0 auto;
  padding: 60px 28px 100px;
}
.form-left h1 { margin-bottom: 18px; font-size: clamp(30px, 4vw, 44px); }
.form-left .lead { font-size: 17px; color: var(--soft); margin-bottom: 28px; }
.form-perks { list-style: none; padding: 0; margin: 0 0 32px; }
.form-perks li { display: flex; align-items: center; gap: 12px; padding: 8px 0; color: var(--soft); }
.perk-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
}

.vform {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px;
  display: flex; flex-direction: column; gap: 18px;
  box-shadow: var(--shadow);
}
.vfield { display: flex; flex-direction: column; gap: 6px; }
.vfield label { font-size: 13px; color: var(--soft); font-weight: 600; letter-spacing: 0.02em; }
.vfield input, .vfield select, .vfield textarea {
  padding: 14px 16px; border: 1.5px solid var(--border); border-radius: 12px;
  background: #fff; font-size: 15px; font-family: inherit; color: var(--text);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.vfield input:focus, .vfield select:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(232,116,78,0.12);
}
.vhint { font-size: 12.5px; color: var(--soft); margin-top: 2px; }
.vfield-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.vcheck { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--soft); cursor: pointer; line-height: 1.5; }
.vcheck input { margin-top: 4px; flex-shrink: 0; width: 16px; height: 16px; cursor: pointer; }
.vmsg { display: none; padding: 12px 14px; border-radius: 10px; font-size: 14.5px; }
.vmsg.shown { display: block; }
.vmsg.ok { background: rgba(46,160,80,0.08); color: #1f7a3c; border: 1px solid rgba(46,160,80,0.2); }
.vmsg.err { background: rgba(192,57,73,0.08); color: #c03949; border: 1px solid rgba(192,57,73,0.2); }

/* Narrow form (login, confirm) */
.form-narrow { padding: 80px 28px; }
.form-card {
  max-width: 460px; margin: 0 auto; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 40px; box-shadow: var(--shadow);
}
.form-card h1 { margin-bottom: 8px; font-size: 28px; }
.form-card .muted { margin-bottom: 24px; }
.form-card .vform { box-shadow: none; padding: 0; border: 0; background: none; }
.form-card.center { text-align: center; }
.confirm-icon { font-size: 56px; margin-bottom: 16px; }

/* Text content (about/privacy/terms) */
.page-text { background: var(--surface); }
.text-content { padding: 60px 28px 100px; }
.text-content h1 { margin-bottom: 14px; }
.text-content h2 { margin: 38px 0 14px; font-size: 22px; }
.text-content .lead { font-size: 18px; color: var(--soft); margin-bottom: 28px; }
.text-content ul, .text-content ol { padding-left: 22px; }
.text-content li { margin-bottom: 8px; color: var(--soft); }
.text-content li strong { color: var(--text); }
.num-list { counter-reset: num; padding-left: 0; list-style: none; }
.num-list li { position: relative; padding-left: 44px; padding-bottom: 18px; }
.num-list li::before {
  counter-increment: num; content: counter(num, decimal-leading-zero);
  position: absolute; left: 0; top: 2px; font-weight: 800;
  color: var(--accent); font-size: 14px;
}

/* Footer */
.ftr { background: var(--text); color: rgba(255,255,255,0.85); padding: 60px 28px 32px; margin-top: 80px; }
.ftr-inner { max-width: 1180px; margin: 0 auto; }
.ftr-brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 18px; color: #fff; margin-bottom: 32px; }
.ftr-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.ftr-cols h5 { font-size: 14px; color: #fff; margin-bottom: 14px; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 700; }
.ftr-cols a { display: block; color: rgba(255,255,255,0.7); padding: 4px 0; font-size: 14.5px; }
.ftr-cols a:hover { color: #fff; }
.ftr-cols p { font-size: 14px; color: rgba(255,255,255,0.6); margin: 0 0 8px; }
.ftr-copy { margin-top: 24px; font-size: 13px; color: rgba(255,255,255,0.5); }

/* Cookie banner */
.cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  background: var(--text); color: #fff; border-radius: var(--radius);
  padding: 16px 22px; z-index: 30;
  display: flex; align-items: center; gap: 16px;
  max-width: 720px; margin: 0 auto;
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}
.cookie-banner p { margin: 0; font-size: 14px; flex: 1; }
.cookie-banner a { color: var(--accent2); }

/* Age modal */
.age-modal {
  position: fixed; inset: 0; background: rgba(42,31,24,0.7);
  display: grid; place-items: center; z-index: 40; padding: 22px;
}
.age-card {
  background: var(--surface); border-radius: var(--radius); padding: 40px 36px;
  max-width: 420px; width: 100%; text-align: center;
}
.age-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; font-weight: 800; font-size: 22px;
  display: grid; place-items: center; margin: 0 auto 18px;
}
.age-card h3 { margin-bottom: 10px; font-size: 22px; }
.age-card p { color: var(--soft); margin-bottom: 22px; }
.age-actions { display: flex; gap: 12px; justify-content: center; }

@media (max-width: 920px) {
  .nav-links { display: none; }
  .hero-split, .form-split { grid-template-columns: 1fr; gap: 40px; padding-bottom: 60px; }
  .hero-right { height: 320px; order: -1; }
  .hero-meta { gap: 22px; }
  .vfield-row { grid-template-columns: 1fr; }
}
