/* smeeper.css — shared styles */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Barlow:wght@300;400;500&family=DM+Mono:wght@400;500&display=swap');

:root {
  --bg:      #111110;
  --bg2:     #191917;
  --bg3:     #202020;
  --bg4:     #272725;
  --bg5:     #2e2e2b;
  --border:  #2e2e2b;
  --border2: #3d3d39;
  --border3: #4e4e48;
  --text:    #e6e2d8;
  --text2:   #9e9888;
  --text3:   #626058;
  --text4:   #3e3c36;
  --accent:  #c07828;
  --accent2: #9e6018;
  --adim:    rgba(192,120,40,0.10);
  --adim2:   rgba(192,120,40,0.06);
  --green:   #467840;
  --gdim:    rgba(70,120,64,0.14);
  --red:     #a03428;
  --rdim:    rgba(160,52,40,0.14);
  --font-h:  'Barlow Condensed', sans-serif;
  --font-b:  'Barlow', sans-serif;
  --font-m:  'DM Mono', monospace;
  --r: 1px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font-b); font-size: 15px; line-height: 1.55; min-height: 100vh; -webkit-font-smoothing: antialiased; }
::selection { background: var(--accent); color: #000; }
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--border3); }

/* STRIPE */
.stripe { height: 2px; background: repeating-linear-gradient(90deg, var(--accent) 0, var(--accent) 16px, var(--bg4) 16px, var(--bg4) 20px); }

/* NAV */
nav {
  background: var(--bg2); border-bottom: 1px solid var(--border);
  height: 50px; display: flex; align-items: center;
  padding: 0 20px; position: sticky; top: 0; z-index: 200;
}
.logo { font-family: var(--font-h); font-size: 24px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--accent); text-decoration: none; flex-shrink: 0; }
.logo-sub { font-family: var(--font-m); font-size: 9px; color: var(--text4); letter-spacing: 1px; align-self: center; margin-left: 8px; border-left: 1px solid var(--border2); padding-left: 10px; white-space: nowrap; }
.nav-space { flex: 1; }
.nav-links { display: flex; height: 50px; }
.nav-links a { display: flex; align-items: center; height: 100%; padding: 0 16px; color: var(--text2); text-decoration: none; font-family: var(--font-h); font-size: 13px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; border-left: 1px solid var(--border); transition: color .12s, background .12s; white-space: nowrap; }
.nav-links a:hover { color: var(--text); background: var(--bg3); }
.nav-links a.active { color: var(--accent); background: var(--adim2); }
.nav-links a.cta { background: var(--accent); color: var(--bg); border-left-color: var(--accent); font-weight: 700; }
.nav-links a.cta:hover { background: var(--accent2); }
.nav-links a:last-child { border-right: 1px solid var(--border); }

/* FOOTER */
footer { border-top: 1px solid var(--border); background: var(--bg2); padding: 24px; margin-top: 48px; }
.foot-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.foot-logo { font-family: var(--font-h); font-size: 18px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--text3); text-decoration: none; }
footer p { font-family: var(--font-m); font-size: 9px; color: var(--text3); letter-spacing: .5px; }
.foot-links { display: flex; gap: 18px; flex-wrap: wrap; }
.foot-links a { font-family: var(--font-m); font-size: 9px; color: var(--text3); text-decoration: none; letter-spacing: 1px; text-transform: uppercase; transition: color .12s; }
.foot-links a:hover { color: var(--text2); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-h); font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 10px 18px; border: 1px solid var(--border2); background: var(--bg3); color: var(--text2); cursor: pointer; text-decoration: none; transition: all .12s; border-radius: var(--r); white-space: nowrap; }
.btn:hover { background: var(--bg4); color: var(--text); border-color: var(--border3); }
.btn-primary { background: var(--accent); color: var(--bg); border-color: var(--accent); }
.btn-primary:hover { background: var(--accent2); border-color: var(--accent2); color: var(--bg); }
.btn-full { width: 100%; }
.btn-sm { font-size: 10px; padding: 7px 13px; letter-spacing: 1.5px; }
.btn-ghost { background: transparent; color: var(--text3); border-color: var(--border); }
.btn-ghost:hover { color: var(--text2); background: var(--bg3); }
.btn:disabled { opacity: .5; cursor: not-allowed; }

/* FORM FIELDS */
.field { margin-bottom: 15px; }
.fl { display: block; font-family: var(--font-m); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--text3); margin-bottom: 5px; }
.fl span { color: var(--accent); }
.field input, .field select, .field textarea { width: 100%; background: var(--bg3); border: 1px solid var(--border); color: var(--text); font-family: var(--font-b); font-size: 14px; padding: 10px 12px; outline: none; transition: border-color .12s; border-radius: var(--r); appearance: none; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--border2); }
.field input::placeholder, .field textarea::placeholder { color: var(--text3); }
.field select option { background: var(--bg3); color: var(--text); }
.field textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.fh { font-family: var(--font-m); font-size: 9px; color: var(--text3); margin-top: 4px; line-height: 1.5; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.row3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }

/* STATUS MESSAGES */
.msg { display: none; padding: 11px 13px; margin-bottom: 12px; font-family: var(--font-m); font-size: 10px; letter-spacing: .3px; line-height: 1.6; border-radius: var(--r); }
.msg.success { background: rgba(70,120,64,.15); border: 1px solid rgba(70,120,64,.3); color: #6aaa60; }
.msg.error { background: rgba(160,52,40,.15); border: 1px solid rgba(160,52,40,.3); color: #d06050; }
.msg.info { background: var(--adim); border: 1px solid rgba(192,120,40,.25); color: var(--accent); }

/* PAGE WRAP */
.page-wrap { max-width: 1200px; margin: 0 auto; padding: 28px 22px; }
.narrow-wrap { max-width: 680px; margin: 0 auto; padding: 34px 22px 60px; }

/* SECTION LABEL */
.sec-lbl { font-family: var(--font-h); font-size: 20px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.sec-lbl::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* PROSE (for about/terms/safety pages) */
.prose { max-width: 680px; }
.prose h2 { font-family: var(--font-h); font-size: 22px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text); margin: 32px 0 12px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.prose h2:first-child { margin-top: 0; }
.prose p { font-size: 14px; color: var(--text2); line-height: 1.8; margin-bottom: 14px; }
.prose ul { margin: 0 0 14px 0; padding-left: 0; list-style: none; }
.prose ul li { font-size: 14px; color: var(--text2); line-height: 1.7; padding: 4px 0 4px 18px; position: relative; }
.prose ul li::before { content: '—'; position: absolute; left: 0; color: var(--text3); font-family: var(--font-m); }
.prose strong { color: var(--text); font-weight: 500; }
.prose a { color: var(--accent); text-decoration: none; }
.prose a:hover { text-decoration: underline; }

/* INFO BOX */
.info-box { background: var(--bg2); border: 1px solid var(--border); border-left: 2px solid var(--accent); padding: 14px 16px; margin-bottom: 20px; }
.info-box strong { font-family: var(--font-h); font-size: 14px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text); display: block; margin-bottom: 4px; }
.info-box p { font-size: 13px; color: var(--text2); line-height: 1.55; margin: 0; }

@media (max-width: 600px) { .row2, .row3 { grid-template-columns: 1fr; } .nav-links a:not(.cta):not(:first-child) { display: none; } }
</style>
