/* ── TLS SHARED STYLES ── */

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

:root {
  --blue1: #a8d5fa; --blue2: #84beee; --blue3: #669fe1;
  --blue4: #42a6ce; --blue6: #365fbc; --maryblue: #6dcff6; --blue5:#6dcff6;
  --black: #111111; --mid: #777777; --rule: #D4E3F5;
  --cream: #ffffff; --cream-dark: #F0F5FC; --white:#f8f8f8;
  --notquiteblack:#303030;
  --shadow: 0 18px 48px rgba(18,42,78,.08);
}

html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--cream); color: var(--black); overflow-x: hidden; }
img { display: block; max-width: 100%; }

/* ── FONTS ── */
@font-face { font-family: 'Awesome Serif'; src: url('fonts/AwesomeSerif-Light.woff') format('woff'); font-weight: 300; }
@font-face { font-family: 'Awesome Serif'; src: url('fonts/AwesomeSerif-Regular.woff') format('woff'); font-weight: 400; }
@font-face { font-family: 'Awesome Serif'; src: url('fonts/AwesomeSerif-Medium.woff') format('woff'); font-weight: 500; }
@font-face { font-family: 'Awesome Serif'; src: url('fonts/AwesomeSerif-SemiBold.woff') format('woff'); font-weight: 600; }
@font-face { font-family: 'Awesome Serif'; src: url('fonts/AwesomeSerif-Bold.woff') format('woff'); font-weight: 700; }

/* ── TICKER ── */
.ticker-bar {
  background: var(--notquiteblack); color: white;
  overflow: hidden; height: 36px;
  display: flex; align-items: center;
  position: relative; z-index: 101;
}
.ticker-track {
  display: flex; gap: 80px;
  animation: ticker 28s linear infinite;
  white-space: nowrap; padding-left: 100%;
}
.ticker-track a { color: white; text-decoration: none; font-size: 12px; font-weight: 500; letter-spacing: 0.04em; opacity: 0.9; }
.ticker-track a:hover { opacity: 1; text-decoration: underline; }
.ticker-sep { opacity: 0.35; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── NAV ── */
nav {
  position: sticky; top: 0; left: 0; right: 0; z-index: 100;
  background:var(--maryblue);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; padding: 0 40px; height: 72px; gap: 24px;
}
.nav-left { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-center { display: flex; justify-content: center; align-items: center; }
.nav-center a { display: flex; }
.nav-center img { height: 38px; width: auto; }
.nav-right { display: flex; align-items: center; justify-content: flex-end; gap: 24px; list-style: none; }
.nav-right img {height:40px; width:auto;}

.nav-left a, .nav-right a {
  font-size: 13px; font-weight: 500; color: var(--white);
  text-decoration: none; transition: color 0.2s;
  border-bottom: 2px solid transparent; padding-bottom: 2px;
  white-space: nowrap;
}
.nav-left a:hover, .nav-right a:hover { color: var(--blue4); border-bottom-color: var(--blue4); }
.nav-left a.active, .nav-right a.active { color: var(--blue4); border-bottom-color: var(--blue4); }

.nav-mp-logo { height: 30px; width: auto; display: block; }
.nav-mp-logo:hover { opacity: 0.75; }

.nav-cta a {
  background: var(--blue5) !important; color: white !important;
  padding: 9px 20px; border-radius: 4px;
  border-bottom: none !important; letter-spacing: 0.04em;
  font-size: 13px; font-weight: 500;
  transition: background 0.2s !important;
}
.nav-cta a:hover { background: var(--blue4) !important; }

/* ── SHARED SECTION UTILITIES ── */
.section-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue4); font-weight: 600; margin-bottom: 14px; }
.section-title { font-family: 'Awesome Serif', serif; font-size: clamp(28px, 4vw, 46px); font-weight: 400; line-height: 1.15; }
.section-title em { font-style: italic; }

.btn-primary { background: var(--blue5); color: white; padding: 14px 32px; border-radius: 4px; font-size: 15px; font-weight: 500; text-decoration: none; letter-spacing: 0.04em; transition: background 0.2s, transform 0.15s; display: inline-block; }
.btn-primary:hover { background: var(--blue4); transform: translateY(-1px); }
.btn-secondary { display: inline-block; border: 1.5px solid var(--black); padding: 11px 26px; border-radius: 4px; font-size: 14px; font-weight: 500; color: var(--black); text-decoration: none; letter-spacing: 0.03em; transition: all 0.2s; }
.btn-secondary:hover { background: var(--blue5); color: white; border-color: var(--blue5); }
.btn-ghost { color: var(--black); font-size: 15px; font-weight: 500; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: color 0.2s; }
.btn-ghost:hover { color: var(--blue4); }
.btn-white { display: inline-block; background: white; color: var(--black); padding: 14px 32px; border-radius: 4px; font-size: 15px; font-weight: 600; text-decoration: none; letter-spacing: 0.04em; transition: all 0.2s; }
.btn-white:hover { background: var(--blue1); }
.btn-mary { display: inline-block; background: var(--blue5); color: white; padding: 14px 32px; border-radius: 4px; font-size: 15px; font-weight: 600; text-decoration: none; letter-spacing: 0.04em; transition: all 0.2s; }
.btn-mary:hover { background: var(--blue1); }

.btn-outline-white { display: inline-block; border: 1.5px solid rgba(255,255,255,0.35); color: white; padding: 13px 28px; border-radius: 4px; font-size: 14px; font-weight: 500; text-decoration: none; letter-spacing: 0.03em; transition: all 0.2s; }
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.08); }

/* ── EMAIL SIGNUP ── */
.email-signup {
  background: var(--cream-dark); border-top: 1px solid var(--rule);
  padding: 48px 80px; text-align: center;
}
.email-signup h3 { font-family: 'Awesome Serif', serif; font-size: 26px; font-weight: 400; margin-bottom: 6px; }
.email-signup p { font-size: 15px; color: var(--mid); margin-bottom: 24px; }
.email-form { display: inline-flex; gap: 12px; max-width: 480px; width: 100%; }
.email-form input {
  flex: 1; padding: 13px 18px; border-radius: 4px;
  border: 1.5px solid var(--rule); background: white;
  font-size: 15px; font-family: 'Plus Jakarta Sans', sans-serif;
  outline: none; color: var(--black);
}
.email-form input:focus { border-color: var(--blue4); }
.email-form button {
  background: var(--blue5); color: white;
  padding: 13px 28px; border-radius: 4px; border: none;
  font-size: 14px; font-weight: 600; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif; letter-spacing: 0.04em;
  transition: background 0.2s; white-space: nowrap;
}
.email-form button:hover { background: var(--blue4); }

/* ── FOOTER ── */
footer {
}
footer img { height: 28px; opacity: 0.6; }
.footer-links { display: flex; gap: 28px; list-style: none; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.3); font-style: italic; }

.site-footer__bg-wrap {
    position: relative;
    overflow: hidden;
    min-height: 420px;
}