/* ==========================================================================
   United Sales Operations — base stylesheet
   Mobile first. No external fonts, no CDN, no network requests.
   ========================================================================== */

:root {
  --bg:        #06080C;
  --bg-2:      #0B0F16;
  --surface:   #10151F;
  --surface-2: #151B27;
  --line:      rgba(255, 255, 255, 0.09);
  --line-soft: rgba(255, 255, 255, 0.05);

  --text:      #F3F6FB;
  --text-2:    #A7B1C2;
  --text-3:    #6E7889;

  --accent:    #3D7BFF;
  --accent-2:  #6FA0FF;
  --accent-dim: rgba(61, 123, 255, 0.14);
  --green:     #33D69F;
  --green-dim: rgba(51, 214, 159, 0.13);
  --amber:     #F2B44C;

  --radius:    16px;
  --radius-sm: 10px;
  --maxw:      1080px;

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
          Arial, "Helvetica Neue", sans-serif;

  --shadow: 0 1px 2px rgba(0,0,0,.4), 0 8px 32px rgba(0,0,0,.28);
}

* { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { max-width: 100%; }

a { color: var(--accent-2); text-decoration: none; }
a:hover { color: #9CC0FF; }

h1, h2, h3 { margin: 0; line-height: 1.15; letter-spacing: -0.02em; font-weight: 700; }
p  { margin: 0; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

/* --------------------------------------------------------------- header -- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(6, 8, 12, 0.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 62px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
}
.brand:hover { color: var(--text); }

.brand-mark {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 9px;
  background: linear-gradient(145deg, var(--accent) 0%, #2450C8 100%);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff;
  box-shadow: 0 2px 10px rgba(61,123,255,.35);
}

.brand-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}
.brand-name span { color: var(--text-3); font-weight: 600; }

.header-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  white-space: nowrap;
}

/* ---------------------------------------------------------------- badges -- */

.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  color: var(--text-2);
  background: var(--surface);
}
.pill.accent { color: var(--accent-2); border-color: rgba(61,123,255,.3); background: var(--accent-dim); }
.pill.demo   { color: var(--amber); border-color: rgba(242,180,76,.3); background: rgba(242,180,76,.1); }
.pill.green  { color: var(--green); border-color: rgba(51,214,159,.28); background: var(--green-dim); }

.dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: currentColor;
  flex: 0 0 6px;
}
.dot.live { background: var(--green); box-shadow: 0 0 0 3px rgba(51,214,159,.16); }

/* --------------------------------------------------------------- buttons -- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 22px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 15px;
  font-weight: 650;
  line-height: 1;
  cursor: pointer;
  text-align: center;
  transition: transform .12s ease, background .16s ease, border-color .16s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(.985); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(61,123,255,.28);
}
.btn-primary:hover { background: #4E88FF; color: #fff; }

.btn-ghost {
  background: var(--surface);
  border-color: var(--line);
  color: var(--text);
}
.btn-ghost:hover { background: var(--surface-2); color: var(--text); }

.btn-block { width: 100%; }

/* ----------------------------------------------------------------- cards -- */

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 14px;
}

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.muted   { color: var(--text-2); }
.muted-3 { color: var(--text-3); }
.num     { font-variant-numeric: tabular-nums; font-feature-settings: "tnum" 1; }

/* ---------------------------------------------------------------- footer -- */

.site-footer {
  border-top: 1px solid var(--line-soft);
  margin-top: 64px;
  padding: 32px 0 44px;
  color: var(--text-3);
  font-size: 13px;
}
.site-footer .wrap { display: flex; flex-direction: column; gap: 14px; }
.footer-legal { font-size: 12px; line-height: 1.6; max-width: 720px; }

/* ------------------------------------------------------------ animations -- */

@keyframes riseIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}
.rise { animation: riseIn .5s cubic-bezier(.22,.8,.3,1) both; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
  border-radius: 6px;
}
