:root {
  --bg: #f5f9ff;
  --surface: rgba(255, 255, 255, 0.8);
  --surface-strong: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --brand: #359eff;
  --brand-soft: rgba(53, 158, 255, 0.12);
  --dark: #081122;
  --shadow: 0 30px 80px rgba(15, 23, 42, 0.12);
  --container: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(53, 158, 255, 0.18), transparent 32%),
    linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
  color: var(--text);
}

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

button {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(248, 251, 255, 0.72);
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 800;
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #fff;
  background: var(--brand);
  box-shadow: 0 18px 38px rgba(53, 158, 255, 0.24);
}

.material-symbols-outlined {
  font-size: 1.2rem;
  line-height: 1;
  font-variation-settings:
    "FILL" 0,
    "wght" 600,
    "GRAD" 0,
    "opsz" 24;
}

.brand-text {
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.brand-text span {
  color: var(--brand);
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0.7rem;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.menu-toggle span + span {
  margin-top: 0.35rem;
}

.nav-actions,
.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-menu {
  display: none;
  padding-bottom: 1rem;
}

.mobile-menu__inner {
  padding: 1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

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

.nav-links a {
  color: var(--muted);
  font-weight: 600;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
}

.lang-button {
  border: 0;
  background: transparent;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
}

.lang-button.is-active {
  background: #fff;
  color: var(--text);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand) 0%, #61b3ff 100%);
  box-shadow: 0 16px 36px rgba(53, 158, 255, 0.28);
}

.button-secondary,
.button-ghost {
  color: var(--text);
  border-color: rgba(148, 163, 184, 0.26);
  background: rgba(255, 255, 255, 0.7);
}

.hero {
  padding: 4.8rem 0 3rem;
}

.hero + .section {
  padding-top: 7rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  gap: 1rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 1rem;
  color: var(--brand);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.eyebrow-light {
  color: #93c5fd;
}

.hero h1,
.section-heading h2,
.sample-copy h2,
.cta-panel h2 {
  margin: 0;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(2.45rem, 4.5vw, 4.6rem);
}

.hero-text,
.section-heading p,
.sample-copy p,
.cta-panel p,
.feature-card p,
.audience-card p,
.step-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.02rem;
}

.hero-text {
  max-width: 60ch;
  margin: 1.35rem 0 0;
  font-size: 1.08rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.9rem 0 0;
  padding: 0;
  list-style: none;
}

.trust-points li,
.strip-items span {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(148, 163, 184, 0.22);
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  margin-left: -1rem;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 5% -4% -8% 15%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53, 158, 255, 0.24), transparent 68%);
  z-index: 0;
}

.hero-image-frame,
.cta-panel {
  position: relative;
  z-index: 1;
  padding: 1rem;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
}

.hero-image,
.cta-panel {
  display: block;
  width: 100%;
}

.hero-image {
  border-radius: 24px;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.feature-card,
.audience-card,
.step-card {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.feature-card,
.audience-card,
.step-card {
  padding: 1rem;
}
.feature-card h3,
.audience-card h3,
.step-card h3 {
  margin: 0 0 0.6rem;
}

.logo-strip {
  padding: 1.75rem 0 2.8rem;
}

.strip-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.15rem 1.2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.strip-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.strip-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.section {
  padding: 5.5rem 0;
}

.section-tinted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(221, 235, 255, 0.45));
}

.section-dark {
  background:
    radial-gradient(circle at top left, rgba(53, 158, 255, 0.24), transparent 32%),
    linear-gradient(180deg, #091324 0%, #0a1730 100%);
  color: #fff;
}

.section-heading {
  max-width: 720px;
}

.section-heading h2,
.sample-copy h2,
.cta-panel h2 {
  font-size: clamp(2rem, 3.6vw, 3.4rem);
}

.section-heading p,
.sample-copy p,
.cta-panel p {
  margin: 1rem 0 0;
}

.feature-grid,
.audience-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.steps-layout,
.sample-layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.steps-layout {
  grid-template-columns: 0.8fr 1.2fr;
}

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

.step-card span {
  display: inline-flex;
  width: 2.3rem;
  height: 2.3rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 0.86rem;
  font-weight: 800;
}

.rating-layout {
  display: block;
  margin-top: 2rem;
}

.rating-visual {
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.78);
}

.rating-visual {
  padding: 0.85rem;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
}

.rating-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

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

.sample-copy p {
  color: rgba(226, 232, 240, 0.82);
}

.sample-frame {
  padding: 1rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.sample-page {
  min-height: 430px;
  padding: 1.4rem;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #edf3ff 100%);
}

.sample-header,
.sample-footer,
.sample-lines span {
  border-radius: 999px;
  background: rgba(53, 158, 255, 0.18);
}

.sample-header,
.sample-footer {
  height: 1rem;
}

.sample-lines {
  display: grid;
  gap: 0.75rem;
  margin: 1.35rem 0;
}

.sample-lines span {
  height: 0.85rem;
  background: rgba(148, 163, 184, 0.32);
}

.sample-lines span:nth-child(2) {
  width: 84%;
}

.sample-lines span:nth-child(3) {
  width: 92%;
}

.sample-lines span:nth-child(4) {
  width: 68%;
}

.sample-chart {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  gap: 0.9rem;
  height: 220px;
  margin-bottom: 1.35rem;
}

.sample-chart div {
  border-radius: 18px 18px 8px 8px;
  background: linear-gradient(180deg, rgba(97, 179, 255, 0.92), rgba(53, 158, 255, 0.7));
}

.sample-chart div:nth-child(1) { height: 58%; }
.sample-chart div:nth-child(2) { height: 86%; }
.sample-chart div:nth-child(3) { height: 72%; }

.cta-panel {
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(227, 238, 255, 0.94));
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.cta-panel p {
  max-width: 62ch;
}

.site-footer {
  padding: 1.5rem 0 2.5rem;
}

.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(148, 163, 184, 0.22);
}

.footer-layout p {
  margin: 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.footer-links a {
  color: var(--muted);
  font-weight: 600;
}

@media (max-width: 1060px) {
  .hero-grid,
  .steps-layout,
  .rating-layout,
  .sample-layout,
  .feature-grid,
  .audience-grid,
  .steps,
  .report-metrics,
  .report-panels {
    grid-template-columns: 1fr;
  }

  .strip-grid,
  .cta-panel,
  .footer-layout,
  .nav,
  .nav-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .nav {
    padding: 1rem 0;
  }

  .nav-links {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-visual {
    margin-left: 0;
  }

  .footer-layout {
    gap: 0.8rem;
  }
}

@media (max-width: 720px) {
  .nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
  }

  .hero {
    padding-top: 2.2rem;
  }

  .hero + .section {
    padding-top: 5rem;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2rem, 9vw, 2.9rem);
    line-height: 1.04;
  }

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

  .hero-actions,
  .cta-actions {
    width: 100%;
  }

  .nav-links {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  .mobile-menu.is-open {
    display: block;
  }

  .mobile-menu__inner .language-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .mobile-menu__inner .button + .button,
  .mobile-menu__inner .language-toggle + .button {
    margin-top: 0.9rem;
  }

  .hero-text,
  .section-heading p,
  .sample-copy p,
  .cta-panel p,
  .feature-card p,
  .audience-card p,
  .step-card p {
    font-size: 0.98rem;
  }

  .section {
    padding: 4.25rem 0;
  }

  .hero-image-frame,
  .sample-frame,
  .rating-visual,
  .cta-panel {
    border-radius: 24px;
  }

  .sample-page {
    min-height: 320px;
  }
}
