:root {
  --bg: #f7f8ff;
  --text: #111827;
  --muted: #667085;
  --white: #ffffff;
  --line: rgba(17, 24, 39, 0.1);

  --green: #04c878;
  --green-dark: #00a96b;
  --blue: #3182ff;
  --purple: #7c3aed;
  --orange: #ff8a00;
  --pink: #ff4da6;
  --cyan: #00b8d9;

  --shadow: 0 24px 70px rgba(30, 41, 59, 0.13);
  --shadow-hover: 0 34px 90px rgba(30, 41, 59, 0.2);

  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;

  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(124, 58, 237, 0.13), transparent 28rem),
    radial-gradient(circle at 90% 8%, rgba(4, 200, 120, 0.16), transparent 28rem),
    radial-gradient(circle at 60% 80%, rgba(49, 130, 255, 0.12), transparent 30rem),
    var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(17, 24, 39, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 24, 39, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000, transparent 70%);
  pointer-events: none;
}

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

button,
input {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 78px 0;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 248, 255, 0.78);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(17, 24, 39, 0.07);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.logo-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--blue));
  box-shadow: 0 16px 36px rgba(4, 200, 120, 0.28);
}

.menu {
  position: fixed;
  top: 82px;
  left: 16px;
  right: 16px;
  padding: 14px;
  display: grid;
  gap: 8px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  transform: translateY(-18px);
  opacity: 0;
  pointer-events: none;
  transition: 0.24s ease;
}

.menu.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.menu a {
  padding: 13px 14px;
  border-radius: 16px;
  color: #344054;
  font-weight: 800;
  transition: 0.2s ease;
}

.menu a:hover {
  color: var(--text);
  background: rgba(4, 200, 120, 0.08);
}

.menu-button {
  color: #fff !important;
  background: linear-gradient(135deg, var(--green), var(--blue)) !important;
}

.burger {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.burger span {
  width: 19px;
  height: 2px;
  border-radius: 10px;
  background: var(--text);
}

.hero {
  position: relative;
  padding: 70px 0 82px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 18px;
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.75), rgba(255,255,255,0.38)),
    radial-gradient(circle at 20% 30%, rgba(4, 200, 120, 0.18), transparent 24rem),
    radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.16), transparent 24rem);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85);
  z-index: -1;
}

.hero-grid {
  display: grid;
  gap: 46px;
  align-items: center;
}

.badge,
.section-title span,
.proof-text span,
.cta-content span {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  color: #087f5b;
  background: rgba(4, 200, 120, 0.12);
  border: 1px solid rgba(4, 200, 120, 0.18);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 900;
}

.badge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(4, 200, 120, 0.14);
}

.hero h1 {
  max-width: 790px;
  margin: 20px 0 0;
  font-size: clamp(2.65rem, 11vw, 6.15rem);
  line-height: 0.94;
  letter-spacing: -0.085em;
}

.hero-text {
  max-width: 640px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 3vw, 1.23rem);
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.btn {
  min-height: 58px;
  padding: 16px 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0;
  border-radius: 19px;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: -0.025em;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--blue));
  box-shadow: 0 18px 42px rgba(4, 200, 120, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 24px 58px rgba(49, 130, 255, 0.3);
  filter: saturate(1.08);
}

.btn-light {
  color: #182230;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(17, 24, 39, 0.09);
  box-shadow: 0 14px 38px rgba(30, 41, 59, 0.08);
}

.hero-stats {
  margin-top: 32px;
  display: grid;
  gap: 12px;
}

.hero-stats div {
  padding: 17px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 44px rgba(30, 41, 59, 0.07);
}

.hero-stats strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.hero-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-preview {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.preview-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.main-card {
  width: min(100%, 440px);
  padding: 22px;
  border-radius: 34px;
}

.preview-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.preview-top span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.preview-top h3 {
  margin: 4px 0 0;
  font-size: 1.45rem;
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.live {
  padding: 8px 12px;
  border-radius: 999px;
  color: #087f5b;
  background: rgba(4, 200, 120, 0.14);
  font-size: 0.8rem;
  font-weight: 900;
}

.analytics {
  margin-top: 22px;
  padding: 20px;
  display: grid;
  gap: 18px;
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.94), rgba(49, 130, 255, 0.82));
  color: #fff;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
}

.analytics::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -72px;
  top: -80px;
  border-radius: 50%;
  background: rgba(4, 200, 120, 0.26);
}

.analytics-main {
  position: relative;
  z-index: 1;
}

.analytics-main span {
  color: rgba(255,255,255,0.7);
  font-weight: 800;
}

.analytics-main strong {
  display: block;
  margin-top: 4px;
  font-size: 3.1rem;
  line-height: 1;
  letter-spacing: -0.08em;
}

.analytics-main small {
  display: inline-block;
  margin-top: 9px;
  padding: 7px 10px;
  color: #bfffdc;
  background: rgba(255,255,255,0.12);
  border-radius: 999px;
  font-weight: 800;
}

.mini-chart {
  position: relative;
  z-index: 1;
  height: 132px;
  display: flex;
  align-items: end;
  gap: 10px;
}

.mini-chart span {
  flex: 1;
  min-width: 22px;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, #9cffbe, #34d399);
  box-shadow: 0 10px 24px rgba(52, 211, 153, 0.23);
}

.task-list {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.task {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px;
  background: rgba(247, 248, 255, 0.86);
  border: 1px solid rgba(17, 24, 39, 0.07);
  border-radius: 20px;
}

.task svg {
  width: 24px;
  min-width: 24px;
}

.task.success svg {
  color: var(--green);
}

.task.warning svg {
  color: var(--orange);
}

.task b {
  display: block;
  font-size: 0.94rem;
}

.task p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.floating-note {
  position: absolute;
  display: none;
  align-items: center;
  gap: 9px;
  padding: 13px 15px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  font-weight: 900;
  animation: floating 4.5s ease-in-out infinite;
}

.floating-note svg {
  width: 21px;
  color: var(--purple);
}

.note-one {
  top: 58px;
  right: 0;
}

.note-two {
  left: 0;
  bottom: 90px;
  animation-delay: 1.1s;
}

.section-title {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-title h2,
.proof-text h2,
.cta-content h2 {
  margin: 18px 0 0;
  font-size: clamp(2.25rem, 8vw, 4.65rem);
  line-height: 0.98;
  letter-spacing: -0.075em;
}

.section-title p,
.proof-text p,
.cta-content p {
  margin: 18px 0 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 1.06rem;
}

.features-grid {
  display: grid;
  gap: 18px;
}

.feature-card {
  min-height: 255px;
  position: relative;
  padding: 26px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 48px rgba(30, 41, 59, 0.08);
  overflow: hidden;
  transition: 0.24s ease;
}

.feature-card::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: rgba(4, 200, 120, 0.08);
  transition: 0.24s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.feature-card:hover::after {
  transform: scale(1.45);
  background: rgba(49, 130, 255, 0.1);
}

.feature-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #fff;
  position: relative;
  z-index: 1;
}

.feature-icon svg {
  width: 26px;
}

.feature-icon.purple {
  background: linear-gradient(135deg, #8b5cf6, #5b21b6);
}

.feature-icon.green {
  background: linear-gradient(135deg, #10b981, #059669);
}

.feature-icon.orange {
  background: linear-gradient(135deg, #fb923c, #ea580c);
}

.feature-icon.blue {
  background: linear-gradient(135deg, #60a5fa, #2563eb);
}

.feature-icon.pink {
  background: linear-gradient(135deg, #f472b6, #db2777);
}

.feature-icon.cyan {
  background: linear-gradient(135deg, #22d3ee, #0891b2);
}

.feature-card h3 {
  margin: 28px 0 0;
  font-size: 1.35rem;
  line-height: 1.15;
  letter-spacing: -0.045em;
  position: relative;
  z-index: 1;
}

.feature-card p {
  margin: 12px 0 0;
  color: var(--muted);
  position: relative;
  z-index: 1;
}

.proof-layout {
  display: grid;
  gap: 34px;
  align-items: center;
}

.brand-row {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.brand-row div {
  padding: 13px 16px;
  border-radius: 16px;
  color: #344054;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(17, 24, 39, 0.08);
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(30, 41, 59, 0.07);
}

.reviews {
  display: grid;
  gap: 18px;
}

.review-card {
  padding: 26px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.stars {
  color: #ffb020;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}

.review-card p {
  margin: 18px 0 0;
  color: #344054;
  font-size: 1.03rem;
}

.person {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 24px;
}

.avatar {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--blue));
  font-weight: 900;
}

.person b,
.person span {
  display: block;
}

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

.cta-box {
  position: relative;
  display: grid;
  gap: 32px;
  padding: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 15% 20%, rgba(4, 200, 120, 0.35), transparent 25rem),
    radial-gradient(circle at 90% 10%, rgba(124, 58, 237, 0.34), transparent 25rem),
    linear-gradient(135deg, #101828, #182230 55%, #0b1220);
  border-radius: 38px;
  box-shadow: 0 34px 100px rgba(15, 23, 42, 0.28);
  overflow: hidden;
}

.cta-box::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  right: -160px;
  bottom: -160px;
  border-radius: 50%;
  background: rgba(49, 130, 255, 0.18);
}

.cta-content,
.form {
  position: relative;
  z-index: 1;
}

.cta-content span {
  color: #bfffdc;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255,255,255,0.14);
}

.cta-content p {
  color: rgba(255,255,255,0.72);
}

.form {
  display: grid;
  gap: 15px;
  padding: 20px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 26px;
  backdrop-filter: blur(20px);
}

.form label {
  color: rgba(255,255,255,0.76);
  font-size: 0.92rem;
  font-weight: 800;
}

.form input {
  width: 100%;
  min-height: 56px;
  margin-top: 8px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 18px;
  outline: none;
  color: #fff;
  background: rgba(255,255,255,0.1);
  transition: 0.2s ease;
}

.form input::placeholder {
  color: rgba(255,255,255,0.42);
}

.form input:focus {
  border-color: rgba(4, 200, 120, 0.8);
  box-shadow: 0 0 0 4px rgba(4, 200, 120, 0.14);
}

.form small {
  color: rgba(255,255,255,0.58);
  text-align: center;
}

.footer {
  padding: 50px 0 28px;
}

.footer-grid {
  display: grid;
  gap: 26px;
}

.footer p {
  max-width: 330px;
  margin: 14px 0 0;
  color: var(--muted);
}

.footer-links,
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a,
.socials a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 15px;
  border-radius: 16px;
  color: #344054;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(17, 24, 39, 0.08);
  font-weight: 800;
  transition: 0.2s ease;
}

.socials a {
  width: 46px;
  padding: 0;
}

.socials svg {
  width: 20px;
}

.footer-links a:hover,
.socials a:hover {
  transform: translateY(-3px);
  color: var(--green-dark);
  box-shadow: 0 14px 30px rgba(30, 41, 59, 0.09);
}

.copyright {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.92rem;
}

.copyright a {
  color: var(--green-dark);
  font-weight: 900;
}

.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

@keyframes floating {
  0%, 100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

@media (min-width: 540px) {
  .hero-actions {
    flex-direction: row;
  }

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

@media (min-width: 760px) {
  .section {
    padding: 108px 0;
  }

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

  .cta-box {
    padding: 46px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr auto;
    align-items: start;
  }

  .copyright {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 980px) {
  .burger {
    display: none;
  }

  .menu {
    position: static;
    display: flex;
    align-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .menu a {
    padding: 10px 12px;
  }

  .menu-button {
    padding: 12px 17px !important;
  }

  .hero {
    padding: 96px 0 116px;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.78fr;
  }

  .floating-note {
    display: inline-flex;
  }

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

  .proof-layout {
    grid-template-columns: 0.9fr 1.1fr;
  }

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

  .cta-box {
    grid-template-columns: 1.05fr 0.78fr;
    align-items: center;
    padding: 56px;
  }
}

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