/* Izitech Website Styles */
:root {
  --bg: #0b1020;
  /* dark base */
  --surface: #12172a;
  /* cards */
  --text: #e9eefb;
  /* main text */
  --muted: #b8c0d9;
  /* secondary text */
  --primary: #635bff;
  /* brand */
  --primary-ink: #ffffff;
  --ring: rgba(99, 91, 255, 0.45);
  --ok: #2ec27e;
  --warn: #f6c343;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: radial-gradient(1200px 800px at 80% -10%, rgba(99, 91, 255, 0.18), transparent),
    radial-gradient(900px 600px at -10% 20%, rgba(0, 200, 255, 0.12), transparent),
    var(--bg);
  line-height: 1.6;
}

/* Layout */
.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  backdrop-filter: saturate(160%) blur(10px);
  background: rgba(11, 16, 32, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 20;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.2px;
}

.brand {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), #00c8ff);
  display: grid;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand img {
  width: 100%;
  object-fit: cover;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 18px;
  font-weight: 600;
}

nav a:hover {
  color: var(--text);
}

/* Hero */
.hero {
  padding: 64px 0 36px;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 32px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(99, 91, 255, 0.12);
  color: #dcd9ff;
  font-weight: 700;
  letter-spacing: .2px;
  border: 1px solid rgba(99, 91, 255, 0.35);
}

h1 {
  font-size: clamp(28px, 6vw, 46px);
  line-height: 1.1;
  margin: 14px 0 10px;
}

.lead {
  font-size: clamp(15px, 2.4vw, 18px);
  color: var(--muted);
  margin-bottom: 22px;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  @media screen and (max-width: 600px) {
    flex-direction: column;
  }
}

.btn {
    width: fit-content;
    display: block;
  appearance: none;
  border: none;
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .06s ease, box-shadow .2s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn.primary {
  background: var(--primary);
  color: var(--primary-ink);
  box-shadow: 0 10px 24px -10px var(--ring), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Card grid */
.grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 40px -24px rgba(0, 0, 0, 0.5);
}

.card h3 {
  margin: 10px 0 6px;
  font-size: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--muted);
  font-weight: 700;
  font-size: 12px;
}

.check {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--ok);
  display: inline-block;
}

section {
  padding: 48px 0;
}

.section-title {
  font-size: 24px;
  margin-bottom: 12px;
}

.muted {
  color: var(--muted);
}

/* Footer */
footer {
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0 48px;
  color: var(--muted);
}

footer a {
  color: var(--muted);
  text-decoration: none;
}

footer a:hover {
  color: var(--text);
}

/* Responsive */
@media (max-width: 900px) {
  .hero .wrap {
    grid-template-columns: 1fr;
  }
}

.ms-auto{
    margin-inline-start: auto;
}