/* Spinzy Digital — static site stylesheet */

:root {
  --bg: #f7f9fc;
  --panel: #ffffff;
  --text: #101828;
  --muted: #5b6478;
  --border: #e2e6ef;
  --accent: #2451e0;
  --accent-dark: #16327a;
  --accent-hover: #1c3fb8;
  --accent-tint: #eaf0ff;
  --max-width: 860px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

header.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--panel);
}

header.site-header .wrap {
  max-width: 1100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}

.brand {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand:hover {
  text-decoration: none;
}

header.site-header .contact {
  font-size: 0.9rem;
  color: var(--muted);
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}

section:last-of-type {
  border-bottom: none;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

h1 {
  font-size: 3.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0 0 16px;
  color: #0a1230;
}

h2 {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  color: #0a1230;
}

h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 8px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  color: #0a1230;
}

.lede {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 640px;
  margin: 0 0 24px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  font-weight: 600;
  padding: 13px 22px;
  border-radius: 8px;
  border: none;
}

.btn:hover {
  filter: brightness(1.08);
  text-decoration: none;
}

.btn[aria-disabled="true"] {
  background: #b9c6ee;
  cursor: default;
  pointer-events: none;
}

.pill {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--panel);
}

.text-link {
  color: var(--accent);
  font-weight: 600;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 700px) {
  .card-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2.1rem; }
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.03);
}

.card-body {
  flex: 1;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  margin-bottom: 16px;
  display: block;
}

.card h3 {
  border-top: none;
  padding-top: 0;
  font-size: 1.3rem;
}

.card p {
  color: var(--muted);
}

.card .btn {
  margin-top: 20px;
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
}

@media (max-width: 700px) {
  .feature-grid { grid-template-columns: 1fr; }
}

.feature-grid p {
  color: var(--muted);
  margin: 0 0 16px;
}

p {
  color: var(--text);
}

section p.muted, .muted {
  color: var(--muted);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

th, td {
  text-align: left;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 400;
}

th {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

footer.site-footer {
  border-top: 1px solid var(--border);
  background: var(--panel);
}

footer.site-footer .wrap {
  max-width: 1100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 0.9rem;
  color: var(--muted);
}

footer.site-footer .footer-links {
  display: flex;
  gap: 20px;
}

.legal h2 {
  margin-top: 32px;
}

.legal h2:first-of-type {
  margin-top: 0;
}

.updated {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: -8px;
  margin-bottom: 28px;
}
