/* Shared landing header + footer (main page + blog) */

:root {
  --voily: #5b6cff;
  --zinc-900: #18181b;
  --white: #fff;
  --font: Inter, ui-sans-serif, system-ui, sans-serif;
}

.landing-chrome {
  font-family: var(--font);
}

.landing-chrome a {
  color: inherit;
  text-decoration: none;
}

.landing-chrome .container {
  width: 100%;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.landing-chrome .nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 1.5rem max(2rem, calc(50vw - 40rem));
  background: rgba(9, 9, 11, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-chrome .nav__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.landing-chrome .nav__logo {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-chrome .nav__logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.landing-chrome .nav__title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
}

.landing-chrome .nav__links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .landing-chrome .nav__links {
    display: flex;
  }
}

.landing-chrome .nav__links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.15s;
}

.landing-chrome .nav__links a:hover,
.landing-chrome .nav__links a[aria-current="page"] {
  color: rgba(255, 255, 255, 0.85);
}

.landing-chrome .nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.landing-chrome .nav__login {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  padding: 0.35rem 0.5rem;
}

.landing-chrome .nav__login:hover {
  color: rgba(255, 255, 255, 0.85);
}

.landing-chrome .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: 0.75rem;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s, filter 0.15s;
  font-family: inherit;
  text-decoration: none;
}

.landing-chrome .btn:active {
  transform: scale(0.98);
}

.landing-chrome .btn--primary {
  background: var(--voily);
  color: var(--white);
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
}

.landing-chrome .btn--primary:hover {
  filter: brightness(1.05);
}

.landing-chrome .footer {
  background: var(--zinc-900);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 4rem 0 2rem;
}

.landing-chrome .footer__grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .landing-chrome .footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.landing-chrome .footer__brand p {
  margin: 0.75rem 0 0;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  max-width: 18rem;
}

.landing-chrome .footer__col span {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.landing-chrome .footer__col a {
  display: block;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.75rem;
}

.landing-chrome .footer__col a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.landing-chrome .footer__bottom {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .landing-chrome .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.landing-chrome .footer__bottom p {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.25);
}

.landing-chrome .footer__legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.landing-chrome .footer__legal a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.3);
}

.landing-chrome .footer__legal a:hover {
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 640px) {
  .landing-chrome .footer__legal {
    justify-content: flex-start;
  }
}
