
:root {
  --bg: #f4f9ff;
  --bg-soft: #eef6ff;
  --card: rgba(255,255,255,0.88);
  --text: #16324f;
  --muted: #5c7692;
  --line: rgba(22, 50, 79, 0.12);
  --primary: #2d6fb7;
  --primary-strong: #1f5b99;
  --accent: #d8a24b;
  --shadow: 0 20px 50px rgba(26, 67, 114, 0.12);
  --radius: 24px;
  --max: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, #ffffff 0%, var(--bg) 38%, #eaf3ff 100%);
  line-height: 1.58;
}

a { color: var(--primary-strong); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(244, 249, 255, 0.84);
  border-bottom: 1px solid rgba(22, 50, 79, 0.06);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: var(--text);
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(255,255,255,0.94);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 8px 18px rgba(45,111,183,0.15);
  padding: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.96rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 0.2s ease;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: white;
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-strong) 100%);
  box-shadow: 0 10px 22px rgba(31, 91, 153, 0.24);
}

.button.secondary {
  color: var(--primary-strong);
  background: rgba(255,255,255,0.78);
  border-color: rgba(45,111,183,0.16);
}

.button:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.hero {
  padding: 70px 0 38px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: stretch;
}

.card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.hero-card {
  padding: 34px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(245,250,255,0.82)),
    linear-gradient(120deg, rgba(45,111,183,0.07), rgba(216,162,75,0.06));
}

.hero-side {
  padding: 26px;
  display: grid;
  gap: 16px;
  align-content: start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 14px;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.1;
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  font-size: 2rem;
  margin-bottom: 16px;
}

h2.page-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 10px;
}

.hero-card p,
.hero-side p,
.card p,
li,
.page-copy,
.policy-content,
.demo-intro {
  color: var(--muted);
}

.hero-card p {
  font-size: 1.06rem;
  max-width: 62ch;
  margin: 0 0 22px;
}

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

.hero-note {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0,1fr));
  margin-top: 10px;
}

.stat {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(22, 50, 79, 0.08);
}

.stat strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}

.stat span {
  color: var(--muted);
  font-size: 0.92rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  font-size: 0.84rem;
  font-weight: 700;
  color: #83611d;
  background: rgba(216,162,75,0.14);
  border: 1px solid rgba(216,162,75,0.28);
  padding: 8px 12px;
  border-radius: 999px;
}

section {
  padding: 18px 0 28px;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.section-head h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
}

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

.grid-2 {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.feature-card,
.contact-card,
.page-card,
.demo-card {
  padding: 24px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 800;
  background: linear-gradient(180deg, rgba(45,111,183,0.13), rgba(45,111,183,0.08));
  color: var(--primary-strong);
  margin-bottom: 16px;
}

.feature-card h3,
.contact-card h3,
.page-card h3,
.demo-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.contact-item {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.66);
  border: 1px solid rgba(22, 50, 79, 0.08);
}

.contact-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

.link-grid {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.page-shell {
  padding: 42px 0 46px;
}

.page-card {
  max-width: 920px;
}

.page-card h2 {
  margin-top: 24px;
  font-size: 1.18rem;
}

.page-card ul {
  padding-left: 20px;
}

.demo-grid {
  display: grid;
  gap: 18px;
}

.demo-card p {
  margin-bottom: 16px;
}

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

.shot {
  min-height: 290px;
  border-radius: 18px;
  border: 1px dashed rgba(45,111,183,0.22);
  background: rgba(255,255,255,0.65);
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.shot img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

.placeholder {
  text-align: center;
  color: #7b90a8;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer {
  padding: 26px 0 42px;
}

.footer-card {
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.small {
  font-size: 0.92rem;
  color: var(--muted);
}

@media (max-width: 960px) {
  .hero-grid,
  .grid-3,
  .grid-2,
  .shot-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 700px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-card,
  .hero-side,
  .feature-card,
  .contact-card,
  .page-card,
  .demo-card,
  .footer-card {
    padding: 20px;
  }

  h1 {
    font-size: 2.3rem;
  }
}
