 
:root {
  --bg-body: #050816;
  --bg-section: #060b1a;
  --bg-alt: #0c1224;
  --bg-card: #0f172a;
  --bg-card-soft: #151b2e;

  --primary-blue: #0066ff;
  --primary-blue-soft: #1f75ff;
  --accent-blue: #00a0ff;
  --accent-soft: #81d8f0;

  --border-subtle: rgba(255, 255, 255, 0.06);
  --text-main: #e5ecff;
  --text-muted: #9ca4c2;
  --text-soft: #c0c7e4;

  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.65);
  --radius-card: 18px;
  --radius-panel: 22px;
  --radius-pill: 999px;

  --font-heading: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --font-body: "Roboto", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;

  
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 32px;
  --space-8: 40px;
  --space-9: 48px;
  --space-10: 64px;
}

 
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-body);
  color: var(--text-main);
}

 
button,
a {
  -webkit-tap-highlight-color: transparent;
}

 
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: #ffffff;
  margin-top: 0;
}

p {
  margin-top: 0;
  color: var(--text-soft);
  line-height: 1.6;
}

a {
  color: var(--accent-soft);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--primary-blue-soft);
  text-decoration: none;
}

 
a:focus-visible {
  outline: 3px solid rgba(0, 160, 255, 0.18);
  outline-offset: 2px;
}



 

/* Limit forced compositing & will-change to only the elements that truly need it; broad application causes jank on some macOS/Chrome setups. */
 
@media (max-width: 576px) {
  .btn-lg,
  .btn-primary,
  .btn-outline-light {
    width: 100%;
    display: block;
    margin: 0.5rem 0 !important;
    text-align: center;
  }

  .cta-band a + a,
  .hosting-final-cta a + a,
  .services-final-cta a + a,
  .process-cta a + a,
  .portfolio-cta a + a {
    margin-top: 0.75rem !important;
  }
}
