:root {
  color-scheme: light;
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-soft: #eef4ff;
  --ink: #0b1220;
  --muted: #536173;
  --line: #d9e2ef;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --green: #16a34a;
  --amber: #d97706;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--blue);
}

p {
  margin: 0;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  font-size: clamp(1.78rem, 4.8vw, 3.55rem);
  max-width: 15ch;
}

h2 {
  font-size: clamp(1.42rem, 3.5vw, 2.45rem);
  max-width: 17ch;
}

h3 {
  font-size: 1rem;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--ink);
  color: white;
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(248, 250, 252, 0.86);
  border-bottom: 1px solid rgba(217, 226, 239, 0.78);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(100% - 2rem, var(--max));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 0.55rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  width: 136px;
  height: auto;
  max-height: 42px;
  object-fit: contain;
}

.nav-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.nav-links {
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: 78px;
  display: none;
  grid-template-columns: 1fr;
  gap: 0.25rem;
  padding: 0.65rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.nav-links.is-open {
  display: grid;
}

.nav-links a {
  padding: 0.78rem 0.85rem;
  border-radius: 6px;
  color: #334155;
  font-size: 0.95rem;
  font-weight: 650;
}

.nav-links a[aria-current="page"],
.nav-links a:hover {
  background: #eef4ff;
  color: var(--blue-dark);
}

.nav-cta {
  display: none;
}

main {
  overflow: hidden;
}

.section {
  padding: 4.5rem 0;
}

.section.compact {
  padding: 3rem 0;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.hero {
  padding: 4rem 0 3rem;
}

.hero-grid {
  display: grid;
  gap: 2.2rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--blue-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 99px;
  background: var(--green);
}

.hero-copy {
  display: grid;
  gap: 1.35rem;
}

.hero-copy p {
  max-width: 66ch;
  font-size: 1rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.72rem 1rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button.primary {
  background: var(--ink);
  color: white;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
}

.button.primary:hover {
  color: white;
  background: #111827;
}

.button.secondary {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line);
}

.button.secondary:hover {
  border-color: #b8c6da;
}

.button.ghost {
  background: transparent;
  color: var(--blue-dark);
  padding-inline: 0;
}

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.hero-visual {
  position: relative;
  min-height: 320px;
}

.hero-visual img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid rgba(217, 226, 239, 0.9);
  box-shadow: var(--shadow);
  background: white;
}

.metric-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.metric {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.metric strong {
  display: block;
  font-size: 1.18rem;
  line-height: 1;
}

.metric span {
  color: var(--muted);
  font-size: 0.84rem;
}

.section-head {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-head p {
  max-width: 64ch;
  font-size: 0.96rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid.three,
.grid.two,
.grid.four {
  grid-template-columns: 1fr;
}

.card,
.price-card,
.resource-card,
.contact-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.card {
  display: grid;
  gap: 0.8rem;
}

.card .button {
  justify-self: start;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0.25rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #475569;
  background: #f8fafc;
  font-size: 0.76rem;
  font-weight: 750;
  line-height: 1;
}

.pill.blue {
  border-color: #bfdbfe;
  color: var(--blue-dark);
  background: #eff6ff;
}

.pill.green {
  border-color: #bbf7d0;
  color: #15803d;
  background: #f0fdf4;
}

.pill.amber {
  border-color: #fed7aa;
  color: #b45309;
  background: #fff7ed;
}

.product-card {
  min-height: 100%;
  align-content: start;
}

.product-shot {
  margin: -1.25rem -1.25rem 0.4rem;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  border-bottom: 1px solid var(--line);
  background: #0b1220;
}

.product-shot img {
  width: 100%;
  display: block;
}

.product-card h3 {
  max-width: 28ch;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  margin-top: 0.2rem;
}

.product-actions .button {
  min-height: 40px;
  padding: 0.62rem 0.85rem;
  font-size: 0.9rem;
}

.coming-card {
  border-style: dashed;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.mini-index {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.3rem;
}

.mini-index a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: #334155;
  font-weight: 750;
}

.mini-index a:hover {
  border-color: #bfdbfe;
  background: #eff6ff;
}

.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #eef4ff;
  color: var(--blue-dark);
}

.card-icon.green {
  background: #eaf8ef;
  color: #15803d;
}

.card-icon.amber {
  background: #fff4df;
  color: #b45309;
}

.card-icon svg {
  width: 22px;
  height: 22px;
}

.feature-list,
.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.feature-list li,
.check-list li {
  display: flex;
  gap: 0.6rem;
  color: #334155;
}

.feature-list li::before,
.check-list li::before {
  content: "";
  width: 0.48rem;
  height: 0.48rem;
  margin-top: 0.55rem;
  border-radius: 99px;
  background: var(--green);
  flex: 0 0 auto;
}

.band {
  background: #0b1220;
  color: white;
}

.band h2,
.band h3 {
  color: white;
}

.band p,
.band .feature-list li {
  color: #cbd5e1;
}

.band .card {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
}

.price-card {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.price-card.featured {
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 18px 50px rgba(37, 99, 235, 0.14);
}

.tag {
  width: fit-content;
  display: inline-flex;
  border: 1px solid #bfdbfe;
  border-radius: 99px;
  padding: 0.24rem 0.55rem;
  color: var(--blue-dark);
  background: #eff6ff;
  font-size: 0.72rem;
  font-weight: 800;
}

.page-hero {
  padding: 4rem 0 2.5rem;
}

.page-hero h1 {
  max-width: 15ch;
}

.page-hero p {
  max-width: 68ch;
  margin-top: 1rem;
  font-size: 1rem;
}

.split {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.quote {
  padding: 1.25rem;
  border-left: 4px solid var(--blue);
  background: var(--surface);
}

.quote p {
  color: #1f2937;
  font-size: 0.98rem;
}

.article-list {
  display: grid;
  gap: 0.9rem;
}

.resource-card {
  display: grid;
  gap: 0.5rem;
}

.resource-card h2 {
  max-width: 24ch;
}

.resource-card small {
  color: var(--blue-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.faq {
  display: grid;
  gap: 0.75rem;
}

details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}

summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--ink);
}

details p {
  margin-top: 0.7rem;
}

.contact-grid {
  display: grid;
  gap: 1rem;
}

form {
  display: grid;
  gap: 0.9rem;
}

label {
  display: grid;
  gap: 0.35rem;
  color: #334155;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.78rem 0.85rem;
  color: var(--ink);
  background: white;
  font: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
.button:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.24);
  outline-offset: 2px;
}

.form-note {
  min-height: 1.4rem;
  font-size: 0.86rem;
  color: var(--muted);
}

.site-footer {
  padding: 3rem 0;
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.site-footer .brand-logo {
  width: 150px;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.footer-links {
  display: grid;
  gap: 0.5rem;
}

.footer-links a {
  color: #475569;
}

.fine-print {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: #64748b;
  font-size: 0.84rem;
}

@media (min-width: 640px) {
  .metric-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid.two,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 860px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.1rem;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .nav-links a {
    padding: 0.55rem 0.65rem;
    font-size: 0.9rem;
  }

  .nav-cta {
    display: inline-flex;
  }

  .hero {
    padding: 5.5rem 0 4rem;
  }

  .hero-grid,
  .split {
    grid-template-columns: 0.92fr 1.08fr;
  }

  .grid.three {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid.four {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
  }
}

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