:root {
  --font-sans: InterVariable, system-ui, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bg: #ffffff;
  --text: #000000;
  --muted: #4a5565;
  --border: rgba(15, 23, 42, 0.10);
  --shadow: 0 14px 40px rgba(15, 23, 42, 0.10);
  --primary: #2563eb;
  --primary-2: #1d4ed8;
  --radius: 16px;
  --container: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

@font-face {
    font-family: InterVariable;
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url(../font/InterVariable.woff2?v=4.1) format('woff2');
}

html,
body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-logo {
  height: 40px;
  border-radius: 8px;
  object-fit: contain;
}

.brand-name {
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav {
  display: flex;
  align-items: center;
}

.nav-link {
  font-weight: 600;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  color: #0f172a;
}

.nav-link:hover {
  background: rgba(37, 99, 235, 0.08);
}

.hero {
  padding: 50px 0 50px;
  background-image: url("../public/placeholder.png");
  background-size: cover;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.hero-copy {
  padding: 40px;
  background-color: white;
  border-radius: 10px;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  color: #2563eb;
  font-weight: 600;
}

.hero-title {
  margin: 0 0 12px;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
  max-width: 64ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 16px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.22);
}

.btn-primary:hover {
  background: var(--primary-2);
}

.btn-ghost {
  background: rgba(15, 23, 42, 0.03);
  border-color: rgba(15, 23, 42, 0.10);
  color: #0f172a;
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.06);
}

.media-card {
  border-radius: 22px;
  border: 1px solid var(--border);
  background: #ffffff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.media-illustration {
  /* aspect-ratio: 560 / 360; */
  display: grid;
  place-items: center;
  padding: 0;
}

.media-illustration img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.stats {
  padding: 18px 0;
  background: #f3f4f6;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 8px 0;
  gap: 8px;
}

.stat {
  text-align: center;
  padding: 14px 10px;
}

.stat-value {
  font-weight: 600;
  font-size: 18px;
}

.stat-label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.capabilities {
  padding: 34px 0 40px;
}

.section-head {
  text-align: center;
  margin-bottom: 18px;
}

.section-title {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.section-subtitle {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
  padding: 16px;
}

.icon {
  width: 42px;
  height: 42px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
}

.icon svg {
  width: 22px;
  height: 22px;
}

.icon-blue {
  color: #2563eb;
  background: rgba(37, 99, 235, 0.10);
}

.icon-green {
  color: #16a34a;
  background: rgba(22, 163, 74, 0.10);
}

.icon-purple {
  color: #7c3aed;
  background: rgba(124, 58, 237, 0.10);
}

.card-title {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 600;
}

.card-text {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 18px 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-link:hover {
  color: #0f172a;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .media-card {
    max-width: 720px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .brand-name {
    max-width: 210px;
  }
}
