/* Rubi — Minimalist IT Solutions Styles */
:root {
  --bg: #0b0c0f;
  --bg-elev: #12141a;
  --text: #e8ebf0;
  --muted: #a7b0bf;
  --accent: #6ee7b7; /* mint */
  --accent-2: #7aa2f7; /* soft blue */
  --border: #232634;
  --pill-bg: #161922;
  --maxw: 980px;
}

@media (prefers-color-scheme: light) {
  :root {
    --bg: #ffffff;
    --bg-elev: #f7f8fa;
    --text: #0b1020;
    --muted: #51607a;
    --accent: #0ea5e9;
    --accent-2: #10b981;
    --border: #e8ecf2;
    --pill-bg: #f3f5f9;
  }
}

* { box-sizing: border-box; }
html, body { height: 100%; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: radial-gradient(1200px 600px at 80% -10%, rgba(110,231,183,0.08), transparent 50%),
              radial-gradient(1000px 500px at -10% 0%, rgba(122,162,247,0.08), transparent 50%),
              var(--bg);
  line-height: 1.6;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: static;
  width: auto; height: auto;
  padding: 8px 12px;
  background: var(--accent);
  color: #0b0c0f;
  border-radius: 8px;
  margin: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: saturate(140%) blur(10px);
  background: color-mix(in oklab, var(--bg), transparent 20%);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}
.logo {
  width: 24px; height: 24px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0b0c0f;
  border-radius: 6px;
  font-size: 14px;
  box-shadow: 0 4px 16px rgba(16,185,129,0.25);
}
.logo-img {
  height: 28px;
  width: auto;
  display: block;
  object-fit: contain;
}
.brand-name { letter-spacing: 0.2px; }

.nav { display: flex; gap: 18px; }
.nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}
.nav a:hover { color: var(--text); }

.hero {
  padding: 72px 0 32px;
  text-align: left;
}
.hero h1 {
  font-size: clamp(28px, 6vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 8px 0 12px;
}
.lead {
  font-size: clamp(16px, 2.4vw, 20px);
  color: var(--muted);
}
.cta { margin-top: 22px; }
.button {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0b0c0f;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 8px 28px rgba(16,185,129,0.25);
}
.button:hover { transform: translateY(-1px); }

.section { padding: 36px 0; }
.section h2 {
  font-size: 20px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.section p { margin: 0; }

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 8px 0 0;
}
.pill-list li {
  list-style: none;
  border: 1px solid var(--border);
  background: var(--pill-bg);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 14px;
}

.contact .email {
  display: inline-block;
  margin-top: 12px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}
.contact .email:hover { text-decoration: underline; }

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-elev);
  margin-top: 28px;
}
.footer-inner { padding: 18px 0; }
.footer-inner p {
  margin: 0;
  color: var(--muted);
}
.footer-inner a { color: var(--text); text-decoration: none; }
.footer-inner a:hover { text-decoration: underline; }
