:root {
  --font-main: "IBM Plex Sans", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
}

.landing-header {
  height: 76px;
  padding: 0 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.landing-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 500;
}

.landing-brand img {
  width: 170px;
  height: 42px;
  object-fit: contain;
}

.hero-actions a,
.hero-actions a:visited,
.hero-actions a:hover,
.hero-actions a:active {
  text-decoration: none;
}

.landing-login {
  font-family: var(--font-main);
  height: 38px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  background: white;
}

.landing-main {
  min-height: calc(100vh - 76px);
}

.search-main {
  display: grid;
  align-items: center;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  place-items: center;
  padding: 44px 22px;
  text-align: center;
}

.hero-logo {
  width: min(180px, 45vw);
  height: auto;
  display: block;
  margin: 0 auto 26px;
  object-fit: contain;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
}

.hero h1 {
  max-width: 800px;
  margin: 0 auto;
  font-size: clamp(48px, 9vw, 60px);
  font-weight: 500;
  letter-spacing: -0.07em;
  font-family: var(--font-main);
  line-height: 1.3;
}

.hero-text {
  
  max-width: 560px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.search-hero {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 80px 22px 120px;
}

.search-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-main);
  font-size: clamp(44px, 8vw, 76px);
  line-height: 1.02;
  font-weight: 600;
}

.public-search {
  width: min(100%, 760px);
  height: 58px;
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
}

.public-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0 18px;
  font: inherit;
  font-size: 16px;
}

.public-search button {
  border: 0;
  border-radius: 999px;
  background: #080808;
  color: #ffffff;
  padding: 0 24px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.hero-actions .button {
  font-family: var(--font-main);
  height: 44px;
  padding: 0 22px;
  border-radius: 999px;
}

.details {
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px 22px 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.details article {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.details h2 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 500;
}

.details p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 800px) {
  .landing-header {
    padding: 0 18px;
  }

  .details {
    grid-template-columns: 1fr;
  }

  .public-search {
    height: auto;
    grid-template-columns: 1fr;
    border-radius: 22px;
    padding: 8px;
  }

  .public-search input,
  .public-search button {
    height: 46px;
  }
}
