/*
 * Bornbee Hosting - Design System v2.3.0
 * Clean product-led hosting UI with soft gradients, strong contrast,
 * responsive spacing, accessible focus states, and modern cards.
 */

:root {
  --brand-950: #10103f;
  --brand-900: #19136a;
  --brand-800: #2c1d93;
  --brand-700: #4027c6;
  --brand-600: #5b42f3;
  --brand-500: #755cff;
  --brand-400: #9a8cff;
  --brand-300: #c7c0ff;
  --brand-200: #e1ddff;
  --brand-100: #f0edff;
  --brand-50: #f8f7ff;

  --accent-700: #047857;
  --accent-600: #059669;
  --accent-500: #10b981;
  --accent-400: #34d399;
  --accent-300: #86efac;
  --accent-100: #dcfce7;
  --accent-50: #f0fdf4;

  --gold-500: #f59e0b;
  --rose-500: #f43f5e;
  --cyan-500: #06b6d4;

  --navy-950: #050816;
  --navy-900: #0b1020;
  --navy-850: #10172a;
  --navy-800: #172036;
  --navy-700: #24324d;

  --gray-950: #0b0f19;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-150: #eef0f4;
  --gray-100: #f3f4f6;
  --gray-75: #f6f7fb;
  --gray-50: #f9fafb;

  --white: #ffffff;
  --black: #000000;
  --cream: #fbf8ef;
  --lime-500: var(--accent-500);
  --lime-400: var(--accent-400);
  --blue-500: var(--brand-600);

  --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'SFMono-Regular', Consolas, monospace;

  --radius-xs: 8px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-2xl: 36px;
  --radius-full: 999px;

  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-sm: 0 4px 10px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 14px 34px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 22px 52px rgba(15, 23, 42, 0.14);
  --shadow-xl: 0 30px 80px rgba(15, 23, 42, 0.18);
  --shadow-glow: 0 18px 50px rgba(91, 66, 243, 0.26);

  --ease-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --ease-base: 240ms cubic-bezier(0.4, 0, 0.2, 1);
  --ease-entrance: 500ms cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: 600ms cubic-bezier(0.2, 0.8, 0.2, 1.1);

  --z-header: 100;
  --z-overlay: 200;
  --z-modal: 300;

  --header-height: 76px;
  --shell-max: 1180px;
  --shell-wide: 1360px;
  --shell-narrow: 760px;
  --section-y: clamp(64px, 8vw, 112px);
  --section-y-sm: clamp(44px, 6vw, 72px);
}

* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open { overflow: hidden; }
img, svg, video { max-width: 100%; height: auto; }
img { display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p, h1, h2, h3, h4, h5, h6 { margin: 0; }
table { border-collapse: collapse; width: 100%; }

:focus-visible {
  outline: 3px solid rgba(91, 66, 243, 0.35);
  outline-offset: 3px;
}
::selection { background: var(--brand-200); color: var(--brand-950); }

h1, h2, h3, h4, h5, h6 {
  color: var(--gray-950);
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.045em;
}
h1 { font-size: clamp(2.65rem, 7vw, 5.7rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.65rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.65rem); }
h4 { font-size: 1.1rem; }
p { line-height: 1.72; }
p + p { margin-top: 1rem; }

.bh-site { min-height: 100vh; overflow-x: clip; }
.bh-main { background: var(--white); }
.bh-shell {
  width: min(100%, var(--shell-max));
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 32px);
}
.bh-shell--narrow { width: min(100%, var(--shell-narrow)); }
.bh-shell--wide { width: min(100%, var(--shell-wide)); }

.bh-section { position: relative; padding-block: var(--section-y); }
.bh-section--sm { padding-block: var(--section-y-sm); }
.bh-section--lg { padding-block: clamp(88px, 10vw, 144px); }
.bh-section--light { background: var(--white); }
.bh-section--gray, .bh-section--cream {
  background:
    radial-gradient(circle at 8% 8%, rgba(117, 92, 255, 0.06), transparent 28%),
    linear-gradient(180deg, var(--gray-50), var(--white));
}
.bh-section--brand {
  background: linear-gradient(135deg, var(--brand-50), var(--accent-50));
}
.bh-section--accent {
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.28), transparent 26%),
    linear-gradient(135deg, var(--brand-700), var(--brand-500) 52%, var(--accent-500));
  color: rgba(255, 255, 255, 0.84);
}
.bh-section--dark {
  background:
    radial-gradient(circle at 18% 18%, rgba(117, 92, 255, 0.22), transparent 32%),
    radial-gradient(circle at 82% 15%, rgba(16, 185, 129, 0.18), transparent 30%),
    linear-gradient(135deg, var(--navy-950), var(--navy-850));
  color: rgba(255, 255, 255, 0.74);
}
.bh-section--dark h1,
.bh-section--dark h2,
.bh-section--dark h3,
.bh-section--accent h1,
.bh-section--accent h2,
.bh-section--accent h3 { color: var(--white); }

.bh-section__header {
  max-width: 760px;
  margin: 0 auto clamp(34px, 5vw, 58px);
  text-align: center;
}
.bh-section__header p {
  margin-top: 16px;
  color: var(--gray-500);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
}
.bh-section--dark .bh-section__header p,
.bh-section--accent .bh-section__header p { color: rgba(255, 255, 255, 0.72); }

.bh-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 14px;
  color: var(--brand-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.bh-kicker::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 5px rgba(91, 66, 243, 0.1);
}
.bh-kicker--lime { color: var(--accent-400); }
.bh-section__header .bh-kicker { margin-inline: auto; }
.bh-section--dark .bh-kicker,
.bh-section--accent .bh-kicker { color: var(--accent-300); }

.bh-content { max-width: 850px; }
.bh-content h2, .bh-content h3 { margin: 1.8em 0 0.65em; }
.bh-content p, .bh-content li { color: var(--gray-600); font-size: 1.04rem; }
.bh-content ul, .bh-content ol { margin: 1rem 0 1.25rem 1.25rem; list-style: disc; }
.bh-content a { color: var(--brand-700); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

.bh-skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 9999;
  transform: translateY(-160%);
  background: var(--brand-700);
  color: var(--white);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.bh-skip-link:focus { transform: translateY(0); }

@media (max-width: 640px) {
  :root { --header-height: 68px; }
  .bh-section { padding-block: 58px; }
  .bh-section__header { text-align: left; }
  .bh-section__header .bh-kicker { margin-inline: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}


/* Bornbee Hosting - foundation refinements v2.3.0 */
body {
  background:
    radial-gradient(circle at top, rgba(117, 92, 255, 0.04), transparent 22%),
    var(--white);
}
section[id] {
  scroll-margin-top: calc(var(--header-height) + 24px);
}
@media (max-width: 640px) {
  .bh-shell {
    padding-inline: 18px;
  }
}
