/* ========== Self-hosted font: Season Sans (variable family, 5 weights kept) ==========
   Place these 5 files in assets/fonts/ — nothing else from the trial folder is needed.
   Remember: swap "-TRIAL-" files for the licensed web-font versions before going live. */
@font-face {
  font-family: 'Season Sans';
  src: url('assets/fonts/SeasonSans-TRIAL-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Season Sans';
  src: url('assets/fonts/SeasonSans-TRIAL-Medium.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Season Sans';
  src: url('assets/fonts/SeasonSans-TRIAL-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'Season Sans';
  src: url('assets/fonts/SeasonSans-TRIAL-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Season Sans';
  src: url('assets/fonts/SeasonSans-TRIAL-Heavy.woff2') format('woff2');
  font-weight: 800;
  font-display: swap;
}

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

body {
  background: #FFFFFF;
  color: #002153;
  font-family: 'Season Sans', system-ui, sans-serif;
}

a { text-decoration: none; color: inherit; }

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Nav ---- */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
  border-bottom: 1px solid #E7E9EE;
}
.logo {
  font-family: 'Season Sans', system-ui, sans-serif;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: baseline;
}
.logo .just-add { color: #002153; }
.logo .experts { color: #0640AD; }
.navlinks {
  display: flex;
  gap: 32px;
  font-size: 14px;
  color: #5A6478;
  font-weight: 500;
}
.navlinks a:hover { color: #002153; }
.nav-cta {
  background: #002153;
  color: #FFFFFF;
  border: none;
  padding: 11px 20px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  display: inline-block;
}

/* ---- Hero text ---- */
.hero-text {
  padding: 76px 0 48px;
  max-width: 660px;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #0640AD;
  font-weight: 700;
  margin-bottom: 18px;
}
h1 {
  font-family: 'Season Sans', system-ui, sans-serif;
  font-size: 42px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -1px;
  color: #002153;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 16.5px;
  line-height: 1.6;
  color: #5A6478;
  margin-bottom: 30px;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 18px;
}
.btn-primary {
  background: #0640AD;
  color: #FFFFFF;
  border: none;
  padding: 14px 24px;
  border-radius: 9px;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-note {
  font-size: 12.5px;
  color: #8A93A3;
  font-weight: 500;
}

/* ---- Tile grid ---- */
.tile-grid {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr;
  gap: 18px;
  padding-bottom: 84px;
}
.tile {
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 26px;
  transition: transform 0.15s ease;
}
.tile:hover { transform: translateY(-2px); }

.tile-newsletter { background: #002153; color: #FFFFFF; }
.tile-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #8FB4F0;
  margin-bottom: 22px;
}
.tile-label .dot { width: 6px; height: 6px; border-radius: 999px; background: #8FB4F0; }

.issue-card {
  background: #FFFFFF;
  color: #002153;
  border-radius: 12px;
  padding: 22px 22px 24px;
  max-width: 400px;
  box-shadow: 0 20px 44px rgba(0,10,40,0.28);
}
.issue-card .issue-eyebrow {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #0640AD;
  margin-bottom: 8px;
}
.issue-card h3 {
  font-family: 'Season Sans', system-ui, sans-serif;
  font-size: 19px;
  line-height: 1.3;
  font-weight: 800;
  margin-bottom: 10px;
}
.issue-card p { font-size: 12.5px; color: #5A6478; line-height: 1.5; }
.issue-card .issue-date { font-size: 11px; color: #9AA3B5; margin-top: 14px; font-weight: 500; }

.tile-newsletter-footer {
  margin-top: auto;
  padding-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tile-newsletter-footer .cta-text { font-size: 14px; font-weight: 600; color: #C9D9F5; }
.arrow-btn {
  width: 40px; height: 40px;
  border-radius: 999px;
  background: #0640AD;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.tile-slim { justify-content: space-between; padding: 24px 22px; }
.tile-community { background: #0640AD; color: #FFFFFF; }
.tile-community .tile-label { color: #C9D9F5; }
.tile-community .tile-label .dot { background: #C9D9F5; }

.tile-linkedin { background: #FFFFFF; border: 1.5px solid #002153; color: #002153; }
.tile-linkedin .tile-label { color: #0640AD; }
.tile-linkedin .tile-label .dot { background: #0640AD; }

.tile-slim h4 {
  font-family: 'Season Sans', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
  margin-top: auto;
}

.tile-slim-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 18px; }
.tile-slim-tag { font-size: 10.5px; font-weight: 500; letter-spacing: 0.3px; }
.tile-community .tile-slim-tag { color: #C9D9F5; }
.tile-linkedin .tile-slim-tag { color: #7A8AA8; }

.arrow-btn-sm {
  width: 32px; height: 32px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}
.tile-community .arrow-btn-sm { background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.35); color: #FFFFFF; }
.tile-linkedin .arrow-btn-sm { background: #002153; color: #FFFFFF; }

/* ---- About section ----
   Alternates to a soft tinted background so the page has visual rhythm
   (white hero → tinted About → solid-navy Community → tinted footer) */
.about-section {
  background: #F7F9FC;
  margin: 0 -24px;
  padding: 88px 24px;
}
.about-section > * { max-width: 720px; margin-left: auto; margin-right: auto; }
.about-lead {
  font-size: 21px;
  line-height: 1.5;
  color: #002153;
  font-weight: 600;
  margin-bottom: 22px;
}
.about-body {
  font-size: 16px;
  line-height: 1.7;
  color: #5A6478;
  margin-bottom: 22px;
}
.about-body em { color: #0640AD; font-style: normal; font-weight: 600; }
.about-model {
  font-size: 15px;
  color: #002153;
  font-weight: 600;
  margin-bottom: 40px;
}
.founder-note {
  background: #FFFFFF;
  border-left: 3px solid #0640AD;
  border-radius: 8px;
  padding: 28px 30px;
  position: relative;
  box-shadow: 0 8px 24px rgba(0,33,83,0.06);
}
.founder-note::before {
  content: '"';
  position: absolute;
  top: 6px;
  left: 22px;
  font-family: 'Season Sans', system-ui, sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #E1E8F5;
  line-height: 1;
}
.founder-note p {
  font-size: 15px;
  line-height: 1.7;
  color: #3A4356;
  font-style: italic;
  margin-bottom: 16px;
  position: relative;
}
.founder-attribution {
  font-size: 13.5px;
  font-weight: 700;
  color: #002153;
}

/* ---- Community section ---- */
.community-section {
  background: #002153;
  color: #FFFFFF;
  margin: 0 -24px;
  padding: 88px 24px;
  text-align: center;
}
.eyebrow-light { color: #8FB4F0; }
.community-section h2 {
  font-family: 'Season Sans', system-ui, sans-serif;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 20px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.community-section p {
  font-size: 16px;
  line-height: 1.6;
  color: #C9D9F5;
  max-width: 560px;
  margin: 0 auto 16px;
}
.community-emphasis {
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 32px;
}
.btn-on-dark { margin: 0 auto; }

/* ---- Footer ---- */
footer {
  background: #F5F7FB;
  margin: 0 -24px;
  padding: 64px 24px 36px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 36px;
  border-bottom: 1px solid #E7E9EE;
  margin-bottom: 26px;
}
.footer-brand { max-width: 320px; }
.logo-footer { margin-bottom: 10px; }
.footer-brand p { font-size: 14px; color: #5A6478; line-height: 1.5; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: #5A6478; font-weight: 500; }
.footer-links a:hover { color: #002153; }
.footer-model { font-size: 13.5px; color: #5A6478; margin-bottom: 18px; }
.footer-bottom { font-size: 12px; color: #9AA3B5; margin-top: 26px; }

/* ---- Mobile ---- */
@media (max-width: 860px) {
  h1 { font-size: 30px; }
  .tile-grid { grid-template-columns: 1fr; }
  .tile { min-height: 260px; }
  .about-lead { font-size: 18px; }
  .community-section h2 { font-size: 24px; }
  .footer-top { flex-direction: column; gap: 24px; }
}
