:root {
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #0f172a;
  background: #f8fafc;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 85% 8%, rgba(37, 99, 235, 0.13), transparent 29rem),
    #f8fafc;
}

a {
  color: #1d4ed8;
}

a:hover {
  color: #1e40af;
}

.site-header {
  border-bottom: 1px solid #dbe3ef;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
}

.nav,
.page,
.footer-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #0f172a;
  font-weight: 800;
  text-decoration: none;
}

.logo {
  display: grid;
  width: 42px;
  height: 42px;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 4px;
  padding: 9px 8px 10px;
  border-radius: 13px;
  background: #1d4ed8;
  box-shadow: 0 6px 16px rgba(29, 78, 216, 0.22);
}

.logo span {
  display: block;
  border-radius: 3px 3px 1px 1px;
  background: white;
}

.logo span:nth-child(1) {
  height: 14px;
}

.logo span:nth-child(2) {
  height: 22px;
  background: #bfdbfe;
}

.logo span:nth-child(3) {
  height: 11px;
}

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

.nav-links a {
  color: #475569;
  font-size: 0.94rem;
  font-weight: 650;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: #1d4ed8;
}

.page {
  padding: 74px 0 88px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 64px;
  min-height: 520px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #1d4ed8;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(2.65rem, 6vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.lead {
  max-width: 650px;
  margin-bottom: 28px;
  color: #475569;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  line-height: 1.65;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  background: white;
  color: #0f172a;
  font-weight: 750;
  text-decoration: none;
}

.button:hover {
  border-color: #93c5fd;
  color: #1d4ed8;
}

.button-primary,
.button-primary:hover {
  border-color: #1d4ed8;
  background: #1d4ed8;
  color: white;
}

.product-card {
  padding: 26px;
  border: 1px solid #dbe3ef;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.product-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e8f0;
}

.product-card-header strong {
  display: block;
  font-size: 1.1rem;
}

.pill {
  padding: 7px 10px;
  border-radius: 999px;
  background: #dbeafe;
  color: #1e40af;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.feature-list {
  display: grid;
  gap: 13px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #334155;
  line-height: 1.5;
}

.feature-list li::before {
  content: "✓";
  display: grid;
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  place-items: center;
  border-radius: 50%;
  background: #dcfce7;
  color: #166534;
  font-size: 0.75rem;
  font-weight: 900;
}

.content-page {
  max-width: 820px;
}

.content-page h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
}

.content-card {
  margin-top: 34px;
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid #dbe3ef;
  border-radius: 22px;
  background: white;
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.07);
}

.content-card h2 {
  margin-top: 36px;
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.content-card h2:first-child {
  margin-top: 0;
}

.content-card p,
.content-card li {
  color: #475569;
  line-height: 1.75;
}

.content-card ul {
  padding-left: 22px;
}

.notice {
  margin: 24px 0;
  padding: 18px;
  border: 1px solid #bfdbfe;
  border-radius: 14px;
  background: #eff6ff;
  color: #1e3a8a;
}

.site-footer {
  border-top: 1px solid #dbe3ef;
  background: white;
}

.footer-inner {
  display: flex;
  min-height: 100px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #64748b;
  font-size: 0.9rem;
}

.footer-inner p {
  margin: 0;
}

@media (max-width: 780px) {
  .nav,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
  }

  .nav-links {
    width: 100%;
    gap: 16px;
    overflow-x: auto;
  }

  .page {
    padding-top: 48px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
