:root {
  color-scheme: light;
  background: #fcfcfa;
}

html,
body,
#root {
  min-height: 100%;
}

body {
  margin: 0;
  background: #fcfcfa;
  color: #111;
}

.home-enhanced #root {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  min-height: 100vh;
  visibility: hidden;
  opacity: 0;
}

.home-enhanced.home-app-ready #root {
  position: relative;
  inset: auto;
  visibility: visible;
  opacity: 1;
  transition: opacity 180ms ease-out;
}

.home-enhanced.home-app-ready #home-seo-fallback {
  display: none;
}

.home-seo-fallback {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(251, 124, 4, 0.16), transparent 34%),
    #fcfcfa;
  color: #111;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.home-seo-nav {
  display: flex;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.home-seo-brand,
.home-seo-language a,
.home-seo-actions a {
  color: inherit;
  text-decoration: none;
}

.home-seo-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 720;
  letter-spacing: -0.03em;
}

.home-seo-brand img {
  width: 32px;
  height: 32px;
}

.home-seo-language {
  display: inline-flex;
  padding: 3px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.home-seo-language a {
  min-width: 48px;
  padding: 8px 12px;
  border-radius: 999px;
  text-align: center;
  font-size: 13px;
}

.home-seo-language a[aria-current="page"] {
  background: #111;
  color: #fff;
}

.home-seo-hero {
  box-sizing: border-box;
  display: grid;
  width: min(940px, calc(100% - 40px));
  min-height: calc(100vh - 88px);
  margin: 0 auto;
  padding: 9vh 0 12vh;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.home-seo-logo {
  width: min(260px, 65vw);
  height: auto;
}

.home-seo-eyebrow {
  margin: 28px 0 0;
  color: #b85b00;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.home-seo-hero h1 {
  max-width: 900px;
  margin: 18px 0 0;
  font-size: clamp(38px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.home-seo-lede {
  max-width: 720px;
  margin: 26px 0 0;
  color: rgba(0, 0, 0, 0.66);
  font-size: clamp(17px, 2.3vw, 21px);
  line-height: 1.65;
}

.home-seo-actions {
  display: flex;
  margin-top: 34px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.home-seo-actions a {
  display: inline-flex;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 650;
}

.home-seo-actions .primary {
  border-color: #111;
  background: #111;
  color: #fff;
}

.home-seo-points {
  display: grid;
  width: min(940px, 100%);
  margin-top: 62px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  text-align: left;
}

.home-seo-points section {
  padding: 22px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.05);
}

.home-seo-points h2 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.025em;
}

.home-seo-points p {
  margin: 10px 0 0;
  color: rgba(0, 0, 0, 0.62);
  font-size: 14px;
  line-height: 1.6;
}

/* The interactive landing previously hid its only H1 from visual layout.
   Keep the product title visible so users and crawlers see the same signal. */
#root .seo-hero-title {
  position: absolute;
  z-index: 12;
  top: clamp(76px, 9vh, 108px);
  left: 50%;
  width: min(820px, calc(100vw - 48px));
  margin: 0;
  transform: translateX(-50%);
  color: #111;
  font-family: "SF Compact", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(28px, 4.4vw, 54px);
  font-weight: 590;
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-align: center;
  text-wrap: balance;
}

@media (max-width: 700px) {
  .home-seo-nav {
    width: min(100% - 28px, 1120px);
    padding-top: 16px;
  }

  .home-seo-hero {
    width: min(100% - 32px, 940px);
    padding-top: 10vh;
  }

  .home-seo-points {
    grid-template-columns: 1fr;
  }

  #root .seo-hero-title {
    top: 86px;
    width: calc(100vw - 36px);
    font-size: clamp(25px, 7.2vw, 32px);
    line-height: 1.05;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-enhanced.home-app-ready #root {
    transition: none;
  }
}
