/* Mate Business Suit Manager — shared styles (suitbussinessmananger.com) */
:root {
  --azure: #0088ff;
  --azure-deep: #0064e0;
  --sky: #00bdff;
  --cyan: #28d4d8;
  --positive: #12a37f;
  --bg: #ffffff;
  --bg-alt: #f5f7fb;
  --surface: #ffffff;
  --text: #0b0e14;
  --text-dim: #55606e;
  --border: #e4e8ee;
  --shadow: 0 1px 2px rgba(11, 14, 20, 0.05), 0 8px 28px rgba(11, 14, 20, 0.07);
  --radius: 18px;
  --max: 1180px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0b0c11;
    --bg-alt: #10121a;
    --surface: #151722;
    --text: #f6f7fb;
    --text-dim: #9ea8b8;
    --border: #272b36;
    --shadow: 0 1px 2px rgba(0, 0, 0, 0.4), 0 10px 32px rgba(0, 0, 0, 0.45);
  }
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: var(--azure); text-decoration: none; }
a:hover, a:focus-visible { text-decoration: underline; }
img { max-width: 100%; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* Logo tile — azure gradient app-icon style */
.logo-tile {
  display: inline-flex; align-items: center; justify-content: center; flex: none;
  background: linear-gradient(135deg, var(--sky), var(--azure-deep));
  border-radius: 26%;
  box-shadow: 0 4px 12px rgba(0, 136, 255, 0.35);
}
.logo-tile img { width: 72%; height: 72%; object-fit: contain; }

/* ─── Header ─── */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(1.6) blur(16px);
  -webkit-backdrop-filter: saturate(1.6) blur(16px);
  border-bottom: 1px solid var(--border);
}
.site-header .wrap {
  display: flex; align-items: center; gap: 28px;
  height: 64px;
}
.brand { display: flex; align-items: center; gap: 11px; color: var(--text); font-weight: 800; font-size: 1.02rem; letter-spacing: -0.02em; }
.brand:hover { text-decoration: none; }
.brand .logo-tile { width: 36px; height: 36px; }
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 26px; font-size: 0.94rem; font-weight: 600; }
.site-nav a { color: var(--text); opacity: 0.75; transition: opacity 120ms ease; }
.site-nav a:hover { opacity: 1; text-decoration: none; }
.site-nav .btn { font-size: 0.88rem; padding: 9px 18px; }
@media (max-width: 720px) {
  .site-header .wrap { gap: 14px; }
  .site-nav { gap: 16px; font-size: 0.86rem; }
  .brand span { display: none; }
  .site-nav .btn { display: none; }
}

/* ─── Buttons ─── */
.btn {
  display: inline-block; padding: 14px 28px; border-radius: 999px;
  font-weight: 700; font-size: 1rem; letter-spacing: -0.01em;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--azure-deep); color: #fff;
  box-shadow: 0 6px 20px rgba(0, 100, 224, 0.35);
}
.btn-primary:hover { background: var(--azure); }
.btn-ghost { border: 1.5px solid var(--border); color: var(--text); background: var(--surface); }
.btn-ghost:hover { border-color: var(--text-dim); }

/* ─── Sections ─── */
section { padding: clamp(3.5rem, 7vw, 6.5rem) 0; }
section.alt { background: var(--bg-alt); }
.eyebrow { color: var(--azure); font-weight: 800; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.14em; margin-bottom: 0.9rem; }
section h2, .page-head h1 {
  font-size: clamp(1.9rem, 1.2rem + 2.8vw, 3rem);
  line-height: 1.12; letter-spacing: -0.032em; font-weight: 800;
}
section p.sub { color: var(--text-dim); max-width: 660px; font-size: 1.08rem; margin-top: 1rem; margin-bottom: 2.6rem; }

/* Cards */
.grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 2px 4px rgba(11,14,20,0.05), 0 18px 44px rgba(11,14,20,0.12); }
.card .ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 14px; font-size: 1.45rem; margin-bottom: 18px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--azure) 14%, var(--surface)), color-mix(in srgb, var(--cyan) 14%, var(--surface)));
  border: 1px solid color-mix(in srgb, var(--azure) 22%, var(--border));
}
.card h3 { font-size: 1.12rem; margin-bottom: 8px; letter-spacing: -0.02em; font-weight: 750; }
.card p { color: var(--text-dim); font-size: 0.96rem; }
.card h3 a { color: inherit; }

/* FAQ */
.faq details {
  background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
  padding: 20px 24px; margin-bottom: 14px; box-shadow: var(--shadow);
}
.faq details[open] { border-color: color-mix(in srgb, var(--azure) 40%, var(--border)); }
.faq summary { cursor: pointer; font-weight: 700; letter-spacing: -0.015em; font-size: 1.02rem; }
.faq summary::marker { color: var(--azure); }
.faq details p { margin-top: 12px; color: var(--text-dim); }

/* Legal prose */
.page-head { padding: clamp(3.2rem, 6vw, 5rem) 0 0; }
.prose h2 { margin-top: 2.6rem; margin-bottom: 0.5rem; font-size: 1.4rem; letter-spacing: -0.02em; }
.prose h3 { margin-top: 1.6rem; margin-bottom: 0.4rem; font-size: 1.05rem; }
.prose p, .prose li { color: var(--text-dim); margin-bottom: 0.85rem; font-size: 1.02rem; }
.prose ul { padding-left: 1.35rem; margin-bottom: 1rem; }
.prose .updated { font-size: 0.88rem; color: var(--text-dim); margin-bottom: 2.2rem; }
.prose strong { color: var(--text); }

/* Contact strip */
.contact-strip {
  display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 30px 34px; margin-top: 1.6rem;
}
.contact-strip strong { display: block; font-size: 1.15rem; letter-spacing: -0.015em; }
.contact-strip span { color: var(--text-dim); font-size: 0.94rem; max-width: 560px; display: block; margin-top: 4px; }

/* ─── Footer (Meta-style multi-column) ─── */
.site-footer { background: var(--bg-alt); border-top: 1px solid var(--border); padding: 4rem 0 2.6rem; margin-top: 3rem; }
.footer-grid {
  display: grid; gap: 40px;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  margin-bottom: 3rem;
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand .brand .logo-tile { width: 40px; height: 40px; }
.footer-brand p { color: var(--text-dim); font-size: 0.94rem; max-width: 300px; }
.footer-col h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { color: var(--text); font-size: 0.95rem; font-weight: 550; opacity: 0.85; }
.footer-col a:hover { opacity: 1; }
.footer-base {
  border-top: 1px solid var(--border); padding-top: 1.8rem;
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center;
  color: var(--text-dim); font-size: 0.88rem;
}
.footer-base nav { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-base a { color: var(--text-dim); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .card { transition: none; }
}
