:root {
  --bg: #eef5ff;
  --card: #ffffff;
  --ink: #111827;
  --muted: #5b6472;
  --accent: #0672cb;
  --accent-dark: #055aa0;
  --midnight: #0c1626;
  --ice: #e7f1ff;
  --shadow: 0 22px 50px rgba(12, 22, 38, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  position: relative;
  min-height: 100vh;
}

.page-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(6, 114, 203, 0.18), transparent 45%),
    radial-gradient(circle at 80% 12%, rgba(12, 22, 38, 0.2), transparent 55%),
    linear-gradient(160deg, #f7fbff, #e3efff 60%, #edf5ff);
  z-index: -1;
}

.brand-badge {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--accent);
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  display: grid;
  place-items: center;
  letter-spacing: 1px;
}

.brand-title {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
}

.brand-sub {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 2px;
}

.pill {
  background: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.hero-card {
  background: var(--card);
  border-radius: 28px;
  box-shadow: var(--shadow);
  animation: lift-in 0.9s ease both;
}

.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  font-weight: 600;
}

.hero-title {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.3rem, 3.3vw, 3.5rem);
  margin: 16px 0;
  line-height: 1.05;
}

.hero-title span {
  color: var(--accent);
}

.hero-text {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 92%;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 16px;
}

.chip {
  padding: 8px 14px;
  border-radius: 999px;
  background: #f2f4f7;
  font-size: 13px;
  font-weight: 600;
  animation: fade-in 0.8s ease both;
}

.chip-row .chip:nth-child(1) { animation-delay: 0.1s; }
.chip-row .chip:nth-child(2) { animation-delay: 0.2s; }
.chip-row .chip:nth-child(3) { animation-delay: 0.3s; }

.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.checklist li {
  margin-bottom: 10px;
  padding-left: 28px;
  position: relative;
  color: var(--muted);
  animation: fade-in 0.8s ease both;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.checklist li:nth-child(1) { animation-delay: 0.15s; }
.checklist li:nth-child(2) { animation-delay: 0.25s; }
.checklist li:nth-child(3) { animation-delay: 0.35s; }
.checklist li:nth-child(4) { animation-delay: 0.45s; }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: fade-in 0.8s ease both;
}

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  font-weight: 600;
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn-outline-dark {
  border: 1px solid #d7d9dd;
  color: var(--ink);
}

.note {
  margin-top: 16px;
  font-size: 12px;
  color: #8a909b;
}

.product-panel {
  background: var(--midnight);
  color: #fff;
  border-radius: 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  animation: lift-in 1s ease both;
}

.product-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(6, 114, 203, 0.25), transparent 40%);
  pointer-events: none;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.panel-title {
  font-family: "Oswald", sans-serif;
  letter-spacing: 2px;
  font-size: 1.05rem;
  font-weight: 600;
}

.panel-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.panel-tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.product-card {
  margin-top: 24px;
}

.product-plate {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.plate-stripe {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 114, 203, 0.25), transparent 40%);
}

.plate-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.plate-image {
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
}

.plate-image img {
  max-width: 100%;
  height: auto;
}

.plate-logo {
  margin-top: 18px;
  font-family: "Oswald", sans-serif;
  letter-spacing: 3px;
  font-weight: 600;
}

.plate-title {
  font-size: 1.4rem;
  font-weight: 600;
}

.plate-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  margin-bottom: 16px;
}

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

.tool {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 10px;
  font-size: 12px;
}

.mini-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 16px;
}

.mini-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: rgba(255, 255, 255, 0.7);
}

.mini-value {
  font-size: 1.4rem;
  font-weight: 600;
}

.mini-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 16px;
}

.feature-title {
  font-weight: 600;
  margin-bottom: 6px;
}

.feature-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.spec-strip {
  background: #ffffff;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.spec-title {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 12px;
  color: var(--accent);
}

.spec-text {
  color: var(--muted);
  margin-top: 6px;
}

.site-footer {
  margin-top: 30px;
  background: #0c1626;
  color: rgba(255, 255, 255, 0.7);
}

.footer-text {
  font-size: 12px;
}

.footer-text a {
  color: #fff;
  text-decoration: none;
}

.footer-text a:hover {
  text-decoration: underline;
}

@keyframes lift-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
  .pill {
    display: none;
  }

  .hero-text {
    max-width: 100%;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .plate-tools {
    grid-template-columns: 1fr;
  }
}
