:root {
  color-scheme: dark;
  --bg: #07111f;
  --bg-soft: rgba(12, 24, 43, 0.78);
  --panel: rgba(10, 20, 36, 0.82);
  --panel-border: rgba(157, 188, 255, 0.16);
  --text: #ecf3ff;
  --muted: #a8bad6;
  --accent: #52d0c4;
  --accent-strong: #7ee6da;
  --accent-2: #8aa8ff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(82, 208, 196, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(138, 168, 255, 0.16), transparent 30%),
    linear-gradient(180deg, #050b14 0%, #07111f 40%, #050b14 100%);
  color: var(--text);
  min-height: 100vh;
}

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

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  pointer-events: none;
}

.orb-one {
  width: 360px;
  height: 360px;
  background: rgba(82, 208, 196, 0.22);
  top: -120px;
  left: -80px;
}

.orb-two {
  width: 280px;
  height: 280px;
  background: rgba(138, 168, 255, 0.18);
  right: -80px;
  top: 180px;
}

.topbar,
main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  position: sticky;
  top: 0;
  backdrop-filter: blur(16px);
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark,
.logo-icon {
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #03111a;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.brand-mark {
  width: 52px;
  height: 52px;
  font-size: 1.1rem;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-copy strong,
.hero h1,
.section h2 {
  font-family: "Space Grotesk", sans-serif;
}

.brand-copy span,
.nav a {
  color: var(--muted);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 28px;
  padding: 40px 0 24px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  color: var(--accent-strong);
  margin: 0 0 14px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 0.96;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #041019;
}

.btn-secondary {
  border-color: var(--panel-border);
  background: rgba(255, 255, 255, 0.03);
}

.hero-badges,
.services,
.brands {
  display: grid;
  gap: 12px;
}

.hero-badges {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-badges span,
.services article,
.brands article,
.hero-card,
.hosting-panel,
.contact-card {
  background: var(--bg-soft);
  border: 1px solid var(--panel-border);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-badges span {
  border-radius: 18px;
  padding: 14px 16px;
  color: var(--text);
}

.hero-card {
  border-radius: 28px;
  padding: 22px;
}

.logo-card {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.logo-icon {
  width: 60px;
  height: 60px;
  font-size: 1.2rem;
  object-fit: cover;
  padding: 0;
}

.logo-card p,
.services h3,
.brands h3,
.contact-card h2,
.hosting-panel h3,
.section h2 {
  margin: 0;
}

.logo-card span,
.services p,
.brands p,
.hosting-panel p,
.contact-card p {
  color: var(--muted);
  line-height: 1.65;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.info-grid article,
.services article,
.brands article {
  border-radius: 20px;
  padding: 18px;
}

.section {
  padding: 30px 0;
}

.section-heading {
  margin-bottom: 18px;
}

.section h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.services {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hosting-panel {
  border-radius: 28px;
  padding: 24px;
  display: grid;
  gap: 16px;
}

.hosting-panel ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text);
  display: grid;
  gap: 10px;
}

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

.contact-card {
  border-radius: 30px;
  padding: 28px;
}

.contact-card a {
  color: var(--accent-strong);
}

@media (max-width: 920px) {
  .hero,
  .services,
  .brands {
    grid-template-columns: 1fr;
  }

  .topbar {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .topbar,
  main {
    width: min(100% - 20px, 1180px);
  }

  .hero-badges,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 24px;
  }

  .nav {
    gap: 12px;
  }
}
