/* ═══════════════════════════════════════════════════════════════
   LinkedShot — Shared Design System
   Aesthetic: Editorial precision · Clean · Distinctly branded
   Fonts: Fraunces (display) + DM Sans (body)
═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,300;1,9..144,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── Variables ──────────────────────────────────────────────── */

:root {
  --blue:        #0077b5;
  --blue-dark:   #005a8a;
  --blue-light:  #e8f4fd;
  --blue-xlight: #f0f8ff;
  --navy:        #0d1f2d;
  --navy-mid:    #1a3347;
  --ink:         #111827;
  --ink-mid:     #374151;
  --ink-soft:    #6b7280;
  --ink-faint:   #9ca3af;
  --border:      #e5e7eb;
  --border-soft: #f3f4f6;
  --white:       #ffffff;
  --cream:       #fafaf9;
  --gold:        #f59e0b;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.14);
  --shadow-xl:  0 32px 80px rgba(0,0,0,0.18);

  --max-w: 1100px;
  --max-w-text: 680px;
}

/* ── Reset ──────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Global Animations ──────────────────────────────────────── */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

/* ── Navigation ─────────────────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.nav__logo-icon {
  width: 32px;
  height: 32px;
  background: var(--blue);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.nav__logo-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-mid);
  text-decoration: none;
  transition: color 0.15s;
}

.nav__links a:hover { color: var(--blue); }

.nav__cta {
  background: var(--blue);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 40px;
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: background 0.15s, box-shadow 0.15s !important;
  box-shadow: 0 2px 8px rgba(0,119,181,0.3);
}

.nav__cta:hover {
  background: var(--blue-dark) !important;
  box-shadow: 0 4px 14px rgba(0,119,181,0.4) !important;
  text-decoration: none !important;
}

/* ── Footer ─────────────────────────────────────────────────── */

.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 56px 32px 40px;
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.footer__brand-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  max-width: 260px;
}

.footer__col-title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer__col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.15s;
}

.footer__col-links a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
}

.footer__copy {
  color: rgba(255,255,255,0.35);
}

.footer__made {
  color: rgba(255,255,255,0.45);
}

.footer__made a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
}

.footer__made a:hover { color: var(--white); }

/* ── Shared Section Utilities ───────────────────────────────── */

.section {
  padding: 96px 32px;
}

.section--cream {
  background: var(--cream);
}

.section--navy {
  background: var(--navy);
  color: var(--white);
}

.section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 16px;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--blue);
  flex-shrink: 0;
}

.heading-display {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.heading-section {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--navy);
}

.heading-section--white { color: var(--white); }

.body-lead {
  font-size: 18px;
  color: var(--ink-mid);
  line-height: 1.7;
  font-weight: 300;
}

.body-lead--white { color: rgba(255,255,255,0.72); }

/* ── Buttons ─────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 40px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.18s ease;
  border: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0,119,181,0.35);
}

.btn--primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 8px 28px rgba(0,119,181,0.45);
  transform: translateY(-1px);
  text-decoration: none;
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  color: var(--ink-mid);
  border: 1.5px solid var(--border);
}

.btn--ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
  text-decoration: none;
}

.btn--ghost-white {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.25);
}

.btn--ghost-white:hover {
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
  text-decoration: none;
}

.btn--lg {
  padding: 16px 34px;
  font-size: 15px;
}

/* ── Legal Page Layout ───────────────────────────────────────── */

.legal-hero {
  background: var(--navy);
  padding: 72px 32px 56px;
  text-align: center;
}

.legal-hero__eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
}

.legal-hero__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.legal-hero__date {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.legal-body {
  max-width: 740px;
  margin: 0 auto;
  padding: 64px 32px 96px;
}

.legal-body h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin: 48px 0 14px;
  letter-spacing: -0.02em;
}

.legal-body h2:first-child { margin-top: 0; }

.legal-body p {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-body ul {
  margin: 8px 0 16px 20px;
}

.legal-body ul li {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: 6px;
}

.legal-body a {
  color: var(--blue);
  text-decoration: underline;
}

.legal-contact-box {
  background: var(--blue-xlight);
  border: 1px solid rgba(0,119,181,0.15);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-top: 48px;
}

.legal-contact-box p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-mid);
}

.legal-contact-box a { color: var(--blue); }

/* ── Responsive ─────────────────────────────────────────────── */

@media (max-width: 768px) {
  .nav__links { display: none; }
  .section { padding: 64px 20px; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer { padding: 40px 20px 28px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .legal-body { padding: 40px 20px 64px; }
}
