/* =========================================================
   Section: Ready to Get Started  (.get-started)
   ========================================================= */
.get-started {
  position: relative;
  background: var(--color-white);
  padding: 140px 100px;
  overflow: hidden;
}

/* Faint inverted grid pattern */
.get-started::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(208, 213, 221, .32) 1px, transparent 1px),
    linear-gradient(90deg, rgba(208, 213, 221, .32) 1px, transparent 1px);
  background-size: 96px 96px;
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, #000 30%, transparent 80%);
          mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, #000 30%, transparent 80%);
  pointer-events: none;
}

.get-started__inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.get-started__title {
  margin: 0;
  font-family: var(--font-family-display);
  font-size: 80px;
  font-weight: var(--fw-medium);
  line-height: 1.2;
  letter-spacing: -0.06em;
  color: #1a1a1a;
  font-variation-settings: 'opsz' 32;
}
.get-started__title-accent {
  background-image: var(--gradient-blue);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .get-started__title-accent { color: var(--color-secondary); -webkit-text-fill-color: currentColor; }
}

.get-started__subtitle {
  margin: 0;
  max-width: 720px;
  font-size: 22px;
  font-weight: var(--fw-regular);
  line-height: 1.4;
  letter-spacing: -0.04em;
  color: #525252;
}

.get-started__actions {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.get-started__actions .btn { min-width: 200px; }

/* Responsive */
@media (max-width: 1024px) {
  .get-started { padding: 100px 40px; }
  .get-started__title { font-size: 60px; }
}
@media (max-width: 768px) {
  .get-started { padding: 64px 20px; }
  .get-started__title { font-size: 38px; letter-spacing: -0.04em; }
  .get-started__subtitle { font-size: 16px; }
  .get-started__actions { width: 100%; flex-direction: column; align-items: stretch; }
  .get-started__actions .btn { width: 100%; min-width: 0; }
}
