:root {
  --bg: #f7fbff;
  --bg-soft: #eef7ff;
  --surface: rgba(255, 255, 255, 0.8);
  --surface-strong: #ffffff;
  --text: #17324a;
  --muted: #5e748a;
  --line: rgba(37, 90, 132, 0.12);
  --primary: #1277f0;
  --primary-dark: #0e5fd5;
  --accent: #ff8b70;
  --accent-soft: #ffe4dc;
  --mint: #85e7c9;
  --gold: #ffc857;
  --shadow: 0 24px 60px rgba(18, 63, 103, 0.14);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(133, 231, 201, 0.28), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(18, 119, 240, 0.12), transparent 24%),
    linear-gradient(180deg, #fbfdff 0%, #f5f9ff 46%, #ffffff 100%);
}

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

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

button,
input,
select {
  font: inherit;
}

.page-shell {
  overflow: clip;
}

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

.section {
  padding: 5.5rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(247, 251, 255, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), #59a4ff);
  color: #fff;
  font-weight: 800;
  font-family: "Plus Jakarta Sans", sans-serif;
  box-shadow: 0 16px 32px rgba(18, 119, 240, 0.24);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
}

.brand-text span {
  font-size: 0.82rem;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.site-nav a {
  font-size: 0.96rem;
  color: var(--muted);
  transition: color 0.25s ease, transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}

.nav-cta {
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  background: rgba(18, 119, 240, 0.1);
  color: var(--primary-dark) !important;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.2rem;
}

.nav-toggle span {
  display: block;
  width: 1.6rem;
  height: 2px;
  margin: 0.28rem 0;
  background: var(--text);
  border-radius: 999px;
}

.hero {
  position: relative;
  padding: 4.5rem 0 3rem;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
  animation: drift 14s ease-in-out infinite;
}

.orb-a {
  top: 10%;
  left: -4%;
  width: 17rem;
  height: 17rem;
  background: rgba(133, 231, 201, 0.32);
}

.orb-b {
  top: 15%;
  right: 8%;
  width: 24rem;
  height: 24rem;
  background: rgba(18, 119, 240, 0.12);
  animation-delay: -3s;
}

.orb-c {
  bottom: 8%;
  left: 36%;
  width: 14rem;
  height: 14rem;
  background: rgba(255, 139, 112, 0.18);
  animation-delay: -6s;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(18, 119, 240, 0.12);
  color: var(--primary-dark);
  font-size: 0.9rem;
  font-weight: 700;
}

.dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  box-shadow: 0 0 0 6px rgba(255, 200, 87, 0.18);
}

.hero h1 {
  margin: 1.2rem 0 1rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero-lead,
.section-heading p,
.feature-card p,
.benefit-card p,
.step-card p,
.compare-card li,
.site-footer p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.trust-items span {
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(23, 50, 74, 0.08);
  box-shadow: 0 14px 28px rgba(18, 63, 103, 0.06);
  font-size: 0.94rem;
  color: #32556f;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 3.5rem;
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--primary), #53a3ff);
  color: #fff;
  box-shadow: 0 18px 32px rgba(18, 119, 240, 0.26);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(18, 119, 240, 0.12);
  color: var(--text);
}

.button-full {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-meta div {
  min-width: 13rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 50, 74, 0.08);
}

.hero-meta strong,
.floating-card strong,
.benefit-card h3,
.feature-card h3,
.step-card h3,
.compare-card h3,
.section-heading h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
}

.hero-meta span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  min-height: 38rem;
}

.visual-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 249, 255, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.visual-main {
  width: min(100%, 35rem);
  margin-left: auto;
  padding: 1rem;
}

.visual-main img {
  width: 100%;
  border-radius: 24px;
}

.floating-card {
  position: absolute;
  width: 18.5rem;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(23, 50, 74, 0.08);
  border-radius: 22px;
  box-shadow: 0 18px 34px rgba(17, 57, 93, 0.12);
  backdrop-filter: blur(10px);
}

.floating-card p {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.feature-rotator {
  position: absolute;
  left: 0.8rem;
  top: 23%;
  width: 18.5rem;
  height: 11.6rem;
}

.rotating-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition: opacity 0.65s ease, transform 0.65s ease;
  pointer-events: none;
}

.rotating-card.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.card-support {
  right: 0.5rem;
  bottom: 5%;
  display: flex;
  gap: 0.85rem;
  align-items: center;
  animation: floaty 8s ease-in-out infinite;
  animation-delay: -2s;
}

.card-support img {
  width: 3.5rem;
  height: 3.5rem;
  flex: 0 0 auto;
  border-radius: 16px;
}

.pill,
.icon-badge,
.step-number {
  display: inline-grid;
  place-items: center;
  font-weight: 800;
}

.pill {
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #d85b3c;
  font-size: 0.8rem;
}

.trust-bar {
  padding: 0 0 1rem;
}

.features,
.audience,
.comparison {
  position: relative;
}

.features::before,
.audience::before,
.comparison::before {
  content: "";
  position: absolute;
  inset: 1.5rem 0 auto;
  height: 18rem;
  background:
    linear-gradient(180deg, rgba(247, 251, 255, 0.72), rgba(247, 251, 255, 0.96)),
    url("assets/generated-soft-scene.png") center/cover no-repeat;
  opacity: 0.42;
  pointer-events: none;
  z-index: 0;
}

.features .container,
.audience .container,
.comparison .container {
  position: relative;
  z-index: 1;
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.section-heading {
  max-width: 52rem;
  margin-bottom: 2.3rem;
}

.section-heading h2 {
  margin: 1rem 0 0.9rem;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.benefit-grid,
.feature-grid,
.audience-grid,
.steps-grid {
  display: grid;
  gap: 1.2rem;
}

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

.benefit-card,
.feature-card,
.step-card,
.audience-card,
.compare-card,
.site-footer {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: 0 18px 38px rgba(18, 63, 103, 0.07);
  backdrop-filter: blur(10px);
}

.benefit-card,
.feature-card,
.step-card,
.audience-card,
.compare-card {
  border-radius: var(--radius-lg);
}

.benefit-card,
.feature-card,
.step-card {
  padding: 1.45rem;
}

.icon-badge {
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(18, 119, 240, 0.14), rgba(133, 231, 201, 0.42));
  color: var(--primary-dark);
}

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

.feature-card {
  position: relative;
  overflow: hidden;
  padding-top: 1.2rem;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: auto -2rem -3rem auto;
  width: 7rem;
  height: 7rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(18, 119, 240, 0.09), transparent 66%);
}

.feature-illustration {
  width: 100%;
  height: 10rem;
  object-fit: cover;
  margin-bottom: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(18, 119, 240, 0.08);
  background: linear-gradient(180deg, #f9fcff, #eef6ff);
}

.audience-wrap {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1.8rem;
  align-items: start;
}

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

.audience-card {
  padding: 1.2rem 1.1rem;
  min-height: 10.5rem;
  display: flex;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(240, 248, 255, 0.85)),
    radial-gradient(circle at top right, rgba(133, 231, 201, 0.18), transparent 42%);
}

.audience-card span {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.12rem;
  line-height: 1.35;
}

.audience-circle {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  border-radius: 28px;
}

.audience-circle img {
  width: 6.4rem;
  height: 6.4rem;
  border-radius: 999px;
  box-shadow: 0 14px 26px rgba(18, 63, 103, 0.1);
}

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

.step-card {
  position: relative;
  overflow: hidden;
}

.step-number {
  width: 3.1rem;
  height: 3.1rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(18, 119, 240, 0.16), rgba(89, 164, 255, 0.34));
  color: var(--primary-dark);
}

.step-glow {
  position: absolute;
  top: -2.2rem;
  right: -1.6rem;
  width: 7rem;
  height: 7rem;
  border-radius: 999px;
  filter: blur(1px);
  opacity: 0.75;
}

.step-glow-a {
  background: radial-gradient(circle, rgba(255, 200, 87, 0.26), transparent 70%);
}

.step-glow-b {
  background: radial-gradient(circle, rgba(133, 231, 201, 0.24), transparent 70%);
}

.step-glow-c {
  background: radial-gradient(circle, rgba(18, 119, 240, 0.18), transparent 70%);
}

.step-glow-d {
  background: radial-gradient(circle, rgba(255, 139, 112, 0.2), transparent 70%);
}

.comparison-wrap {
  position: relative;
}

.comparison::before {
  inset: 0 0 auto;
  height: 19rem;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.compare-card {
  padding: 1.7rem;
}

.compare-visual {
  width: 100%;
  height: 10.5rem;
  margin-bottom: 1rem;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(18, 119, 240, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.compare-card ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.compare-card li + li {
  margin-top: 0.85rem;
}

.compare-old {
  background: linear-gradient(180deg, rgba(255, 244, 241, 0.92), rgba(255, 255, 255, 0.84));
}

.compare-new {
  background: linear-gradient(180deg, rgba(237, 249, 255, 0.94), rgba(255, 255, 255, 0.84));
}

.site-footer {
  margin: 0 1rem 1rem;
  border-radius: 28px;
  padding: 1.7rem 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(241, 248, 255, 0.92)),
    radial-gradient(circle at top right, rgba(133, 231, 201, 0.16), transparent 30%);
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #cf5e41;
  font-size: 0.82rem;
  font-weight: 800;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  align-items: center;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--muted);
}

.footer-contact {
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, 12px, 0);
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .audience-wrap {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .visual-main {
    margin: 0 auto;
  }

  .feature-rotator {
    left: 1rem;
    top: 10%;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 4rem 0;
  }

  .nav-wrap {
    min-height: 74px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    box-shadow: 0 18px 38px rgba(18, 63, 103, 0.12);
  }

  .site-header.menu-open .site-nav {
    display: flex;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
  }

  .section-heading h2 {
    font-size: clamp(1.9rem, 9vw, 2.5rem);
  }

  .hero-actions,
  .footer-wrap,
  .hero-meta {
    flex-direction: column;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .floating-card {
    position: relative;
    inset: auto;
    width: auto;
    margin-top: 1rem;
  }

  .benefit-grid,
  .feature-grid,
  .audience-grid,
  .steps-grid,
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .feature-rotator {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: 11rem;
    margin-top: 1rem;
  }

  .rotating-card {
    position: absolute;
    width: 100%;
    margin-top: 0;
  }

  .site-footer {
    margin-inline: 0.75rem;
  }

  .footer-contact {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
