/* ===== Byrdseye shared styles (header, footer, base) ===== */
:root {
  --bg: #F4F2F8;
  --bg-card: #FFFFFF;
  --ink: #14132B;
  --ink-2: #2A2746;
  --muted: #6E6B85;
  --muted-2: #9B98AE;
  --line: #E6E3EE;
  --purple: #7B5BE8;
  --purple-2: #6B4BD8;
  --purple-soft: #EFEAFE;
  --dark: #0F0E22;
  --dark-2: #16142E;
  --dark-3: #1F1C3D;
  --dark-line: #2A2750;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--ink); font-family: 'Manrope', -apple-system, sans-serif; font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
body { width: 100%; margin: 0 auto; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.serif { font-family: 'Manrope', sans-serif; font-weight: 400; letter-spacing: -0.01em; }
.serif-italic { font-family: 'Manrope', sans-serif; font-style: italic; font-weight: 400; }
.eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--purple);
}
.eyebrow-light { color: #B5A8F0; }

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* ===== Header ===== */
.header-wrap {
  position: sticky; top: 0;
  padding: 20px 0;
  z-index: 50;
  background: transparent;
  pointer-events: none;
}
.header-wrap .container,
.header-wrap .nav-pill { pointer-events: auto; }
.nav-pill {
  width: 100%;
  position: relative;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  border-radius: 64px;
  padding: 12px 12px 12px 28px;
  display: flex; align-items: center; gap: 32px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 0 0 1px rgba(255, 255, 255, 0.35),
    0 1px 2px rgba(20,19,43,0.04),
    0 18px 50px -18px rgba(20,19,43,0.18);
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.logo { display: flex; align-items: center; gap: 10px; font-family: 'Manrope', sans-serif; font-size: 20px; font-weight: 500; color: var(--ink); letter-spacing: -0.01em; }
.logo img { height: 28px; width: auto; display: block; }
.nav-links {
  display: flex; align-items: center; gap: 36px;
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
}
.nav-sep {
  width: 4px; height: 4px; border-radius: 999px;
  background: var(--muted-2);
  opacity: 0.55;
  flex-shrink: 0;
}
.nav-links a { font-size: 14px; color: var(--ink-2); font-weight: 500; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--purple); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 16px; }
.btn-apply {
  background: var(--purple); color: #fff; border-radius: 999px;
  padding: 10px 10px 10px 22px; font-size: 14px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 10px;
  border: none; cursor: pointer;
  text-decoration: none;
  transition: background .2s;
}
.btn-apply:hover { background: var(--purple-2); }
.btn-apply .arrow {
  width: 24px; height: 24px; border-radius: 999px;
  background: rgba(255,255,255,0.2);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px;
}

.btn-primary {
  background: var(--purple); color: #fff; border-radius: 999px;
  padding: 12px 12px 12px 26px; font-size: 14px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 12px;
  border: none; cursor: pointer;
  text-decoration: none;
  transition: background .2s;
}
.btn-primary:hover { background: var(--purple-2); }
.btn-primary .arr {
  width: 24px; height: 24px; border-radius: 999px;
  background: rgba(255,255,255,0.2);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px;
}
.btn-secondary {
  background: #fff; color: var(--ink); border-radius: 999px;
  padding: 16px 28px; font-size: 14px; font-weight: 500;
  border: 1px solid var(--line); cursor: pointer;
  text-decoration: none; display: inline-flex; align-items: center;
  transition: border-color .2s;
}
.btn-secondary:hover { border-color: var(--ink); }

/* ===== Footer ===== */
footer { padding: 80px 0 32px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 32px; border-bottom: 1px solid var(--line); }
.foot-brand .logo { margin-bottom: 18px; }
.foot-brand p { font-size: 13px; color: var(--muted); max-width: 280px; line-height: 1.65; margin-bottom: 24px; }
.socials { display: flex; gap: 8px; }
.socials a {
  width: 32px; height: 32px; border-radius: 999px; background: #fff;
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--muted-2);
}
.socials a:hover { color: var(--purple); border-color: var(--purple); }
.foot-col h5 { font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--purple); margin-bottom: 18px; font-weight: 500; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.foot-col a { font-size: 14px; color: var(--ink-2); }
.foot-col a:hover { color: var(--purple); }
.foot-col .addr { font-size: 14px; color: var(--ink-2); line-height: 1.7; }
.foot-bottom { padding-top: 28px; display: flex; justify-content: space-between; align-items: center; }
.foot-bottom .copy { font-size: 12px; color: var(--muted); }
.foot-bottom .tag { font-family: 'Manrope', sans-serif; font-style: italic; font-size: 12px; color: var(--muted); }

/* ===== Page hero (used by sub-pages) ===== */
.page-hero { padding: 80px 0 56px; position: relative; }
.page-hero::before {
  content: ''; position: absolute; pointer-events: none;
  left: -200px; top: -60px; width: 600px; height: 500px;
  background: radial-gradient(circle, #C8B8F5, transparent 70%);
  filter: blur(80px); opacity: .45; border-radius: 50%;
}
.page-hero::after {
  content: ''; position: absolute; pointer-events: none;
  right: -200px; top: -40px; width: 540px; height: 480px;
  background: radial-gradient(circle, #F5D5C0, transparent 70%);
  filter: blur(80px); opacity: .5; border-radius: 50%;
}
.page-hero .container { position: relative; z-index: 1; text-align: center; }
.page-hero h1 {
  font-family: 'Manrope', sans-serif; font-weight: 300;
  font-size: 64px; line-height: 1.08; letter-spacing: -0.02em; color: var(--ink);
  margin: 20px auto 20px; max-width: 880px;
}
.page-hero h1 .it { font-style: italic; font-weight: 300; }
.page-hero p.lede { color: var(--muted); font-size: 17px; max-width: 580px; margin: 0 auto; line-height: 1.65; }

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .nav-links { gap: 24px; }
  .container { padding: 0 24px; }
  .page-hero h1 { font-size: 52px; }
}
@media (max-width: 900px) {
  .nav-pill { padding: 10px 10px 10px 22px; gap: 18px; border-radius: 999px; }
  .nav-links { display: none; }
  .nav-right { margin-left: auto; }
  .btn-apply { padding: 10px 18px; font-size: 13px; }
  .page-hero { padding: 56px 0 40px; }
  .page-hero h1 { font-size: 42px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .btn-apply .arrow { display: none; }
  .logo img { height: 24px; }
  .page-hero h1 { font-size: 34px; }
  .foot-grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 28px; }
  .foot-brand { grid-column: auto; }
  .foot-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}
