:root {
  --bg: #050b18;
  --bg2: #07112a;
  --surface: rgba(255, 255, 255, 0.06);
  --surface2: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.12);
  --border2: rgba(255, 255, 255, 0.18);
  --text: rgba(255, 255, 255, 0.9);
  --muted: rgba(255, 255, 255, 0.7);
  --muted2: rgba(255, 255, 255, 0.55);
  --accent: #60a5fa;
  --accent2: #38bdf8;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 10px 24px rgba(0, 0, 0, 0.22);
  --ring: color-mix(in srgb, var(--accent) 22%, transparent);
  --font-body: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-display: Space Grotesk, Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --radius: 16px;
  --radius-sm: 12px;
  --max: 1120px;
}

html[data-theme="dark"] {
  --bg: #050b18;
  --bg2: #07112a;
  --surface: rgba(255, 255, 255, 0.06);
  --surface2: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.12);
  --border2: rgba(255, 255, 255, 0.18);
  --text: rgba(255, 255, 255, 0.9);
  --muted: rgba(255, 255, 255, 0.7);
  --muted2: rgba(255, 255, 255, 0.55);
  --accent: #60a5fa;
  --accent2: #38bdf8;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 10px 24px rgba(0, 0, 0, 0.22);
  --ring: color-mix(in srgb, var(--accent) 22%, transparent);
  --font-body: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-display: Space Grotesk, Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --radius: 16px;
  --radius-sm: 12px;
}


* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background:
    radial-gradient(1100px 620px at 72% -10%, color-mix(in srgb, var(--accent2) 18%, transparent), transparent 62%),
    radial-gradient(980px 560px at 0% 0%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 62%),
    linear-gradient(180deg, #030818 0%, #050b18 40%, #07112a 100%);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 1;
  background:
    radial-gradient(900px 520px at 12% 8%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 64%),
    radial-gradient(780px 500px at 86% 16%, color-mix(in srgb, var(--accent2) 12%, transparent), transparent 64%),
    radial-gradient(2px 2px at 18% 26%, rgba(255, 255, 255, 0.22) 40%, transparent 41%),
    radial-gradient(1px 1px at 72% 18%, rgba(255, 255, 255, 0.16) 40%, transparent 41%),
    radial-gradient(1.5px 1.5px at 62% 64%, rgba(255, 255, 255, 0.18) 40%, transparent 41%),
    radial-gradient(1px 1px at 28% 74%, rgba(255, 255, 255, 0.14) 40%, transparent 41%),
    radial-gradient(1.5px 1.5px at 88% 72%, rgba(255, 255, 255, 0.15) 40%, transparent 41%);
  animation: twinkle 5.5s ease-in-out infinite;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background-image: url("shroders cat2.png");
  background-repeat: repeat;
  background-size: 900px auto;
  background-position: 60% 30%;
  opacity: 0.07;
  filter: saturate(1.05) contrast(1.05);
  mix-blend-mode: screen;
}

@keyframes twinkle {
  0% {
    opacity: 0.72;
    filter: brightness(0.98);
  }
  35% {
    opacity: 1;
    filter: brightness(1.04);
  }
  70% {
    opacity: 0.82;
    filter: brightness(1);
  }
  100% {
    opacity: 0.72;
    filter: brightness(0.98);
  }
}

#top {
  height: 0;
  overflow: hidden;
}

a {
  color: inherit;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid var(--border);
}

.skip-link:focus {
  left: 12px;
  z-index: 9999;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: color-mix(in srgb, var(--bg) 60%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--border) 55%, transparent);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex: 1 1 auto;
  min-width: 320px;
  min-height: 44px;
}

.hero-title,
.section-head h2,
.card-title,
.vendor-body h3,
.bullet-title,
.footer-brand {
  font-family: var(--font-display);
}

.icon {
  width: 18px;
  height: 18px;
  color: color-mix(in srgb, var(--accent2) 70%, var(--text));
  flex: 0 0 auto;
}

.title-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.title-row .icon {
  transform: translateY(1px);
}

.brand-text {
  font-weight: 700;
  letter-spacing: 0.2px;
  font-size: 44px;
  line-height: 1.05;
  padding: 2px 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  font-size: 14px;
  padding: 10px 10px;
  border-radius: 10px;
}

.nav a:hover {
  color: var(--text);
  background: color-mix(in srgb, var(--surface) 85%, transparent);
}

.nav-cta {
  border: 1px solid transparent;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 90%, #000) 0%, color-mix(in srgb, var(--accent2) 90%, #000) 100%);
  color: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 10px 20px color-mix(in srgb, var(--accent2) 14%, transparent);
}

.nav-cta:hover {
  filter: brightness(1.02);
}


.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 10px;
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.8);
  margin: 4px 0;
}

.hero {
  position: relative;
  padding: 80px 0 56px;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}

.hero-copy {
  align-self: center;
}

.hero-visual {
  position: relative;
  border-radius: calc(var(--radius) + 18px);
  border: none;
  background: transparent;
  height: 100%;
  min-height: 0;
  box-shadow: none;
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
}

.hero-visual-img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 18px;
  border-radius: inherit;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}

.hero-title {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 46px);
  letter-spacing: -0.02em;
}

.hero-slogan {
  margin: 12px 0 0;
  font-size: clamp(18px, 2.2vw, 24px);
  color: var(--muted);
  line-height: 1.5;
  max-width: 46ch;
}

.hero-lead {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
  max-width: 70ch;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 90%, #000) 0%, color-mix(in srgb, var(--accent2) 90%, #000) 100%);
  color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 20px color-mix(in srgb, var(--accent2) 14%, transparent);
}

.btn-primary:hover {
  filter: brightness(1.02);
}

.btn-secondary {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
}

.btn-secondary:hover {
  background: color-mix(in srgb, var(--surface2) 80%, transparent);
}

.hero-highlights {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.highlight {
  padding: 14px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--ring) 35%, transparent) inset;
  display: grid;
  gap: 10px;
}

.highlight-title {
  font-weight: 700;
  font-size: 13px;
}

.highlight-desc {
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.hero-card {
  position: relative;
}

.card {
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface2) 95%, transparent) 0%, color-mix(in srgb, var(--surface) 90%, transparent) 100%);
  border: 1px solid color-mix(in srgb, var(--border) 75%, transparent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}

.card-title {
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.card-text {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.card-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--accent) 82%, var(--text));
  margin-bottom: 10px;
}

.card-link {
  display: inline-flex;
  margin-top: 14px;
  font-weight: 600;
  font-size: 14px;
  color: color-mix(in srgb, var(--accent2) 85%, var(--text));
  text-decoration: none;
}

.card-link:hover {
  text-decoration: underline;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.chip {
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid color-mix(in srgb, var(--border) 75%, transparent);
  color: rgba(255, 255, 255, 0.82);
}

.hero-bg {
  position: absolute;
  inset: -200px -200px auto -200px;
  height: 520px;
  background:
    radial-gradient(closest-side at 20% 20%, color-mix(in srgb, var(--accent) 22%, transparent), transparent 60%),
    radial-gradient(closest-side at 80% 30%, color-mix(in srgb, var(--accent2) 20%, transparent), transparent 60%);
  pointer-events: none;
}

.section {
  padding: 64px 0;
  scroll-margin-top: 84px;
}

#solutions {
  scroll-margin-top: 84px;
}

.section-alt {
  background: color-mix(in srgb, var(--surface) 50%, transparent);
  border-top: 1px solid color-mix(in srgb, var(--border) 50%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--border) 50%, transparent);
}

.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 26px;
}

.section-head.compact {
  margin-bottom: 18px;
}

.section-head h2 {
  margin: 0;
  font-size: 26px;
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 72ch;
  line-height: 1.6;
}

.grid {
  display: grid;
  gap: 14px;
}

.cards {
  grid-template-columns: repeat(4, 1fr);
}


.two-col {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: stretch;
}

.two-col > div {
  display: flex;
  flex-direction: column;
}

.bullets {
  display: grid;
  gap: 12px;
  flex: 1;
}

.bullet {
  padding: 14px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
}

.bullet-title {
  font-weight: 700;
  font-size: 14px;
}

.bullet-desc {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.about-card a {
  margin-top: 14px;
}

.about-card {
  height: 100%;
}

.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.10);
  margin: 16px 0;
}

.mini {
  display: grid;
  gap: 4px;
  margin-top: 10px;
}

.mini-label {
  font-size: 12px;
  color: var(--muted2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}

.mini-value {
  font-size: 14px;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.form {
  background: var(--surface);
  border: 1px solid color-mix(in srgb, var(--border) 75%, transparent);
  border-radius: var(--radius);
  padding: 16px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.field label {
  font-size: 13px;
  font-weight: 600;
  color: color-mix(in srgb, var(--text) 80%, transparent);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 12px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid color-mix(in srgb, var(--border) 90%, transparent);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  color: var(--text);
  outline: none;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: color-mix(in srgb, var(--accent) 55%, transparent);
  box-shadow: 0 0 0 4px var(--ring);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 14px;
}

.form-hint {
  margin: 0;
  color: var(--muted2);
  font-size: 12px;
}

.form-status {
  margin-top: 10px;
  font-size: 13px;
  color: color-mix(in srgb, var(--accent) 85%, var(--text));
  min-height: 18px;
}

.contact-line {
  margin: 10px 0 0;
  font-size: 14px;
}

.contact-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.contact-line a {
  text-decoration: none;
  border-bottom: 1px dashed color-mix(in srgb, var(--border2) 60%, transparent);
}

.contact-line a:hover {
  border-bottom-color: color-mix(in srgb, var(--accent2) 55%, transparent);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.pill {
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--border) 80%, transparent);
  background: color-mix(in srgb, var(--surface) 85%, transparent);
  color: color-mix(in srgb, var(--text) 92%, transparent);
  font-weight: 600;
  font-size: 12px;
}

.pill:hover {
  background: color-mix(in srgb, var(--surface2) 75%, transparent);
}

.site-footer {
  padding: 38px 0 26px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}

.footer-brand {
  font-weight: 800;
  letter-spacing: -0.01em;
}

.footer-text {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.footer-right {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-right a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 10px;
}

.footer-right a:hover {
  background: color-mix(in srgb, var(--surface) 80%, transparent);
  color: var(--text);
}

.footer-bottom {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted2);
  font-size: 12px;
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 320px;
    height: auto;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-col,
  .contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    position: absolute;
    right: 20px;
    top: 60px;
    width: min(320px, calc(100vw - 40px));
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 10px;
    border-radius: 16px;
    background: color-mix(in srgb, var(--bg) 88%, transparent);
    border: 1px solid color-mix(in srgb, var(--border) 75%, transparent);
    backdrop-filter: blur(10px);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 12px 12px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .cards,
  .vendor-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-right {
    justify-content: flex-start;
  }
}
