:root {
  --bg: #f4efe6;
  --surface: rgba(255, 255, 255, 0.7);
  --surface-strong: #ffffff;
  --surface-dark: #151515;
  --surface-dark-soft: #222227;
  --text: #161616;
  --muted: #6e6e73;
  --border: rgba(22, 22, 22, 0.08);
  --accent: #ff8a3d;
  --accent-deep: #ff6a1c;
  --accent-soft: #ffe1c9;
  --lime: #dce95a;
  --shadow: 0 28px 70px rgba(29, 29, 29, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 182, 126, 0.3), transparent 34%),
    radial-gradient(circle at top right, rgba(220, 233, 90, 0.28), transparent 25%),
    linear-gradient(180deg, #f6f1e8 0%, #f2ede5 100%);
}

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.page-shell {
  overflow: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 18px 0;
  backdrop-filter: blur(18px);
  background: rgba(246, 241, 232, 0.72);
  border-bottom: 1px solid rgba(22, 22, 22, 0.05);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  box-shadow: 0 14px 28px rgba(255, 106, 28, 0.25);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(22, 22, 22, 0.08);
}

.full-width {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 50px;
  height: 50px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 6px auto;
  background: var(--text);
}

.hero-section {
  position: relative;
  padding: 78px 0 28px;
}

.hero-orb {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(26px);
  pointer-events: none;
}

.hero-orb-left {
  top: -120px;
  left: -120px;
  background: rgba(255, 138, 61, 0.2);
}

.hero-orb-right {
  top: 60px;
  right: -150px;
  background: rgba(220, 233, 90, 0.22);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: 40px;
}

.pill,
.section-tag,
.save-badge,
.growth-pill,
.featured-label,
.blog-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border-radius: 999px;
  font-weight: 700;
}

.pill,
.section-tag {
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(22, 22, 22, 0.06);
  color: #534d44;
}

.hero-copy h1,
.section-heading h2,
.newsletter-card h2 {
  margin: 18px 0 18px;
  font-size: clamp(3rem, 6vw, 5.3rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.section-heading h2,
.newsletter-card h2 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
}

.hero-copy p,
.section-heading p,
.newsletter-card p,
.site-footer p {
  margin: 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 14px;
}

.support-copy {
  display: block;
  color: #8a847d;
  font-size: 0.95rem;
}

.avatar-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  color: #534d44;
  font-weight: 600;
}

.avatar-stack {
  display: flex;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid #f4efe6;
  background: linear-gradient(135deg, #1a1a1a, #888);
  margin-left: -10px;
}

.avatar:first-child {
  margin-left: 0;
  background: linear-gradient(135deg, #e77c55, #ffc680);
}

.avatar:nth-child(2) {
  background: linear-gradient(135deg, #6f8d4e, #dce95a);
}

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

.dashboard-card,
.floating-card,
.feature-card,
.benefit-card,
.step-card,
.testimonial-card,
.price-card,
.comparison-card,
.faq-item,
.blog-card,
.newsletter-card,
.integration-chip {
  border: 1px solid rgba(22, 22, 22, 0.06);
  box-shadow: var(--shadow);
}

.dashboard-main {
  position: absolute;
  inset: 50px 20px 0 40px;
  padding: 28px;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(249, 245, 238, 0.92) 100%);
}

.dashboard-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.dashboard-top strong,
.mini-panel strong {
  display: block;
  margin-top: 10px;
  font-size: 2rem;
  letter-spacing: -0.05em;
}

.eyebrow {
  color: var(--muted);
  font-size: 0.9rem;
}

.growth-pill {
  padding: 9px 14px;
  color: #1f4d20;
  background: rgba(220, 233, 90, 0.65);
}

.chart-bars {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: end;
  gap: 12px;
  height: 220px;
  margin: 38px 0 28px;
}

.chart-bars span {
  display: block;
  border-radius: 18px 18px 6px 6px;
  background: linear-gradient(180deg, rgba(255, 138, 61, 0.35) 0%, rgba(255, 106, 28, 0.95) 100%);
}

.chart-bars span:nth-child(1) { height: 34%; }
.chart-bars span:nth-child(2) { height: 58%; }
.chart-bars span:nth-child(3) { height: 42%; }
.chart-bars span:nth-child(4) { height: 70%; }
.chart-bars span:nth-child(5) { height: 55%; }
.chart-bars span:nth-child(6) { height: 86%; }
.chart-bars span:nth-child(7) { height: 100%; }

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.stat-strip div {
  padding: 18px;
  border-radius: 22px;
  background: rgba(245, 238, 227, 0.8);
}

.stat-strip span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.stat-strip strong {
  display: block;
  margin-top: 8px;
  font-size: 1.2rem;
}

.floating-card {
  position: absolute;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
}

.floating-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
}

.floating-customers {
  top: 6px;
  right: 0;
  width: 220px;
}

.floating-users {
  left: 0;
  bottom: 22px;
  width: 230px;
}

.logo-strip {
  position: relative;
  z-index: 1;
  margin-top: 52px;
}

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

.logo-row span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(240, 244, 255, 0.72));
  border: 1px solid rgba(125, 140, 210, 0.16);
  color: var(--text);
  box-shadow: 0 14px 30px rgba(103, 112, 184, 0.08);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.section {
  padding: 110px 0;
}

.muted-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.36) 0%, rgba(244, 239, 230, 0.8) 100%);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading-left {
  margin: 0;
  text-align: left;
}

.section-heading p {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading-left p {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}

.feature-card {
  padding: 22px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.82);
}

.feature-card h3,
.benefit-card h3,
.step-card h3,
.price-card h3,
.comparison-card h3,
.blog-card h3 {
  margin: 22px 0 10px;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
}

.feature-card p,
.benefit-card p,
.step-card p,
.price-card p,
.comparison-card li,
.faq-answer p,
.blog-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.feature-card-large {
  grid-column: span 7;
}

.feature-card-wide {
  grid-column: span 7;
}

.feature-card:not(.feature-card-large):not(.feature-card-wide) {
  grid-column: span 5;
}

.feature-visual {
  min-height: 220px;
  border-radius: 28px;
  background: linear-gradient(180deg, #fff 0%, #f4ede2 100%);
  padding: 20px;
}

.metric-visual {
  position: relative;
  overflow: hidden;
}

.mini-panel {
  max-width: 180px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
}

.line-chart {
  position: absolute;
  inset: auto 18px 22px 18px;
  height: 90px;
  border-radius: 999px 999px 18px 18px;
  background:
    linear-gradient(180deg, transparent 0%, transparent 54%, rgba(255, 138, 61, 0.08) 54%, rgba(255, 138, 61, 0.08) 55%, transparent 55%),
    linear-gradient(120deg, transparent 0 12%, rgba(255, 138, 61, 0.92) 12% 16%, transparent 16% 27%, rgba(255, 138, 61, 0.92) 27% 31%, transparent 31% 43%, rgba(255, 138, 61, 0.92) 43% 47%, transparent 47% 60%, rgba(255, 138, 61, 0.92) 60% 64%, transparent 64% 76%, rgba(255, 138, 61, 0.92) 76% 80%, transparent 80%);
}

.ai-visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  background:
    radial-gradient(circle at top right, rgba(220, 233, 90, 0.4), transparent 34%),
    linear-gradient(180deg, #fff 0%, #f8f1e9 100%);
}

.suggestion {
  display: inline-flex;
  width: fit-content;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(22, 22, 22, 0.06);
  font-weight: 600;
}

.usage-visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.usage-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
}

.usage-row strong {
  color: #1f4d20;
}

.retention-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.ring {
  width: 142px;
  height: 142px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #fff 0 43%, transparent 43% 100%),
    conic-gradient(var(--accent) 0 64%, rgba(255, 138, 61, 0.18) 64% 100%);
}

.retention-copy {
  max-width: 280px;
}

.retention-copy span {
  color: var(--muted);
}

.retention-copy strong {
  display: block;
  margin-top: 10px;
  font-size: 1.3rem;
  letter-spacing: -0.04em;
}

.benefits-grid,
.steps-grid,
.pricing-grid,
.blog-grid,
.footer-grid {
  display: grid;
  gap: 22px;
}

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

.benefit-card,
.step-card,
.blog-card {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
}

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

.step-number {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 138, 61, 0.12);
  color: var(--accent-deep);
  font-weight: 800;
}

.dark-section {
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(255, 138, 61, 0.22), transparent 24%),
    radial-gradient(circle at bottom right, rgba(220, 233, 90, 0.12), transparent 20%),
    linear-gradient(180deg, #171719 0%, #101013 100%);
}

.light-heading p {
  color: rgba(255, 255, 255, 0.72);
}


.integrations-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}

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

.integration-chip {
  min-height: 114px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.testimonial-marquee {
  position: relative;
  overflow: hidden;
  padding: 18px 0 14px;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 1) 8%, rgba(0, 0, 0, 1) 92%, transparent 100%);
}

.testimonial-track {
  display: flex;
  align-items: stretch;
  gap: 20px;
  width: max-content;
  animation: testimonial-scroll 38s linear infinite;
  will-change: transform;
}

.testimonial-group {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.testimonial-card {
  --testimonial-accent: #4f67ff;
  --testimonial-soft: rgba(79, 103, 255, 0.14);
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 0 0 320px;
  max-width: 320px;
  min-height: 300px;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(125, 140, 210, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(241, 245, 255, 0.86));
  box-shadow: 0 24px 36px rgba(101, 111, 183, 0.1);
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--testimonial-accent), rgba(255, 255, 255, 0));
}

.testimonial-card::after {
  content: "“";
  position: absolute;
  top: 18px;
  right: 18px;
  color: var(--testimonial-soft);
  font-size: 4.8rem;
  line-height: 1;
  pointer-events: none;
}

.testimonial-group .testimonial-card:nth-child(1) {
  --testimonial-accent: #4f67ff;
  --testimonial-soft: rgba(79, 103, 255, 0.16);
}

.testimonial-group .testimonial-card:nth-child(2) {
  --testimonial-accent: #44b7ff;
  --testimonial-soft: rgba(68, 183, 255, 0.15);
  margin-top: 26px;
}

.testimonial-group .testimonial-card:nth-child(3) {
  --testimonial-accent: #2ebc91;
  --testimonial-soft: rgba(46, 188, 145, 0.15);
}

.testimonial-group .testimonial-card:nth-child(4) {
  --testimonial-accent: #6a72ff;
  --testimonial-soft: rgba(106, 114, 255, 0.15);
  margin-top: 34px;
}

.testimonial-group .testimonial-card:nth-child(5) {
  --testimonial-accent: #5d8fff;
  --testimonial-soft: rgba(93, 143, 255, 0.16);
}

.testimonial-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}

.testimonial-pill,
.testimonial-score {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.testimonial-pill {
  color: var(--testimonial-accent);
  background: var(--testimonial-soft);
}

.testimonial-score {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(125, 140, 210, 0.12);
}

.testimonial-card p {
  position: relative;
  z-index: 1;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
  letter-spacing: -0.02em;
}

.testimonial-author {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(125, 140, 210, 0.12);
}

.testimonial-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 52px;
  padding: 0 10px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--testimonial-accent), #8db5ff);
  box-shadow: 0 12px 24px rgba(101, 111, 183, 0.18);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.testimonial-author div {
  min-width: 0;
}

.testimonial-author strong {
  display: block;
  color: var(--text);
  letter-spacing: -0.03em;
}

.testimonial-author span:last-child {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

.testimonial-marquee:hover .testimonial-track,
.testimonial-marquee:focus-within .testimonial-track {
  animation-play-state: paused;
}

@keyframes testimonial-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 10px));
  }
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 34px;
}

.toggle-button {
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(22, 22, 22, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--muted);
  font-weight: 700;
}

.toggle-button.is-active {
  color: #fff;
  background: var(--text);
}

.save-badge {
  padding: 10px 14px;
  color: #1f4d20;
  background: rgba(220, 233, 90, 0.75);
}

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

.price-card {
  position: relative;
  padding: 30px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
}

.featured {
  transform: translateY(-10px);
  background: linear-gradient(180deg, #1d1d1f 0%, #121214 100%);
  color: #fff;
}

.featured p,
.featured li,
.featured .price-value span:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.featured-label {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 10px 12px;
  background: rgba(255, 138, 61, 0.18);
  color: #ffcfaa;
}

.price-value {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 18px 0;
}

.price-amount {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.price-card ul,
.comparison-card ul {
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.price-card li,
.comparison-card li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
}

.price-card li::before,
.comparison-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.comparison-card {
  padding: 34px;
  border-radius: 30px;
}

.comparison-card-muted {
  background: rgba(255, 255, 255, 0.7);
}

.comparison-card-accent {
  color: #fff;
  background: linear-gradient(180deg, #171719 0%, #101013 100%);
}

.comparison-card-accent li {
  color: rgba(255, 255, 255, 0.78);
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 14px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 26px;
  border: 0;
  background: transparent;
  text-align: left;
  font-weight: 700;
}

.faq-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 200ms ease;
}

.faq-answer p {
  overflow: hidden;
  padding: 0 26px 0;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 24px;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

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

.blog-card {
  min-height: 280px;
}

.blog-tag {
  padding: 8px 12px;
  background: rgba(255, 138, 61, 0.12);
  color: var(--accent-deep);
}

.blog-meta {
  display: inline-block;
  margin-top: 22px;
  color: #8a847d;
  font-weight: 700;
}

.newsletter-section {
  padding-top: 40px;
}

.newsletter-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 42px;
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(220, 233, 90, 0.24), transparent 30%),
    radial-gradient(circle at bottom left, rgba(255, 138, 61, 0.18), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8f1e8 100%);
}

.newsletter-form {
  display: grid;
  gap: 16px;
  width: min(560px, 100%);
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field span {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.newsletter-form input,
.newsletter-form textarea {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(22, 22, 22, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.newsletter-form textarea {
  min-height: 140px;
  padding: 16px 18px;
  border-radius: 24px;
  resize: vertical;
}

.newsletter-form input::placeholder,
.newsletter-form textarea::placeholder {
  color: rgba(89, 98, 138, 0.82);
}

.newsletter-form input:focus,
.newsletter-form textarea:focus {
  outline: 0;
  border-color: rgba(79, 103, 255, 0.34);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0 0 4px rgba(79, 103, 255, 0.1);
}

.newsletter-form .button {
  width: 100%;
}

.newsletter-form .button:disabled {
  cursor: wait;
  opacity: 0.8;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin: 14px 4px 0;
  min-height: 24px;
  font-size: 0.95rem;
  font-weight: 600;
}

.form-status.is-success {
  color: #157347;
}

.form-status.is-info {
  color: #2e5aac;
}

.form-status.is-error {
  color: #b42318;
}

.site-footer {
  padding: 90px 0 40px;
}

.footer-grid {
  grid-template-columns: 1.4fr repeat(3, 0.8fr);
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 14px;
  max-width: 360px;
}

.footer-grid h3,
.footer-grid h4 {
  margin: 0 0 16px;
  letter-spacing: -0.04em;
}

.footer-grid h3 {
  font-size: 1.8rem;
}

.footer-brand h3 {
  margin-bottom: 0;
}

.footer-brand p {
  max-width: 34ch;
}

.footer-grid a:not(.button) {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
}

.footer-brand .button {
  display: inline-flex;
  width: fit-content;
  margin-top: 6px;
  margin-bottom: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(22, 22, 22, 0.08);
  color: #8a847d;
}

@media (max-width: 1080px) {
  .hero-grid,
  .integrations-layout,
  .newsletter-card,
  .footer-grid,
  .pricing-grid,
  .blog-grid,
  .benefits-grid,
  .steps-grid,
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 520px;
  }

  .feature-card-large,
  .feature-card-wide,
  .feature-card:not(.feature-card-large):not(.feature-card-wide) {
    grid-column: span 12;
  }

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

  .newsletter-fields {
    grid-template-columns: 1fr;
  }

  .newsletter-form input,
  .newsletter-form textarea {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 860px) {
  .site-nav,
  .desktop-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .site-header.is-open .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 12px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(22, 22, 22, 0.06);
    box-shadow: var(--shadow);
  }

  .hero-section {
    padding-top: 36px;
  }

  .hero-copy h1,
  .section-heading h2,
  .newsletter-card h2 {
    line-height: 1.02;
  }

  .hero-visual {
    min-height: 480px;
  }

  .dashboard-main {
    inset: 52px 0 0;
  }

  .floating-users,
  .floating-customers {
    width: 200px;
  }

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

  .retention-visual {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .retention-copy {
    max-width: none;
    min-width: 0;
  }

  .testimonial-marquee {
    overflow: visible;
    padding: 0;
    mask-image: none;
  }

  .testimonial-track {
    display: block;
    width: auto;
    animation: none;
  }

  .testimonial-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .testimonial-group[aria-hidden="true"] {
    display: none;
  }

  .testimonial-card {
    max-width: none;
    min-height: auto;
    margin-top: 0;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-marquee {
    overflow: visible;
    padding: 0;
    mask-image: none;
  }

  .testimonial-track {
    display: block;
    width: auto;
    animation: none;
  }

  .testimonial-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .testimonial-group[aria-hidden="true"] {
    display: none;
  }

  .testimonial-card {
    max-width: none;
    min-height: auto;
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 82px 0;
  }

  .header-row {
    gap: 12px;
  }

  .hero-actions,
  .pricing-toggle {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .toggle-button {
    width: 100%;
  }

  .avatar-row {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .dashboard-main {
    padding: 20px;
  }

  .chart-bars {
    gap: 8px;
  }

  .stat-strip {
    grid-template-columns: 1fr;
  }

  .floating-card {
    position: static;
    width: auto;
    margin-top: 14px;
  }

  .hero-visual {
    min-height: auto;
  }

  .feature-visual,
  .benefit-card,
  .step-card,
  .testimonial-card,
  .price-card,
  .comparison-card,
  .blog-card,
  .newsletter-card {
    border-radius: 24px;
  }

  .metric-visual .mini-panel {
    max-width: 190px;
  }

  .metric-visual .line-chart {
    left: 16px;
    right: 16px;
    bottom: 84px;
    height: 76px;
  }

  .metric-visual-grid {
    left: 16px;
    right: 16px;
    gap: 8px;
    bottom: 2px;
  }

  .metric-node {
    padding: 10px 10px 12px;
  }

  .metric-node span {
    font-size: 0.7rem;
  }

  .metric-node strong {
    font-size: 0.78rem;
    line-height: 1.2;
  }
}

.hero-dashboard-media {
  display: block;
  width: 100%;
  height: auto;
  max-width: 650px;
  margin: 0 auto;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

@media (max-width: 1080px) {
  .hero-dashboard-media {
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .hero-dashboard-media {
    border-radius: 0;
  }
}

:root {
  --bg: #ececf9;
  --surface: rgba(255, 255, 255, 0.74);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --surface-dark: #1f2a63;
  --surface-dark-soft: #2d3f9d;
  --text: #18214d;
  --muted: #59628a;
  --border: rgba(98, 111, 184, 0.16);
  --accent: #4f67ff;
  --accent-deep: #3850ea;
  --accent-soft: #dbe4ff;
  --accent-alt: #88b9ff;
  --success: #2bb386;
  --shadow: 0 30px 80px rgba(97, 106, 178, 0.18);
  --container: min(1240px, calc(100% - 40px));
}

body {
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(143, 150, 231, 0.18), transparent 26%),
    radial-gradient(circle at top right, rgba(138, 188, 255, 0.22), transparent 24%),
    linear-gradient(180deg, #efeffb 0%, #ebeaf8 48%, #e8e8fa 100%);
}

.page-shell {
  position: relative;
  overflow: clip;
}

.site-header {
  padding: 26px 0 22px;
  background: rgba(236, 236, 249, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(18px);
}

.header-row {
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  font-size: clamp(1.4rem, 1.8vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.05em;
}

.brand-mark {
  position: relative;
  width: 22px;
  height: 18px;
  border-radius: 60% 40% 42% 58% / 78% 68% 32% 22%;
  background: linear-gradient(180deg, #5d70ff 0%, #4354e9 100%);
  box-shadow: 0 8px 20px rgba(67, 84, 233, 0.28);
  transform: rotate(34deg);
}

.brand-mark::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
}

.brand-text {
  display: inline-block;
  transform: translateY(-1px);
}

.site-nav {
  gap: 34px;
  color: rgba(24, 33, 77, 0.88);
  font-size: 1.04rem;
  font-weight: 500;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(79, 103, 255, 0), rgba(79, 103, 255, 0.92), rgba(79, 103, 255, 0));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--accent-deep);
}

.button {
  min-height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #4f67ff 0%, #4b84ff 100%);
  box-shadow: 0 18px 40px rgba(79, 103, 255, 0.24);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(109, 124, 199, 0.16);
  box-shadow: 0 18px 32px rgba(105, 115, 184, 0.08);
}

.nav-toggle {
  border-color: rgba(109, 124, 199, 0.16);
  background: rgba(255, 255, 255, 0.78);
}

.nav-toggle span {
  background: var(--text);
}

.pill {
  display: inline-flex;
  max-width: 720px;
  padding: 16px 30px;
  border-radius: 999px;
  border: 1px solid rgba(92, 112, 255, 0.28);
  background: linear-gradient(90deg, rgba(79, 103, 255, 0.98), rgba(149, 180, 255, 0.96));
  color: #fff;
  font-size: clamp(1rem, 1.2vw, 1.28rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.03em;
  text-align: left;
  box-shadow: 0 18px 34px rgba(79, 103, 255, 0.18);
}

.section-tag,
.save-badge,
.featured-label,
.blog-tag {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(108, 122, 198, 0.14);
  background: rgba(255, 255, 255, 0.74);
  color: var(--accent-deep);
  box-shadow: 0 10px 22px rgba(103, 114, 184, 0.08);
}

.hero-section {
  position: relative;
  padding: 32px 0 84px;
}

.hero-section::after {
  content: "";
  position: absolute;
  left: -6%;
  right: -6%;
  bottom: -188px;
  height: 360px;
  background:
    radial-gradient(ellipse at center, rgba(108, 126, 255, 0.16) 0%, rgba(108, 126, 255, 0) 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(201, 208, 255, 0.22) 100%);
  pointer-events: none;
}

.hero-divider {
  height: 1px;
  margin-bottom: 46px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.7) 16%,
    rgba(109, 124, 199, 0.16) 50%,
    rgba(255, 255, 255, 0.7) 84%,
    transparent 100%
  );
}

.hero-orb {
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  filter: blur(18px);
  pointer-events: none;
}

.hero-orb-left {
  top: 156px;
  left: -220px;
  background: radial-gradient(circle, rgba(130, 145, 255, 0.24) 0%, rgba(130, 145, 255, 0) 68%);
}

.hero-orb-right {
  top: 118px;
  right: -220px;
  background: radial-gradient(circle, rgba(143, 193, 255, 0.26) 0%, rgba(143, 193, 255, 0) 70%);
}

.hero-orb-bottom {
  left: 12%;
  right: 12%;
  bottom: -80px;
  width: auto;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(101, 121, 255, 0.18) 0%, rgba(101, 121, 255, 0) 72%);
  filter: blur(24px);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 54px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy h1,
.section-heading h2,
.newsletter-card h2 {
  color: var(--text);
  letter-spacing: -0.07em;
}

.hero-copy h1 {
  max-width: 640px;
  margin: 32px 0 24px;
  font-size: clamp(3.25rem, 5vw, 5.1rem);
  line-height: 0.96;
}

.hero-copy p,
.section-heading p,
.newsletter-card p,
.site-footer p {
  color: var(--muted);
}

.hero-copy p {
  max-width: 620px;
  font-size: 1.22rem;
  line-height: 1.78;
}

.hero-copy p strong {
  color: var(--text);
  font-weight: 600;
}

.hero-actions {
  gap: 16px;
  margin: 36px 0 0;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  min-height: auto;
}

.hero-dashboard {
  position: relative;
  padding: 28px;
  border-radius: 38px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(242, 244, 255, 0.66));
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-dashboard::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0));
  opacity: 0.7;
  pointer-events: none;
}

.dashboard-header,
.dashboard-layout,
.dashboard-metrics {
  position: relative;
  z-index: 1;
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.dashboard-header h2 {
  margin: 0;
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
  letter-spacing: -0.06em;
}

.dashboard-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dashboard-tools span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(135, 149, 214, 0.32);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(223, 229, 255, 0.9));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.dashboard-layout {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(210px, 1.18fr) minmax(150px, 1fr);
  gap: 18px;
  align-items: start;
}

.dashboard-layout > * {
  z-index: 1;
}

.dashboard-layout::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 45%;
  width: 72%;
  height: 44%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at center, rgba(99, 127, 255, 0.22) 0%, rgba(99, 127, 255, 0) 68%);
  pointer-events: none;
}

.dashboard-layout::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 45%;
  width: 76%;
  height: 50%;
  transform: translate(-50%, -50%);
  background:
    linear-gradient(90deg, transparent 0 11%, rgba(106, 132, 255, 0.24) 11% 12%, transparent 12% 49%, rgba(106, 132, 255, 0.24) 49% 51%, transparent 51% 88%, rgba(106, 132, 255, 0.24) 88% 89%, transparent 89% 100%),
    linear-gradient(180deg, transparent 0 18%, rgba(106, 132, 255, 0.2) 18% 19%, transparent 19% 52%, rgba(106, 132, 255, 0.2) 52% 53%, transparent 53% 84%, rgba(106, 132, 255, 0.2) 84% 85%, transparent 85% 100%);
  opacity: 0.85;
  pointer-events: none;
}

.system-card,
.core-card,
.insight-card,
.trend-card,
.automation-banner,
.metric-chip {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(135, 149, 214, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(240, 244, 255, 0.82));
  box-shadow: 0 18px 35px rgba(103, 112, 184, 0.12);
}

.system-card::before,
.core-card::before,
.insight-card::before,
.trend-card::before,
.automation-banner::before,
.metric-chip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.crm-card {
  grid-column: 1;
  grid-row: 1;
}

.erp-card {
  grid-column: 3;
  grid-row: 1;
}

.hr-card {
  grid-column: 1;
  grid-row: 2;
}

.finance-card {
  grid-column: 3;
  grid-row: 2;
}

.insight-card {
  grid-column: 1;
  grid-row: 3;
  padding-bottom: 16px;
}

.trend-card {
  grid-column: 2;
  grid-row: 3;
}

.manufacturing-card {
  grid-column: 3;
  grid-row: 3;
}

.system-card-head {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  background: linear-gradient(90deg, rgba(80, 103, 255, 0.98), rgba(135, 184, 255, 0.96));
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.system-card-body {
  padding: 14px 16px 16px;
}

.system-card-body p,
.automation-banner span,
.trend-summary p,
.metric-chip span,
.insight-card-title {
  margin: 0;
  color: var(--text);
}

.system-card-body p {
  font-size: 1rem;
}

.system-card-body strong,
.automation-banner strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
  letter-spacing: -0.06em;
  line-height: 1;
}

.system-card-body strong {
  font-size: clamp(2rem, 2.4vw, 2.8rem);
}

.system-pill {
  display: inline-flex;
  margin-top: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(81, 110, 255, 0.86), rgba(140, 150, 255, 0.84));
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
}

.system-pill.is-cyan {
  background: linear-gradient(90deg, rgba(58, 199, 219, 0.9), rgba(87, 141, 255, 0.86));
}

.trend-positive {
  display: inline-flex;
  margin-top: 10px;
  color: var(--success);
  font-size: 1.06rem;
  font-weight: 500;
}

.mini-bars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 6px;
  height: 38px;
  margin-top: 14px;
}

.mini-bars span {
  display: block;
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, rgba(113, 232, 214, 0.24), rgba(113, 232, 214, 0.9));
}

.mini-bars span:nth-child(1) {
  height: 34%;
}

.mini-bars span:nth-child(2) {
  height: 70%;
}

.mini-bars span:nth-child(3) {
  height: 48%;
}

.mini-bars span:nth-child(4) {
  height: 82%;
}

.mini-bars span:nth-child(5) {
  height: 100%;
}

.mini-bars-soft span {
  background: linear-gradient(180deg, rgba(189, 204, 255, 0.24), rgba(166, 184, 255, 0.64));
}

.mini-curve {
  position: relative;
  height: 44px;
  margin-top: 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(111, 245, 205, 0.14), rgba(111, 245, 205, 0.04));
  overflow: hidden;
}

.mini-curve::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  height: 22px;
  border-right: 4px solid rgba(69, 200, 163, 0.86);
  border-bottom: 4px solid rgba(69, 200, 163, 0.86);
  border-radius: 0 0 28px 0;
  transform: skewX(-18deg);
}

.core-card {
  grid-column: 2;
  grid-row: 1 / span 2;
  min-height: 278px;
  padding: 22px;
  text-align: center;
}

.core-card h3 {
  margin: 6px 0 18px;
  color: var(--text);
  font-size: clamp(1.8rem, 2.2vw, 2.4rem);
  letter-spacing: -0.05em;
}

.ai-portrait {
  position: relative;
  min-height: 132px;
  border-radius: 22px;
  background: linear-gradient(180deg, #4f78ff 0%, #81c5ff 100%);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.ai-portrait-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(255, 255, 255, 0.26) 18% 19%, transparent 19% 40%, rgba(255, 255, 255, 0.18) 40% 41%, transparent 41% 64%, rgba(255, 255, 255, 0.24) 64% 65%, transparent 65% 100%),
    linear-gradient(180deg, transparent 0 22%, rgba(255, 255, 255, 0.18) 22% 23%, transparent 23% 46%, rgba(255, 255, 255, 0.18) 46% 47%, transparent 47% 70%, rgba(255, 255, 255, 0.18) 70% 71%, transparent 71% 100%);
  opacity: 0.46;
}

.ai-halo {
  position: absolute;
  left: 50%;
  top: 46%;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.24) 48%, rgba(255, 255, 255, 0) 72%);
}

.ai-avatar {
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 142px;
  height: 120px;
  transform: translateX(-50%);
}

.ai-head {
  position: absolute;
  left: 50%;
  top: 12px;
  width: 52px;
  height: 66px;
  transform: translateX(-50%);
  border-radius: 44% 44% 42% 42% / 40% 40% 58% 58%;
  background: linear-gradient(180deg, #f5f7ff 0%, #d2dbff 100%);
  box-shadow: inset -6px -10px 16px rgba(111, 129, 255, 0.18);
}

.ai-head::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 28px;
  width: 12px;
  height: 6px;
  border-radius: 999px;
  background: #59e5ff;
  box-shadow:
    20px 0 0 #59e5ff,
    10px 16px 0 -1px rgba(82, 97, 176, 0.28);
}

.ai-neck {
  position: absolute;
  left: 50%;
  top: 72px;
  width: 24px;
  height: 14px;
  transform: translateX(-50%);
  border-radius: 0 0 10px 10px;
  background: linear-gradient(180deg, #dbe4ff, #9cb2ff);
}

.ai-shoulders {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 116px;
  height: 54px;
  transform: translateX(-50%);
  border-radius: 56px 56px 18px 18px;
  background: linear-gradient(180deg, rgba(240, 245, 255, 0.98), rgba(179, 195, 255, 0.88));
  box-shadow: inset 0 -10px 20px rgba(95, 118, 234, 0.18);
}

.core-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.core-icon {
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, #fff 0 20%, transparent 20% 100%),
    linear-gradient(135deg, rgba(64, 108, 255, 0.98), rgba(126, 194, 255, 0.92));
  box-shadow: 0 10px 18px rgba(79, 103, 255, 0.24);
}

.core-icon::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.72);
}

.core-meta strong {
  color: var(--text);
  font-size: 1.4rem;
  letter-spacing: -0.04em;
}

.automation-banner {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: -10px;
  padding: 14px 18px;
}

.automation-banner span {
  color: var(--muted);
  font-size: 1rem;
}

.automation-banner strong {
  font-size: clamp(2rem, 2.2vw, 2.5rem);
}

.automation-banner p {
  margin: 2px 0 0;
  color: var(--text);
  font-size: 0.98rem;
}

.insight-card-body {
  padding: 16px;
}

.insight-card-title {
  display: block;
  margin-bottom: 10px;
  font-size: 1.14rem;
}

.insight-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.insight-list li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 6px 0;
  color: var(--text);
  font-size: 0.98rem;
  border-bottom: 1px solid rgba(125, 140, 210, 0.12);
}

.insight-list li:last-child {
  border-bottom: 0;
}

.insight-list span:last-child {
  color: var(--muted);
}

.trend-card-body {
  padding: 18px 18px 16px;
}

.trend-summary {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.trend-summary strong {
  color: var(--text);
  font-size: clamp(2.6rem, 3vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.trend-summary p {
  margin-top: 6px;
  max-width: 126px;
  line-height: 1.2;
}

.trend-chart {
  height: 68px;
  margin-top: 12px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(96, 128, 255, 0.14), rgba(96, 128, 255, 0.36)),
    linear-gradient(165deg, transparent 0 8%, rgba(255, 255, 255, 0) 8% 18%, rgba(255, 255, 255, 0.8) 18% 20%, transparent 20% 31%, rgba(255, 255, 255, 0.78) 31% 33%, transparent 33% 50%, rgba(255, 255, 255, 0.8) 50% 52%, transparent 52% 63%, rgba(255, 255, 255, 0.8) 63% 65%, transparent 65% 78%, rgba(255, 255, 255, 0.82) 78% 80%, transparent 80%);
}

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

.metric-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 88px;
  padding: 18px 20px;
}

.metric-chip strong {
  color: var(--text);
  font-size: clamp(2.2rem, 2.8vw, 3rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.metric-chip span {
  font-size: 1.08rem;
  line-height: 1.2;
}

.metric-chip.positive strong,
.metric-chip.accent strong,
.metric-chip.negative strong {
  color: var(--accent-deep);
}

.section {
  position: relative;
  padding: 108px 0;
}

.muted-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(233, 238, 255, 0.46) 100%);
}

.feature-card,
.benefit-card,
.step-card,
.testimonial-card,
.price-card,
.comparison-card,
.faq-item,
.blog-card,
.newsletter-card,
.integration-chip {
  border: 1px solid rgba(125, 140, 210, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(242, 246, 255, 0.82));
  box-shadow: var(--shadow);
}

.feature-visual {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(232, 238, 255, 0.9));
}

.metric-visual {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 20%, rgba(104, 131, 255, 0.24), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(232, 238, 255, 0.94) 100%);
}

.metric-visual::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 26px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(106, 128, 255, 0.18) 0%, rgba(106, 128, 255, 0) 70%);
  pointer-events: none;
}

.metric-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 14%, rgba(140, 155, 230, 0.12) 14% 15%, transparent 15% 37%, rgba(140, 155, 230, 0.12) 37% 38%, transparent 38% 60%, rgba(140, 155, 230, 0.12) 60% 61%, transparent 61% 83%, rgba(140, 155, 230, 0.12) 83% 84%, transparent 84% 100%),
    linear-gradient(180deg, transparent 0 22%, rgba(140, 155, 230, 0.1) 22% 23%, transparent 23% 48%, rgba(140, 155, 230, 0.1) 48% 49%, transparent 49% 74%, rgba(140, 155, 230, 0.1) 74% 75%, transparent 75% 100%);
  opacity: 0.7;
  pointer-events: none;
}

.metric-visual .mini-panel {
  position: relative;
  z-index: 2;
  max-width: 220px;
  border-radius: 22px;
  box-shadow: 0 18px 32px rgba(103, 112, 184, 0.12);
}

.metric-visual .line-chart {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 92px;
  height: 98px;
  border-radius: 24px;
  border: 1px solid rgba(125, 140, 210, 0.16);
  background:
    linear-gradient(180deg, rgba(79, 103, 255, 0.14) 0%, rgba(79, 103, 255, 0.04) 70%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0));
  overflow: hidden;
}

.metric-visual .line-chart::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 180' fill='none'%3E%3Cdefs%3E%3ClinearGradient id='a' x1='320' y1='24' x2='320' y2='180' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%235774FF' stop-opacity='0.32'/%3E%3Cstop offset='1' stop-color='%235774FF' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M0 180V126C48 126 72 114 104 106C144 96 166 118 214 100C260 82 280 58 332 62C384 66 406 116 456 106C506 96 534 42 640 34V180H0Z' fill='url(%23a)'/%3E%3Cpath d='M0 126C48 126 72 114 104 106C144 96 166 118 214 100C260 82 280 58 332 62C384 66 406 116 456 106C506 96 534 42 640 34' stroke='%234F67FF' stroke-width='5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='104' cy='106' r='7' fill='white' stroke='%234F67FF' stroke-width='4'/%3E%3Ccircle cx='214' cy='100' r='7' fill='white' stroke='%234F67FF' stroke-width='4'/%3E%3Ccircle cx='332' cy='62' r='7' fill='white' stroke='%234F67FF' stroke-width='4'/%3E%3Ccircle cx='456' cy='106' r='7' fill='white' stroke='%234F67FF' stroke-width='4'/%3E%3Ccircle cx='640' cy='34' r='7' fill='white' stroke='%234F67FF' stroke-width='4'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  opacity: 0.98;
}

.metric-visual .line-chart::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(109, 124, 199, 0), rgba(109, 124, 199, 0.35), rgba(109, 124, 199, 0));
}

.metric-visual-grid {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 2px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  z-index: 2;
}

.metric-node {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(125, 140, 210, 0.14);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 24px rgba(103, 112, 184, 0.08);
}

.metric-node span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
}

.metric-node strong {
  display: block;
  margin-top: 6px;
  color: var(--text);
  font-size: 0.98rem;
  letter-spacing: -0.03em;
}

.mini-panel,
.suggestion,
.usage-row {
  border: 1px solid rgba(125, 140, 210, 0.12);
  background: rgba(255, 255, 255, 0.88);
}

.line-chart {
  background:
    linear-gradient(180deg, transparent 0%, transparent 54%, rgba(77, 108, 255, 0.08) 54%, rgba(77, 108, 255, 0.08) 55%, transparent 55%),
    linear-gradient(120deg, transparent 0 12%, rgba(77, 108, 255, 0.92) 12% 16%, transparent 16% 27%, rgba(77, 108, 255, 0.92) 27% 31%, transparent 31% 43%, rgba(77, 108, 255, 0.92) 43% 47%, transparent 47% 60%, rgba(77, 108, 255, 0.92) 60% 64%, transparent 64% 76%, rgba(77, 108, 255, 0.92) 76% 80%, transparent 80%);
}

.ai-visual {
  background:
    radial-gradient(circle at top right, rgba(111, 168, 255, 0.34), transparent 34%),
    linear-gradient(180deg, #fff 0%, #ecf1ff 100%);
}

.usage-row strong,
.growth-pill {
  color: #1c6d57;
}

.growth-pill {
  background: rgba(111, 245, 205, 0.36);
}

.ring {
  background:
    radial-gradient(circle at center, #fff 0 43%, transparent 43% 100%),
    conic-gradient(var(--accent) 0 64%, rgba(77, 108, 255, 0.16) 64% 100%);
}

.step-number {
  background: rgba(77, 108, 255, 0.12);
  color: var(--accent-deep);
}

.dark-section {
  background:
    radial-gradient(circle at top left, rgba(90, 116, 255, 0.24), transparent 24%),
    radial-gradient(circle at bottom right, rgba(120, 202, 255, 0.18), transparent 22%),
    linear-gradient(180deg, #24306c 0%, #1b2458 100%);
}

.light-heading p,
.comparison-card-accent li,
.featured p,
.featured li,
.featured .price-value span:last-child {
  color: rgba(255, 255, 255, 0.82);
}

.integration-chip {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.toggle-button {
  border: 1px solid rgba(125, 140, 210, 0.16);
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
}

.toggle-button.is-active {
  color: #fff;
  background: linear-gradient(135deg, #4f67ff 0%, #4b84ff 100%);
}

.save-badge {
  background: rgba(101, 131, 255, 0.14);
}

.featured,
.comparison-card-accent {
  color: #fff;
  background: linear-gradient(180deg, #3e54d5 0%, #2d3fba 100%);
}

.featured-label {
  background: rgba(255, 255, 255, 0.16);
  color: #dbe4ff;
}

.blog-tag {
  background: rgba(77, 108, 255, 0.12);
}

.blog-meta,
.footer-bottom {
  color: #6d77a2;
}

.newsletter-card {
  background:
    radial-gradient(circle at top right, rgba(118, 160, 255, 0.2), transparent 30%),
    radial-gradient(circle at bottom left, rgba(94, 121, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(237, 242, 255, 0.92) 100%);
}

.newsletter-form input,
.newsletter-form textarea {
  border: 1px solid rgba(125, 140, 210, 0.16);
  background: rgba(255, 255, 255, 0.84);
}

.footer-grid a:not(.button) {
  color: var(--muted);
}

.footer-bottom {
  border-top: 1px solid rgba(125, 140, 210, 0.16);
}

.product-card {
  --product-icon-bg: rgba(79, 103, 255, 0.14);
  --product-icon-border: rgba(79, 103, 255, 0.18);
  --product-icon-color: var(--accent-deep);
}

.product-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 54px;
}

.product-card h3 {
  margin: 0;
  font-size: 1.24rem;
}

.product-card p {
  margin-top: 16px;
}

.product-icon {
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: var(--product-icon-color);
  border: 1px solid var(--product-icon-border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, var(--product-icon-bg) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 16px 30px rgba(79, 103, 255, 0.1);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.product-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-card:hover .product-icon,
.product-card:focus-within .product-icon {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 18px 34px rgba(79, 103, 255, 0.16);
}

.product-card-crm {
  --product-icon-bg: rgba(79, 103, 255, 0.14);
  --product-icon-border: rgba(79, 103, 255, 0.2);
  --product-icon-color: #3d55ea;
}

.product-card-erp {
  --product-icon-bg: rgba(103, 99, 255, 0.14);
  --product-icon-border: rgba(103, 99, 255, 0.2);
  --product-icon-color: #5a50e6;
}

.product-card-hr {
  --product-icon-bg: rgba(91, 175, 255, 0.16);
  --product-icon-border: rgba(91, 175, 255, 0.22);
  --product-icon-color: #2e7edc;
}

.product-card-manufacturing {
  --product-icon-bg: rgba(76, 193, 174, 0.16);
  --product-icon-border: rgba(76, 193, 174, 0.22);
  --product-icon-color: #249786;
}

.product-card-finance {
  --product-icon-bg: rgba(124, 139, 255, 0.14);
  --product-icon-border: rgba(124, 139, 255, 0.22);
  --product-icon-color: #4f5fe6;
}

.product-card-ai {
  --product-icon-bg: rgba(117, 100, 255, 0.16);
  --product-icon-border: rgba(117, 100, 255, 0.22);
  --product-icon-color: #594fe3;
}

.security-card {
  --security-icon-bg: rgba(79, 103, 255, 0.16);
  --security-icon-border: rgba(79, 103, 255, 0.2);
  --security-icon-color: var(--accent-deep);
}

.security-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 54px;
}

.security-card h3 {
  margin: 0;
  font-size: 1.24rem;
}

.security-card p {
  margin-top: 16px;
}

.security-icon {
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: var(--security-icon-color);
  border: 1px solid var(--security-icon-border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, var(--security-icon-bg) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 16px 30px rgba(79, 103, 255, 0.1);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.security-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.security-card:hover .security-icon,
.security-card:focus-within .security-icon {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 18px 34px rgba(79, 103, 255, 0.16);
}

.security-card-permissions {
  --security-icon-bg: rgba(79, 103, 255, 0.16);
  --security-icon-border: rgba(79, 103, 255, 0.22);
  --security-icon-color: #3d55ea;
}

.security-card-trace {
  --security-icon-bg: rgba(103, 99, 255, 0.14);
  --security-icon-border: rgba(103, 99, 255, 0.2);
  --security-icon-color: #5a50e6;
}

.security-card-data {
  --security-icon-bg: rgba(96, 181, 255, 0.16);
  --security-icon-border: rgba(96, 181, 255, 0.22);
  --security-icon-color: #347dde;
}

.security-card-scale {
  --security-icon-bg: rgba(130, 140, 214, 0.16);
  --security-icon-border: rgba(130, 140, 214, 0.22);
  --security-icon-color: #5865d1;
}

.security-card-independence {
  --security-icon-bg: rgba(62, 189, 171, 0.16);
  --security-icon-border: rgba(62, 189, 171, 0.22);
  --security-icon-color: #249786;
}

.security-card-confidence {
  --security-icon-bg: rgba(101, 126, 255, 0.16);
  --security-icon-border: rgba(101, 126, 255, 0.22);
  --security-icon-color: #425be9;
}

@media (max-width: 1080px) {
  .hero-grid,
  .integrations-layout,
  .newsletter-card,
  .footer-grid,
  .pricing-grid,
  .blog-grid,
  .benefits-grid,
  .steps-grid,
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-dashboard {
    max-width: 760px;
    margin: 0 auto;
  }

  .dashboard-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-layout::before,
  .dashboard-layout::after {
    width: 88%;
    height: 62%;
  }

  .core-card,
  .automation-banner,
  .trend-card {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .crm-card,
  .erp-card,
  .hr-card,
  .finance-card,
  .insight-card,
  .manufacturing-card {
    grid-column: auto;
    grid-row: auto;
  }

  .core-card {
    min-height: auto;
  }

  .automation-banner {
    margin-top: 0;
  }

  .dashboard-metrics {
    grid-template-columns: 1fr;
  }

  .feature-card-large,
  .feature-card-wide,
  .feature-card:not(.feature-card-large):not(.feature-card-wide) {
    grid-column: span 12;
  }

  .testimonial-track {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
  }

  .newsletter-fields {
    grid-template-columns: 1fr;
  }

  .newsletter-form input,
  .newsletter-form textarea {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 860px) {
  .site-nav,
  .desktop-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .site-header.is-open .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 12px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(125, 140, 210, 0.14);
    box-shadow: var(--shadow);
  }

  .hero-section {
    padding-top: 24px;
  }

  .hero-divider {
    margin-bottom: 28px;
  }

  .hero-copy h1,
  .section-heading h2,
  .newsletter-card h2 {
    line-height: 1.02;
  }

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

  .retention-visual {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .retention-copy {
    max-width: none;
    min-width: 0;
  }

  .testimonial-marquee {
    overflow: visible;
    padding: 0;
    mask-image: none;
  }

  .testimonial-track {
    display: block;
    width: auto;
    animation: none;
  }

  .testimonial-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .testimonial-group[aria-hidden="true"] {
    display: none;
  }

  .testimonial-card {
    max-width: none;
    min-height: auto;
    margin-top: 0;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 82px 0;
  }

  .header-row {
    gap: 12px;
  }

  .hero-actions,
  .pricing-toggle {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .toggle-button {
    width: 100%;
  }

  .pill {
    width: 100%;
    padding: 14px 18px;
    border-radius: 28px;
    font-size: 0.98rem;
  }

  .hero-copy p {
    font-size: 1.08rem;
  }

  .hero-dashboard {
    padding: 18px;
    border-radius: 28px;
  }

  .dashboard-layout {
    grid-template-columns: 1fr;
  }

  .dashboard-layout::before,
  .dashboard-layout::after {
    display: none;
  }

  .crm-card,
  .erp-card,
  .hr-card,
  .finance-card,
  .insight-card,
  .trend-card,
  .manufacturing-card,
  .core-card,
  .automation-banner {
    grid-column: 1;
    grid-row: auto;
  }

  .system-card-body strong,
  .automation-banner strong,
  .trend-summary strong,
  .metric-chip strong {
    font-size: 2rem;
  }

  .automation-banner,
  .metric-chip {
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-visual,
  .benefit-card,
  .step-card,
  .testimonial-card,
  .price-card,
  .comparison-card,
  .blog-card,
  .newsletter-card {
    border-radius: 24px;
  }

  .feature-card {
    padding: 18px;
  }

  .feature-card h3 {
    font-size: 1.22rem;
  }

  .feature-visual {
    min-height: 0;
    padding: 18px;
  }

  .metric-visual {
    display: grid;
    gap: 14px;
  }

  .metric-visual::before {
    top: -18px;
    right: -14px;
    width: 112px;
    height: 112px;
  }

  .metric-visual .mini-panel {
    max-width: none;
    width: 100%;
    padding: 16px;
  }

  .metric-visual .mini-panel strong {
    font-size: 1.55rem;
  }

  .metric-visual .line-chart {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    height: 88px;
    border-radius: 20px;
  }

  .metric-visual-grid {
    position: static;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .metric-node {
    padding: 12px 14px;
  }

  .metric-node strong {
    font-size: 0.92rem;
  }

  .retention-visual {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .ring {
    width: 104px;
    height: 104px;
  }

  .retention-copy {
    width: 100%;
  }

  .retention-copy strong {
    font-size: 1.08rem;
    line-height: 1.3;
  }
}
