/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: "Instrument Sans", sans-serif;
  color: #161616;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── NAV ── */
nav {
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 0 2rem;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  width: 74px;
  height: 24px;
  color: #161616;
  text-decoration: none;
}

.logo svg { width: 100%; height: 100%; }

.login-btn {
  background: #161616;
  color: #fff;
  border-radius: 100px;
  padding: 0 1.25rem;
  height: 40px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.2s;
}

.login-btn:hover { opacity: 0.8; }

/* ── HERO ── */
.hero {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 5rem 2rem;
  min-height: 560px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 1.25rem;
}

.subtitle {
  font-size: 1.05rem;
  color: #4a4a4a;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.subtitle strong { color: #161616; font-weight: 600; }

.cta-btn {
  background: #3366ff;
  color: #fff;
  border-radius: 100px;
  padding: 0 2rem;
  height: 54px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s;
}

.cta-btn:hover { background: #1a44cc; }

.cta-btn svg { flex-shrink: 0; }

/* ── PRESS LOGOS ── */
.press {
  border-top: 1px solid rgba(0,0,0,0.07);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.press span {
  font-size: 0.8rem;
  color: #737373;
  white-space: nowrap;
}

.press img {
  height: 18px;
  opacity: 0.4;
  filter: grayscale(1);
}

/* ── FOOTER ── */
footer {
  background: #161616;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  color: #fff;
  display: flex;
  align-items: center;
  width: 60px;
  height: 20px;
  text-decoration: none;
}

.footer-logo svg { width: 100%; height: 100%; }

.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.35); }

.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: rgba(255,255,255,0.4); font-size: 0.75rem; text-decoration: none; }
.footer-links a:hover { color: #fff; }

/* ── RESPONSIVE ── */
@media (max-width: 480px) {
  nav { padding: 0 1.25rem; }
  .hero { padding: 4rem 1.25rem; }
  .press { gap: 1.25rem; padding: 1.25rem; }
  footer { flex-direction: column; align-items: flex-start; padding: 1.25rem; }
}
