/* ── Shared VEOS sub-page styles ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

::selection { background: #F5C518; color: #080808; }
::-moz-selection { background: #F5C518; color: #080808; }

.y::selection, [style*="color:#F5C518"]::selection,
[style*="color: #F5C518"]::selection { background: #efefef; color: #080808; }
.y::-moz-selection { background: #efefef; color: #080808; }
:root {
  --bg: #080808; --white: #efefef; --yellow: #F5C518;
  --muted: #888; --border: #1f1f1f; --card: #101010;
  --font: 'Inter', sans-serif;
}
html { scroll-behavior: smooth; }
html, body { scrollbar-width: none; -ms-overflow-style: none; }
html::-webkit-scrollbar, body::-webkit-scrollbar { display: none; }
body { background: var(--bg); color: var(--white); font-family: var(--font); line-height: 1.7; overflow-x: hidden; }
img { user-select: none; -webkit-user-select: none; -webkit-user-drag: none; pointer-events: none; }
a { color: var(--yellow); text-decoration: none; }
a:hover { text-decoration: underline; }

nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 40px;
  background: rgba(8,8,8,0.85); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { font-size: 22px; font-weight: 900; letter-spacing: 1px; color: var(--white); text-decoration: none; transition: opacity 0.2s; }
.nav-logo:hover { opacity: 0.75; text-decoration: none; }


.wrap { max-width: 800px; margin: 0 auto; padding: 80px 24px 120px; }
.eyebrow { font-size: 12px; font-weight: 700; color: var(--yellow); letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 18px; }
h1 { font-size: clamp(40px, 7vw, 72px); font-weight: 900; line-height: 1.02; letter-spacing: -2px; margin-bottom: 28px; }
h1 .y { color: var(--yellow); }
h2 { font-size: clamp(22px, 3.5vw, 30px); font-weight: 800; letter-spacing: -0.5px; margin: 56px 0 18px; }
h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
p { font-size: 16px; color: #cfcfcf; margin-bottom: 18px; }
.lead { font-size: 19px; color: #dcdcdc; }

ul { margin: 0 0 18px; padding-left: 0; list-style: none; }
li { font-size: 16px; color: #cfcfcf; padding: 10px 0 10px 28px; position: relative; border-bottom: 1px solid var(--border); }
li:last-child { border-bottom: none; }
li::before { content: '✦'; position: absolute; left: 0; top: 10px; color: var(--yellow); font-size: 13px; }

.card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 26px 24px; margin-bottom: 16px; }
.card p:last-child { margin-bottom: 0; }

.steps { counter-reset: step; }
.step { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 26px 26px 26px 76px; margin-bottom: 16px; position: relative; }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 24px; top: 24px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--yellow); color: #000;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 15px;
}
.step h3 { margin-bottom: 6px; }
.step p { margin: 0; font-size: 15px; color: var(--muted); }

.grid2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 24px 0 8px; }
@media (max-width: 600px) { .grid2 { grid-template-columns: 1fr; } }

/* form */
.form-field { margin-bottom: 18px; }
.form-label { display: block; font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 8px; letter-spacing: 0.02em; }
.form-input, .form-textarea {
  width: 100%; background: #111; border: 1px solid var(--border);
  border-radius: 12px; padding: 14px 16px; color: var(--white);
  font-family: var(--font); font-size: 15px; outline: none; transition: border-color 0.2s;
}
.form-input:focus, .form-textarea:focus { border-color: var(--yellow); }
.form-input::placeholder, .form-textarea::placeholder { color: #555; }
.form-textarea { resize: vertical; min-height: 120px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  padding: 10px 18px; border: 1px solid var(--border); border-radius: 100px;
  background: transparent; color: var(--muted); font-size: 13px; font-weight: 600;
  cursor: pointer; font-family: var(--font); transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.chip:hover { border-color: #444; color: var(--white); }
.chip.selected { border-color: var(--yellow); color: var(--yellow); background: rgba(245,197,24,0.06); }
.submit-btn {
  display: inline-block; background: var(--yellow); color: #000; border: none;
  font-weight: 800; font-size: 15px; padding: 16px 38px; border-radius: 100px;
  letter-spacing: 0.03em; cursor: pointer; font-family: var(--font); transition: background 0.2s, transform 0.15s;
}
.submit-btn:hover { background: #fff; transform: translateY(-2px); }
.form-success { display: none; text-align: center; padding: 30px 0; }
.form-success.show { display: block; }
.form-success .icon { font-size: 40px; color: var(--yellow); margin-bottom: 14px; }
.form-success h3 { font-size: 24px; font-weight: 900; margin-bottom: 8px; }

.cta-box { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 36px; margin-top: 56px; text-align: center; }
.cta-box h3 { font-size: 24px; font-weight: 900; margin-bottom: 10px; }
.cta-box p { margin-bottom: 22px; }
.cta-btn { display: inline-block; background: var(--yellow); color: #000; font-weight: 800; font-size: 14px; padding: 14px 32px; border-radius: 100px; letter-spacing: 0.05em; }
.cta-btn:hover { text-decoration: none; background: #fff; }

.work-item { display: flex; align-items: center; gap: 22px; background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 22px; margin-bottom: 14px; transition: border-color 0.2s; }
.work-item:hover { border-color: var(--yellow); }
.work-logo { width: 66px; height: 66px; border-radius: 14px; background: #161616; display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; }
.work-logo img { max-width: 70%; max-height: 70%; object-fit: contain; }
.work-info { flex: 1; }
.work-info .wname { font-size: 17px; font-weight: 800; color: var(--white); margin-bottom: 3px; }
.work-info .wmeta { font-size: 13px; color: var(--muted); }
.work-item .warrow { color: var(--muted); font-size: 20px; }

@media (max-width: 600px) { nav { padding: 16px 20px; } }
