:root {
  --ink: #17202a;
  --muted: #596575;
  --line: #dfe5ec;
  --surface: #ffffff;
  --surface-soft: #f6f8fb;
  --primary: #1677ff;
  --primary-ink: #0754c7;
  --success: #157f3f;
  --accent: #d94b3d;
  --shadow: 0 18px 48px rgba(23, 32, 42, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.site-header {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0;
}

.brand {
  color: var(--primary-ink);
  font-size: 22px;
  font-weight: 850;
  text-decoration: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link,
.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.nav-link {
  color: var(--primary-ink);
  padding: 0 6px;
}

.button {
  border: 1px solid transparent;
  padding: 0 18px;
}

.button.primary {
  color: #ffffff;
  background: var(--primary);
  box-shadow: 0 10px 24px rgba(22, 119, 255, 0.24);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(23, 32, 42, 0.12);
}

.hero {
  position: relative;
  min-height: 92vh;
  padding: 128px 20px 56px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/images/meeting-visual.webp");
  background-position: center right;
  background-size: cover;
  opacity: 0.42;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.68);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.hero-copy {
  max-width: 700px;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 12px;
  color: var(--success);
  background: rgba(21, 127, 63, 0.1);
  border: 1px solid rgba(21, 127, 63, 0.16);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 620px;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(680px, 100%);
  margin-top: 42px;
}

.proof-item {
  min-height: 92px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(23, 32, 42, 0.1);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(23, 32, 42, 0.08);
}

.proof-item strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.1;
}

.proof-item span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.section {
  padding: 78px 20px;
}

.section.soft {
  background: var(--surface-soft);
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.section-head {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-kicker {
  color: var(--accent);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

h2 {
  margin-top: 10px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: 0;
}

.section-head p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.steps,
.use-cases,
.plans,
.faq-grid {
  display: grid;
  gap: 16px;
}

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

.step,
.case,
.plan,
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.step,
.case,
.faq-item {
  padding: 22px;
}

.step-number {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--primary);
  border-radius: 999px;
  font-weight: 850;
}

.step h3,
.case h3,
.faq-item h3 {
  margin-top: 18px;
  font-size: 20px;
  line-height: 1.25;
}

.step p,
.case p,
.plan p,
.faq-item p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.55;
}

.product-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
}

.product-copy {
  max-width: 480px;
}

.product-copy p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.product-visual {
  width: 100%;
  display: block;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.case h3 {
  margin-top: 0;
}

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

.plan {
  min-height: 184px;
  padding: 20px;
}

.plan strong {
  display: block;
  color: var(--primary-ink);
  font-size: 34px;
  line-height: 1.05;
}

.plan span {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-weight: 800;
}

.pricing-note {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.55;
}

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

.cta-band {
  padding: 70px 20px;
  color: #ffffff;
  background: #182330;
}

.cta-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-inner h2 {
  margin: 0;
  max-width: 660px;
}

.cta-inner p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.55;
}

.site-footer {
  padding: 30px 20px;
  color: var(--muted);
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.footer-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-groups {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.language-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.language-links a {
  color: var(--primary-ink);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.language-links a[aria-current='page'] {
  color: var(--ink);
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.zoom-note {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.45;
}

@media (max-width: 860px) {
  .site-header {
    width: min(100% - 28px, 1120px);
    padding-top: 18px;
  }

  .nav-link {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding-top: 112px;
  }

  .hero::before {
    background-position: center top;
    opacity: 0.28;
  }

  .hero-proof,
  .steps,
  .product-band,
  .use-cases,
  .plans,
  .faq-grid,
  .cta-inner,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .product-copy {
    max-width: none;
  }

  .cta-inner,
        .footer-inner {
          display: grid;
        }

        .footer-groups,
        .language-links {
          justify-items: start;
          justify-content: flex-start;
        }
      }

@media (max-width: 560px) {
  .header-actions .button.secondary {
    display: none;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .section {
    padding: 56px 18px;
  }

  .hero-actions .button {
    width: 100%;
  }
}
