@font-face {
  font-family: "Inter";
  src: url("https://framerusercontent.com/assets/GrgcKwrN6d3Uz8EwcLHZxwEfC4.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("https://framerusercontent.com/assets/UjlFhCnUjxhNfep4oYBPqnEssyo.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("https://framerusercontent.com/assets/syRNPWzAMIrcJ3wIlPIP43KjQs.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --text: #000000;
  --muted: #646464;
  --muted-2: #999999;
  --line: #e3e8ef;
  --pill: #53ab84;
  --pill-text: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.header {
  height: auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-inner {
  background-color: #ffffff;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  height: 64px;
  gap: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.brand {
  flex: 1 0 0;
  width: 1px;
  color: var(--muted-2);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1em;
}

.brand-icon {
  width: 40px;
  height: 30px;
  object-fit: contain;
  flex: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
  padding: 16px 0 80px;
}

.hero-stacked {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

.hero-stacked .hero-left {
  width: 100%;
  max-width: 700px;
  gap: 24px;
}

.hero-left > :not(.hero-stack) {
  margin: 0;
}

.hero-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  max-width: 500px;
}

.hero-title {
  margin: 0;
  font-size: 32px;
  line-height: 48px;
  letter-spacing: -0.03em;
  font-weight: 500;
}

.hero-title strong {
  display: block;
  font-size: 48px;
  line-height: 48px;
  font-weight: 700;
}

.hero-copy {
  margin: 0;
  max-width: 500px;
  color: var(--muted);
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.01em;
}

.pill {
  border-radius: 20px;
  background: var(--pill);
  color: var(--pill-text);
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  padding: 8px 16px;
  display: inline-block;
  transition: transform 120ms ease, opacity 120ms ease;
}

.pill:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px;
}

.hero-stacked .hero-right {
  width: 100%;
  padding: 0;
}

.hero-visual {
  width: 100%;
  max-width: 820px;
  max-height: none;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
}

.footer {
  margin-top: auto;
  padding: 20px 0 32px;
  border-top: 1px solid #f0f0f0;
}

.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}

.legal {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 64px;
}

.legal h1 {
  margin: 0 0 8px;
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  letter-spacing: -0.02em;
}

.legal h2 {
  margin: 28px 0 10px;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

.legal p,
.legal li {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.legal ul {
  margin: 10px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.legal .effective {
  color: var(--muted-2);
  font-size: 14px;
  margin-bottom: 20px;
}

@media (max-width: 1000px) {
  .container {
    width: min(900px, calc(100% - 64px));
  }

  .hero {
    gap: 32px;
    grid-template-columns: 1fr;
    padding-bottom: 48px;
  }

  .hero-stacked {
    gap: 22px;
  }

  .hero-right {
    padding: 0;
  }

  .hero-left {
    gap: 32px;
  }

  .hero-title {
    font-size: 30px;
    line-height: 44px;
  }

  .hero-title strong {
    font-size: 44px;
    line-height: 44px;
  }

}

@media (max-width: 809px) {
  .container {
    width: calc(100% - 32px);
  }

  .header {
    padding: 0;
  }

  .brand {
    display: none;
  }

  .header-inner {
    justify-content: flex-end;
  }

  .hero {
    gap: 32px;
    padding: 0 0 24px;
  }

  .hero-left {
    gap: 24px;
  }

  .hero-stack {
    max-width: none;
  }

  .hero-title {
    font-size: 30px;
    line-height: 42px;
  }

  .hero-title strong {
    font-size: 42px;
    line-height: 42px;
  }

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

  .hero-right {
    justify-content: flex-start;
  }

  .hero-visual {
    max-width: 100%;
    max-height: none;
  }
}
