:root {
  --ink: #101828;
  --ink-soft: #344054;
  --muted: #667085;
  --line: #e4e7ec;
  --surface: #ffffff;
  --surface-soft: #f7f8fc;
  --primary: #4361ee;
  --primary-dark: #2f48c9;
  --violet: #805dca;
  --green: #12b76a;
  --orange: #f79009;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(16, 24, 40, 0.1);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Manrope, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -0.035em;
}
h1 {
  font-size: clamp(3rem, 7vw, 6.25rem);
}
h2 {
  font-size: clamp(2.25rem, 4.7vw, 4.25rem);
}
h3 {
  font-size: 1.25rem;
}
p {
  color: var(--muted);
}
.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.section {
  padding: 110px 0;
}
.section-soft {
  background: var(--surface-soft);
}
.section-dark {
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}
.section-dark p {
  color: #b9c1d0;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}
.section-heading > div {
  max-width: 760px;
}
.section-heading h2 {
  margin-bottom: 14px;
}
.section-heading p {
  max-width: 580px;
  margin-bottom: 0;
  font-size: 1.08rem;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}
.eyebrow.light {
  color: #c8d0ff;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 23px;
  border: 1px solid var(--primary);
  border-radius: 999px;
  color: #fff;
  background: var(--primary);
  font-weight: 800;
  transition:
    transform 0.2s,
    background 0.2s,
    border 0.2s;
}
.button:hover {
  transform: translateY(-2px);
  background: var(--primary-dark);
}
.button-outline {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}
.button-outline:hover {
  border-color: #c8d0ff;
  color: var(--primary);
  background: #f7f8ff;
}
.button-light {
  color: var(--ink);
  border-color: #fff;
  background: #fff;
}
.button-light:hover {
  color: var(--primary);
  background: #f7f8ff;
}
.text-link {
  color: var(--primary);
  font-weight: 800;
}
.text-link:hover {
  color: var(--primary-dark);
}
.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: -999px;
  padding: 10px 16px;
  color: #fff;
  background: var(--ink);
}
.skip-link:focus {
  left: 10px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: 82px;
  border-bottom: 1px solid transparent;
  transition:
    background 0.25s,
    box-shadow 0.25s,
    border 0.25s;
}
.site-header.scrolled {
  border-color: rgba(228, 231, 236, 0.9);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 30px rgba(16, 24, 40, 0.06);
  backdrop-filter: blur(14px);
}
.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.04rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--violet));
  box-shadow: 0 9px 22px rgba(67, 97, 238, 0.25);
  font-size: 0.9rem;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 700;
}
.main-nav > a {
  transition: color 0.2s;
}
.main-nav > a:hover,
.main-nav > a.active {
  color: var(--primary);
}
.main-nav .nav-cta {
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
}
.main-nav .nav-cta:hover {
  color: #fff;
  background: var(--primary);
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 12px;
  background: var(--surface-soft);
}
.nav-toggle span:not(.sr-only) {
  width: 100%;
  height: 2px;
  display: block;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 820px;
  padding: 160px 0 85px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 10%, #eef0ff 0, transparent 32%),
    linear-gradient(180deg, #fff, #f8f9fe);
}
.hero::after {
  position: absolute;
  top: 125px;
  right: -180px;
  width: 480px;
  height: 480px;
  border: 1px solid #d9defd;
  border-radius: 50%;
  content: "";
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: 68px;
}
.hero-grid > *,
.workflow > *,
.split-section > *,
.contact-grid > *,
.article-shell > * {
  min-width: 0;
}
.hero-copy h1 {
  max-width: 790px;
  margin-bottom: 26px;
  font-size: clamp(3.4rem, 6.2vw, 5rem);
}
.hero-copy h1 span {
  color: var(--primary);
}
.hero-copy > p {
  max-width: 670px;
  margin-bottom: 33px;
  font-size: 1.15rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}
.hero-note span::before {
  margin-right: 7px;
  color: var(--green);
  content: "✓";
}
.dashboard-shell {
  position: relative;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.product-dashboard {
  overflow: hidden;
  width: 130%;
  margin-left: -5%;
}
.product-dashboard picture,
.product-dashboard img {
  display: block;
  width: 100%;
}
.product-dashboard img {
  border-radius: 20px;
  height: auto;
}
.image-zoom {
  position: relative;
  display: block;
  cursor: zoom-in;
}
.image-zoom::after {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  color: #fff;
  background: rgba(16, 24, 40, 0.72);
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.18);
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  place-items: center;
  transition: transform 0.2s, background 0.2s;
}
.image-zoom:hover::after,
.image-zoom:focus-visible::after {
  background: var(--primary);
  transform: scale(1.08);
}
.image-zoom:focus-visible {
  border-radius: inherit;
  outline: 3px solid rgba(67, 97, 238, 0.35);
  outline-offset: 4px;
}
.image-viewer {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  overflow: auto;
  padding: 70px 24px 28px;
  background: rgba(8, 13, 25, 0.94);
  place-items: center;
}
.image-viewer[hidden] {
  display: none;
}
.image-viewer-dialog {
  position: relative;
  width: fit-content;
  max-width: min(1500px, 100%);
  margin: auto;
}
.image-viewer figure {
  margin: 0;
}
.image-viewer img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - 135px);
  margin-inline: auto;
  border-radius: 12px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.4);
}
.image-viewer figcaption {
  margin-top: 14px;
  color: #fff;
  font-size: 0.85rem;
  text-align: center;
}
.image-viewer-close {
  position: fixed;
  top: 18px;
  right: 22px;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  font: inherit;
  font-size: 1.8rem;
  line-height: 1;
  place-items: center;
}
.image-viewer-close:hover,
.image-viewer-close:focus-visible {
  background: var(--primary);
  outline: none;
}
body.image-viewer-open {
  overflow: hidden;
}
.dashboard {
  min-height: 510px;
  display: grid;
  grid-template-columns: 112px 1fr;
  overflow: hidden;
  border-radius: 20px;
  color: #fff;
  background: #f6f7fb;
  box-shadow: 0 30px 80px rgba(40, 55, 120, 0.17);
}
.dash-sidebar {
  padding: 24px 14px;
  background: #111827;
}
.dash-brand {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 35px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--violet));
  font-size: 0.72rem;
  font-weight: 800;
}
.dash-menu span {
  height: 8px;
  display: block;
  margin: 21px 0;
  border-radius: 5px;
  background: #334155;
}
.dash-menu span:nth-child(2),
.dash-menu span:nth-child(5) {
  width: 75%;
  background: var(--primary);
}
.dash-content {
  padding: 25px;
  color: var(--ink);
}
.dash-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}
.dash-top strong {
  font-size: 1.05rem;
}
.dash-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #dbe2ff;
}
.dash-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.dash-card {
  padding: 15px;
  border: 1px solid #e9ebf2;
  border-radius: 13px;
  background: #fff;
}
.dash-card small {
  display: block;
  color: var(--muted);
  font-size: 0.56rem;
  font-weight: 800;
  text-transform: uppercase;
}
.dash-card b {
  display: block;
  margin-top: 7px;
  font-size: 1.25rem;
}
.dash-chart {
  height: 160px;
  position: relative;
  margin-top: 14px;
  overflow: hidden;
}
.dash-chart::before {
  position: absolute;
  inset: 20px 10px;
  background: repeating-linear-gradient(
    to bottom,
    #eef0f4 0 1px,
    transparent 1px 35px
  );
  content: "";
}
.chart-line {
  position: absolute;
  inset: 48px 10px 28px;
  border-bottom: 3px solid var(--primary);
  transform: skewY(-8deg);
  box-shadow: 0 17px 0 rgba(67, 97, 238, 0.08);
}
.dash-table {
  margin-top: 12px;
}
.dash-row {
  display: grid;
  grid-template-columns: 1fr 0.55fr 0.45fr;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid #eef0f4;
  font-size: 0.62rem;
}
.dash-row span:last-child {
  color: var(--green);
  font-weight: 800;
}
.float-card {
  position: absolute;
  z-index: 3;
  right: -30px;
  bottom: 48px;
  width: 185px;
  padding: 15px;
  border: 1px solid #ebedf4;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(16, 24, 40, 0.14);
}
.float-card small {
  color: var(--muted);
  font-size: 0.65rem;
}
.float-card strong {
  display: block;
  margin-top: 3px;
  font-size: 0.9rem;
}
.status-dot {
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--green);
}

.trust-strip {
  padding: 27px 0;
  border-block: 1px solid var(--line);
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.trust-inner > span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.platforms {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 15px;
}
.platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
}
.platform-icon {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--primary);
  font-size: 0.68rem;
}
.platform-icon.meta {
  background: #1676f3;
}
.platform-icon.api {
  background: var(--ink);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card {
  min-height: 280px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border 0.25s;
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: #cbd2ff;
  box-shadow: 0 20px 50px rgba(16, 24, 40, 0.08);
}
.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 46px;
  border-radius: 15px;
  color: var(--primary);
  background: #eef1ff;
  font-size: 1.15rem;
  font-weight: 800;
}
.feature-card:nth-child(2n) .feature-icon {
  color: var(--violet);
  background: #f3efff;
}
.feature-card:nth-child(3n) .feature-icon {
  color: var(--green);
  background: #ecfdf3;
}
.feature-card h3 {
  margin-bottom: 12px;
}
.feature-card p {
  margin-bottom: 0;
  font-size: 0.9rem;
}
.section-dark .feature-card {
  color: var(--ink);
}
.section-dark .feature-card p {
  color: var(--muted);
}

.workflow {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
  gap: 80px;
}
.workflow-copy {
  position: sticky;
  top: 125px;
}
.workflow-copy h2 {
  margin-bottom: 18px;
}
.workflow-list {
  display: grid;
  gap: 15px;
}
.workflow-step {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 20px;
  padding: 28px;
  border: 1px solid #2d384b;
  border-radius: 20px;
  background: #172033;
}
.workflow-number {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #cdd4ff;
  border: 1px solid #485674;
  font-weight: 800;
}
.workflow-step h3 {
  margin: 4px 0 10px;
  color: #fff;
}
.workflow-step p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.audience-card {
  padding: 34px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 35px rgba(16, 24, 40, 0.05);
}
.audience-card small {
  color: var(--primary);
  font-weight: 800;
}
.audience-card h3 {
  margin: 36px 0 12px;
  font-size: 1.55rem;
}

.pricing-toggle {
  display: inline-flex;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}
.pricing-toggle button {
  min-height: 38px;
  padding: 0 15px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 800;
}
.pricing-toggle button.active {
  color: #fff;
  background: var(--ink);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: stretch;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}
.price-card.featured {
  border: 2px solid var(--primary);
  box-shadow: 0 25px 65px rgba(67, 97, 238, 0.13);
}
.popular-label {
  position: absolute;
  top: -13px;
  right: 22px;
  padding: 6px 11px;
  border-radius: 999px;
  color: #fff;
  background: var(--primary);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.price-card h3 {
  margin-bottom: 7px;
  font-size: 1.35rem;
}
.price-card > p {
  min-height: 48px;
  font-size: 0.82rem;
}
.price {
  margin: 20px 0 4px;
  font-size: 2.45rem;
  font-weight: 800;
  letter-spacing: -0.06em;
}
.price sup {
  margin-right: 3px;
  font-size: 1rem;
}
.price small {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0;
}
.annual-note {
  min-height: 22px;
  margin-bottom: 24px;
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 800;
}
.price-card .button {
  width: 100%;
  min-height: 47px;
}
.price-features {
  display: grid;
  gap: 12px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}
.price-features li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
  font-size: 0.78rem;
}
.price-features li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 800;
}
.pricing-disclaimer {
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: center;
}

.metric-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
}
.metric-item {
  padding: 30px;
  border-right: 1px solid var(--line);
  background: #fff;
}
.metric-item:last-child {
  border: 0;
}
.metric-value {
  display: block;
  margin-bottom: 7px;
  color: var(--primary);
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}
.metric-item small {
  color: var(--muted);
}

.faq {
  max-width: 880px;
  margin-inline: auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  border: 0;
  color: var(--ink);
  background: none;
  cursor: pointer;
  text-align: left;
  font-weight: 800;
}
.faq-question span:last-child {
  color: var(--primary);
  font-size: 1.3rem;
  transition: transform 0.2s;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer p {
  padding: 0 35px 22px 0;
}
.faq-item.open .faq-question span:last-child {
  transform: rotate(45deg);
}

.page-hero {
  padding: 170px 0 80px;
  background:
    radial-gradient(circle at 80% 20%, #eef0ff, transparent 30%),
    var(--surface-soft);
}
.page-hero-inner {
  max-width: 900px;
}
.page-hero h1 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 6vw, 5.7rem);
}
.page-hero p {
  max-width: 700px;
  margin-bottom: 0;
  font-size: 1.15rem;
}
.error-page {
  display: grid;
  min-height: 78vh;
  padding: 160px 0 100px;
  background:
    radial-gradient(circle at 18% 25%, rgba(67, 97, 238, 0.16), transparent 28%),
    radial-gradient(circle at 82% 70%, rgba(109, 40, 217, 0.12), transparent 30%),
    var(--surface-soft);
  place-items: center;
  text-align: center;
}
.error-page-inner {
  max-width: 820px;
}
.error-code {
  display: block;
  margin-bottom: -30px;
  color: rgba(67, 97, 238, 0.1);
  font-size: clamp(8rem, 22vw, 15rem);
  font-weight: 800;
  letter-spacing: -0.09em;
  line-height: 0.8;
}
.error-page h1 {
  margin: 18px 0;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
}
.error-page p {
  max-width: 620px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
}
.error-page .hero-actions {
  justify-content: center;
}
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}
.split-section h2 {
  margin-bottom: 20px;
}
.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-soft);
}
.check-list li::before {
  position: absolute;
  left: 0;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: #ecfdf3;
  content: "✓";
  font-size: 0.7rem;
  font-weight: 800;
}
.visual-panel {
  min-height: 480px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(145deg, #151e31, #253252);
}
.visual-panel::before {
  position: absolute;
  width: 340px;
  height: 340px;
  border: 1px solid #445273;
  border-radius: 50%;
  content: "";
}
.visual-stack {
  z-index: 1;
  width: 78%;
  display: grid;
  gap: 12px;
}
.visual-row {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}
.visual-row span:first-child {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--primary);
  font-size: 0.7rem;
  font-weight: 800;
}
.visual-row small {
  display: block;
  color: #bac4d6;
}
.visual-row b:last-child {
  color: #8ee5bb;
  font-size: 0.7rem;
}
.product-shot {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}
.product-shot img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top left;
}
.product-shot figcaption {
  padding: 13px 18px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
}
.mobile-showcase {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 70px;
}
.mobile-shots {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}
.mobile-shots figure {
  margin: 0;
  overflow: hidden;
  border: 8px solid #111827;
  border-radius: 28px;
  background: #111827;
  box-shadow: var(--shadow);
}
.mobile-shots figure:nth-child(2) {
  margin-top: 54px;
}
.mobile-shots img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.article-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(16, 24, 40, 0.08);
}
.article-cover {
  aspect-ratio: 16/9;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #e9edff, #f5efff);
}
.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cover-mark {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--violet));
  font-weight: 800;
  box-shadow: 0 15px 30px rgba(67, 97, 238, 0.2);
}
.article-card-content {
  padding: 24px;
}
.article-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 13px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
}
.article-card h2 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}
.article-card p {
  font-size: 0.84rem;
}
.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 780px) 260px;
  align-items: start;
  gap: 70px;
}
.article-content {
  font-size: 1.05rem;
}
.article-content h2,
.article-content h3 {
  margin: 2.2em 0 0.7em;
}
.article-content h2 {
  font-size: 2rem;
}
.article-content h3 {
  font-size: 1.35rem;
}
.article-content p,
.article-content li {
  color: var(--ink-soft);
}
.article-content blockquote {
  margin: 30px 0;
  padding: 20px 25px;
  border-left: 4px solid var(--primary);
  background: var(--surface-soft);
  font-weight: 700;
}
.article-aside {
  position: sticky;
  top: 115px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
}
.article-aside h3 {
  margin-bottom: 10px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 70px;
}
.contact-points {
  display: grid;
  gap: 20px;
  margin-top: 35px;
}
.contact-point {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
}
.contact-point span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--primary);
  background: #eef1ff;
}
.contact-point strong {
  display: block;
  margin-bottom: 3px;
}
.contact-point p {
  margin: 0;
  font-size: 0.85rem;
}
.calendar-card {
  margin-top: 32px;
  padding: 24px;
  border: 1px solid #dce2ff;
  border-radius: 18px;
  background: #f5f7ff;
}
.calendar-card h3 {
  margin-bottom: 8px;
}
.calendar-card p {
  margin-bottom: 18px;
  font-size: 0.86rem;
}
.calendar-card .button {
  min-height: 46px;
}
.contact-form {
  padding: 35px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(16, 24, 40, 0.07);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group {
  display: grid;
  gap: 7px;
}
.form-group.full {
  grid-column: 1/-1;
}
.form-group label {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--ink);
  background: #fff;
  outline: none;
}
.form-group textarea {
  min-height: 140px;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(67, 97, 238, 0.09);
}
.form-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.form-check input {
  width: auto;
  min-height: auto;
  margin-top: 5px;
}
.form-check label {
  color: var(--muted);
  font-size: 0.74rem;
}
.honeypot {
  position: absolute;
  left: -9999px;
}
.alert {
  margin-bottom: 24px;
  padding: 13px 16px;
  border-radius: 10px;
  font-size: 0.84rem;
}
.alert-success {
  color: #087443;
  background: #ecfdf3;
}
.alert-error {
  color: #b42318;
  background: #fef3f2;
}

.legal {
  max-width: 850px;
}
.legal h2 {
  margin: 45px 0 15px;
  font-size: 1.7rem;
}
.legal p,
.legal li {
  color: var(--ink-soft);
}

.closing-cta {
  padding: 75px 0;
  color: #fff;
  background: linear-gradient(
    120deg,
    var(--primary-dark),
    var(--primary) 55%,
    var(--violet)
  );
}
.closing-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
}
.closing-inner > div {
  max-width: 760px;
}
.closing-inner h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.6rem);
}
.closing-inner p {
  margin: 0;
  color: #e2e7ff;
}
.site-footer {
  padding: 70px 0 25px;
  color: #fff;
  background: #0b1220;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 55px;
}
.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.brand-footer {
  margin-bottom: 14px;
}
.footer-grid p,
.footer-grid span {
  color: #98a2b3;
  font-size: 0.82rem;
}
.footer-grid p {
  max-width: 340px;
}
.footer-grid h3 {
  margin-bottom: 8px;
  color: #98a2b3;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-grid a:not(.brand) {
  color: #d0d5dd;
  font-size: 0.82rem;
}
.footer-grid a:hover {
  color: #fff;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin-top: 55px;
  padding-top: 22px;
  border-top: 1px solid #253044;
  color: #667085;
  font-size: 0.7rem;
}
.footer-bottom a {
  color: #aeb8cc;
  font-weight: 700;
}
.footer-bottom a:hover {
  color: #fff;
}

@media (max-width: 1080px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-grid {
    gap: 35px;
  }
  .dashboard {
    grid-template-columns: 85px 1fr;
  }
  .float-card {
    right: -8px;
  }
}

@media (max-width: 860px) {
  .section {
    padding: 82px 0;
  }
  .nav-toggle {
    display: block;
  }
  .main-nav {
    position: fixed;
    top: 73px;
    right: 15px;
    left: 15px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav > a {
    padding: 13px;
  }
  .main-nav .nav-cta {
    margin-top: 8px;
    justify-content: center;
  }
  .site-header {
    height: 73px;
    background: rgba(255, 255, 255, 0.96);
  }
  .hero {
    min-height: auto;
    padding-top: 135px;
  }
  .hero-grid,
  .workflow,
  .split-section,
  .contact-grid,
  .article-shell,
  .mobile-showcase {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-copy h1 {
    font-size: clamp(3.2rem, 11vw, 5.4rem);
  }
  .dashboard-shell {
    max-width: 650px;
    margin: 25px auto 0;
  }
  .product-dashboard {
    width: 100%;
    margin-inline: auto;
  }
  .workflow-copy,
  .article-aside {
    position: static;
  }
  .workflow {
    gap: 45px;
  }
  .mobile-showcase {
    gap: 42px;
  }
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 40px;
  }
  .audience-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .metric-band {
    grid-template-columns: repeat(2, 1fr);
  }
  .metric-item:nth-child(2) {
    border-right: 0;
  }
  .metric-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
  .footer-grid > div:last-child {
    grid-column: 2/4;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }
  .nav-wrap {
    width: 100%;
    padding-inline: 14px;
  }
  .nav-toggle {
    position: absolute;
    top: 14px;
    right: 14px;
  }
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.3rem;
  }
  .section {
    padding: 68px 0;
  }
  .hero {
    padding: 120px 0 65px;
  }
  .hero-grid {
    width: calc(100% - 28px);
    max-width: var(--container);
  }
  .hero-copy,
  .hero-copy h1,
  .hero-copy > p {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .hero-copy h1 {
    font-size: clamp(2.65rem, 12.5vw, 3.15rem);
    overflow-wrap: anywhere;
  }
  .hero-copy > p {
    font-size: 1rem;
  }
  .hero-actions .button {
    width: 100%;
  }
  .dashboard-shell {
    padding: 8px;
    border-radius: 22px;
  }
  .dashboard {
    min-height: 420px;
    grid-template-columns: 58px 1fr;
  }
  .dash-sidebar {
    padding: 18px 10px;
  }
  .dash-brand {
    width: 32px;
    height: 32px;
  }
  .dash-content {
    padding: 16px 12px;
  }
  .dash-kpis {
    grid-template-columns: 1fr 1fr;
  }
  .dash-kpis .dash-card:last-child {
    display: none;
  }
  .dash-chart {
    height: 120px;
  }
  .float-card {
    right: 6px;
    bottom: 20px;
    width: 158px;
  }
  .trust-inner,
  .closing-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .platforms {
    justify-content: flex-start;
  }
  .feature-grid,
  .audience-grid,
  .pricing-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .feature-card {
    min-height: 240px;
  }
  .feature-icon {
    margin-bottom: 32px;
  }
  .workflow-step {
    grid-template-columns: 46px 1fr;
    padding: 22px 18px;
  }
  .workflow-number {
    width: 42px;
    height: 42px;
  }
  .metric-band {
    grid-template-columns: 1fr;
  }
  .metric-item,
  .metric-item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 24px 18px;
  }
  .page-hero {
    padding: 125px 0 58px;
  }
  .page-hero h1 {
    font-size: 3rem;
  }
  .visual-panel {
    min-height: 390px;
  }
  .visual-stack {
    width: 90%;
  }
  .mobile-shots {
    grid-template-columns: minmax(0, 355px);
    justify-content: center;
  }
  .mobile-shots figure:nth-child(2) {
    display: none;
  }
  .image-zoom::after {
    top: 9px;
    right: 9px;
    width: 34px;
    height: 34px;
  }
  .image-viewer {
    padding: 64px 14px 20px;
  }
  .image-viewer img {
    max-height: calc(100vh - 115px);
  }
  .image-viewer-close {
    top: 12px;
    right: 14px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
  .footer-grid > div:first-child,
  .footer-grid > div:last-child {
    grid-column: 1/-1;
  }
  .footer-bottom {
    flex-direction: column;
  }
}

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