/* Standard Computer marketing site — kit styles. Builds on colors_and_type.css */
* { box-sizing: border-box; }
body { margin: 0; background: var(--bg); color: var(--fg1); font-family: var(--font-sans); }
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
a { text-decoration: none; }

/* ---------- shared bits ---------- */
.eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin: 0; }
.eyebrow.on-dark { color: var(--accent); }
.serif-it { font-family: var(--font-display); font-style: italic; font-weight: 600; color: var(--accent); }
.section { padding: 88px 0; }
.section-muted { background: var(--bg-muted); }
.section-title { font-weight: 900; font-size: 38px; line-height: 1.06; letter-spacing: -0.02em; margin: 10px 0 36px; max-width: 18ch; }

.btn { font-family: var(--font-sans); font-weight: 700; font-size: 15px; border: 0; border-radius: var(--r-md); padding: 12px 22px; cursor: pointer; letter-spacing: -0.01em; display: inline-flex; align-items: center; gap: 9px; transition: background .16s ease, color .16s ease, box-shadow .16s ease; line-height: 1; white-space: nowrap; }
.btn-lg { font-size: 16px; padding: 15px 26px; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); }
.btn-primary:active { background: var(--accent-press); }
.btn-ink { background: var(--sc-ink); color: #fff; }
.btn-ink:hover { background: #000; }
.btn-ghost-light { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.32); padding: 13px 24px; }
.btn-ghost-light:hover { border-color: #fff; }

/* ---------- nav ---------- */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(254,254,252,0.92); backdrop-filter: blur(6px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: var(--container); margin: 0 auto; padding: 14px 32px; display: flex; align-items: center; gap: 28px; }
.nav-logo { display: flex; align-items: center; gap: 11px; }
.nav-square { width: 42px; height: 42px; border-radius: var(--r-md); background: var(--sc-ink); display: flex; align-items: center; justify-content: center; }
.nav-square img { width: 30px; height: 30px; display: block; }
.nav-wm { font-weight: 900; font-size: 19px; letter-spacing: -0.02em; line-height: 1; color: var(--fg1); }
.nav-wm small { display: block; font-size: 8.5px; font-weight: 700; letter-spacing: 0.24em; color: var(--accent); margin-top: 3px; }
.nav-links { display: flex; gap: 26px; margin-left: 6px; }
.nav-links a { color: var(--fg2); font-weight: 600; font-size: 15px; }
.nav-links a:hover { color: var(--accent); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 18px; }
.nav-phone { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-mono); font-size: 14px; font-weight: 500; color: var(--fg1); }
.nav-phone:hover { color: var(--accent); }
.nav-burger { display: none; background: none; border: 0; color: var(--fg1); cursor: pointer; }
.nav-mobile { display: none; }

/* ---------- hero ---------- */
.hero { position: relative; background: var(--sc-ink); color: #fff; overflow: hidden; }
.hero-stripe { position: absolute; top: -40px; bottom: -40px; left: 72%; width: 150px; background: var(--accent); transform: skewX(-12deg); }
.hero-inner { max-width: var(--container); margin: 0 auto; padding: 104px 32px 96px; position: relative; z-index: 1; }
.hero-title { font-weight: 900; font-size: 78px; line-height: 1.02; letter-spacing: -0.035em; margin: 14px 0 0; max-width: 14ch; color: #fff; }
.hero-sub { font-size: 20px; line-height: 1.55; color: rgba(255,255,255,0.82); max-width: 52ch; margin: 22px 0 0; }
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-checks { list-style: none; padding: 0; margin: 40px 0 0; display: flex; gap: 28px; flex-wrap: wrap; }
.hero-checks li { display: flex; align-items: center; gap: 9px; font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.9); }
.hero-checks svg { color: var(--accent); }

/* ---------- services ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); padding: 28px; transition: box-shadow .18s ease; }
.svc-card:hover { box-shadow: var(--shadow-md); }
.svc-icon { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: var(--r-md); background: var(--sc-ink); color: var(--accent); margin-bottom: 18px; }
.svc-card h3 { margin: 0 0 8px; font-size: 21px; font-weight: 700; letter-spacing: -0.01em; }
.svc-card p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--fg2); }

/* ---------- stats ---------- */
.stats { background: var(--sc-ink); color: #fff; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); padding: 52px 32px; gap: 24px; }
.stat { text-align: left; border-left: 3px solid var(--accent); padding-left: 18px; }
.stat-n { font-size: 46px; font-weight: 900; letter-spacing: -0.03em; line-height: 1; }
.stat-l { font-size: 14px; color: rgba(255,255,255,0.72); margin-top: 8px; }

/* ---------- software + poc ---------- */
.sw-row { display: flex; flex-wrap: wrap; gap: 12px; }
.sw-chip { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--border); border-radius: var(--r-pill); padding: 10px 18px; font-weight: 700; font-size: 15px; color: var(--fg1); }
.sw-chip svg { color: var(--accent); }
.poc { display: flex; align-items: center; gap: 24px; margin-top: 52px; background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); padding: 28px 30px; }
.poc img { width: 104px; height: 104px; border-radius: 50%; border: 3px solid var(--accent); object-fit: cover; flex: none; }
.role { font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin: 0 0 6px; }
.poc-name { font-size: 26px; font-weight: 800; letter-spacing: -0.015em; margin: 0 0 6px; }
.poc-line { margin: 0; font-size: 16px; line-height: 1.6; color: var(--fg2); max-width: 60ch; }
.poc-line a { color: var(--accent); font-family: var(--font-mono); }

/* ---------- cta ---------- */
.cta { background: var(--accent); color: #fff; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 64px 32px; flex-wrap: wrap; }
.cta-title { font-size: 34px; font-weight: 900; line-height: 1.1; letter-spacing: -0.02em; margin: 0; max-width: 20ch; color: #fff; }
.cta-sub { margin: 12px 0 0; font-size: 18px; color: rgba(255,255,255,0.9); }
.cta .btn-primary { background: var(--sc-ink); }
.cta .btn-primary:hover { background: #000; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- footer ---------- */
.footer { background: var(--sc-ink); color: rgba(255,255,255,0.74); padding: 64px 0 30px; }
.footer-inner { display: flex; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
.footer-brand { max-width: 360px; }
.footer-tag { margin: 18px 0 0; font-size: 15px; line-height: 1.6; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; margin: 20px 0 0; font-size: 14px; }
.footer-contact span, .footer-contact a { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.74); }
.footer-contact a:hover { color: var(--accent); }
.footer-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-cols h4 { color: #fff; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; margin: 0 0 14px; }
.footer-cols a { display: block; color: rgba(255,255,255,0.74); font-size: 15px; margin-bottom: 9px; line-height: 1.35; }
.footer-cols a:hover { color: var(--accent); }
.footer-rule { height: 1px; background: rgba(255,255,255,0.12); margin: 44px 0 20px; }
.footer-base { display: flex; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,0.5); flex-wrap: wrap; gap: 10px; }
.footer-mono { font-family: var(--font-mono); }

/* ---------- modal ---------- */
.modal-scrim { position: fixed; inset: 0; background: rgba(17,17,17,0.55); display: flex; align-items: center; justify-content: center; padding: 24px; z-index: 100; animation: fade .16s ease both; }
.modal { background: #fff; border-radius: var(--r-xl); padding: 38px 40px 40px; width: 100%; max-width: 560px; position: relative; box-shadow: var(--shadow-lg); animation: pop .18s cubic-bezier(0.2,0,0,1) both; }
.modal-x { position: absolute; top: 18px; right: 18px; background: none; border: 0; color: var(--fg3); cursor: pointer; }
.modal-x:hover { color: var(--fg1); }
.modal-title { font-size: 30px; font-weight: 900; letter-spacing: -0.02em; margin: 8px 0 0; }
.modal-sub { font-size: 16px; color: var(--fg2); margin: 10px 0 24px; line-height: 1.55; }
.modal-sub a { color: var(--accent); font-family: var(--font-mono); }
.form { display: flex; flex-direction: column; gap: 16px; }
.field-row { display: flex; gap: 16px; }
.field { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.field span { font-size: 12px; font-weight: 700; color: var(--fg2); }
.field input, .field select { font-family: var(--font-sans); font-size: 15px; padding: 11px 13px; border: 1px solid var(--border); border-radius: var(--r-md); background: #fff; color: var(--fg1); }
.field input:focus, .field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255,103,0,0.18); }
.sent { text-align: center; padding: 12px 0 6px; }
.sent-check { display: inline-flex; align-items: center; justify-content: center; width: 70px; height: 70px; border-radius: 50%; background: rgba(46,139,87,0.12); color: var(--sc-success); margin-bottom: 8px; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes pop { from { transform: translateY(10px); } to { transform: none; } }

/* ---------- responsive ---------- */
@media (max-width: 880px) {
  .nav-links, .nav-phone, .nav-right .btn { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-mobile { display: flex; flex-direction: column; gap: 14px; padding: 18px 32px 24px; border-top: 1px solid var(--border); }
  .nav-mobile a { color: var(--fg1); font-weight: 600; }
  .nav-mobile .nav-phone { display: inline-flex; }
  .hero-title { font-size: 52px; }
  .hero-stripe { left: 80%; }
  .svc-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .field-row { flex-direction: column; }
  .poc { flex-direction: column; align-items: flex-start; }
}
