/* Root variables */

:root {

  --bg: #f7f8fb;

  --card: #ffffff;

  --text: #1f2937;

  --muted: #6b7280;

  --primary: #2563eb;

  --primary-dark: #1d4ed8;

  --border: #e5e7eb;

  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);

}



/* Reset */

* {

  box-sizing: border-box;

}



body {

  margin: 0;

  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;

  color: var(--text);

  background: var(--bg);

  line-height: 1.6;

}



a {

  color: inherit;

  text-decoration: none;

}



img {

  max-width: 100%;

  height: auto;

}



/* Layout */

.container {

  max-width: 980px;

  margin: 0 auto;

  padding: 0 20px;

}



/* Header */

.site-header {

  position: sticky;

  top: 0;

  background: rgba(255, 255, 255, 0.9);

  backdrop-filter: saturate(180%) blur(12px);

  border-bottom: 1px solid var(--border);

  z-index: 10;

}



.header-inner {

  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 2px 0;

}



.brand {

  display: flex;

  align-items: center;

  gap: 10px;

  line-height: 0;

  font-weight: 700;

  letter-spacing: 0.4px;

}


.brand-logo {

  display: block;

  width: auto;

  height: 44px;

}


.brand-name {

  display: block;

  line-height: 1;

  font-size: 18px;

  font-weight: 400;

  letter-spacing: 1.8px;

  color: var(--text);

}


.home-login-link {

  display: flex;

  align-items: center;

  justify-content: center;

  width: 34px;

  height: 34px;

  margin-left: 12px;

  background: rgba(255, 255, 255, 0.45);

  border: 1px solid rgba(15, 23, 42, 0.12);

  border-radius: 10px;

  color: var(--muted);

  text-decoration: none;

  flex-shrink: 0;

}


.home-login-link:hover {

  color: var(--text);

  border-color: rgba(15, 23, 42, 0.2);

  background: rgba(255, 255, 255, 0.7);

}



/* Language switcher */

.lang-switch {

  display: flex;

  gap: 8px;

  font-size: 14px;

}



.lang-switch a {

  padding: 4px 10px;

  border-radius: 999px;

  border: 1px solid transparent;

  color: var(--muted);

}



.lang-switch a.active {

  border-color: var(--border);

  background: #fff;

  color: var(--text);

}



.lang-switch a:hover {

  border-color: var(--border);

  color: var(--text);

}



/* Main content */

main {

  padding: 28px 0 80px;

}



/* Hero section */

.hero {

  padding: 48px 0 28px;

}



.hero .container {

  position: relative;

}



.hero-logo-accent {

  position: absolute;

  top: -10px;

  right: 20px;

  width: 92px;

  height: auto;

  opacity: 0.95;

  transform: rotate(9deg);

  filter: drop-shadow(0 8px 18px rgba(15, 23, 42, 0.16));

  pointer-events: none;

}



.launch-badge {

  display: inline-flex;

  align-items: center;

  margin: 0 0 14px;

  padding: 8px 14px;

  border-radius: 999px;

  border: 1px solid #f59e0b;

  background: #fffbeb;

  color: #92400e;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 0.2px;

  text-transform: uppercase;

}



.hero h1 {

  font-size: 36px;

  line-height: 1.2;

  margin: 0 0 12px;

}

.hero-subtitle {

  max-width: 780px;

  margin: 0 0 20px;

  font-size: 20px;

  font-weight: 600;

  line-height: 1.4;

}



.lead {

  font-size: 20px;

  font-weight: 600;

  margin: 0 0 8px;

}

.landing-thumbs {

  display: grid;

  gap: 16px;

  margin: 18px 0 0;

}

.landing-thumbs--two {

  grid-template-columns: repeat(2, minmax(0, 280px));

  justify-content: flex-start;

}

.landing-thumb-row {

  display: flex;

}

.landing-thumb-row--right {

  justify-content: flex-end;

}

.landing-thumb-link {

  display: block;

  width: min(100%, 280px);

}

.landing-thumb {

  display: block;

  width: 100%;

  height: auto;

  border-radius: 14px;

  border: 1px solid var(--border);

  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.12);

  background: #fff;

}

.landing-thumb--mobile-only {

  display: none;

}



/* Sections */

.section {

  padding: 32px 0;

}



.section.alt {

  background: var(--card);

  border-top: 1px solid var(--border);

  border-bottom: 1px solid var(--border);

}



.section h2 {

  margin: 0 0 12px;

  font-size: 24px;

}



.section p {

  margin: 0 0 8px;

  color: var(--text);

}



/* Lists */

.bullets {

  margin: 12px 0 16px;

  padding-left: 20px;

  color: var(--muted);

}

.hero-bullets {
  margin-top: 10px;
}

.hero-bullets li {
  color: var(--text);
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.before-after-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #ffffff;
  padding: 16px;
}

.before-after-card h3 {
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: 0.3px;
}

.before-after-card--before h3 {
  color: #6b7280;
}

.before-after-card--after {
  border-color: #bfdbfe;
  background: #eff6ff;
}

.before-after-card--after h3 {
  color: #1d4ed8;
}

.before-after-title {
  margin: 0 0 10px;
  font-weight: 700;
  color: #0f172a;
}

.before-after-checks {
  margin: 0;
  padding: 0;
  list-style: none;
}

.before-after-checks li {
  position: relative;
  margin: 0 0 8px;
  padding-left: 24px;
  color: var(--text);
}

.before-after-checks li:last-child {
  margin-bottom: 0;
}

.before-after-checks li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: #047857;
  font-weight: 700;
}

.tool-checks {
  margin-top: 10px;
}



.steps {

  margin: 12px 0 0;

  padding-left: 20px;

}



/* CTA */

.cta-row {

  margin-top: 16px;

}



/* Buttons */

.btn {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  border-radius: 10px;

  padding: 12px 18px;

  font-weight: 600;

  font-size: 15px;

  border: 1px solid transparent;

  cursor: pointer;

  transition: transform .02s ease, box-shadow .2s ease, background .2s ease;

}



.btn:active {

  transform: translateY(1px);

}



.btn-primary {

  background: var(--primary);

  color: #fff;

  box-shadow: var(--shadow);

}



.btn-primary:hover {

  background: var(--primary-dark);

}



.btn-secondary {

  background: #f3f4f6;

  color: var(--text);

  border-color: var(--border);

}



/* FAQ */

.section.alt h3 {

  font-size: 15px;

  margin: 10px 0 2px;

}



.section.alt p {

  font-size: 14px;

  margin: 0 0 6px;

  color: var(--muted);

}



/* CTA section */

.section.cta {

  padding: 40px 0;

  text-align: center;

}



.section.cta p {

  color: var(--muted);

}



.site-footer {

  padding: 18px 0 30px;

  text-align: center;

}



.site-footer a {

  font-size: 13px;

  color: var(--muted);

  text-decoration: underline;

}



.site-footer a:hover {

  color: var(--text);

}



.page-footer {

  margin-top: 5rem;

  padding: 1.5rem 0;

  text-align: center;

  font-size: 11px;

  color: #94a3b8;

  border-top: 1px solid #f1f5f9;

}



.page-footer p {

  margin-bottom: 0.5rem;

  color: #94a3b8;

}



.page-footer p:last-child {

  margin: 0;

}



.page-footer a {

  color: #94a3b8;

  text-decoration: underline;

}



/* Cookie banner */

.cookie-banner {

  position: fixed;

  left: 16px;

  right: 16px;

  bottom: 16px;

  z-index: 20;

  padding: 0;

}



.cookie-banner.is-hidden {

  display: none;

}



.cookie-banner__content {

  position: relative;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  padding: 20px;
  padding-right: 56px;

  border: 1px solid var(--border);

  border-radius: 18px;

  background: rgba(255, 255, 255, 0.96);

  backdrop-filter: blur(14px) saturate(180%);

  box-shadow: var(--shadow);

}



.cookie-banner__text {

  max-width: 640px;

}



.cookie-banner__text h2 {

  margin: 0 0 6px;

  font-size: 18px;

}



.cookie-banner__text p {

  margin: 0;

  color: var(--muted);

}



.cookie-banner__actions {

  display: flex;

  align-items: center;

  gap: 10px;

  flex-wrap: wrap;

  justify-content: flex-end;

}



.cookie-banner__link {

  white-space: nowrap;

}



.cookie-banner__close {

  position: absolute;

  top: 10px;

  right: 12px;

  width: 32px;

  height: 32px;

  border: 1px solid var(--border);

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.9);

  color: var(--muted);

  font-size: 24px;

  line-height: 1;

  cursor: pointer;

}



.cookie-banner__close:hover {

  color: var(--text);

  background: rgba(31, 41, 55, 0.06);

}



.cta-microcopy {

  font-size: 0.75rem;

  color: var(--muted);

  margin-top: 2rem;

}



/* Responsive */

@media (max-width: 720px) {

  .header-inner {

    flex-direction: column;

    align-items: flex-start;

    gap: 10px;

  }



  .hero h1 {

    font-size: 28px;

  }

  .hero-subtitle {

    font-size: 18px;

  }



  .hero-logo-accent {

    width: 70px;

    top: -16px;

    right: 20px;

  }



  .lead {

    font-size: 18px;

  }

  .before-after-grid {
    grid-template-columns: 1fr;
  }

  .landing-thumbs--two {

    grid-template-columns: 1fr;

  }

  .landing-thumb--desktop-only {

    display: none;

  }

  .landing-thumb--mobile-only {

    display: block;

  }

  .landing-thumb-row--right {

    justify-content: flex-start;

  }



  .cookie-banner {

    left: 12px;

    right: 12px;

    bottom: 12px;

  }



  .cookie-banner__content {

    flex-direction: column;

    align-items: stretch;

    padding-right: 56px;

  }



  .cookie-banner__close {

    top: 8px;

    right: 10px;

  }



  .cookie-banner__actions {

    justify-content: flex-start;

  }

}


.li-focus {

  margin-left: 2rem !important;
  font-weight: bold;
} 

.li-focus-i {

  margin-left: 2rem !important;
  font-style: italic;
} 